/* =====================================================
   REDEFINE WEB — PREMIUM PPC LANDING PAGE
   Locked layout · Long-form · Conversion-dense
   ===================================================== */
:root {
  --paper: #f5f3ee;
  --paper-2: #ece8de;
  --paper-3: #e3dfd4;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --ink-soft: #2a2a2a;
  --mute: #6b6660;
  --mute-2: #8a8580;
  --line: rgba(10,10,10,0.08);
  --line-strong: rgba(10,10,10,0.18);
  --accent: #ff5b1f;
  --accent-deep: #d83e08;
  --accent-soft: rgba(255,91,31,0.08);
  --accent-glow: rgba(255,91,31,0.25);
  --jade: #1f5f4a;
  --jade-soft: rgba(31,95,74,0.08);
  --shadow-sm: 0 1px 2px rgba(10,10,10,0.04);
  --shadow-md: 0 4px 24px rgba(10,10,10,0.06);
  --shadow-lg: 0 24px 60px rgba(10,10,10,0.12);
  --shadow-xl: 0 32px 80px rgba(10,10,10,0.18);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* =====================================================
   URGENCY TOPBAR (above header)
   ===================================================== */
.topbar {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.topbar__shimmer {
  position: absolute;
  top: 0; bottom: 0; width: 200px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% { left: -200px; }
  100% { left: 100%; }
}
.topbar__text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.topbar__pill {
  background: var(--accent);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.topbar__divider { color: rgba(245,243,238,0.3); }
@media (max-width: 600px) { .topbar { font-size: 11px; padding: 8px 12px; } }

/* =====================================================
   LOCKED HEADER
   ===================================================== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,243,238,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.lp-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}
.lp-logo img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 180px;
}
.lp-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lp-trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lp-trust-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 4px rgba(31,95,74,0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,95,74,0.15); }
  50% { box-shadow: 0 0 0 7px rgba(31,95,74,0.05); }
}
.lp-phone {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.lp-phone:hover { color: var(--accent); }
.lp-phone svg { width: 14px; height: 14px; }
.lp-cta-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s, background 0.2s;
}
.lp-cta-mini svg { width: 14px; height: 14px; flex-shrink: 0; }
.lp-cta-mini:hover { background: var(--accent); transform: translateY(-1px); }
@media (max-width: 768px) {
  .lp-trust-pill, .lp-phone { display: none; }
  .lp-header__inner { padding: 12px 16px; }
}

/* =====================================================
   HERO + APPLICATION FORM
   ===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 32px 16px 56px; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8 Q50 2, 100 6 T 198 7' stroke='%23ff5b1f' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  animation: drawLine 1.4s ease-out 0.6s forwards;
  transform-origin: left center;
}
@keyframes drawLine {
  0% { opacity: 0; transform: scaleX(0); }
  100% { opacity: 1; transform: scaleX(1); }
}

.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--ink-soft);
}
.hero__bullets li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  color: var(--jade);
}
.hero__bullets strong { color: var(--ink); font-weight: 600; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat__num span { color: var(--accent); }
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mute);
  margin-top: 6px;
}

/* =====================================================
   APPLICATION FORM
   ===================================================== */
.form-card {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.35;
  pointer-events: none;
}

.form-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
  position: relative;
}
.form-card__badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,91,31,0.2);
  animation: pulse-orange 2s ease-in-out infinite;
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,91,31,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255,91,31,0.05); }
}

.form-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  position: relative;
}
.form-card__sub {
  color: rgba(245,243,238,0.7);
  font-size: 14px;
  margin: 0 0 24px;
  position: relative;
}

.form-card__valuestack {
  background: rgba(245,243,238,0.06);
  border: 1px solid rgba(245,243,238,0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 24px;
  position: relative;
  display: grid;
  gap: 8px;
}
.form-card__valueitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: rgba(245,243,238,0.85);
}
.form-card__valueitem svg {
  flex-shrink: 0;
  width: 14px; height: 14px;
  color: var(--accent);
}
.form-card__valueitem-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-card__valueitem-price {
  font-family: var(--mono);
  color: rgba(245,243,238,0.5);
  font-size: 12px;
  text-decoration: line-through;
}
.form-card__valuetotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid rgba(245,243,238,0.12);
  font-size: 13px;
  color: var(--paper);
}
.form-card__valuetotal-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--accent);
}

.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
}
.form-row--two { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .form-row--two { grid-template-columns: 1fr; } }

.field { position: relative; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,243,238,0.55);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(245,243,238,0.06);
  border: 1px solid rgba(245,243,238,0.14);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--paper);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23f5f3ee' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}
.field select option { background: var(--ink); color: var(--paper); }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,243,238,0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: rgba(245,243,238,0.1);
}

.submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--ink);
  padding: 17px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
}
.submit-btn:hover {
  background: #ff7440;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255,91,31,0.35);
}
.submit-btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.submit-btn:hover svg { transform: translateX(3px); }

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,243,238,0.5);
  position: relative;
}
.form-trust span { display: inline-flex; align-items: center; gap: 6px; }
.form-trust svg { width: 12px; height: 12px; }

.form-recent {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(31,95,74,0.15);
  border: 1px solid rgba(31,95,74,0.3);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: rgba(245,243,238,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.form-recent__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.05); }
}

/* =====================================================
   PROOF BAR
   ===================================================== */
.proof-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 28px 24px;
}
.proof-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.proof-bar__label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mute);
  flex-shrink: 0;
}
.proof-bar__logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.proof-bar__logo {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.proof-bar__logo:hover { opacity: 1; }
.proof-bar__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.proof-bar__stars { color: var(--accent); font-size: 14px; letter-spacing: 1px; }
.proof-bar__rating-text {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
}
.proof-bar__rating-text strong { color: var(--ink); font-weight: 600; }

/* =====================================================
   SECTION FOUNDATIONS
   ===================================================== */
section { padding: 96px 24px; position: relative; }
@media (max-width: 768px) { section { padding: 64px 16px; } }
.container { max-width: 1280px; margin: 0 auto; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 900px;
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 400; }

.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 56px;
  line-height: 1.6;
}
.section-lead strong { color: var(--ink); font-weight: 600; }

/* =====================================================
   INTRO / WHY-FREE EXPLAINER
   ===================================================== */
.why-free {
  border-bottom: 1px solid var(--line);
}
.why-free__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .why-free__grid { grid-template-columns: 1fr; gap: 40px; } }

.why-free__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.why-free__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--paper-2);
  border-radius: var(--radius-md);
  font-size: 16px;
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.why-free__list li:hover { border-color: var(--line-strong); transform: translateX(4px); }
.why-free__list li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--jade);
  margin-top: 2px;
}
.why-free__list strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; font-size: 16px; }
.why-free__list span { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

/* =====================================================
   OFFER STRIP (mid-page CTA band) — repeats
   ===================================================== */
.offer-strip {
  background: var(--accent);
  color: var(--ink);
  padding: 36px 24px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.offer-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
@media (max-width: 760px) {
  .offer-strip__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
}
.offer-strip__head {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.offer-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
@media (max-width: 760px) { .offer-strip__list { justify-content: center; } }
.offer-strip__list li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.offer-strip__list svg { width: 16px; height: 16px; }
.offer-strip__btn {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s;
  white-space: nowrap;
}
.offer-strip__btn:hover { transform: translateY(-2px); background: var(--ink-2); }
.offer-strip__btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.offer-strip__btn:hover svg { transform: translateX(3px); }

/* =====================================================
   EXPECTATIONS — alternating editorial rows
   ===================================================== */
.expect {
  border-bottom: 1px solid var(--line);
}
.expect__rows {
  display: grid;
  gap: 96px;
}
@media (max-width: 900px) { .expect__rows { gap: 64px; } }

.expect-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .expect-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .expect-row__visual { order: 2; }
  .expect-row__text { order: 1; }
}

.expect-row--reverse .expect-row__visual { order: 2; }
.expect-row--reverse .expect-row__text { order: 1; }
@media (max-width: 900px) {
  .expect-row--reverse .expect-row__visual { order: 2; }
  .expect-row--reverse .expect-row__text { order: 1; }
}

.expect-row__visual {
  position: relative;
  aspect-ratio: 1.1 / 1;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expect-row__num {
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  z-index: 2;
  letter-spacing: -0.02em;
}
.expect-row__num::before {
  content: '// ';
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
  margin-right: 4px;
}

.expect-row__visual-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expect-row__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  margin-bottom: 18px;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
}
.expect-row__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.expect-row__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.expect-row__copy {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.expect-row__copy strong { color: var(--ink); font-weight: 600; }
.expect-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.expect-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.expect-row__list svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--jade);
  margin-top: 2px;
}

/* ===== Visual: Responsive (devices) ===== */
.expect-row__visual--responsive { background: linear-gradient(135deg, #f5f3ee 0%, #ece8de 100%); }
.device-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1/1;
}
.device {
  background: var(--ink);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(10,10,10,0.15);
}
.device--desktop {
  position: absolute;
  top: 12%; left: 0;
  width: 88%;
  aspect-ratio: 4/3;
}
.device--phone {
  position: absolute;
  bottom: 0; right: 0;
  width: 38%;
  aspect-ratio: 9/19;
  border-radius: 24px;
  padding: 6px;
  z-index: 2;
  background: var(--ink);
}
.device__bar {
  background: #1a1a1a;
  height: 22px;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}
.device__bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245,243,238,0.25);
}
.device__bar span:first-child { background: var(--accent); }
.device__notch {
  width: 50%;
  height: 18px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.device__content {
  background: var(--paper);
  height: calc(100% - 22px);
  border-radius: 0 0 6px 6px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.device--phone .device__content {
  height: calc(100% - 18px);
  border-radius: 16px;
  padding: 10px;
  gap: 6px;
  margin-top: -8px;
}
.device__line {
  background: rgba(10,10,10,0.12);
  height: 8px;
  border-radius: 2px;
  width: 100%;
}
.device__line--lg { height: 14px; width: 70%; background: var(--ink); }
.device__line--md { height: 12px; width: 80%; background: var(--ink); }
.device__line--sm { width: 50%; }
.device__cta {
  margin-top: auto;
  background: var(--accent);
  height: 22px;
  border-radius: 11px;
  width: 60%;
}
.device--phone .device__cta { height: 18px; width: 100%; }

/* ===== Visual: Custom (brand card) ===== */
.expect-row__visual--custom { background: linear-gradient(135deg, #f5f3ee 0%, #e3dfd4 100%); }
.brand-card {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.brand-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 12px;
}
.brand-card__label {
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  width: 60px;
  flex-shrink: 0;
}
.brand-card__swatch {
  width: 28px; height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(10,10,10,0.1);
}
.brand-card__hex {
  color: var(--ink);
  font-weight: 500;
}
.brand-card__divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0;
}
.brand-card__type {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-card__type-display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand-card__type-name {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
}
.brand-card--floating {
  position: absolute;
  bottom: -20px; right: -10px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 20px;
  border-radius: 14px;
  z-index: 3;
  transform: rotate(4deg);
  box-shadow: var(--shadow-lg);
}
.brand-card__hours-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.brand-card__hours-num span {
  font-size: 14px;
  color: var(--paper);
  font-style: normal;
  margin-left: 2px;
}
.brand-card__hours-label {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,243,238,0.6);
  margin-top: 4px;
}

/* ===== Visual: Hosting (server card) ===== */
.expect-row__visual--hosting { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); }
.expect-row__visual--hosting .expect-row__num { color: var(--accent); }
.expect-row__visual--hosting .expect-row__num::before { color: rgba(245,243,238,0.4); }
.server-card {
  background: var(--ink-2);
  border: 1px solid rgba(245,243,238,0.1);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 340px;
  color: var(--paper);
  box-shadow: var(--shadow-lg);
}
.server-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245,243,238,0.08);
  margin-bottom: 18px;
}
.server-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(245,243,238,0.85);
}
.server-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.05); }
}
.server-card__time {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.server-card__metric-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.server-card__metric-num span { color: var(--accent); }
.server-card__metric-label {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(245,243,238,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.server-card__bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 56px;
  margin: 22px 0 18px;
}
.server-card__bars span {
  flex: 1;
  background: linear-gradient(to top, var(--accent), #ff7440);
  border-radius: 2px;
  min-height: 8px;
  opacity: 0.85;
}
.server-card__stack {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.server-card__stack span {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(245,243,238,0.7);
  background: rgba(245,243,238,0.05);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(245,243,238,0.08);
}

/* ===== Visual: Maintenance (task card) ===== */
.expect-row__visual--maintenance { background: linear-gradient(135deg, #ece8de 0%, #d8d3c5 100%); }
.task-card {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow-md);
}
.task-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.task-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.task-card__date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.task-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.task-card__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--jade);
  color: var(--paper);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.task-card__check svg { width: 11px; height: 11px; }
.task-card__pulse {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255,91,31,0.2);
  animation: pulse-orange 2s ease-in-out infinite;
}
.task-card__text {
  flex: 1;
  color: var(--ink);
}
.task-card__time {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.task-card__item--active .task-card__text { color: var(--accent-deep); font-weight: 500; }
.task-card__item--active .task-card__time { color: var(--accent); }

/* =====================================================
   FEATURES GRID
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.feature--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.feature--featured .feature__num,
.feature--featured h3,
.feature--featured p { color: var(--paper); }
.feature--featured p { color: rgba(245,243,238,0.7); }
.feature--featured .feature__num { color: var(--accent); }

.feature__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  margin-bottom: 16px;
  display: block;
}
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature--featured .feature__icon {
  background: rgba(255,91,31,0.18);
  color: var(--accent);
}
.feature__icon svg { width: 22px; height: 22px; }

.feature h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.feature p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* =====================================================
   PROCESS / TIMELINE
   ===================================================== */
.process {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process__steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 28px 24px;
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}
.step__time {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  margin-bottom: 8px;
  display: block;
}
.step__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.step__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.compare__table {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  align-items: stretch;
}
.compare__row + .compare__row { border-top: 1px solid var(--line); }
.compare__cell {
  padding: 22px 24px;
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
}
.compare__cell--feature {
  font-weight: 500;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
}
.compare__row--head .compare__cell {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  padding-top: 18px;
  padding-bottom: 18px;
  background: var(--paper-2);
}
.compare__row--head .compare__cell--us {
  color: var(--accent-deep);
  background: var(--accent-soft);
}
.compare__cell--us {
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 500;
  position: relative;
}
.compare__check {
  width: 22px; height: 22px;
  color: var(--jade);
}
.compare__row--total {
  background: var(--ink);
}
.compare__row--total .compare__cell {
  color: var(--paper);
  background: var(--ink);
  font-weight: 500;
  font-size: 16px;
}
.compare__row--total .compare__cell--feature { font-family: var(--serif); font-size: 18px; }
.compare__row--total .compare__cell--us {
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
}
@media (max-width: 760px) {
  .compare__row { grid-template-columns: 1.6fr 1fr; }
  .compare__cell--diy, .compare__cell--other { display: none; }
  .compare__row--head .compare__cell--diy, .compare__row--head .compare__cell--other { display: none; }
}

.compare__notes {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.compare__notes strong { color: var(--ink); font-weight: 600; }

/* =====================================================
   SUCCESS STORIES
   ===================================================== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .stories-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.story {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.story--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.story--dark .story__client { color: rgba(245,243,238,0.55); border-color: rgba(245,243,238,0.12); }
.story--dark .story__metric { color: var(--paper); }
.story--dark .story__label { color: rgba(245,243,238,0.7); }
.story--dark .story__channel { background: rgba(245,243,238,0.08); color: rgba(245,243,238,0.7); }

.story__client {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.story__metric {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.story__metric span { color: var(--accent); font-style: italic; font-weight: 400; }
.story__label {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.story__channels {
  margin-top: auto;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.story__channel {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--paper-2);
  color: var(--ink-soft);
  padding: 5px 10px;
  border-radius: 4px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .testimonial { padding: 36px 28px; } }
.testimonial::before {
  content: '"';
  position: absolute;
  top: -40px; left: 30px;
  font-family: var(--serif);
  font-size: 280px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  font-weight: 600;
}
.testimonial__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  position: relative;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
}
.testimonial__name { font-weight: 600; font-size: 15px; }
.testimonial__role { font-size: 13px; color: rgba(245,243,238,0.6); margin-top: 2px; }

.testimonial--small {
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial--small::before { display: none; }
.testimonial--small .testimonial__quote {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}
.testimonial--small .testimonial__role { color: var(--mute); }
.testimonial--small .testimonial__avatar { background: var(--paper-2); color: var(--ink); }

.testimonial-stack {
  display: grid;
  gap: 24px;
}

/* =====================================================
   GUARANTEES
   ===================================================== */
.guarantees {
  border-bottom: 1px solid var(--line);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .guarantee-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .guarantee-grid { grid-template-columns: 1fr; } }

.guarantee {
  text-align: center;
  padding: 32px 20px;
}
.guarantee__icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid; place-items: center;
}
.guarantee__icon svg { width: 28px; height: 28px; }
.guarantee h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.guarantee p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  border-bottom: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; gap: 0; } }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
.faq-item__icon svg { width: 14px; height: 14px; }
.faq-item__content {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
}
.faq-item__content p { margin: 0 0 12px; }
.faq-item__content p:last-child { margin-bottom: 0; }

/* =====================================================
   FINAL CTA
   ===================================================== */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,91,31,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(216,62,8,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta__inner { position: relative; }
.final-cta__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(255,91,31,0.3);
  border-radius: 999px;
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto 24px;
  max-width: 880px;
}
.final-cta h2 em { font-style: italic; color: var(--accent); }
.final-cta__sub {
  font-size: 19px;
  color: rgba(245,243,238,0.7);
  max-width: 580px;
  margin: 0 auto 40px;
}
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--ink);
  padding: 20px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.final-cta__btn:hover {
  background: #ff7440;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255,91,31,0.4);
}
.final-cta__btn svg { width: 20px; height: 20px; transition: transform 0.2s; }
.final-cta__btn:hover svg { transform: translateX(4px); }
.final-cta__guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,243,238,0.6);
}
.final-cta__guarantees span { display: inline-flex; align-items: center; gap: 6px; }
.final-cta__guarantees svg { width: 12px; height: 12px; }

/* =====================================================
   LOCKED FOOTER
   ===================================================== */
.lp-footer {
  background: var(--paper-2);
  padding: 32px 24px;
  border-top: 1px solid var(--line);
}
.lp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
}
.lp-footer__legal a {
  color: var(--mute);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.lp-footer__legal a:hover { color: var(--ink); }
.lp-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* =====================================================
   STICKY MOBILE CTA
   ===================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 12px; left: 12px; right: 12px;
  z-index: 60;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: 0 12px 40px rgba(10,10,10,0.4);
  font-weight: 500;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-cta__accent {
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 980px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* =====================================================
   REVEAL ON SCROLL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.in { opacity: 1; transform: none; }


/* =====================================================
   BUTTON TEXT-WRAP DEFENSE
   Single source of truth for "no button label should ever
   break onto two lines." Combines white-space:nowrap with
   flex-shrink:0 on the icon SVG so the text + arrow stay
   one row regardless of container width.
   ===================================================== */
.btn,
.submit-btn,
.lp-cta-mini,
.offer-strip__btn,
.final-cta__btn,
.mobile-cta,
.cta {
	white-space: nowrap;
	line-height: 1;
}
.btn svg,
.submit-btn svg,
.lp-cta-mini svg,
.offer-strip__btn svg,
.final-cta__btn svg,
.mobile-cta svg,
.cta svg {
	flex-shrink: 0;
}

/* Final-CTA button on narrow screens — let it wrap to two ROWS as
   button-stack only, never split a single label across two lines. */
@media (max-width: 480px) {
	.final-cta__btn,
	.offer-strip__btn {
		font-size: 14px;
		padding: 14px 20px;
	}
	.lp-cta-mini {
		font-size: 13px;
		padding: 9px 14px;
	}
}

/* Defensive: if a button's label is genuinely too long for the
   container at any breakpoint, force ellipsis instead of wrap. */
.btn,
.submit-btn,
.lp-cta-mini,
.offer-strip__btn,
.final-cta__btn,
.mobile-cta,
.cta {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}
