/* =========================================================
   PAIN IN THE AUS — styles.css
   --orange: #C65A11  "Aus" always this color
   --dark:   #111111  Background
   --muted:  #aaaaaa  Secondary text
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #C65A11;
  --orange-dk: #a34b0d;
  --orange-lt: #e86b1a;
  --dark:      #111111;
  --dark-mid:  #161616;
  --dark-alt:  #0e0e0e;
  --dark-card: #1e1e1e;
  --dark-line: #222222;
  --offwhite:  #F5F1E8;
  --green:     #2E7D32;
  --white:     #ffffff;
  --muted:     #aaaaaa;
  --muted-dk:  #777777;
  --font-head: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
p { line-height: 1.7; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }

h1 { font-family: var(--font-head); font-size: clamp(4rem, 9vw, 7.5rem); letter-spacing: .01em; line-height: .93; }
h2 { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: .01em; line-height: 1; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }

.section-eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); background: rgba(198,90,17,.12); padding: 5px 13px; border-radius: 50px; margin-bottom: 1rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 540px; margin: 0 auto; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; transition: all var(--transition); border: 2px solid transparent; white-space: nowrap; cursor: pointer; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); box-shadow: 0 4px 16px rgba(198,90,17,.3); }
.btn-primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,90,17,.45); }
.btn-dark { background: rgba(0,0,0,.3); color: var(--white); border-color: rgba(255,255,255,.2); }
.btn-dark:hover { background: rgba(0,0,0,.5); }
.btn-outline { background: transparent; color: var(--white); border-color: #333; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.btn-outline-dark { background: transparent; color: rgba(0,0,0,.7); border-color: rgba(0,0,0,.25); }
.btn-outline-dark:hover { background: rgba(0,0,0,.12); }
.btn-sm  { padding: 9px 16px; font-size: .875rem; }
.btn-lg  { padding: 17px 34px; font-size: 1.05rem; }
.btn-xl  { padding: 20px 40px; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--dark); border-bottom: 3px solid var(--orange); }
.header-inner { display: flex; align-items: center; gap: 2rem; height: 70px; }
.logo { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.logo-main { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); letter-spacing: .01em; line-height: 1; }
.logo-tag { font-size: .6rem; color: var(--orange); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.main-nav { display: flex; gap: 2rem; margin-left: auto; }
.main-nav a { font-size: .82rem; font-weight: 700; color: var(--muted); transition: color var(--transition); letter-spacing: .05em; text-transform: uppercase; }
.main-nav a:hover { color: var(--white); }
.header-ctas { display: flex; gap: .75rem; align-items: center; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav { position: fixed; inset: 70px 0 0 0; background: var(--dark); z-index: 999; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s ease; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-inner { display: flex; flex-direction: column; gap: .5rem; padding: 2rem 1.5rem; }
.mobile-link { font-size: 1.5rem; font-weight: 700; color: var(--white); padding: .75rem 0; border-bottom: 1px solid #222; display: block; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 998; display: none; }
.mobile-overlay.is-open { display: block; }

/* =========================================================
   HERO
   ========================================================= */
.hero { background: var(--dark); padding: 80px 0; min-height: min(90vh, 860px); display: flex; align-items: center; border-bottom: 1px solid #1a1a1a; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.hero-sub { font-size: 1.1rem; color: var(--muted); margin-bottom: 2.5rem; max-width: 460px; line-height: 1.72; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-bar { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; padding-top: 1.5rem; border-top: 1px solid #1f1f1f; }
.trust-item { font-size: .85rem; font-weight: 600; color: var(--muted-dk); display: flex; align-items: center; gap: 6px; }
.trust-check { color: var(--green); font-weight: 700; }

/* Hero Tile Grid */
.hero-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.hero-tile {
  background: var(--dark-mid);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.hero-tile:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(198,90,17,.2);
  background: rgba(198,90,17,.06);
}

.hero-tile--weird {
  border-color: var(--orange);
  background: rgba(198,90,17,.06);
}

.hero-tile--weird:hover { box-shadow: 0 10px 30px rgba(198,90,17,.35); }

.tile-emoji { font-size: 2rem; transition: transform var(--transition); }
.hero-tile:hover .tile-emoji { transform: scale(1.15); }

.tile-label { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; text-align: center; transition: color var(--transition); }
.hero-tile:hover .tile-label { color: var(--orange); }
.hero-tile--weird .tile-label { color: var(--orange); }

/* =========================================================
   SOUNDS LIKE A PAIN IN THE AUS
   ========================================================= */
.pain-section { padding: 100px 0; background: var(--dark-alt); }

.pain-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }

.pain-card {
  background: var(--dark-mid);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
}
.pain-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 8px 28px rgba(198,90,17,.12); }

.pain-problem { margin-bottom: 1.5rem; }
.pain-emoji { font-size: 2rem; margin-bottom: .875rem; }
.pain-card h3 { color: var(--white); margin-bottom: .6rem; font-size: 1.05rem; }
.pain-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

.pain-tagline {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--muted-dk);
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
  letter-spacing: .02em;
}

.pain-cta { text-align: center; }

/* =========================================================
   PHILOSOPHY
   ========================================================= */
.philosophy {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '"';
  position: absolute;
  font-family: Georgia, serif;
  font-size: 40vw;
  color: rgba(198,90,17,.03);
  top: -10vw; left: -5vw;
  line-height: 1;
  pointer-events: none;
}

.philosophy-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.phil-eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); background: rgba(198,90,17,.12); padding: 5px 13px; border-radius: 50px; margin-bottom: 1.5rem; }

.phil-headline { margin-bottom: 2.5rem; }

.phil-body { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.phil-body p { font-size: 1.2rem; color: var(--muted); line-height: 1.75; }
.phil-body p:first-child { font-size: 1.4rem; color: var(--white); font-weight: 600; }

.phil-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  letter-spacing: .02em;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works { padding: 100px 0; background: var(--dark-alt); }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; margin-bottom: 3rem; }
.step-card { background: var(--dark-mid); border-radius: var(--radius-md); padding: 2rem 1.5rem; border: 1px solid var(--dark-line); text-align: center; transition: all var(--transition); }
.step-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.step-number { font-family: var(--font-head); font-size: 3.5rem; color: rgba(198,90,17,.1); line-height: 1; margin-bottom: .5rem; }
.step-emoji { font-size: 2rem; margin-bottom: .75rem; display: block; }
.step-title { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.step-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.step-connector { color: var(--orange); font-size: 1.4rem; font-weight: 700; padding: 0 .75rem; }
.steps-cta { text-align: center; }

/* =========================================================
   WHO WE HELP
   ========================================================= */
.who-we-help { padding: 100px 0; background: var(--dark); }
.who-we-help .section-title, .who-we-help .section-sub { color: inherit; }
.who-we-help .section-sub { color: var(--muted); }
.who-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.1rem; }
.who-card { background: var(--dark-mid); border: 1px solid var(--dark-line); border-radius: var(--radius-md); padding: 1.75rem; transition: all var(--transition); }
.who-card:hover { border-color: var(--orange); transform: translateY(-3px); background: rgba(198,90,17,.04); }
.who-emoji { font-size: 2rem; margin-bottom: .75rem; }
.who-card h3 { color: var(--white); margin-bottom: .4rem; font-size: 1.05rem; }
.who-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* =========================================================
   WEIRD JOBS
   ========================================================= */
.weird-jobs { padding: 100px 0; background: var(--dark); border-top: 3px solid var(--orange); border-bottom: 3px solid var(--orange); }
.weird-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.weird-body { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.72; }
.weird-examples { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.weird-tag { background: rgba(198,90,17,.1); border: 1px solid rgba(198,90,17,.25); color: var(--muted); padding: 7px 14px; border-radius: 50px; font-size: .85rem; font-weight: 600; }
.weird-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.weird-phone { background: #0a0a0a; border-radius: 28px; padding: 1.5rem; border: 2px solid #222; max-width: 360px; margin: 0 auto; }
.weird-phone-screen { background: var(--dark-mid); border-radius: 18px; padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.chat-bubble { padding: 11px 15px; border-radius: 18px; font-size: .88rem; line-height: 1.55; max-width: 88%; }
.chat-bubble--in  { background: #2a2a2a; color: var(--white); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-bubble--out { background: var(--orange); color: var(--white); border-bottom-right-radius: 4px; align-self: flex-end; }

/* =========================================================
   DON'T DO
   ========================================================= */
.dont-do { padding: 80px 0; background: var(--dark-alt); }
.dont-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .9rem; margin-bottom: 1.5rem; }
.dont-item { display: flex; align-items: center; gap: .75rem; background: var(--dark-mid); border: 1px solid var(--dark-line); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-weight: 600; font-size: .92rem; color: var(--muted); }
.dont-x { color: #c62828; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.dont-note { text-align: center; color: var(--muted-dk); font-size: .9rem; }

/* =========================================================
   WHY PEOPLE CALL US
   ========================================================= */
.why-us { padding: 100px 0; background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.why-card { background: var(--dark-mid); border: 1px solid var(--dark-line); border-radius: var(--radius-md); padding: 2rem 1.75rem; transition: all var(--transition); }
.why-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.why-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-card h3 { color: var(--white); margin-bottom: .5rem; font-size: 1.05rem; }
.why-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { padding: 100px 0; background: var(--dark-alt); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--dark-line); border-radius: var(--radius-lg); overflow: hidden; }

.faq-item { border-bottom: 1px solid var(--dark-line); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  text-align: left;
  background: var(--dark-mid);
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition), color var(--transition);
}

.faq-q:hover { background: rgba(198,90,17,.06); color: var(--white); }
.faq-q.is-open { background: rgba(198,90,17,.08); color: var(--orange); }

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-q.is-open::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  background: var(--dark-mid);
}
.faq-a.is-open { max-height: 400px; }

.faq-a p {
  padding: 0 1.75rem 1.4rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-a a { color: var(--orange); font-weight: 700; }

/* =========================================================
   SERVICE AREA
   ========================================================= */
.service-area { padding: 100px 0; background: var(--dark); }
.area-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.area-tag { background: var(--dark-mid); border: 1px solid var(--dark-line); color: var(--muted); padding: 7px 15px; border-radius: 50px; font-size: .88rem; font-weight: 600; transition: all var(--transition); }
.area-tag:hover { border-color: var(--orange); color: var(--orange); }
.area-note { font-size: .88rem; color: var(--muted-dk); margin-bottom: 1.5rem; }
.area-too-far-block { background: var(--dark-mid); border: 2px solid var(--orange); border-radius: var(--radius-lg); padding: 3rem 2.5rem; display: flex; flex-direction: column; gap: .85rem; }
.too-far-headline { font-family: var(--font-head); font-size: clamp(3.5rem, 7vw, 6rem); color: var(--orange); line-height: 1; letter-spacing: .02em; }
.too-far-sub { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); line-height: 1; }
.too-far-body { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta { padding: 120px 0; background: var(--orange); position: relative; overflow: hidden; }
.final-cta::before { content: 'PAIN IN THE AUS'; position: absolute; font-family: var(--font-head); font-size: 18vw; color: rgba(0,0,0,.07); white-space: nowrap; bottom: -2vw; left: -2vw; pointer-events: none; letter-spacing: -.02em; }
.final-cta-inner { position: relative; text-align: center; z-index: 1; }
.final-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.final-headline { font-family: var(--font-head); font-size: clamp(3rem, 6vw, 6rem); color: var(--white); line-height: .95; margin-bottom: .5rem; }
.final-sub { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 5rem); color: rgba(255,255,255,.75); margin-bottom: 2.5rem; }
.final-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.final-note { font-size: .85rem; color: rgba(255,255,255,.7); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: 100px 0; background: var(--dark-alt); }
.contact .section-title { color: var(--white); }
.contact .section-sub { color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 4rem; align-items: start; }
.contact-form { background: var(--dark-mid); border: 1px solid var(--dark-line); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: .75rem; }
label { font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
input, textarea, select { background: rgba(255,255,255,.05); border: 1px solid #2a2a2a; color: var(--white); border-radius: var(--radius-sm); padding: 12px 14px; font-family: var(--font-body); font-size: .95rem; transition: border-color var(--transition); -webkit-appearance: none; appearance: none; width: 100%; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.25); }
input:focus, textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(198,90,17,.18); }
input.error, textarea.error { border-color: #c62828; }
textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: .77rem; color: #ef5350; min-height: 16px; }
.file-upload-wrapper { position: relative; cursor: pointer; }
.file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 1; width: 100%; height: 100%; }
.file-upload-label { display: flex; align-items: center; gap: .75rem; background: rgba(255,255,255,.04); border: 1px dashed #2a2a2a; border-radius: var(--radius-sm); padding: 13px; color: var(--muted); font-size: .88rem; transition: all var(--transition); }
.file-upload-label:hover { border-color: var(--orange); }
.photo-preview { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.photo-thumb { width: 62px; height: 62px; border-radius: var(--radius-sm); object-fit: cover; border: 2px solid var(--orange); }
#submitBtn { margin-top: 1.5rem; letter-spacing: .04em; }
.form-footer { text-align: center; font-size: .83rem; color: var(--muted-dk); margin-top: 1rem; }
.form-footer a { color: var(--orange); font-weight: 700; }
.form-success { text-align: center; padding: 2rem; animation: fade-in .5s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.success-icon { width: 62px; height: 62px; background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; margin: 0 auto 1rem; }
.form-success h3 { color: var(--white); margin-bottom: .5rem; }
.form-success p { color: var(--muted); font-size: .93rem; }
.contact-info-col { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-card { background: var(--dark-mid); border: 1px solid var(--dark-line); border-radius: var(--radius-md); padding: 1.75rem; }
.contact-card h3 { color: var(--white); margin-bottom: .5rem; font-size: 1.05rem; }
.contact-card p { color: var(--muted); font-size: .88rem; margin-bottom: 1.25rem; line-height: 1.65; }
.hours-list { display: flex; flex-direction: column; gap: .4rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .88rem; padding: 7px 0; border-bottom: 1px solid #1e1e1e; color: var(--muted); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 700; color: var(--white); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #080808; border-top: 3px solid var(--orange); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-top: 4rem; padding-bottom: 3rem; }
.footer-logo { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: .4rem; }
.footer-tagline { font-size: .88rem; color: var(--orange); font-weight: 700; margin-bottom: .25rem; }
.footer-loc { font-size: .82rem; color: #444; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links h4 { color: var(--white); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem; }
.footer-links a { font-size: .85rem; color: #555; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact h4 { color: var(--white); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-phone, .footer-email { font-size: .88rem; color: #555; transition: color var(--transition); display: block; }
.footer-phone:hover, .footer-email:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #1a1a1a; padding: 1.25rem 0; }
.footer-bottom p { font-size: .78rem; color: #444; text-align: center; line-height: 1.8; }
.footer-seo-text { color: #252525 !important; font-size: .7rem !important; }

/* =========================================================
   STICKY MOBILE BAR
   ========================================================= */
.sticky-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000; background: var(--dark); border-top: 2px solid var(--orange); padding: 10px 16px; gap: 8px; padding-bottom: max(10px, env(safe-area-inset-bottom)); }
.sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 13px 12px; border-radius: var(--radius-sm); font-weight: 700; font-size: .875rem; transition: all var(--transition); }
.sticky-btn--primary { background: var(--orange); color: var(--white); }
.sticky-btn--primary:hover { background: var(--orange-lt); }
.sticky-btn--dark { background: rgba(255,255,255,.06); color: var(--white); border: 1px solid #2a2a2a; }
.sticky-btn--dark:hover { background: rgba(255,255,255,.12); }

/* =========================================================
   SERVICE PAGE SHARED STYLES
   ========================================================= */
.service-hero { background: var(--dark); padding: 80px 0 70px; border-bottom: 1px solid #1a1a1a; }
.service-hero-inner { max-width: 820px; }
.service-hero h1 { margin-bottom: 1.25rem; }
.service-hero p { font-size: 1.2rem; color: var(--muted); max-width: 640px; margin-bottom: 2rem; line-height: 1.72; }
.service-hero .hero-buttons { margin-bottom: 0; }

.service-body { padding: 80px 0; background: var(--dark-alt); }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.service-problems h2 { margin-bottom: 1.5rem; font-size: clamp(2rem, 4vw, 3rem); }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.problem-list li { display: flex; align-items: flex-start; gap: .875rem; font-size: 1rem; color: var(--muted); line-height: 1.6; }
.problem-list li::before { content: '→'; color: var(--orange); font-weight: 900; flex-shrink: 0; margin-top: .05rem; }

.service-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.service-cta-card { background: var(--dark-mid); border: 2px solid var(--orange); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; }
.service-cta-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .75rem; }
.service-cta-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.5rem; }
.service-info-card { background: var(--dark-mid); border: 1px solid var(--dark-line); border-radius: var(--radius-md); padding: 1.75rem; }
.service-info-card h4 { color: var(--white); font-size: 1rem; margin-bottom: .875rem; font-weight: 700; }
.service-info-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step-connector { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .area-layout { grid-template-columns: 1fr; }
  .service-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .main-nav, .header-ctas { display: none; }
  .hamburger { display: flex; }

  /* Global section padding — cut in half */
  .pain-section, .philosophy, .how-it-works, .who-we-help,
  .weird-jobs, .dont-do, .why-us, .faq-section,
  .service-area, .contact { padding: 56px 0; }
  .final-cta { padding: 60px 0; }
  .section-header { margin-bottom: 2rem; }

  /* Hero */
  .hero { padding: 36px 0 44px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-sub { font-size: .95rem; margin-bottom: 1.5rem; max-width: 100%; }
  .hero-buttons { flex-direction: column; gap: .75rem; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .trust-bar { gap: .4rem 1rem; padding-top: 1rem; }
  .trust-item { font-size: .8rem; }
  h1 { font-size: clamp(3.2rem, 11vw, 5rem); }

  /* Hero tiles — compact 3-col */
  .hero-tiles { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-tile { padding: 14px 8px; gap: 6px; border-radius: 10px; }
  .tile-emoji { font-size: 1.4rem; }
  .tile-label { font-size: .65rem; letter-spacing: .03em; }

  /* Pain cards — compact 2-col grid */
  .pain-grid { grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 2rem; }
  .pain-card { padding: 1.1rem; }
  .pain-emoji { font-size: 1.5rem; margin-bottom: .5rem; }
  .pain-card h3 { font-size: .88rem; line-height: 1.3; }
  .pain-tagline { font-size: 1rem; padding-top: .75rem; }

  /* Steps — single col, compact horizontal layout */
  .steps-grid { grid-template-columns: 1fr; gap: .75rem; }
  .step-card { padding: 1.1rem 1.25rem; display: grid; grid-template-columns: auto auto 1fr; grid-template-rows: auto auto; align-items: center; gap: 0 .75rem; text-align: left; }
  .step-number { font-size: 1.6rem; margin-bottom: 0; grid-row: 1 / 3; line-height: 1; align-self: center; }
  .step-emoji { font-size: 1.3rem; margin-bottom: 0; grid-row: 1 / 3; align-self: center; }
  .step-title { font-size: .92rem; margin-bottom: 0; grid-column: 3; grid-row: 1; }
  .step-desc { font-size: .8rem; grid-column: 3; grid-row: 2; margin-top: .2rem; }

  /* Who we help — 3-col icon grid */
  .who-grid { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .who-card { padding: 1rem .75rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .35rem; }
  .who-emoji { font-size: 1.6rem; margin-bottom: 0; }
  .who-card h3 { font-size: .78rem; font-weight: 700; color: var(--muted); }

  /* Weird jobs — hide chat UI, show text only */
  .weird-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .weird-visual { display: none; }
  .weird-ctas { flex-direction: column; gap: .75rem; }
  .weird-ctas .btn { width: 100%; justify-content: center; }
  .weird-examples { gap: .4rem; }
  .weird-tag { font-size: .8rem; padding: 5px 10px; }

  /* Why us — 2-col compact chips */
  .why-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .why-card { padding: 1rem; display: flex; align-items: center; gap: .75rem; border-radius: var(--radius-sm); }
  .why-icon { font-size: 1.5rem; margin-bottom: 0; flex-shrink: 0; }
  .why-card h3 { font-size: .85rem; margin-bottom: 0; }

  /* Dont-do compact */
  .dont-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .dont-item { padding: .75rem 1rem; font-size: .85rem; }

  /* Service area */
  .area-too-far-block { padding: 1.5rem; }
  .too-far-headline { font-size: clamp(2.8rem, 10vw, 4rem); }
  .too-far-sub { font-size: clamp(1.6rem, 6vw, 2.5rem); }

  /* Final CTA */
  .final-buttons { flex-direction: column; align-items: center; gap: .75rem; }
  .final-buttons .btn { width: 100%; max-width: 340px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }

  /* Sticky bar */
  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }

  /* Service pages */
  .service-hero { padding: 44px 0 36px; }
  .service-body { padding: 48px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .contact-form { padding: 1.25rem; }

  /* Pain cards go single col on very small screens */
  .pain-grid { grid-template-columns: 1fr; }

  /* Who we help 2-col on very small */
  .who-grid { grid-template-columns: 1fr 1fr; }

  /* Dont do single col */
  .dont-grid { grid-template-columns: 1fr; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
