/* =========================================================
   Boost Websites — reimagined landing page
   Palette: warm paper + ink, vivid "boost" orange, deep forest green
   Type:    Fraunces (editorial display) + Inter (UI/body)
   ========================================================= */

:root {
  /* Colour */
  --ink:        #15140f;
  --ink-soft:   #2c2a22;
  --paper:      #f8f5ef;
  --cream-card: #fffdf8;
  --line:       #e6dfd1;
  --muted:      #6b6657;
  --muted-soft: #8c8676;

  --boost:      #ff5a1f;           /* vivid orange */
  --boost-deep: #e8480f;
  --boost-soft: #ffece3;
  --forest:     #143c32;           /* deep green */
  --forest-2:   #1c4e41;
  --forest-soft:#dceae3;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape & motion */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(21,20,15,.06), 0 4px 14px rgba(21,20,15,.05);
  --shadow-md: 0 10px 30px rgba(21,20,15,.10), 0 2px 8px rgba(21,20,15,.06);
  --shadow-lg: 0 30px 70px rgba(21,20,15,.18), 0 8px 24px rgba(21,20,15,.10);
  --ease: cubic-bezier(.22,.61,.36,1);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--boost); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Reusable type ---------- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--boost-deep);
  margin-bottom: 1.1rem;
}
.eyebrow--dark { color: var(--boost-deep); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section__head { max-width: 660px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.015em;
}
.section__sub { margin-top: 1.1rem; color: var(--muted); font-size: 1.075rem; }
.section__sub a { color: var(--boost-deep); font-weight: 600; border-bottom: 1px solid transparent; }
.section__sub a:hover { border-color: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-weight: 600; font-size: .98rem;
  padding: .85em 1.5em;
  border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--boost); --btn-fg: #fff; box-shadow: 0 6px 18px rgba(255,90,31,.32); }
.btn--primary:hover { --btn-bg: var(--boost-deep); box-shadow: 0 12px 28px rgba(255,90,31,.42); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn--sm { padding: .65em 1.15em; font-size: .9rem; }
.btn--lg { padding: 1em 1.8em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* =========================================================
   Announcement bar
   ========================================================= */
.announce {
  background: var(--forest);
  color: #eaf3ee;
  font-size: .85rem;
  text-align: center;
  padding: .55rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
}
.announce strong { color: #fff; }
.announce__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--boost);
  box-shadow: 0 0 0 0 rgba(255,90,31,.6); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,31,.5); }
  70% { box-shadow: 0 0 0 7px rgba(255,90,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,31,0); }
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(248,245,239,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.brand__mark { color: var(--boost); display: inline-flex; transition: transform .4s var(--ease); }
.brand:hover .brand__mark { transform: rotate(72deg); }
.brand__text-light { color: var(--muted); font-weight: 600; }

.nav { display: flex; gap: 1.9rem; margin-left: auto; }
.nav a { font-size: .96rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: .3rem 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--boost); transition: width .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: 1.1rem; }
.link-phone { font-weight: 600; font-size: .95rem; color: var(--ink); white-space: nowrap; }
.link-phone:hover { color: var(--boost-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 auto 0; top: calc(72px + 34px);
  background: var(--paper); z-index: 49;
  display: flex; flex-direction: column; gap: .25rem;
  padding: 1rem var(--pad) 1.6rem;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: .85rem .25rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border: none; margin-top: .75rem; }
.mobile-menu .btn { color: #fff; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero__glow {
  position: absolute; top: -20%; right: -10%; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, rgba(255,90,31,.16), rgba(255,90,31,0) 62%);
  pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.022em;
}
.hero__title em {
  font-style: italic; font-weight: 500; color: var(--boost-deep);
  position: relative; white-space: nowrap;
}
.hero__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .14em;
  background: var(--boost); opacity: .35; border-radius: 2px;
}
.hero__lead { margin-top: 1.6rem; font-size: 1.2rem; color: var(--ink-soft); max-width: 42ch; }
.hero__lead strong { color: var(--ink); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; margin-top: 2.1rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 500; color: var(--muted); }
.tick { width: 20px; height: 20px; flex: none; }
.tick path { fill: none; stroke: var(--forest); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tick--light path { stroke: #7fe3c0; }

/* ---- Browser mockup ---- */
.hero__visual { position: relative; }
.mock { position: relative; animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.browser {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(21,20,15,.06);
}
.browser__bar { display: flex; align-items: center; gap: .8rem; padding: .7rem 1rem; background: #f3efe7; border-bottom: 1px solid var(--line); }
.browser__dots { display: inline-flex; gap: 6px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; background: #d8d1c2; }
.browser__dots i:nth-child(1) { background: #ff6058; }
.browser__dots i:nth-child(2) { background: #ffbd2e; }
.browser__dots i:nth-child(3) { background: #28c840; }
.browser__url {
  flex: 1; background: #fff; border-radius: 999px; padding: .35rem .9rem;
  font-size: .78rem; color: var(--muted); border: 1px solid var(--line);
}
.browser__body { background: #fff; }

/* sample mini-site */
.sample { font-size: 11px; color: var(--ink); }
.sample__nav { display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem; border-bottom: 1px solid #f0ece3; }
.sample__logo { font-family: var(--display); font-weight: 600; font-size: 13px; }
.sample__navlinks { display: inline-flex; gap: 7px; margin-left: auto; }
.sample__navlinks i { width: 26px; height: 6px; border-radius: 3px; background: #e7e1d4; }
.sample__navbtn { background: var(--forest); color: #fff; font-weight: 600; font-size: 10px; padding: .35rem .7rem; border-radius: 999px; }
.sample__hero {
  position: relative; height: 158px; display: flex; align-items: center;
  background:
    radial-gradient(120% 120% at 80% 10%, rgba(255,90,31,.22), transparent 55%),
    linear-gradient(135deg, #1b2d4a, #0e2236);
  color: #fff; padding: 0 1.2rem;
}
.sample__hero-text { display: flex; flex-direction: column; gap: .5rem; }
.sample__eyebrow { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #9fc6ff; font-weight: 600; }
.sample__h { font-family: var(--display); font-weight: 600; font-size: 21px; line-height: 1.05; }
.sample__cta { align-self: flex-start; margin-top: .35rem; background: var(--boost); color: #fff; font-weight: 600; font-size: 11px; padding: .5rem .85rem; border-radius: 999px; }
.sample__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; padding: 1rem; }
.sample__card { height: 56px; border-radius: 8px; background: #f3efe7; border: 1px solid #ebe5d8; }

/* floating chips */
.mock__chip {
  position: absolute; top: -16px; left: -14px; z-index: 3;
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--ink); color: #fff; font-size: .8rem; font-weight: 600;
  padding: .5rem .85rem; border-radius: 999px; box-shadow: var(--shadow-md);
}
.mock__chip-dot { width: 8px; height: 8px; border-radius: 50%; background: #28c840; }
.mock__approve {
  position: absolute; bottom: -22px; right: -10px; z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: .6rem .7rem; box-shadow: var(--shadow-md);
}
.mock__approve-x { font-size: .76rem; color: var(--muted); font-weight: 500; }
.mock__approve-btn { background: var(--boost); color: #fff; font-size: .8rem; font-weight: 600; padding: .45rem .75rem; border-radius: 999px; }

/* =========================================================
   Stats strip
   ========================================================= */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-card); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(28px,4vw,44px) clamp(16px,2.4vw,28px); text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__num { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.stat__label { display: block; margin-top: .6rem; font-size: .9rem; color: var(--muted); }

/* =========================================================
   The promise (forest green feature band)
   ========================================================= */
.promise {
  background: var(--forest);
  color: #eaf3ee;
  position: relative; overflow: hidden;
  padding: clamp(64px, 9vw, 120px) 0;
}
.promise::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 15% 0%, rgba(255,90,31,.14), transparent 50%);
  pointer-events: none;
}
.promise__inner {
  position: relative; max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

/* Founder column */
.promise__person { text-align: left; }
.promise__photo {
  width: clamp(152px, 17vw, 200px); height: clamp(152px, 17vw, 200px);
  border-radius: 50%; object-fit: cover; object-position: 50% 20%;
  border: 4px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 50px rgba(0,0,0,.40);
  margin-bottom: 1.6rem;
}
.promise__person-eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #7fe3c0; margin-bottom: .7rem;
}
.promise__person-title {
  font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.12; letter-spacing: -.01em; color: #fff;
}
.promise__person-text { margin-top: .9rem; color: #c4ddd3; font-size: 1.02rem; max-width: 44ch; }

/* Deal column */
.promise__deal { text-align: left; }
.promise__eyebrow { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #7fe3c0; margin-bottom: 1.4rem; }
.promise__headline {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.7rem); line-height: 1.05; letter-spacing: -.02em; color: #fff;
}
.hl-underline { position: relative; white-space: nowrap; color: #fff; }
.hl-underline::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .03em; height: .16em;
  background: var(--boost); border-radius: 3px;
}
.promise__body { margin: 1.8rem 0 0; max-width: 52ch; font-size: 1.2rem; color: #d2e6dd; }
.promise__body strong, .promise__body em { color: #fff; font-style: normal; font-weight: 600; }

/* =========================================================
   How it works
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 28px); }
.step {
  position: relative; background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem 1.6rem 1.8rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #d8cfbd; }
.step__num {
  font-family: var(--display); font-weight: 600; font-size: 2.4rem; color: var(--boost);
  line-height: 1; display: block; margin-bottom: 1rem;
}
.step__title { font-size: 1.18rem; font-weight: 600; letter-spacing: -.01em; }
.step__text { margin-top: .6rem; color: var(--muted); font-size: .98rem; }

/* =========================================================
   What's included
   ========================================================= */
.included { background: var(--cream-card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 24px); }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.6rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 1rem;
  background: var(--boost-soft); color: var(--boost-deep); font-size: 1.2rem;
}
.feature h3 { font-size: 1.08rem; font-weight: 600; }
.feature p { margin-top: .4rem; color: var(--muted); font-size: .95rem; }

/* =========================================================
   Pricing
   ========================================================= */
.price-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(20px, 3vw, 32px); align-items: stretch; max-width: 960px; margin-inline: auto; }
.price-card {
  position: relative; background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(28px, 3.4vw, 44px);
  display: flex; flex-direction: column;
}
.price-card--feature {
  border-color: var(--boost); border-width: 2px;
  box-shadow: 0 24px 60px rgba(255,90,31,.14);
}
.price-card__tag {
  position: absolute; top: -13px; left: clamp(28px,3.4vw,44px);
  background: var(--boost); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px;
}
.price-card__tag--alt { background: var(--forest); }
.price-card__name { font-family: var(--display); font-weight: 600; font-size: 1.6rem; letter-spacing: -.01em; }
.price-card__desc { margin-top: .5rem; color: var(--muted); font-size: .98rem; }
.price-card__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .5rem; margin: 1.6rem 0 .4rem; }
.price-card__was { font-size: 1.4rem; color: var(--muted-soft); text-decoration: line-through; text-decoration-color: var(--boost); text-decoration-thickness: 2px; }
.price-card__now { font-family: var(--display); font-weight: 700; font-size: clamp(2.8rem, 5vw, 3.6rem); line-height: 1; color: var(--ink); letter-spacing: -.02em; }
.price-card__now--green { color: var(--forest); }
.price-card__unit { font-size: .95rem; color: var(--muted); font-weight: 500; }
.price-card__charge { font-size: .9rem; color: var(--boost-deep); font-weight: 600; }
.price-card--feature .price-card__charge { color: var(--boost-deep); }
.price-card__list { margin: 1.5rem 0 2rem; display: grid; gap: .7rem; }
.price-card__list li { position: relative; padding-left: 1.8rem; font-size: .98rem; color: var(--ink-soft); }
.price-card__list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--forest); font-weight: 700;
  width: 1.25rem; height: 1.25rem;
}
.price-card__list li strong { color: var(--ink); font-weight: 700; }
.price-card .btn { margin-top: auto; }

.price-reassure {
  max-width: 760px; margin: clamp(32px,4vw,48px) auto 0; text-align: center;
  background: var(--forest-soft); border: 1px solid #c3ddd2; border-radius: var(--r-lg);
  padding: 1.6rem 1.8rem; color: var(--forest); font-size: 1.05rem;
}
.price-reassure strong { font-weight: 700; }
.price-reassure__big { display: block; font-family: var(--display); font-weight: 600; font-size: 1.6rem; margin-bottom: .4rem; }

/* =========================================================
   Comparison
   ========================================================= */
.compare__table {
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: var(--cream-card); max-width: 920px; margin-inline: auto;
}
.compare__row { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.compare__row + .compare__row { border-top: 1px solid var(--line); }
.compare__cell { padding: 1.05rem 1.1rem; font-size: .95rem; color: var(--muted); display: flex; align-items: center; }
.compare__cell--label { font-weight: 600; color: var(--ink); }
.compare__cell--us { background: rgba(255,90,31,.05); color: var(--ink); font-weight: 600; }
.compare__row--head .compare__cell { font-weight: 700; color: var(--ink); font-size: .92rem; }
.compare__row--head .compare__cell--us { color: var(--boost-deep); }
.compare__row--head .compare__cell--label { background: transparent; }
.yes { color: var(--forest); font-weight: 700; }
.no { color: var(--boost-deep); font-weight: 700; }

/* =========================================================
   Testimonial
   ========================================================= */
.testimonial { background: var(--ink); color: var(--paper); }
.testimonial__inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 72px);
  align-items: center; max-width: 1080px; margin-inline: auto;
}

/* Framed live-site screenshot */
.testimonial__media { display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
.shot {
  display: block; width: 100%; border-radius: var(--r-md); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.shot:hover { transform: translateY(-6px); box-shadow: 0 40px 80px rgba(0,0,0,.5); }
.shot__bar { display: flex; align-items: center; gap: .8rem; padding: .65rem .9rem; background: #f3efe7; }
.shot__dots { display: inline-flex; gap: 6px; }
.shot__dots i { width: 10px; height: 10px; border-radius: 50%; background: #d8d1c2; }
.shot__dots i:nth-child(1) { background: #ff6058; }
.shot__dots i:nth-child(2) { background: #ffbd2e; }
.shot__dots i:nth-child(3) { background: #28c840; }
.shot__url { flex: 1; background: #fff; border-radius: 999px; padding: .3rem .85rem; font-size: .78rem; color: var(--muted); border: 1px solid var(--line); }
.shot img { display: block; width: 100%; height: auto; }
.shot__cta { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: #fff; border-bottom: 1.5px solid var(--boost); padding-bottom: 2px; }
.shot__cta:hover { color: var(--boost); }

.quote { position: relative; text-align: left; }
.quote__mark { font-family: var(--display); font-size: 6rem; line-height: .6; color: var(--boost); height: 3rem; }
.quote__text { font-family: var(--display); font-weight: 500; font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.28; letter-spacing: -.01em; color: #fff; }
.quote__cite { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .2rem; }
.quote__name { font-weight: 700; color: #fff; }
.quote__detail { font-size: .92rem; color: #b5b0a3; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq .section__head { margin-bottom: 0; }
.accordion { display: grid; gap: .75rem; }
.acc {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.acc[open] { border-color: #d8cfbd; box-shadow: var(--shadow-sm); }
.acc summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.3rem;
  font-weight: 600; font-size: 1.04rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--boost-deep);
  transition: transform .3s var(--ease); line-height: 1; flex: none;
}
.acc[open] summary::after { transform: rotate(45deg); }
.acc__body { padding: 0 1.3rem 1.25rem; }
.acc__body p { color: var(--muted); font-size: .98rem; }

/* =========================================================
   Start / contact
   ========================================================= */
.start { background: var(--forest); color: #eaf3ee; }
.start__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.start__title { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.05; letter-spacing: -.02em; color: #fff; }
.start__lead { margin-top: 1.1rem; font-size: 1.15rem; color: #d2e6dd; max-width: 44ch; }
.start__points { margin-top: 1.8rem; display: grid; gap: .85rem; }
.start__points li { display: flex; align-items: center; gap: .7rem; font-weight: 500; color: #eaf3ee; }
.start__direct { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.start__direct-link { font-weight: 600; color: #fff; border-bottom: 1.5px solid rgba(255,255,255,.3); padding-bottom: 2px; }
.start__direct-link:hover { border-color: var(--boost); color: var(--boost); }

.start__form {
  background: var(--cream-card); border-radius: var(--r-xl); padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-lg); display: grid; gap: 1.1rem; color: var(--ink);
}
.field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: .8rem .9rem; width: 100%; resize: vertical;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-soft); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--boost); box-shadow: 0 0 0 3px rgba(255,90,31,.15); }
.field input:invalid:not(:placeholder-shown) { border-color: #e0735a; }
.start__form-note { font-size: .82rem; color: var(--muted); text-align: center; }
/* Honeypot — visually & semantically hidden, but bots still fill it */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: #cfcabd; padding: clamp(48px,6vw,72px) 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: clamp(32px,5vw,64px); padding-bottom: clamp(36px,5vw,56px); }
.brand--footer { color: #fff; }
.brand--footer .brand__text-light { color: #8c8676; }
.footer__tag { margin-top: 1rem; font-family: var(--display); font-style: italic; font-size: 1.15rem; color: #efe9da; max-width: 24ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col { display: flex; flex-direction: column; gap: .65rem; }
.footer__col h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #8c8676; font-weight: 600; margin-bottom: .35rem; }
.footer__col a, .footer__col span { font-size: .95rem; color: #cfcabd; }
.footer__col a:hover { color: var(--boost); }
.footer__base {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  padding: 1.4rem 0 2rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; color: #8c8676;
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin-inline: auto; margin-top: .5rem; width: 100%; }
  .hero__lead { max-width: none; }
  .promise__inner { grid-template-columns: 1fr; gap: 2.6rem; max-width: 640px; }
  .promise__person, .promise__deal { text-align: center; }
  .promise__photo { margin-inline: auto; }
  .promise__person-text, .promise__body { margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; }
  .testimonial__inner { grid-template-columns: 1fr; max-width: 560px; gap: 2.4rem; }
  .faq__inner { grid-template-columns: 1fr; }
  .start__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav, .site-header__actions { display: none; }
  .nav-toggle { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .compare__table { font-size: .85rem; overflow-x: auto; }
  .compare__row { grid-template-columns: 1.2fr 1fr 1fr 1fr; min-width: 540px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .steps, .features { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  .mock__chip { left: 0; }
  .mock__approve { right: 0; }
  .footer__cols { grid-template-columns: 1fr; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .mock { animation: none; }
}
