/* ============================================================
   SmartWebDesign — Lead-gen landing page
   Warm premium editorial system
   ============================================================ */

:root {
  /* Surfaces */
  --paper: #F6F2EA;
  --paper-2: #EFE9DD;
  --white: #FFFFFF;
  --line: #E4DDCD;
  --line-strong: #D6CDB8;

  /* Ink */
  --ink: #191712;
  --ink-soft: #4B463C;
  --muted: #756F62;

  /* Brand — emerald growth/trust */
  --emerald: #145C44;
  --emerald-700: #0F4D39;
  --emerald-800: #0B3D2D;
  --forest: #0F1F18;
  --forest-2: #0A1611;
  --emerald-tint: #E6EFE9;

  /* Highlight — warm amber */
  --amber: #BC7A1C;
  --amber-soft: #E6B45A;
  --amber-tint: #F4E9D4;

  /* Accent driver (tweakable) */
  --accent: var(--emerald);
  --accent-700: var(--emerald-700);
  --accent-800: var(--emerald-800);
  --accent-dark: var(--forest);
  --accent-dark-2: var(--forest-2);
  --accent-tint: var(--emerald-tint);

  /* Type */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Spacing rhythm */
  --section-y: clamp(72px, 9vw, 140px);
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Radius / shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(25, 23, 18, 0.06);
  --shadow-md: 0 18px 40px -24px rgba(25, 23, 18, 0.30);
  --shadow-lg: 0 40px 80px -40px rgba(15, 31, 24, 0.45);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.7) inset, 0 24px 50px -30px rgba(25, 23, 18, 0.35);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-y) 0; }
.section--tight { padding: clamp(56px, 6vw, 90px) 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: -0.015em; color: var(--ink); }
.display {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  text-wrap: balance;
}
.h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); text-wrap: balance; }
.h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
  text-wrap: pretty;
}
.serif-i { font-style: italic; }
em.mark { font-style: italic; color: var(--accent); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--accent);
  opacity: 0.6;
}
.eyebrow--center { justify-content: center; }
.section-head { max-width: 60ch; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head .h2 { margin: 18px 0 0; }
.section-head .lede { margin-top: 18px; }
.section-head--center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 16px 28px;
  border-radius: 999px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -14px color-mix(in oklab, var(--accent) 80%, black);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -16px color-mix(in oklab, var(--accent) 80%, black); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light {
  background: #fff;
  color: var(--accent-800);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { transform: translateY(-2px); }
.btn--lg { padding: 19px 36px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn-arrow { transition: transform .25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.36rem; font-weight: 600; letter-spacing: -0.02em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff; font-family: var(--sans); font-weight: 800; font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.96rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(120px, 16vw, 180px); padding-bottom: clamp(40px, 6vw, 70px); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 88% 8%, color-mix(in oklab, var(--accent-tint) 90%, transparent), transparent 60%),
    radial-gradient(50% 60% at 6% 92%, var(--amber-tint), transparent 55%);
  opacity: 0.9;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px 7px 9px;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent); }
.hero h1 { margin: 22px 0 0; }
.hero .lede { margin-top: 22px; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-reassure { margin-top: 18px; font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-reassure svg { width: 16px; height: 16px; color: var(--accent); }

/* hero visual / device mockups */
.hero-visual { position: relative; }
.mock-browser {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: #fbf9f5; border-bottom: 1px solid var(--line); }
.mock-bar .tl { width: 11px; height: 11px; border-radius: 50%; }
.mock-bar .tl:nth-child(1){ background:#E8675A; } .mock-bar .tl:nth-child(2){ background:#E8B45A; } .mock-bar .tl:nth-child(3){ background:#5FB87A; }
.mock-url { margin-left: 12px; flex: 1; height: 22px; border-radius: 999px; background: var(--paper); font-size: 11px; color: var(--muted); display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.mock-url svg { width: 11px; height: 11px; }

.float-phone {
  position: absolute;
  right: -28px; bottom: -42px;
  width: 168px;
  border-radius: 26px;
  background: #fff;
  border: 6px solid #1a1814;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.float-card {
  position: absolute;
  left: -36px; top: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.86rem;
}
.float-card .fc-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.float-card .fc-ico svg { width: 19px; height: 19px; }
.float-card b { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; display: block; line-height: 1; }
.float-card span { color: var(--muted); font-size: 0.78rem; }

/* mini rendered website inside mockups */
.site-preview { font-family: var(--sans); }
.sp-nav { display:flex; align-items:center; justify-content:space-between; padding: 14px 18px; }
.sp-logo { font-family: var(--serif); font-weight:600; font-size:0.92rem; }
.sp-logo .dotcol { color: var(--accent); }
.sp-links { display:flex; gap:12px; }
.sp-links span { width:30px; height:6px; border-radius:3px; background: var(--line); }
.sp-pill { background: var(--accent); color:#fff; font-size:0.6rem; font-weight:700; padding:5px 11px; border-radius:999px; }
.sp-hero { padding: 8px 18px 20px; }
.sp-hero .kick { font-size:0.58rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent); font-weight:700; }
.sp-hero h4 { font-family:var(--serif); font-size:1.5rem; line-height:1.04; margin:7px 0; }
.sp-hero p { font-size:0.66rem; color:var(--muted); max-width:30ch; }
.sp-row { display:flex; gap:8px; margin-top:11px; }
.sp-btn { background:var(--accent); color:#fff; font-size:0.6rem; font-weight:700; padding:7px 13px; border-radius:7px; }
.sp-btn.ghost { background:transparent; color:var(--ink); border:1px solid var(--line); }
.sp-cards { display:grid; grid-template-columns: repeat(3,1fr); gap:8px; padding: 0 18px 18px; }
.sp-card { background: var(--paper); border:1px solid var(--line); border-radius:9px; padding:10px; }
.sp-card .ci { width:22px;height:22px;border-radius:6px;background:var(--accent-tint); margin-bottom:7px; }
.sp-card i { display:block; height:5px; border-radius:3px; background:var(--line-strong); margin-bottom:4px; }
.sp-card i:nth-child(3){ width:70%; }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: color-mix(in oklab, var(--paper) 60%, #fff); }
.trust-row { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 26px 22px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.trust-item b { display: block; font-size: 0.96rem; font-weight: 700; font-family: var(--sans); letter-spacing: -0.01em; }
.trust-item span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Generic grid utilities ---------- */
.grid { display: grid; gap: clamp(18px, 2vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Problem section ---------- */
.problem { background: var(--paper-2); }
.problem-lead { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: end; margin-bottom: clamp(36px, 4vw, 56px); }
.problem-photo {
  width: 100%; aspect-ratio: 4 / 3;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, color-mix(in oklab, var(--paper) 70%, #fff) 0 14px, var(--paper-2) 14px 28px);
  display: grid; place-items: center;
  color: var(--muted); font-size: 0.86rem; font-weight: 600;
  text-align: center; padding: 24px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.problem-card .pc-num { font-family: var(--serif); font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.problem-card h3 { font-size: 1.22rem; margin: 14px 0 9px; }
.problem-card p { font-size: 0.95rem; color: var(--ink-soft); }
.problem-card .pc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--amber-tint); color: var(--amber); display: grid; place-items: center; }
.problem-card .pc-ico svg { width: 23px; height: 23px; }
.pc-head { display: flex; align-items: center; justify-content: space-between; }

/* ---------- Comparison ---------- */
.compare-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-col { border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); border: 1px solid var(--line); }
.compare-col--bad { background: #fff; }
.compare-col--good { background: var(--accent-dark); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.compare-col--good::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, color-mix(in oklab, var(--amber-soft) 40%, transparent), transparent 70%);
}
.compare-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; padding: 7px 14px; border-radius: 999px; white-space: nowrap; }
.compare-col--bad .compare-tag { background: #F3EEE4; color: var(--muted); }
.compare-col--good .compare-tag { background: rgba(255,255,255,0.14); color: #fff; }
.compare-col h3 { font-size: 1.5rem; margin: 18px 0 4px; }
.compare-col--good h3 { color: #fff; }
.compare-col .sub { font-size: 0.92rem; opacity: 0.85; margin-bottom: 22px; }
.compare-col--bad .sub { color: var(--muted); }
.compare-list { display: flex; flex-direction: column; gap: 15px; position: relative; }
.compare-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.98rem; line-height: 1.45; }
.compare-list .ci { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; margin-top: 1px; }
.compare-list .ci svg { width: 14px; height: 14px; }
.compare-col--bad .ci { background: #F6E4E0; color: #C0584A; }
.compare-col--good .ci { background: rgba(255,255,255,0.16); color: #fff; }
.compare-col--good .compare-list li { color: rgba(255,255,255,0.94); }

/* ---------- Benefits ---------- */
.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.benefit-ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--accent-tint); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.benefit-ico svg { width: 26px; height: 26px; }
.benefit-card:hover .benefit-ico { background: var(--accent); color: #fff; }
.benefit-card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.96rem; color: var(--ink-soft); }

/* ---------- Portfolio ---------- */
.portfolio { background: var(--accent-dark); color: #fff; }
.portfolio .eyebrow { color: var(--amber-soft); }
.portfolio .eyebrow::before { background: var(--amber-soft); }
.portfolio .h2 { color: #fff; }
.portfolio .lede { color: rgba(255,255,255,0.78); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, background .4s;
}
.work-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.07); box-shadow: var(--shadow-lg); }
.work-frame { padding: 18px 18px 0; }
.work-screen {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  aspect-ratio: 4 / 3;
  position: relative;
}
.work-screen .site-preview { transform: scale(1); transform-origin: top left; }
.work-meta { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px 22px; }
.work-meta h3 { font-size: 1.12rem; color: #fff; }
.work-meta .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--amber-soft); }
.work-go { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; color: #fff; transition: background .3s, transform .3s; }
.work-go svg { width: 16px; height: 16px; }
.work-card:hover .work-go { background: var(--amber); transform: rotate(-45deg); border-color: transparent; }

/* preview palette variants */
.pv-clinic { --accent: #1F7A6B; --accent-tint: #E2F1EE; }
.pv-legal  { --accent: #1E3A5F; --accent-tint: #E4EAF1; }
.pv-mfg    { --accent: #B5621C; --accent-tint: #F6E8D8; }
.pv-realty { --accent: #145C44; --accent-tint: #E6EFE9; }
.pv-finance{ --accent: #3B3470; --accent-tint: #E9E7F3; }
.pv-arch   { --accent: #6B6357; --accent-tint: #EEEAE2; }

/* ---------- Testimonials ---------- */
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 22px;
  break-inside: avoid;
}
.tcard .stars { display: flex; gap: 3px; color: var(--amber); }
.tcard .stars svg { width: 17px; height: 17px; }
.tcard blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.42; color: var(--ink); letter-spacing: -0.01em; }
.tcard .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tcard .who image-slot, .tcard .avatar { width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0; }
.avatar { display: grid; place-items: center; font-family: var(--sans); font-weight: 700; color: #fff; font-size: 1.05rem; }
.tcard .who b { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.96rem; }
.tcard .who span { font-size: 0.84rem; color: var(--muted); }
.t-masonry { columns: 3; column-gap: clamp(18px, 2vw, 26px); }
.t-masonry .tcard { margin-bottom: clamp(18px, 2vw, 26px); }

/* ---------- Metrics ---------- */
.metrics { background: var(--accent-dark-2); color: #fff; }
.metrics-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.metric { text-align: center; padding: 14px; }
.metric .num { font-family: var(--serif); font-size: clamp(2.6rem, 4.5vw, 3.6rem); font-weight: 500; line-height: 1; letter-spacing: -0.02em; color: #fff; }
.metric .num .suf { color: var(--amber-soft); }
.metric .lab { margin-top: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.metric + .metric { border-left: 1px solid rgba(255,255,255,0.12); }

/* ---------- Process ---------- */
.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; counter-reset: step; }
.process-track::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 31px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.pstep { position: relative; z-index: 1; text-align: center; }
.pstep .ring {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--accent);
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s, box-shadow .3s;
}
.pstep:hover .ring { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pstep .ring svg { width: 28px; height: 28px; }
.pstep .ring::after {
  counter-increment: step; content: counter(step);
  position: absolute; top: -6px; right: -6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 0.74rem;
  display: grid; place-items: center;
}
.pstep h3 { font-size: 1.14rem; margin-bottom: 7px; }
.pstep p { font-size: 0.88rem; color: var(--ink-soft); max-width: 24ch; margin: 0 auto; }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper-2); position: relative; }
.price-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.price-card {
  position: relative;
  background: var(--accent-dark);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 50px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, color-mix(in oklab, var(--amber-soft) 26%, transparent), transparent 60%);
}
.price-card > * { position: relative; z-index: 1; }
.price-badge {
  position: absolute; top: 26px; right: 26px;
  background: var(--amber); color: #1a1206;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 7px 14px; border-radius: 999px;
  z-index: 2;
}
.price-card .pk-name { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-soft); font-weight: 700; font-family: var(--sans); }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 6px; }
.price-amount .cur { font-family: var(--serif); font-size: 2rem; }
.price-amount .val { font-family: var(--serif); font-size: clamp(3.4rem, 6vw, 4.6rem); font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.price-amount .per { font-size: 0.92rem; color: rgba(255,255,255,0.7); align-self: flex-end; margin-bottom: 10px; }
.price-card .pk-note { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin-bottom: 26px; }
.price-feats { display: grid; gap: 13px; margin-bottom: 30px; }
.price-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; color: rgba(255,255,255,0.92); }
.price-feats .ci { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.16); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.price-feats .ci svg { width: 13px; height: 13px; color: #fff; }
.price-foot { display: flex; align-items: center; gap: 14px; margin-top: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.price-side .h2 { margin: 16px 0; }
.price-assure { display: grid; gap: 22px; margin-top: 28px; }
.price-assure li { display: flex; gap: 14px; align-items: flex-start; }
.price-assure .ai { width: 42px; height: 42px; border-radius: 11px; background: #fff; border: 1px solid var(--line); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.price-assure .ai svg { width: 21px; height: 21px; }
.price-assure b { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.98rem; }
.price-assure span { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; text-align: left; }
.faq-q span { font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: var(--ink); letter-spacing: -0.01em; }
.faq-icon { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; flex-shrink: 0; transition: background .3s, transform .3s, color .3s, border-color .3s; color: var(--accent); }
.faq-icon svg { width: 16px; height: 16px; transition: transform .3s; }
.faq-item.open .faq-icon { background: var(--accent); color: #fff; border-color: transparent; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 0 4px 28px; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; max-width: 70ch; }

/* ---------- Lead form ---------- */
.lead { background: var(--accent-dark); color: #fff; }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.lead .eyebrow { color: var(--amber-soft); }
.lead .eyebrow::before { background: var(--amber-soft); }
.lead h2 { color: #fff; }
.lead-points { display: grid; gap: 26px; margin-top: 32px; }
.lead-points li { display: flex; gap: 15px; align-items: flex-start; }
.lead-points .li-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.1); color: var(--amber-soft); display: grid; place-items: center; flex-shrink: 0; }
.lead-points .li-ico svg { width: 22px; height: 22px; }
.lead-points b { display: block; font-family: var(--sans); font-weight: 700; font-size: 1rem; }
.lead-points span { color: rgba(255,255,255,0.74); font-size: 0.92rem; }

.lead-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.lead-form h3 { font-size: 1.5rem; }
.lead-form .ff-sub { color: var(--ink-soft); font-size: 0.95rem; margin: 8px 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); }
.field label .opt { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: 12px;
  padding: 14px 16px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23756F62' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent); }
.field input::placeholder, .field textarea::placeholder { color: #A39C8C; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--accent-tint); border: 1.5px solid transparent; border-radius: 12px;
  padding: 14px 16px; margin: 4px 0 18px; cursor: pointer; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.4;
}
.consent.err { border-color: #C0584A; background: #F8E7E2; }
.consent input { width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--accent); margin-top: 1px; cursor: pointer; }
.consent b { color: var(--ink); }
.chip-row { display: flex; gap: 10px; }
.chip { flex: 1; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip label { display: block; text-align: center; padding: 13px; border: 1.5px solid var(--line-strong); border-radius: 12px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all .2s; margin: 0; color: var(--ink); }
.chip input:checked + label { background: var(--accent); border-color: var(--accent); color: #fff; }
.form-foot { margin-top: 8px; font-size: 0.82rem; color: var(--muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-foot svg { width: 14px; height: 14px; color: var(--accent); }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-error { display: none; margin-bottom: 16px; padding: 12px 14px; border-radius: 10px; background: #fdecea; color: #9b3d32; font-size: 0.9rem; line-height: 1.45; }
.form-error.show { display: block; }
.btn.is-loading { opacity: 0.75; pointer-events: none; }
.form-success { text-align: center; padding: 20px 8px; display: none; }
.form-success.show { display: block; animation: pop .5s cubic-bezier(.2,.8,.2,1); }
.form-success .check { width: 68px; height: 68px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; margin: 0 auto 22px; }
.form-success .check svg { width: 34px; height: 34px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); margin-bottom: 24px; max-width: 40ch; margin-inline: auto; }
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Closing CTA ---------- */
.closing { text-align: center; }
.closing .display { max-width: 18ch; margin: 22px auto 0; }
.closing .lede { margin: 24px auto 0; }
.closing-actions { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--accent-dark-2); color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.footer-top p { font-size: 0.94rem; max-width: 38ch; }
.footer-col h4 { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; font-size: 0.94rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-size: 0.84rem; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.72); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px var(--gutter); padding-bottom: max(12px, env(safe-area-inset-bottom));
  display: none; gap: 12px; align-items: center;
  transform: translateY(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-txt { flex: 1; }
.sticky-cta .sc-txt b { display: block; font-size: 0.92rem; font-weight: 700; }
.sticky-cta .sc-txt span { font-size: 0.76rem; color: var(--muted); }

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ind-card {
  display: flex; align-items: center; gap: 15px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 22px; font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.ind-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; transition: background .3s, color .3s; }
.ind-ico svg { width: 23px; height: 23px; }
.ind-card:hover .ind-ico { background: var(--accent); color: #fff; }

/* trust badges row */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: clamp(36px, 4vw, 52px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid var(--line);
}
.tb-item {
  display: flex; align-items: center; gap: 12px;
  background: color-mix(in oklab, var(--paper) 50%, #fff);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 20px 11px 13px;
}
.tb-ico { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.tb-ico svg { width: 19px; height: 19px; }
.tb-item b { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.9rem; line-height: 1.1; }
.tb-item span { font-size: 0.76rem; color: var(--muted); }

/* footer badges */
.foot-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.foot-badge { font-size: 0.76rem; font-weight: 600; color: rgba(255,255,255,0.82); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); padding: 6px 13px; border-radius: 999px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1160px) {
  .nav-links { gap: 22px; }
  .nav-cta .btn--ghost { display: none; }
}
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; margin: 12px auto 30px; }
  .float-phone { width: 150px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .metric:nth-child(4) { border-left: none; }
  .t-masonry { columns: 2; }
  .price-wrap { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-strong); }
  .nav-toggle svg { width: 22px; height: 22px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 18px; }
  .trust-item:nth-child(odd) { border-left: none; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .trust-item:nth-child(5) { grid-column: 1 / -1; border-left: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ind-card { padding: 16px; font-size: 0.92rem; gap: 12px; }
  .ind-ico { width: 40px; height: 40px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .tb-item { padding: 10px 16px 10px 11px; }
  .problem-lead { grid-template-columns: 1fr; }
  .compare-wrap { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .t-masonry { columns: 1; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric { border-left: none !important; padding: 18px 8px; }
  .process-track { grid-template-columns: 1fr; gap: 28px; }
  .process-track::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }
  .hero-actions .btn { flex: 1; }
  .float-card { left: -10px; padding: 10px 12px; }
  .float-phone { right: -6px; bottom: -30px; width: 120px; }
}
@media (max-width: 420px) {
  .float-card { display: none; }
}

/* ---------- LP1: honest funnel (/lp1) ---------- */
.page-lp1 .hero--simple {
  padding: clamp(100px, 14vw, 140px) 0 clamp(32px, 5vw, 56px);
}
.hero--simple-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.hero--simple .display { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.12; }
.hero--simple-tag { margin-top: 16px; color: var(--ink-soft); max-width: 42ch; margin-inline: auto; }
.hero-kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.hero-mob-stack { position: relative; }
.hero-price-badge {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-price-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.hero-price-value {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-checks {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  text-align: left;
  max-width: 420px;
  margin-inline: auto;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hero-checks svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}
.hero--simple .hero-actions {
  margin-top: 36px;
  justify-content: center;
}
.trust-row--4 { grid-template-columns: repeat(4, 1fr); }
.trust-row--4 .trust-item:nth-child(5) { display: none; }
.page-lp1 .hero-trust {
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: clamp(16px, 2.5vw, 22px);
  border-top: 1px solid var(--line);
  text-align: left;
}
.page-lp1 .hero-trust.trust-strip {
  border: none;
  border-top: 1px solid var(--line);
  background: transparent;
}
.page-lp1 .hero-trust .trust-row--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.page-lp1 .hero-trust .trust-item {
  padding: 16px 14px;
  border-left: none;
}
.page-lp1 .hero-trust .trust-item + .trust-item {
  border-left: 1px solid var(--line);
}
.page-lp1 .hero-trust .trust-item > svg {
  width: 22px;
  height: 22px;
}
.page-lp1 .hero-trust .trust-item b { font-size: 0.88rem; }
.page-lp1 .hero-trust .trust-item span { font-size: 0.76rem; display: block; margin-top: 2px; }
.section-head--compact .h2 { margin-top: 12px; }
.included-mob-sub {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
}
.process-mob-cta {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 600;
}
.process-mob-cta a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.feature-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 28px;
  max-width: 900px;
  margin-inline: auto;
}
.feature-checklist--compact {
  grid-template-columns: repeat(3, 1fr);
}
.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.feature-checklist svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}
.price-wrap--centered .price-wrap { grid-template-columns: 1fr; }
.price-honest {
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}
/* Hero CTA: full vs short label */
.page-lp1 .btn-text-short { display: none; }
.page-lp1 .hero-cta-btn { max-width: 100%; }
.page-lp1 .hero-cta-btn .btn-arrow { flex-shrink: 0; }

/* Nav CTA: long vs short */
.page-lp1 .nav-cta-short { display: none; }
.page-lp1 .brand-text { min-width: 0; }

/* About */
.page-lp1 .about-section {
  padding-top: clamp(40px, 7vw, 64px);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1000px;
  margin-inline: auto;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.about-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo__fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, var(--emerald-tint) 0%, var(--paper-2) 100%);
}
.about-photo--empty .about-photo__fallback { display: flex; }
.about-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}
.about-fallback-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
}
.about-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-tint);
  border: 1px solid color-mix(in oklab, var(--accent) 18%, transparent);
  padding: 8px 14px;
  border-radius: 999px;
}
.about-meta-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.about-copy .eyebrow { margin-bottom: 12px; }
.about-copy .h2 { margin-bottom: 14px; }
.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.65;
}
.about-signoff {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink) !important;
}

/* Process: 4 steps */
.process-track--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.process-track--4::before {
  left: 8%;
  right: 8%;
  top: 31px;
}
.process-track--4 .pstep-body { text-align: center; }
.process-track--4 .pstep h3 { font-size: 1.05rem; }
.process-track--4 .pstep p { max-width: 26ch; }

/* Form chips stack on small screens */
.page-lp1 .chip-row--stack { flex-wrap: wrap; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-weight: 600;
  color: var(--ink);
}
.why-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
}
.lead-grid--simple {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-inline: auto;
}
.lead-grid--simple .lead-form {
  width: 100%;
}
.form-success-wa {
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  opacity: 0.9;
}
.footer-top--simple {
  grid-template-columns: 1fr auto;
  gap: 40px;
}
@media (max-width: 900px) and (min-width: 761px) {
  .page-lp1 .hero-trust .trust-row--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-lp1 .hero-trust .trust-item + .trust-item { border-left: none; }
  .page-lp1 .hero-trust .trust-item:nth-child(odd) { border-left: none; }
  .page-lp1 .hero-trust .trust-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 1040px) {
  .process-track--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
  .process-track--4::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 480px; margin-inline: auto; width: 100%; }
}

/* LP1: mobile / desktop label toggles */
.page-lp1 .lp1-mob-only { display: none; }
.page-lp1 .lp1-desk-only { display: inline; }

/* LP1: mobile navigation drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 18, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 320px);
  height: 100%;
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 40px rgba(25, 23, 18, 0.12);
  padding: 20px 22px max(24px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__head .brand { font-size: 1.15rem; }
.mobile-nav__close {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.mobile-nav__close svg { width: 22px; height: 22px; }
.mobile-nav__link {
  display: block;
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 10px;
}
.mobile-nav__link:hover { background: var(--accent-tint); color: var(--accent); }
.mobile-nav__cta { margin-top: 16px; }
body.nav-open { overflow: hidden; }

@media (max-width: 760px) {
  .page-lp1 {
    --section-y: clamp(48px, 11vw, 68px);
    --lp1-mob-gap: 10px;
    --lp1-mob-radius: 14px;
    --lp1-mob-pad: 20px;
  }
  .page-lp1 .container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .page-lp1 .section-head,
  .page-lp1 .section-head--center { text-align: center; }
  .page-lp1 .section-head .h2 { font-size: clamp(1.5rem, 5.5vw, 1.95rem); }
  .page-lp1 .section-head .lede {
    font-size: 1rem;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .page-lp1 .problem .lede { max-width: none; }
  .page-lp1 .nav { gap: 10px; }
  .page-lp1 .brand { font-size: 1.1rem; gap: 9px; flex-shrink: 1; min-width: 0; }
  .page-lp1 .brand-mark { width: 32px; height: 32px; font-size: 0.95rem; }
  .page-lp1 .brand-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .page-lp1 .nav-cta-btn { white-space: nowrap; flex-shrink: 0; }
  .page-lp1 .nav-links { display: none; }
  .page-lp1 .nav-toggle { display: grid; }
  .page-lp1 .btn-text-full { display: none; }
  .page-lp1 .btn-text-short { display: inline; }
  .feature-checklist:not(.feature-checklist--compact) { grid-template-columns: 1fr; }
  .footer-top--simple { grid-template-columns: 1fr; }
  .page-lp1 .chip-row--stack { flex-direction: column; }
  .page-lp1 .chip-row--stack .chip { flex: none; width: 100%; }
  .page-lp1 .chip-row--stack .chip label { padding: 14px 16px; font-size: 0.92rem; }

  /* Hero — unified mobile stack */
  .page-lp1 .hero--simple {
    padding: 84px 0 24px;
  }
  .page-lp1 .hero-mob-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .page-lp1 .hero--simple-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--lp1-mob-radius);
    box-shadow: 0 4px 24px -8px rgba(25, 23, 18, 0.12);
    padding: 24px var(--lp1-mob-pad) 20px;
    text-align: center;
    overflow: hidden;
  }
  .page-lp1 .hero--simple-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--amber-soft));
  }
  .page-lp1 .hero-kicker {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }
  .page-lp1 .hero--simple .display {
    font-size: clamp(1.55rem, 5.5vw, 1.85rem);
    line-height: 1.18;
    max-width: none;
    margin-inline: auto;
    letter-spacing: -0.02em;
  }
  .page-lp1 .hero--simple-tag {
    display: block;
    margin-top: 12px;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--ink-soft);
    background: none;
    border-radius: 0;
    max-width: 28ch;
    margin-inline: auto;
  }
  .page-lp1 .hero-price-badge {
    margin-top: 20px;
    padding: 14px 24px;
    width: 100%;
    max-width: 280px;
    background: linear-gradient(180deg, var(--accent-tint) 0%, color-mix(in oklab, var(--accent-tint) 60%, #fff) 100%);
    border-radius: 12px;
    border: 1px solid color-mix(in oklab, var(--accent) 18%, transparent);
  }
  .page-lp1 .hero-price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .page-lp1 .hero-price-value {
    font-size: 2rem;
    margin-top: 2px;
  }
  .page-lp1 .hero-checks {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    gap: 8px;
    margin-top: 20px;
  }
  .page-lp1 .hero-checks li {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 10px;
    font-size: 0.76rem;
    line-height: 1.2;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
    color: var(--ink);
  }
  .page-lp1 .hero-checks svg {
    width: 16px;
    height: 16px;
    padding: 4px;
    box-sizing: content-box;
    background: var(--accent-tint);
    border-radius: 6px;
  }
  .page-lp1 .hero-trust {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--line-strong);
  }
  .page-lp1 .hero-trust .trust-row--4 {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .page-lp1 .hero-trust .trust-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border: none !important;
    border-bottom: 1px solid var(--line) !important;
    border-left: none !important;
  }
  .page-lp1 .hero-trust .trust-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0;
  }
  .page-lp1 .hero-trust .trust-item:first-child { padding-top: 0; }
  .page-lp1 .hero-trust .trust-item > svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    padding: 7px;
    box-sizing: content-box;
    background: var(--paper-2);
    border-radius: 50%;
    color: var(--accent);
  }
  .page-lp1 .hero-trust .trust-item b {
    font-size: 0.84rem;
    line-height: 1.2;
  }
  .page-lp1 .hero-trust .trust-item span {
    font-size: 0.72rem;
    line-height: 1.25;
    margin-top: 1px;
  }
  .page-lp1 .hero--simple .hero-actions {
    margin-top: 16px;
  }
  .page-lp1 .hero-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 12px 28px -10px color-mix(in oklab, var(--accent) 70%, black);
  }

  .page-lp1 .about-section {
    padding-top: 28px;
    padding-bottom: 36px;
  }
  .page-lp1 #included.section,
  .page-lp1 #process.section {
    padding: 40px 0;
  }
  .page-lp1 #included .section-head--compact,
  .page-lp1 #process .section-head--compact {
    margin-bottom: 20px !important;
  }
  .page-lp1 .trust-badges--included {
    display: none;
  }
  .page-lp1 .feature-checklist--compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: none;
  }
  .page-lp1 .feature-checklist--compact li {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.8rem;
    gap: 8px;
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
  }
  .page-lp1 .feature-checklist--compact svg {
    width: 16px;
    height: 16px;
  }
  .page-lp1 .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .page-lp1 .why-item {
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.85rem;
    gap: 10px;
  }
  .page-lp1 .why-item svg {
    width: 20px;
    height: 20px;
  }
  .page-lp1 .about-photo {
    border-radius: var(--lp1-mob-radius);
  }
  .page-lp1 .lead-grid--simple {
    padding-inline: 0;
  }
  .page-lp1 .trust-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 28px;
    padding-top: 28px;
  }
  .page-lp1 .tb-item {
    width: 100%;
    border-radius: var(--lp1-mob-radius);
    justify-content: flex-start;
  }
  .page-lp1 .price-card {
    padding: clamp(24px, 5vw, 32px) 20px;
    border-radius: var(--r-lg);
  }
  .page-lp1 .price-amount .val { font-size: 2.5rem; }
  .page-lp1 .about-copy .h2 { font-size: clamp(1.45rem, 5.5vw, 1.85rem); }
  .page-lp1 .about-meta { flex-direction: column; gap: 8px; }
  .page-lp1 .about-meta-item { width: 100%; justify-content: flex-start; }
  .page-lp1 .lead { padding-bottom: max(var(--section-y), 100px); }
  .page-lp1 .lead-form {
    padding: 24px 20px;
    border-radius: var(--r-lg);
  }
  .page-lp1 .lead-form h3 { font-size: 1.28rem; line-height: 1.25; }
  .page-lp1 .field input,
  .page-lp1 .field select {
    font-size: 16px;
    padding: 15px 16px;
    min-height: 48px;
  }
  .page-lp1 .field label { font-size: 0.88rem; }
  .page-lp1 #leadSubmitBtn {
    min-height: 52px;
    white-space: normal;
    line-height: 1.3;
    padding: 14px 20px;
  }
  /* Process: compact 2x2 on mobile */
  .page-lp1 .process-track--compact {
    counter-reset: step;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    max-width: none;
    width: 100%;
  }
  .page-lp1 .process-track--compact .pstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 10px;
    min-height: 72px;
    position: relative;
    counter-increment: step;
  }
  .page-lp1 .process-track--compact .ring {
    display: none;
  }
  .page-lp1 .process-track--compact .pstep-body {
    text-align: center;
  }
  .page-lp1 .process-track--compact .pstep h3 {
    font-size: 0.82rem;
    line-height: 1.25;
    margin: 0;
    font-family: var(--sans);
    font-weight: 700;
  }
  .page-lp1 .process-track--compact .pstep h3::before {
    content: counter(step) ". ";
    color: var(--accent);
  }
  .page-lp1 .process-track--compact .pstep-desc {
    display: none;
  }
  .page-lp1 .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    line-height: 1.45;
  }
  body.page-lp1 { padding-bottom: max(88px, calc(72px + env(safe-area-inset-bottom))); }
  .page-lp1 .sticky-cta {
    padding: 10px max(18px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-right));
    gap: 10px;
  }
  .page-lp1 .sticky-cta .sc-txt { min-width: 0; }
  .page-lp1 .sticky-cta .sc-txt span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .page-lp1 .sticky-cta .btn {
    flex-shrink: 0;
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-lp1 .lp1-mob-only { display: inline; }
  .page-lp1 .lp1-desk-only { display: none; }
  .page-lp1 .nav-cta { display: none; }
  .page-lp1 .hero-price-value { font-size: 1.85rem; }
  .page-lp1 .hero-checks li {
    font-size: 0.72rem;
    padding: 9px 8px;
    gap: 6px;
  }
  .page-lp1 .hero-trust .trust-item {
    padding: 8px 0;
    gap: 10px;
  }
  .page-lp1 .hero-trust .trust-item b { font-size: 0.8rem; }
  .page-lp1 .hero-trust .trust-item span { font-size: 0.68rem; }
}
