/* ==========================================================================
   GrowthBridge Automation Advisors LLC
   Stylesheet — hand-built, no framework, no build step.

   HOW TO CHANGE COLORS: edit the variables in :root below. Everything on the
   site pulls from these, so changing one value updates the whole site.
   ========================================================================== */

:root {
  /* ---- Brand colors ---- */
  --bg:          #FBF9F4;   /* page background (warm cream) */
  --ink:         #14241D;   /* main text (near-black green) */
  --muted:       #61705F;   /* secondary text */
  --line:        #E7E1D5;   /* borders & dividers */
  --card:        #FFFFFF;   /* card backgrounds */

  --green-900:   #12301F;   /* dark panels */
  --green-700:   #1B4332;
  --green-500:   #3A7D52;   /* logo accent, checkmarks */
  --green-50:    #EFF4EE;

  --gold:        #DCA62B;   /* primary call-to-action */
  --gold-dark:   #BC8A18;
  --gold-50:     #FBF2DC;

  /* ---- Type ---- */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* ---- Layout ---- */
  --wrap: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(20, 36, 29, .07);
  --shadow-lg: 0 18px 50px rgba(20, 36, 29, .13);
}

/* ---- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
/* scroll-padding-top must equal the sticky header's height, or an anchor jump
   leaves a strip of the previous section peeking above the target. js/main.js
   overwrites this with the measured height; 86px is the desktop fallback. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }small { font-size: .82em; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.05rem); }
h3 { font-size: 1.32rem; }
p  { margin: 0 0 1.1em; }

.wrap { width: min(var(--wrap), 100% - 3rem); margin-inline: auto; }
section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ---- Reusable bits --------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex: none;
}
.lede { font-size: 1.12rem; color: var(--muted); max-width: 56ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.accent { color: var(--gold); font-style: italic; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold   { background: var(--gold); color: #211803; box-shadow: 0 6px 18px rgba(220,166,43,.34); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-ghost  { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark   { background: var(--green-900); color: #fff; }
.btn-block  { width: 100%; }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
}

/* ---- Announcement bar ------------------------------------------------ */
.promo {
  background: var(--green-900); color: #E8EFE9;
  font-size: .87rem; padding: .6rem 0;
}
.promo .wrap { display: flex; gap: 1rem; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.promo strong { color: var(--gold); }
.promo a { text-decoration: none; white-space: nowrap; }
.promo .dot { color: var(--gold); }

/* ---- Header ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,249,244,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.stuck { border-color: var(--line); box-shadow: 0 2px 16px rgba(20,36,29,.05); }
.nav { display: flex; align-items: center; gap: 2rem; padding: .85rem 0; }

.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: var(--green-700);
  display: grid; place-items: center;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { line-height: 1.05; }
.logo-name { display: block; font-family: var(--serif); font-weight: 700; font-size: 1.3rem; }
.logo-name span { color: var(--green-500); }
.logo-sub {
  display: block; white-space: nowrap;
  font-size: .58rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

.nav-links { display: flex; gap: 1.35rem; margin-inline: auto; }
.nav-links a { text-decoration: none; font-size: .94rem; font-weight: 500; color: var(--ink); white-space: nowrap; }
.nav-links a:hover { color: var(--green-500); }

.nav-right { display: flex; align-items: center; gap: 1.1rem; flex: none; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav-phone svg { width: 16px; height: 16px; color: var(--green-500); }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; }

/* Compact phone-only call button. Hidden on desktop, where .nav-book shows. */
.nav-call { display: none; }

/* ---- Hero ------------------------------------------------------------ */
.hero { padding-top: clamp(3rem, 6vw, 5rem); }
/* The gap must stay wider than the phone's leftward overhang, or the phone
   drifts over the headline text. If you move the phone, re-check this. */
.hero-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 5rem; align-items: center; }
.hero .lede { max-width: 46ch; }
.pill {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem 1.1rem .5rem .6rem;
  font-size: .88rem; font-weight: 600; box-shadow: var(--shadow);
  margin-bottom: 1.6rem;
}
.avatars { display: flex; }
.avatars span {
  width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center;
  font-size: .64rem; font-weight: 700; color: #fff; border: 2px solid var(--card);
  margin-right: -9px; background: var(--green-500);
}
.avatars span:nth-child(2) { background: var(--gold); color: #211803; }
.avatars span:nth-child(3) { background: var(--green-900); }

.hero h1 .underline {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 5px; background-repeat: no-repeat; background-position: 0 100%;
  padding-bottom: 4px;
}
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin: 2rem 0 1.6rem; }
.trust-row { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: .89rem; color: var(--muted); font-weight: 500; }
.trust-row span { display: inline-flex; align-items: center; gap: .4rem; }
.trust-row svg { width: 15px; height: 15px; color: var(--green-500); flex: none; }

/* ---- CSS browser mockup (no images needed) --------------------------- */
.mock-wrap { position: relative; }
.browser {
  background: var(--card); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.browser-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem .9rem; background: #F4F1EA; border-bottom: 1px solid var(--line);
}
.browser-dots { display: flex; gap: .35rem; }
.browser-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.browser-dots i:nth-child(1) { background: #F0655A; }
.browser-dots i:nth-child(2) { background: #F5BD4F; }
.browser-dots i:nth-child(3) { background: #61C554; }
.browser-url {
  flex: 1; background: #fff; border-radius: 999px; padding: .3rem .8rem;
  font-size: .74rem; color: var(--muted); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.browser-url::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }

.demo-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.1rem; font-size: .76rem; border-bottom: 1px solid var(--line);
}
.demo-brand { font-family: var(--serif); font-weight: 700; font-size: .95rem; }
.demo-links { display: flex; gap: .9rem; color: var(--muted); }
.demo-btn { background: var(--green-900); color: #fff; padding: .25rem .7rem; border-radius: 999px; font-size: .68rem; }

/* The "photo" area. Drop images/restaurant.jpg in and it takes over
   automatically; without it you get a warm restaurant-ish CSS scene. */
.demo-hero {
  height: 210px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 1.2rem;
  background:
    radial-gradient(90% 70% at 68% 8%, rgba(255,196,92,.45), transparent 62%),
    radial-gradient(60% 50% at 18% 92%, rgba(220,166,43,.18), transparent 70%),
    linear-gradient(168deg, #2E4A38 0%, #1B2E23 45%, #0C1610 100%);
  color: #fff;
}
/* suggestion of pendant lights + booth seating, so it reads as a room */
.demo-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 22% 14%, rgba(255,203,112,.55) 0 5px, transparent 6px),
    radial-gradient(circle at 38% 9%,  rgba(255,203,112,.42) 0 4px, transparent 5px),
    radial-gradient(circle at 55% 15%, rgba(255,203,112,.50) 0 5px, transparent 6px),
    radial-gradient(ellipse 46% 22% at 30% 88%, rgba(0,0,0,.5), transparent 70%),
    radial-gradient(ellipse 40% 20% at 78% 92%, rgba(0,0,0,.45), transparent 70%);
}
.demo-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
}
.demo-hero .photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.demo-hero .scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(6,14,10,.94) 0%, rgba(6,14,10,.80) 28%,
    rgba(6,14,10,.45) 55%, rgba(6,14,10,.10) 100%);
}
/* The phone mockup sits over the bottom-left of the browser mockup, so the
   demo restaurant's headline is indented past it. If you move .phone, re-check
   this padding at 1440 / 1000 / 780px. */
.demo-hero-txt { position: relative; z-index: 3; padding-left: 150px; }
.demo-kicker { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; opacity: .78; }
.demo-title { font-family: var(--serif); font-size: 1.35rem; line-height: 1.15; margin-top: .3rem; }
.demo-tabs { display: flex; gap: .5rem; padding: .9rem 1.1rem; }
.demo-tabs div {
  flex: 1; border: 1px solid var(--line); border-radius: 9px;
  padding: .6rem; text-align: center; font-size: .68rem; color: var(--muted);
}

/* floating chips around the mockup */
.chip {
  position: absolute; background: var(--card); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: .6rem .85rem; font-size: .74rem;
  display: flex; align-items: center; gap: .5rem; z-index: 2; border: 1px solid var(--line);
}
.chip-rating { top: 8%; right: -4%; }
.chip-rating .star { color: var(--gold); }
.chip-rating b { display: block; font-size: .8rem; }
.chip-rating small { color: var(--muted); }
.chip-live {
  top: 34%; left: -7%; background: var(--green-900); color: #fff;
  border-color: var(--green-900); font-weight: 600;
}

/* "New booking request" toast — the payoff of the whole graphic */
.chip-booking { bottom: -4%; right: -2%; gap: .7rem; padding: .7rem 1rem; }
.chip-booking .bell {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--green-50); display: grid; place-items: center;
}
.chip-booking .bell svg { width: 15px; height: 15px; color: var(--green-500); }
.chip-booking b { display: block; font-size: .82rem; }
.chip-booking small { color: var(--muted); display: flex; align-items: center; gap: .25rem; }
.chip-booking small svg { width: 11px; height: 11px; }

/* ---- Phone mockup (the "works on mobile too" half) ------------------- */
.phone {
  position: absolute; z-index: 3;
  left: -4%; bottom: -13%;
  width: 162px;
  background: var(--green-900);
  border-radius: 22px; padding: 7px;
  box-shadow: 0 22px 45px rgba(12,22,16,.38);
  transform: rotate(-6deg);
}
.phone-screen { background: #fff; border-radius: 16px; overflow: hidden; }
.phone-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem .6rem .35rem;
}
.phone-brand { font-family: var(--serif); font-weight: 700; font-size: .72rem; }
.phone-burger { display: grid; gap: 2px; }
.phone-burger i { display: block; width: 11px; height: 1.5px; background: var(--ink); border-radius: 2px; }
.phone-photo {
  height: 92px; position: relative; overflow: hidden;
  background:
    radial-gradient(80% 60% at 60% 10%, rgba(255,196,92,.42), transparent 60%),
    linear-gradient(168deg, #2E4A38, #101E16);
}
.phone-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 28% 18%, rgba(255,203,112,.5) 0 3px, transparent 4px),
    radial-gradient(circle at 62% 13%, rgba(255,203,112,.45) 0 3px, transparent 4px),
    radial-gradient(ellipse 50% 24% at 40% 90%, rgba(0,0,0,.5), transparent 70%);
}
.phone-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone-body { padding: .6rem; }
.phone-line { height: 5px; border-radius: 3px; background: #E8E4DA; margin-bottom: .32rem; }
.phone-line.w80 { width: 80%; }
.phone-line.w55 { width: 55%; }
.phone-cta {
  margin-top: .55rem; background: var(--gold); color: #211803;
  border-radius: 999px; text-align: center;
  font-size: .62rem; font-weight: 800; padding: .38rem;
}

/* ---- Marquee --------------------------------------------------------- */
.marquee-section { padding: 2.5rem 0 3.5rem; }
.marquee-label {
  text-align: center; font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 1.5rem;
}
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: .8rem; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1.25rem; font-size: .92rem; font-weight: 600; white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- Two-column feature block --------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.quote-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.15rem 1.35rem; margin-bottom: .85rem;
}
.quote-card p { margin: 0 0 .35rem; font-size: 1.02rem; }
.quote-card cite { font-style: normal; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

/* Google-search mockup */
.serp { background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; }
.serp-bar { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); }
.serp-bar svg { width: 17px; height: 17px; color: var(--muted); flex: none; }
.serp-q { flex: 1; font-size: .95rem; }
.serp-loc { font-size: .76rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.serp-row { display: flex; gap: .9rem; padding: 1.1rem 1.2rem; align-items: flex-start; }
.serp-row + .serp-row { border-top: 1px solid var(--line); }
.serp-dim { opacity: .5; }
.serp-icon { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.serp-icon.x { color: var(--muted); }
.serp-icon.win { background: var(--green-700); color: #fff; }
.serp-icon svg { width: 17px; height: 17px; }
.serp-name { font-weight: 700; font-size: 1rem; }
.serp-meta { font-size: .82rem; color: var(--muted); }
.serp-tags { display: flex; gap: .4rem; margin-top: .55rem; flex-wrap: wrap; }
.serp-tags span { border: 1px solid var(--line); border-radius: 999px; padding: .2rem .7rem; font-size: .74rem; }
.serp-badge {
  margin-left: auto; background: var(--green-500); color: #fff; font-size: .6rem;
  font-weight: 800; letter-spacing: .1em; padding: .25rem .6rem; border-radius: 5px; white-space: nowrap;
}
.serp-stars { color: var(--gold); font-size: .82rem; }

/* ---- Founder --------------------------------------------------------- */
.founder { background: var(--green-50); }
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3.5rem; align-items: center; }
.founder-photo { position: relative; }
/* The frame shows a designed placeholder until images/melvin-haynes.jpg exists,
   so the section never looks broken. Drop the photo in and it takes over. */
.photo-frame {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #24402F 0%, #14251C 60%, #0D1A13 100%);
  display: grid; place-items: center; text-align: center; padding: 1.5rem;
}
/* Circular portrait sits inside the frame at its natural size — sharp, not stretched.
   Swap for a full-bleed <img> if you ever get a high-resolution original. */
.photo-frame .avatar {
  width: 184px; height: 184px; border-radius: 50%;
  border: 3px solid rgba(220,166,43,.55);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  object-fit: cover; position: relative; z-index: 1;
}
.photo-nameplate { position: relative; z-index: 1; margin-top: 1.3rem; color: #EDF3EE; }
.photo-nameplate b { display: block; font-family: var(--serif); font-size: 1.35rem; }
.photo-nameplate span {
  display: block; font-size: .64rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-top: .3rem;
}
.photo-frame::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
}
.founder-badges { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.2rem; }
.founder-badges span {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .9rem; font-weight: 600;
}
.founder-badges svg { width: 16px; height: 16px; color: var(--green-500); flex: none; }
.pullquote {
  border-left: 3px solid var(--gold); padding: .3rem 0 .3rem 1.3rem;
  font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.5;
  margin: 1.8rem 0;
}
.pullquote cite { display: block; font-family: var(--sans); font-style: normal; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: .7rem; }

/* ---- Comparison ------------------------------------------------------ */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.compare > div { display: flex; flex-direction: column; }
.compare h3 { margin-bottom: .2rem; }
.compare .sub { font-size: .88rem; color: var(--muted); margin-bottom: 1.4rem; }
.compare ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.compare li { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; }
.compare li svg { width: 17px; height: 17px; flex: none; margin-top: .25rem; }
.compare .ico-x { color: #B9483C; }
.icon-badge { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 1.1rem; }
.icon-badge svg { width: 21px; height: 21px; }
.compare-neutral .icon-badge { background: var(--green-50); color: var(--green-700); }
.compare-best {
  background: var(--green-900); color: #EDF3EE; position: relative;
  border-color: var(--green-900);
}
.compare-best h3, .compare-best .sub { color: #fff; }
.compare-best .sub { opacity: .8; }
.compare-best .icon-badge { background: rgba(220,166,43,.2); color: var(--gold); }
.compare-best li svg { color: #7CC496; }
.compare-best .btn { margin-top: auto; }
.tag-best {
  position: absolute; top: -13px; left: 2rem;
  background: var(--gold); color: #211803; font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; padding: .3rem .8rem; border-radius: 6px;
}

/* ---- With / Without -------------------------------------------------- */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.vs ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.vs li { display: flex; gap: .65rem; align-items: center; font-size: .96rem; }
.vs li svg { width: 16px; height: 16px; flex: none; }
.vs-good { background: var(--green-900); color: #EDF3EE; border-color: var(--green-900); }
.vs-good h3 { color: #fff; }
.vs-good li svg { color: #7CC496; }
.vs-bad li svg { color: #B9483C; }

/* ---- Feature grid ---------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.feature .icon-badge { background: var(--gold-50); color: var(--gold-dark); }
.feature h3 { font-size: 1.18rem; }
.feature p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---- Steps ----------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.step { position: relative; }
.step-num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--gold);
  line-height: 1; margin-bottom: .5rem;
}
.step-time {
  font-size: .62rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 800; color: var(--green-500); margin-bottom: .5rem;
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---- Pricing --------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.plan { display: flex; flex-direction: column; position: relative; }
.plan-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.plan-tag { font-size: .92rem; color: var(--muted); margin-bottom: 1.3rem; }
.plan-price { display: flex; align-items: baseline; gap: .4rem; }
.plan-price b { font-family: var(--serif); font-size: 3rem; font-weight: 600; line-height: 1; }
.plan-price span { color: var(--muted); font-size: .9rem; }
.plan-mo { font-size: .92rem; color: var(--muted); margin: .5rem 0 1.2rem; }
.plan-meta {
  font-size: .85rem; color: var(--muted); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); padding: .85rem 0; margin-bottom: 1.2rem;
}
.plan-meta b { color: var(--ink); }
.plan ul { list-style: none; margin: 0 0 1.7rem; padding: 0; display: grid; gap: .6rem; }
.plan li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; }
.plan li svg { width: 16px; height: 16px; color: var(--green-500); flex: none; margin-top: .3rem; }
.plan li.head { font-weight: 700; }
.plan .btn { margin-top: auto; }
.plan-featured {
  background: var(--green-900); color: #EDF3EE; border-color: var(--green-900);
  box-shadow: var(--shadow-lg);
}
.plan-featured .plan-name, .plan-featured .plan-price b { color: #fff; }
.plan-featured .plan-tag, .plan-featured .plan-price span, .plan-featured .plan-mo, .plan-featured .plan-meta { color: rgba(237,243,238,.72); }
.plan-featured .plan-meta { border-color: rgba(255,255,255,.16); }
.plan-featured .plan-meta b { color: #fff; }
.pricing-note { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; font-size: .9rem; color: var(--muted); }
.pricing-note span { display: inline-flex; align-items: center; gap: .45rem; }
.pricing-note svg { width: 15px; height: 15px; color: var(--green-500); }

/* ---- Industries ------------------------------------------------------ */
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.industries div {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem; font-weight: 600; font-size: .96rem;
  display: flex; align-items: center; gap: .6rem;
}
.industries svg { width: 16px; height: 16px; color: var(--green-500); flex: none; }

/* ---- Showcase (dark section, browser-framed cards) -------------------- */
.showcase-section { background: var(--green-900); color: rgba(237,243,238,.8); }
.showcase-section h2 { color: #EFDCAE; }
.showcase-section .lede { color: rgba(237,243,238,.72); }
.showcase-section .eyebrow { color: rgba(237,243,238,.65); }
.showcase-note { color: rgba(237,243,238,.6); font-size: .95rem; }

.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.shot {
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

/* mini browser chrome */
.shot-chrome { display: flex; align-items: center; gap: .7rem; padding: .75rem .9rem; }
.shot-dots { display: flex; gap: .3rem; }
.shot-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.28); display: block; }
.shot-url {
  background: rgba(255,255,255,.1); border-radius: 999px;
  padding: .25rem .85rem; font-size: .72rem; color: rgba(237,243,238,.75);
}

/* photo area — drop images/<name>.jpg in and it takes over */
.shot-media {
  position: relative; height: 290px; overflow: hidden;
  background: linear-gradient(160deg, #2A4633, #101E16);
}
.shot-2 .shot-media { background: linear-gradient(160deg, #4A3350, #1B1220); }
.shot-3 .shot-media { background: linear-gradient(160deg, #1F4152, #0C1C24); }
.shot-media::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 16%, rgba(255,203,112,.34) 0 5px, transparent 6px),
    radial-gradient(circle at 58% 11%, rgba(255,203,112,.28) 0 4px, transparent 5px),
    radial-gradient(ellipse 52% 24% at 38% 88%, rgba(0,0,0,.45), transparent 70%);
}
.shot-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shot-media .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,10,.9) 0%, rgba(6,14,10,.25) 50%, rgba(6,14,10,.05) 100%);
}

.shot-badge {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: rgba(8,18,12,.72); color: #fff;
  font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: .38rem .75rem; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.14);
}
.shot-caption { position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 2; }
.shot-name { font-family: var(--serif); font-size: 1.42rem; color: #fff; line-height: 1.15; }
.shot-stars { color: var(--gold); font-size: .95rem; letter-spacing: .1em; margin-top: .3rem; }
.shot-cta {
  position: absolute; right: 1.1rem; bottom: 1.1rem; z-index: 2;
  background: var(--gold); color: #211803;
  font-size: .72rem; font-weight: 800; line-height: 1.25;
  padding: .55rem .95rem; border-radius: 999px; text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
}

/* ---- Add-ons --------------------------------------------------------- */
.addon .price { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-dark); display: block; margin-bottom: .4rem; }
.addon h3 { font-size: 1.08rem; }
.addon p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---- Guarantee ------------------------------------------------------- */
.guarantee { background: var(--green-900); color: #EDF3EE; }
.guarantee h2 { color: #fff; }
.guarantee .lede { color: rgba(237,243,238,.78); }
.guarantee-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3.5rem; align-items: center; }
.seal {
  width: 190px; height: 190px; border-radius: 50%; margin-inline: auto;
  border: 2px dashed rgba(220,166,43,.5);
  display: grid; place-items: center; text-align: center; padding: 1.5rem;
}
.seal b { font-family: var(--serif); font-size: 2.9rem; color: var(--gold); line-height: 1; display: block; }
.seal span { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.guarantee ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .9rem; }
.guarantee li { display: flex; gap: .75rem; align-items: flex-start; font-size: 1.02rem; }
.guarantee li svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: .25rem; }

/* ---- FAQ ------------------------------------------------------------- */
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3.5rem; align-items: start; }
.faq-contact { display: grid; gap: 1rem; margin-top: 1.6rem; }
.faq-contact a {
  display: flex; align-items: center; gap: .8rem; text-decoration: none;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.2rem;
}
.faq-contact svg { width: 19px; height: 19px; color: var(--green-500); flex: none; }
.faq-contact small { display: block; font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.faq-contact b { font-size: 1rem; }
/* The email address is one long unbreakable word. Without this it sets the
   minimum width of the whole grid column and pushes the page sideways on a
   phone. Same reason for the min-width:0 below. */
.faq-contact span { min-width: 0; overflow-wrap: anywhere; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-size: 1.06rem; font-weight: 600; color: var(--ink);
}
.faq-q .ico { width: 22px; height: 22px; flex: none; position: relative; }
.faq-q .ico::before, .faq-q .ico::after {
  content: ""; position: absolute; background: var(--green-500);
  left: 50%; top: 50%; transform: translate(-50%,-50%); transition: opacity .2s, transform .25s;
}
.faq-q .ico::before { width: 14px; height: 2px; }
.faq-q .ico::after  { width: 2px; height: 14px; }
.faq-item[open] .faq-q .ico::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-a { padding: 0 0 1.35rem; color: var(--muted); max-width: 65ch; }
.faq-a p { margin: 0; }

/* ---- Contact --------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem; align-items: start; }
.contact-list { display: grid; gap: 1.4rem; margin-top: 2rem; }
.contact-list div { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { width: 18px; height: 18px; color: var(--green-500); flex: none; margin-top: .3rem; }
.contact-list small { display: block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-list b { font-size: 1.02rem; font-weight: 600; }
.contact-list a { text-decoration: none; }
/* Same long-email problem as .faq-contact — let it wrap instead of widening
   the page. The flex child needs min-width:0 or it refuses to shrink. */
.contact-list div > span, .contact-list div > a { min-width: 0; overflow-wrap: anywhere; }
.checklist { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .6rem; align-items: center; font-size: .97rem; }
.checklist svg { width: 16px; height: 16px; color: var(--green-500); flex: none; }

form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: .4rem; }
.field label .req { color: #B9483C; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .97rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px;
  padding: .8rem .9rem;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); background: #fff;
  box-shadow: 0 0 0 3px rgba(58,125,82,.13);
}
.form-note { font-size: .84rem; color: var(--muted); text-align: center; margin: 1rem 0 0; }
.form-alert { border-radius: 10px; padding: .85rem 1rem; font-size: .92rem; margin-bottom: 1.2rem; }
.form-alert.err { background: #FBEAE8; border: 1px solid #E7C0BA; color: #8A2F24; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Footer ---------------------------------------------------------- */
.site-footer { background: var(--green-900); color: rgba(237,243,238,.72); padding: 3.5rem 0 2rem; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer .logo-name { color: #fff; }
.site-footer .logo-sub { color: rgba(237,243,238,.55); }
.site-footer h4 { font-family: var(--sans); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem;
}
.footer-bottom nav { display: flex; gap: 1.4rem; }

/* Footer call-to-action + social icons */
.footer-cta { margin: 1.6rem 0 1.4rem; }
.footer-cta svg { width: 17px; height: 17px; }
.socials { display: flex; gap: .7rem; }
.social {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.22); color: rgba(237,243,238,.85);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.social svg { width: 18px; height: 18px; }
.social:hover { border-color: var(--gold); color: var(--gold); background: rgba(220,166,43,.08); }

/* Contact strip above the copyright line */
.footer-contact {
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.5rem; padding-top: 1.5rem; font-size: .9rem;
}
.footer-contact a, .footer-contact span {
  display: inline-flex; align-items: center; gap: .55rem;
  text-decoration: none; min-width: 0; overflow-wrap: anywhere;
}
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.footer-contact em { margin-left: auto; font-style: normal; color: rgba(237,243,238,.55); }
/* The contact strip already draws the divider, so the copyright row must not
   draw a second one right under it. */
.footer-contact + .footer-bottom { border-top: 0; margin-top: 1.2rem; padding-top: 0; }

/* ---- Legal / simple pages ------------------------------------------- */
.legal { max-width: 780px; margin-inline: auto; }
.legal h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
.legal h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.8rem; }
.legal .updated { color: var(--muted); font-size: .92rem; margin-bottom: 2.5rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: .7rem .9rem; text-align: left; }
.legal th { background: var(--green-50); font-weight: 700; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .5rem; }
.callout { background: var(--gold-50); border-left: 3px solid var(--gold); padding: 1.1rem 1.3rem; border-radius: 0 10px 10px 0; margin: 1.5rem 0; }
.callout p:last-child { margin-bottom: 0; }

.thanks { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.thanks .tick {
  width: 78px; height: 78px; border-radius: 50%; background: var(--green-50);
  display: grid; place-items: center; margin: 0 auto 1.6rem;
}
.thanks .tick svg { width: 36px; height: 36px; color: var(--green-500); }

/* ---- Responsive ------------------------------------------------------ */
/* Between roughly 1000px and 1120px — iPad landscape, small laptops — the full
   desktop header (logo + six links + phone number + button) is wider than the
   content column, and it was pushing the page sideways. Dropping the phone
   number here is the least-missed item: it is still in the top bar, the hero
   and the footer. */
@media (min-width: 901px) and (max-width: 1120px) {
  .nav-phone { display: none; }
  .nav { gap: 1.25rem; }
  .nav-links { gap: 1rem; }
}
@media (max-width: 1000px) {
  .hero-grid, .split, .founder-grid, .guarantee-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .compare, .grid-3, .pricing, .showcase { grid-template-columns: 1fr; }
  .grid-4, .industries { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .chip-rating { right: 2%; }
  .chip-live { left: 2%; }
  .phone { left: 0; bottom: -8%; width: 140px; }
  .demo-hero-txt { padding-left: 150px; }
  .chip-booking { right: 0; bottom: -2%; }
  .founder-photo { max-width: 340px; margin-inline: auto; }
}
/* ---- Collapsed navigation -------------------------------------------
   The six-link desktop nav plus the logo plus the button stops fitting well
   before phone size — around 900px it starts crowding. Everything below that
   gets the hamburger and the compact Call button. This is deliberately a
   separate breakpoint from the 780px layout rules below, because the nav
   needs to collapse earlier than the page needs to go single-column. */
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  /* The full "Book a free call" pill does not fit beside the hamburger on a
     phone — it was pushing the whole page sideways. Swap in the compact one. */
  .nav-book { display: none; }
  .nav-call {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--gold); color: #211803;
    font-weight: 700; font-size: .92rem; text-decoration: none;
    padding: .6rem 1.05rem; border-radius: 999px;
    box-shadow: 0 4px 12px rgba(220,166,43,.3);
  }
  .nav-call svg { width: 16px; height: 16px; }
  .nav-right { gap: .5rem; margin-left: auto; }
  .nav-toggle { display: block; }
  .nav { gap: .75rem; }
  .site-header.open .nav-links {
    display: grid; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 1.2rem 1.5rem 1.6rem; gap: .3rem; margin: 0;
  }
  .site-header.open .nav-links a { padding: .55rem 0; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .wrap { width: min(var(--wrap), 100% - 2.2rem); }
  .vs, .row, .grid-4 { grid-template-columns: 1fr; }
  /* Twelve industries one-per-row made this section ~12 screens of scrolling.
     Two-up halves it and the labels still fit on one line at 360px. */
  .industries { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .industries li, .industries div { font-size: .88rem; padding: .75rem .8rem; }
  .steps { grid-template-columns: 1fr; }
  /* Brand block full width, then the three link lists two-up. One-per-row
     made the footer roughly twice as tall as it needed to be on a phone. */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.25rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-cta { width: 100%; }
  .footer-contact { gap: .8rem 1.4rem; }
  .footer-contact em { margin-left: 0; flex-basis: 100%; }
  /* Footer links are pure text, so their tap targets were ~17px tall. Apple
     and Google both call for ~44px. Padding buys that without moving text. */
  .site-footer ul a, .footer-bottom nav a { display: inline-block; padding: .45rem 0; }
  .footer-contact a { padding: .35rem 0; }
  form .row { grid-template-columns: 1fr; }
  .promo .wrap { justify-content: center; font-size: .8rem; }
  .promo a { display: none; }
  .hero-cta .btn { width: 100%; }
  /* on a narrow phone the mockup collage gets cramped — simplify it */
  .phone { width: 118px; left: -2%; bottom: -6%; }
  /* At this width the demo browser's nav row is short enough that the rating
     chip sat on top of it. Drop the chip onto the photo instead, where a white
     card on a dark image reads cleanly. */
  .chip-rating { top: 26%; right: 1%; }
  .demo-hero-txt { padding-left: 120px; }
  .chip-booking { display: none; }
  .mock-wrap { margin-bottom: 2rem; }
}

/* Small Androids and the iPhone SE sit at 360px or less. Down here the logo's
   "AUTOMATION ADVISORS" line is the single widest thing in the header — it
   cannot wrap, so it was propping the page open. The brand still reads fine
   without it at this size. */
@media (max-width: 400px) {
  .logo-sub { display: none; }
  .logo-name { font-size: 1.18rem; }
  .nav-call { padding: .55rem .9rem; font-size: .88rem; }
  .industries > * { min-width: 0; }
  .logo-mark { width: 36px; height: 36px; border-radius: 9px; }
  .logo-mark svg { width: 20px; height: 20px; }
  .logo { gap: .55rem; }
}
