/* ============================================================
   STYLES.CSS — The Marketing Handyman
   ============================================================
   Shared stylesheet for all pages. Link via:
     <link rel="stylesheet" href="styles.css">
   Extend below Section 11 for page-specific overrides.

   TABLE OF CONTENTS
   -----------------
    1.  Reset & Root Variables
    2.  Base
    3.  Scroll Animations       .fade-up, .d1–.d4 stagger delays
    4.  Nav
    5.  Hero
    6.  Intro Block             white bg — "Two reasons" + "Marketing tools"
    7.  Service Bands           shared grid + Pink / Blue / Green overrides
    8.  Real Problems           white bg — example blocks with hairline rules
    9.  How It Works            white bg — numbered steps (removed)
   10.  Contact
   11.  Footer
   12.  Who Modal               ghost button + overlay modal
   13.  Responsive              breakpoint: 768px
   ============================================================ */

.grecaptcha-badge { visibility: hidden; }

/* ============================================================
   1. RESET & ROOT VARIABLES
   ============================================================ */

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

:root {
  --pink:  #D4537E;
  --blue:  #378ADD;
  --green: #1D9E75;
  --dark:  #111111;
}

html { scroll-behavior: smooth; }


/* ============================================================
   2. BASE
   ============================================================ */

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: #fff;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }


/* ============================================================
   3. SCROLL ANIMATIONS
   Elements start invisible + shifted down; JS adds .visible.
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* Stagger delays — combine with .fade-up, e.g. class="fade-up d2" */
.d1 { transition-delay: 0ms; }
.d2 { transition-delay: 120ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 360ms; }


/* ============================================================
   4. NAV
   Sticky top bar. Gains drop-shadow on scroll via JS.
   ============================================================ */

#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.2s;
  padding: 0 48px;        /* outer padding — matches hero and bands */
}
#nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 0;        /* vertical only — horizontal handled by #nav */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand name */
.nav-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;        /* adjust: nav brand size */
  color: var(--dark);
}

/* CTA pill button */
.nav-cta {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;        /* adjust: nav cta size */
  color: #fff;
  background: var(--pink);
  padding: 10px 22px;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }


/* ============================================================
   5. HERO
   ============================================================ */

#hero {
  padding: 80px 48px;     /* adjust: hero top/bottom padding */
  background: #fff;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Small uppercase eyebrow — defined here for reuse if needed */
.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 12px;        /* adjust: eyebrow size */
  text-transform: uppercase;
  letter-spacing: 3px;   /* adjust: eyebrow tracking */
  color: #bbb;
  display: block;
  margin-bottom: 28px;
}

/* Main headline — fluid: 48px at narrow → 84px at wide */
.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 56px);  /* adjust: min / vw / max */
  line-height: 1.3;                    /* adjust: headline line height */
  letter-spacing: -2.5px;              /* adjust: headline tracking */
  color: var(--dark);
  margin-bottom: 38px;
}

/* Pink em — italic break line inside the H1 */
.hero-h1 em {
  font-style: normal;
  color: var(--pink);
}

/* Sub-headline below H1 */
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;        /* adjust: sub-headline size */
  color: #555;
  line-height: 1.75;      /* adjust: sub-headline line height */
  letter-spacing: -0.02em; /* adjust: sub-headline tracking */
  margin-bottom: 48px;
}

/* Phone + location badge row — badge pushed to the right */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;    /* adjust: gap below cta row */
}

/* Large phone CTA button */
.hero-phone {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 26px;        /* adjust: hero phone button size */
  color: #fff;
  background: var(--pink);
  padding: 20px 44px;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.2s;
}
.hero-phone:hover { opacity: 0.88; transform: translateY(-2px); }

/* Quote block beneath the CTA area */
.hero-seo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;       /* adjust: quote weight */
  font-size: 19px;        /* adjust: quote font size */
  color: #444;
  line-height: 1.6;       /* adjust: quote line height */
  margin-top: 28px;
  display: inline-block;
  background: #f2f2f2;    /* adjust: quote background colour */
  border-radius: 10px;    /* adjust: quote corner radius */
  padding: 18px 28px;     /* adjust: quote internal padding */
}

/* Green location badge */
.hero-badge {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;        /* adjust: badge text size */
  color: var(--green);
  background: #f0faf6;
  border: 1px solid #b8e8d0;
  border-radius: 6px;
  padding: 10px 18px;
  margin-top: 28px;
  margin-right: 10%;      /* adjust: inset from right edge */
  display: inline-block;
}


/* ============================================================
   6. INTRO BLOCK
   White background. Two sub-sections on the same page:
     A) "Two reasons people call"    — 2-col grid of items
     B) "Marketing tools, not noise" — flowing body paragraphs
   ============================================================ */

#intro {
  padding: 80px 48px;     /* adjust: intro section padding */
  background: #fff;
}

.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Space between sub-sections A and B */
.intro-sub-section {
  margin-bottom: 72px;    /* adjust: gap between intro sub-sections */
}
.intro-sub-section:last-child { margin-bottom: 0; }

/* Eyebrow — matches band-label weight/size, dark grey on white */
.intro-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;        /* adjust: intro eyebrow size */
  text-transform: uppercase;
  letter-spacing: 3px;   /* adjust: intro eyebrow tracking */
  color: #999;
  display: block;
  margin-bottom: 12px;
}

/* Section heading — smaller scale than band headings */
.intro-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);  /* adjust: min / vw / max */
  line-height: 1.05;                   /* adjust: intro heading line height */
  letter-spacing: -1.2px;              /* adjust: intro heading tracking */
  color: var(--dark);
  margin-bottom: 36px;
}

/* 2-col grid — dark text version of .service-grid */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;            /* adjust: column gap between intro items */
}

.intro-item {
  padding: 28px 0;        /* adjust: intro item vertical padding */
  border-top: 1px solid #eee;  /* hairline rule — visible on white bg */
}

/* Item title — Poppins 700, dark */
.intro-item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;        /* adjust: intro item title size */
  color: var(--dark);
  display: block;
  margin-bottom: 8px;
  line-height: 1.25;      /* adjust: intro item title line height */
}

/* Item description — DM Sans, muted */
.intro-item-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;        /* adjust: intro item description size */
  color: #555;
  line-height: 1.65;      /* adjust: intro item description line height */
  display: block;
}

/* Body copy for sub-section B */
.intro-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;        /* adjust: intro body text size */
  color: #444;
  line-height: 1.8;       /* adjust: intro body line height */
  letter-spacing: -0.02em;    /* adjust: intro body tracking — try -0.01em to tighten */
  margin-bottom: 20px;
  max-width: 100%;
}
.intro-body:last-child { margin-bottom: 0; }

/* Final emphasised line — Poppins 700 instead of DM Sans */
.intro-body-em {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;        /* adjust: emphasised closing line size */
  color: var(--dark);
  line-height: 1.5;
}


/* ============================================================
   7. SERVICE BANDS
   Shared grid used by all three coloured bands.
   Colour overrides for Pink / Blue / Green at the bottom.
   ============================================================ */

.band {
  padding: 80px 48px;     /* adjust: band top/bottom padding */
}

.band-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Band eyebrow label */
.band-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;        /* adjust: band eyebrow size */
  text-transform: uppercase;
  letter-spacing: 3px;   /* adjust: band eyebrow tracking */
  display: block;
  margin-bottom: 12px;
}

/* Band heading — fluid: 36px → 60px */
.band-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);  /* adjust: min / vw / max */
  letter-spacing: -1.5px;              /* adjust: band heading tracking */
  line-height: 1.0;                    /* adjust: band heading line height */
  margin-bottom: 12px;
}

/* Italic sub-line below band heading */
.band-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;        /* adjust: band sub-headline size */
  font-style: italic;
  margin-bottom: 56px;    /* adjust: gap between sub and service grid */
  opacity: 0.7;
}

/* Service item grid — 2 columns */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;            /* adjust: column gap between service items */
}

.service-item {
  padding: 28px 0;        /* adjust: service item vertical padding */
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Service item title */
.service-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;        /* adjust: service name size */
  display: block;
  margin-bottom: 6px;
  line-height: 1.2;       /* adjust: service name line height */
}

/* Service item description */
.service-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;        /* adjust: service description size */
  line-height: 1.6;       /* adjust: service description line height */
  opacity: 0.75;
  display: block;
}

/* ---- 7a. Pink band ---- */
.band-pink             { background: var(--pink); color: #fff; }
.band-pink .band-label { color: rgba(255,255,255,0.55); }
.band-pink .band-sub   { color: rgba(255,255,255,0.7); }

/* ---- 7b. Blue band ---- */
.band-blue             { background: var(--blue); color: #fff; }
.band-blue .band-label { color: rgba(255,255,255,0.55); }
.band-blue .band-sub   { color: rgba(255,255,255,0.7); }

/* ---- 7c. Green band ---- */
.band-green             { background: var(--green); color: #fff; }
.band-green .band-label { color: rgba(255,255,255,0.55); }
.band-green .band-sub   { color: rgba(255,255,255,0.7); }

/* ---- 7d. Dark band ---- */
.band-dark                    { background: var(--dark); color: #fff; }
.band-dark .intro-label       { color: rgba(255,255,255,0.45); }
.band-dark .intro-heading     { color: #fff; }
.band-dark .intro-item        { border-top-color: rgba(255,255,255,0.15); }
.band-dark .intro-item-title  { color: #fff; }
.band-dark .intro-item-desc   { color: rgba(255,255,255,0.65); }


/* ============================================================
   8. REAL PROBLEMS SECTION
   White background. 2×3 grid of example blocks.
   ============================================================ */

#real-problems {
  padding: 96px 48px;     /* adjust: real problems section padding */
  background: #fff;
}

.real-problems-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.real-problems-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;        /* adjust: eyebrow size */
  text-transform: uppercase;
  letter-spacing: 3px;   /* adjust: eyebrow tracking */
  color: #999;
  display: block;
  margin-bottom: 12px;
}

.real-problems-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);  /* adjust: min / vw / max */
  letter-spacing: -1.5px;              /* adjust: heading tracking */
  line-height: 1.0;                    /* adjust: heading line height */
  color: var(--dark);
  margin-bottom: 12px;
}

.real-problems-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;        /* adjust: sub-headline size */
  font-style: italic;
  color: #555;
  margin-bottom: 64px;   /* adjust: gap between sub and first example */
}

/* 2×3 grid container — subgrid rows so body copy aligns across each pair */
.example-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;         /* adjust: row gap / column gap between cards */
}

/* Individual example block — spans 3 rows and shares them with its pair */
.example-block {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;       /* 3 children: lead / what I'd build / outcome */
  align-content: start;
  padding: 32px 28px;     /* adjust: example block internal padding */
  background: #f7f7f7;    /* adjust: card background shading */
  border-radius: 10px;    /* adjust: card corner radius */
}

/* Lead sentence — the quoted goal */
.example-lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 18px);  /* adjust: min / vw / max */
  line-height: 1.35;                     /* adjust: lead line height */
  color: var(--dark);
  margin-bottom: 16px;
  align-self: start;
}

/* Body paragraph inside each example */
.example-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;          /* adjust: example body text size */
  color: #555;
  line-height: 1.6;         /* adjust: example body line height */
  letter-spacing: -0.02em;  /* adjust: example body tracking */
  margin-bottom: 12px;
  align-self: start;
}
.example-body:last-child { margin-bottom: 0; }

/* Inline label — "What I'd build:" / "The outcome:" */
.example-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: inherit;
  color: var(--dark);
}


/* ============================================================
   9. HOW IT WORKS SECTION
   White background. Three numbered steps: large pink numeral
   left, step title + body to the right.
   ============================================================ */

#how-it-works {
  padding: 96px 48px;     /* adjust: how it works section padding */
  background: var(--green);
  color: #fff;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;        /* adjust: eyebrow size */
  text-transform: uppercase;
  letter-spacing: 3px;   /* adjust: eyebrow tracking */
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 12px;
}

.how-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);  /* adjust: min / vw / max */
  letter-spacing: -1.5px;              /* adjust: heading tracking */
  line-height: 1.0;                    /* adjust: heading line height */
  color: #fff;
  margin-bottom: 64px;   /* adjust: gap between heading and first step */
}

/* Individual step — numeral left, content right */
.step {
  display: flex;
  align-items: flex-start;
  gap: 40px;              /* adjust: gap between numeral column and text */
  padding: 40px 0;        /* adjust: step vertical padding */
  border-top: 1px solid rgba(255,255,255,0.2);
}
.step:last-child { border-bottom: 1px solid rgba(255,255,255,0.2); }

/* Large numeral */
.step-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 80px);  /* adjust: numeral size */
  line-height: 1.0;
  color: #fff;
  flex-shrink: 0;
  width: 72px;            /* fixed width keeps text column aligned */
  text-align: right;
}

.step-content {
  flex: 1;
  padding-top: 8px;
}

/* Step title */
.step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);  /* adjust: min / vw / max */
  line-height: 1.2;                       /* adjust: step title line height */
  letter-spacing: -0.5px;                 /* adjust: step title tracking */
  color: #fff;
  margin-bottom: 12px;
}

/* Step body */
.step-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;        /* adjust: step body text size */
  color: rgba(255,255,255,0.75);         /* adjust: step body opacity */
  line-height: 1.8;       /* adjust: step body line height */
  letter-spacing: -0.02em; /* adjust: step body tracking */
  max-width: 680px;
}


/* ============================================================
   10. CONTACT
   Dark (#111) background, centred layout
   ============================================================ */

#contact {
  background: var(--dark);
  padding: 64px 48px;     /* adjust: contact section padding */
  text-align: center;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;        /* adjust: eyebrow size */
  text-transform: uppercase;
  letter-spacing: 3px;   /* adjust: eyebrow tracking */
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 16px;
}

.contact-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);  /* adjust: min / vw / max */
  letter-spacing: -2px;                /* adjust: contact heading tracking */
  line-height: 1.0;                    /* adjust: contact heading line height */
  color: #fff;
  margin-bottom: 28px;
}

/* Large pink phone number */
.contact-phone-link {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);  /* adjust: min / vw / max */
  letter-spacing: -1.5px;              /* adjust: phone tracking */
  color: var(--pink);
  margin-bottom: 16px;
  transition: opacity 0.2s;
}
.contact-phone-link:hover { opacity: 0.7; }

.contact-email-link {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;        /* adjust: email link size */
  color: rgba(255,255,255,0.6);
  transition: opacity 0.2s;
}
.contact-email-link:hover { opacity: 0.9; }

.contact-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;        /* adjust: contact note size */
  color: rgba(255,255,255,0.3);
  margin-top: 28px;
}


/* ============================================================
   11. FOOTER
   Near-black strip, centred layout
   ============================================================ */

#footer {
  background: #0a0a0a;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;               /* adjust: gap between footer lines */
  text-align: center;
}

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;        /* adjust: footer brand size */
  color: #fff;
}

.footer-hours {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;        /* adjust: footer hours size */
  color: rgba(255,255,255,0.45);
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;        /* adjust: footer copyright size */
  color: rgba(255,255,255,0.25);
}


/* ============================================================
   12. WHO MODAL
   Ghost button on dark band + full-screen modal overlay
   ============================================================ */

/* Button wrapper — adds top spacing after the grid */
.who-btn-wrap {
  margin-top: 40px;       /* adjust: gap between grid and button */
}

/* Ghost outline button — white on dark background */
.who-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;        /* adjust: button text size */
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  padding: 12px 28px;     /* adjust: button padding */
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.who-btn:hover {
  border-color: #fff;
  background: #fff;
  color: var(--dark);
}

/* Modal overlay — hidden until .open is added by JS */
.who-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.who-modal-overlay.open { display: flex; }

/* Modal content box */
.who-modal-box {
  background: #fff;
  border-radius: 12px;    /* adjust: modal corner radius */
  max-width: 1300px;      /* adjust: modal max width */
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 52px 64px 68px; /* adjust: modal internal padding */
  position: relative;
}

/* Close button — top right corner */
.who-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #bbb;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.who-modal-close:hover { color: var(--dark); }

/* "G'day!" headline — spans both columns */
.who-modal-greeting {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);   /* adjust: min / vw / max */
  letter-spacing: -1.5px;               /* adjust: greeting tracking */
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 20px;
}

/* Body paragraphs */
.who-modal-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;        /* adjust: modal body text size */
  color: #444;
  line-height: 1.8;       /* adjust: modal body line height */
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.who-modal-body:last-child { margin-bottom: 0; }

/* Final line — slightly bolder for emphasis */
.who-modal-closer {
  font-weight: 500;
  color: var(--dark);
}


/* ============================================================
   13. SWIPE DOTS
   Only visible on mobile — generated by JS under .example-list
   ============================================================ */

.example-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.example-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.25s;
  flex-shrink: 0;
}

.example-dot.active { background: var(--dark); }


/* ============================================================
   14. RESPONSIVE  (breakpoint: 768px)
   ============================================================ */

@media (max-width: 768px) {

  /* Reduce horizontal padding across all major sections */
  #hero,
  .band,
  #intro,
  #real-problems,
  #how-it-works,
  #contact        { padding-left: 24px; padding-right: 24px; }
  #footer         { padding: 20px 24px; }

  /* Nav — reduce brand size and CTA to stop cramping */
  #nav            { padding: 0 20px; }
  .nav-brand      { font-size: 14px; }
  .nav-cta        { font-size: 12px; padding: 8px 14px; }

  /* Hero H1 — smaller on mobile */
  .hero-h1        { font-size: clamp(34px, 8vw, 44px); letter-spacing: -1.5px; }

  /* Stack phone button and location badge vertically */
  .hero-cta-row   { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-badge     { margin-right: 0; margin-top: 0; }

  /* Collapse 2-col grids to single column */
  .service-grid,
  .intro-grid     { grid-template-columns: 1fr; }

  /* Real problems — horizontal swipe carousel */
  .example-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
  }
  .example-list::-webkit-scrollbar { display: none; }
  .example-block {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    display: block;
  }

  /* Service name slightly smaller on mobile */
  .service-name   { font-size: 20px; }

  /* Tagline — slightly smaller and lighter on mobile */
  .hero-sub       { font-size: 18px; font-weight: 500; }

  /* Intro body — keep smaller on mobile, desktop matches intro-body-em size */
  .intro-body     { font-size: 16px; }

  /* Hero phone button */
  .hero-phone     { font-size: 22px; padding: 16px 32px; }

  /* Show swipe dots on mobile */
  .example-dots   { display: flex; }

  /* Footer already column — just tighten padding on mobile */
  #footer         { padding: 24px; }

  /* Modal: tighter padding on mobile */
  .who-modal-box  { padding: 32px 24px; }
  .who-modal-overlay { padding: 16px; }

  /* Steps: stack numeral above content on small screens */
  .step           { flex-direction: column; gap: 12px; }
  .step-number    { width: auto; text-align: left; }

  /* Jargon toggle — move up slightly on mobile so it clears the example dots */
  #jargon-toggle  { bottom: 16px; right: 16px; font-size: 11px; padding: 9px 13px; }
  #jargon-intro   { bottom: 60px; right: 16px; }

}


/* ═══════════════════════════════════════════════════════════════════
   JARGON HELPER
   Isolated feature. Do not modify rules above this banner.
   ═══════════════════════════════════════════════════════════════════ */

/* Highlighted term — no visual indicator, cursor signals interactivity */
.jargon-term {
  cursor: help;
}

/* Off state */
body.jargon-off .jargon-term {
  cursor: default;
  pointer-events: none;
}

/* ── Tooltip ── */
#jargon-tooltip {
  position: absolute;
  max-width: 320px;
  background: #fff;
  border: 2px solid #F0C000;
  border-radius: 8px;
  padding: 16px 20px;
  z-index: 201;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

#jargon-tooltip.jargon-tooltip-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Arrow pointing toward the term */
#jargon-tooltip::before {
  content: '';
  position: absolute;
  left: var(--arrow-left, 20px);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 8px solid transparent;
}

#jargon-tooltip[data-arrow="up"]::before {
  top: -8px;
  border-bottom-color: #F0C000;
  border-top: none;
}

#jargon-tooltip[data-arrow="down"]::before {
  bottom: -8px;
  border-top-color: #F0C000;
  border-bottom: none;
}

.jargon-tt-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.jargon-tt-body {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

/* ── Toggle button ── */
#jargon-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  background: var(--pink);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.01em;
  cursor: pointer;
  z-index: 300;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  line-height: 1;
}

#jargon-toggle:hover { opacity: 1; }

/* Auto-hide state — fades out after inactivity */
#jargon-toggle.jargon-toggle-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

/* Hover tip above the toggle button */
#jargon-toggle::before {
  content: "Hover over — or tap on mobile — any word you don't understand for a plain-English explanation. If this is annoying, just turn me off here!";
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 230px;
  background: var(--dark);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  padding: 10px 14px;
  white-space: normal;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

#jargon-toggle:hover::before { opacity: 1; }

/* ── First-visit intro tooltip ── */
#jargon-intro {
  position: fixed;
  bottom: 70px;
  right: 24px;
  background: var(--dark);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  padding: 10px 14px;
  max-width: 220px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#jargon-intro.jargon-intro-visible { opacity: 1; }
#jargon-intro.jargon-intro-hide    { opacity: 0; }


/* ============================================================
   15. CHAT MODAL
   Fixed overlay + chat bubble UI + contact section overrides
   ============================================================ */

/* ── Button resets for <a> → <button> conversions ── */
button.nav-cta,
button.hero-phone,
button.contact-cta-btn {
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
}

/* ── Contact section overrides ── */
.contact-cta-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -0.5px;
  color: #fff;
  background: var(--pink);
  padding: 18px 44px;
  border-radius: 10px;
  margin-bottom: 24px;
  transition: opacity 0.2s, transform 0.2s;
}
.contact-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.contact-fallback {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.contact-fallback a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-fallback a:hover { color: rgba(255,255,255,0.85); }

/* ── Overlay backdrop ── */
#chat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#chat-overlay.chat-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Modal box — desktop centred ── */
#chat-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  width: 560px;
  max-width: calc(100vw - 24px);
  max-height: 80vh;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  z-index: 401;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
#chat-modal.chat-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile: full-width sheet slides up from bottom */
@media (max-width: 600px) {
  #chat-modal {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    max-height: 90dvh;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
    /* Override the desktop centering transform — slide up from fully off-screen */
    transform: translateY(100%);
  }
  #chat-modal.chat-open {
    transform: translateY(0);
  }
}

/* ── Header ── */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.chat-header-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: var(--dark);
}
.chat-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #bbb;
  padding: 2px 6px;
  line-height: 1;
  transition: color 0.15s;
}
.chat-close:hover { color: var(--dark); }

/* ── Message area ── */
.chat-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Bubble entrance animation ── */
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Bubbles ── */
.chat-bubble {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  word-break: break-word;
  animation: bubble-in 0.2s ease both;
}
.chat-bubble-chris {
  background: #f3f3f3;
  color: var(--dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble-user {
  background: var(--pink);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-bubble-spinner {
  background: #f3f3f3;
  color: #999;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  font-style: italic;
}

/* ── Typing indicator ── */
.chat-bubble-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 16px 20px;
}
.chat-bubble-typing span {
  width: 7px;
  height: 7px;
  background: #bbb;
  border-radius: 50%;
  animation: typing-dot 1.2s infinite ease-in-out;
}
.chat-bubble-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-bubble-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.35; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

/* ── Option buttons ── */
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 20px 12px;
}
.chat-option-btn {
  background: #fff;
  border: 2px solid var(--pink);
  color: var(--pink);
  padding: 9px 18px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  animation: bubble-in 0.2s ease both;
}
.chat-option-btn:hover { background: var(--pink); color: #fff; }

/* ── Text input row ── */
.chat-input-row {
  display: flex;
  gap: 10px;
  padding: 10px 20px 18px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}
.chat-input-row.chat-input-hidden { display: none; }
.chat-text-input {
  flex: 1;
  border: 2px solid #eee;
  border-radius: 100px;
  padding: 11px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  letter-spacing: -0.02em;
  outline: none;
  transition: border-color 0.15s;
  min-width: 0;
}
.chat-text-input:focus { border-color: var(--pink); }
.chat-text-input.chat-input-error { border-color: #d33; }
.chat-send-btn {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 11px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.chat-send-btn:hover { opacity: 0.88; }
.chat-send-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── Honeypot — invisible to real users ── */
.chat-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
