/* =========================================================
   ProLift Careers — Editorial Premium Stylesheet
   Bold typography · Restrained color · Confident layout
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Ink + paper */
  --ink: #0a0e0d;
  --ink-2: #161b1a;
  --ink-3: #2a322f;
  --ink-soft: rgba(10, 14, 13, 0.78);
  --paper: #faf7f2;
  --paper-2: #f3ede2;
  --paper-3: #ebe2d3;
  --white: #ffffff;

  /* Accents */
  --lift: #00d4b8;
  --lift-deep: #00a890;
  --lift-soft: #d1f9f2;
  --accent: #ff6b3d;
  --gold: #f4c668;

  /* Utility */
  --mute: #6b7470;
  --mute-2: #8a938e;
  --rule: rgba(10, 14, 13, 0.10);
  --rule-strong: rgba(10, 14, 13, 0.18);
  --rule-dark: rgba(250, 247, 242, 0.14);

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-wide: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(10, 14, 13, 0.04);
  --shadow-md: 0 8px 30px rgba(10, 14, 13, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 14, 13, 0.12);
  --shadow-glow: 0 12px 40px rgba(0, 212, 184, 0.18);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; min-width: 0; }

html, body {
  width: 100%;
  max-width: 100%;
  position: relative;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "ss01", "cv11";
}

/* Belt-and-suspenders: clip any decorative overflow without breaking sticky header */
main, section, header, footer {
  max-width: 100vw;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: italic; }

::selection { background: var(--ink); color: var(--lift); }

/* ---------- 3. Decorative layers ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10, 14, 13, 0.045) 1px, transparent 0);
  background-size: 3px 3px;
}

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 212, 184, 0.10), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
}

/* ---------- 4. Skip link ---------- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 9999;
  transform: translateY(-200%);
  transition: transform 0.3s var(--ease);
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--lift); outline-offset: 3px; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--lift);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- 5. Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 3;
}

/* ---------- 6. Type system ---------- */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 12px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  margin-bottom: 22px;
  background: var(--paper);
}
.kicker.dark {
  color: var(--paper);
  background: transparent;
  border-color: var(--rule-dark);
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--lift-deep);
}
.section-title.dark { color: var(--paper); }
.section-title.dark em { color: var(--lift); }

.section-lede {
  margin-top: 22px;
  max-width: 620px;
  font-size: 1.08rem;
  color: var(--mute);
  line-height: 1.6;
}
.section-lede strong { color: var(--ink); font-weight: 600; }

.section-head { margin-bottom: 56px; max-width: 880px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

/* ---------- 7. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s var(--ease), background 0.25s ease,
              color 0.25s ease, border-color 0.25s ease,
              box-shadow 0.25s ease;
  white-space: nowrap;
  user-select: none;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-pill { padding: 9px 16px; font-size: 0.86rem; }

.btn-fill {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 8px 24px rgba(10, 14, 13, 0.18);
}
.btn-fill:hover {
  background: var(--lift-deep);
  color: var(--ink);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover { background: var(--lift); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-plan {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 14px 20px;
}
.btn-plan:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-plan-filled {
  background: var(--ink);
  color: var(--paper);
}
.btn-plan-filled:hover {
  background: var(--lift-deep);
  color: var(--ink);
  border-color: var(--lift-deep);
}

.btn-li {
  background: #0a66c2;
  color: white;
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.18);
}
.btn-li:hover { background: var(--ink); transform: translateY(-2px); }
.btn-li-ghost {
  background: transparent;
  color: #0a66c2;
  border: 1px solid rgba(10, 102, 194, 0.3);
  box-shadow: none;
}
.btn-li-ghost:hover { background: #0a66c2; color: white; }

.btn-wa {
  background: #25d366;
  color: white;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}
.btn-wa:hover { background: #1faa52; transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- 8. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.header.scrolled {
  background: rgba(250, 247, 242, 0.95);
  border-bottom-color: var(--rule);
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.brand-word { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 36, "SOFT" 50;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin-top: 2px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lift);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
  border-radius: 999px;
}
.nav a:hover { color: var(--lift-deep); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.header-cta { justify-self: end; display: flex; align-items: center; gap: 8px; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  background: var(--paper);
  position: relative;
  transition: border-color 0.2s ease;
}
.menu-btn:hover { border-color: var(--ink); }
.menu-btn span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease, top 0.3s ease;
}
.menu-btn span:nth-child(1) { top: 15px; transform: translateX(-50%); }
.menu-btn span:nth-child(2) { top: 21px; transform: translateX(-50%); }
.menu-btn span:nth-child(3) { top: 27px; transform: translateX(-50%); }
.menu-btn.active span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

/* ---------- 9. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blobFloat 18s ease-in-out infinite;
}
.hero-bg-blob-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, var(--lift) 0%, transparent 65%);
}
.hero-bg-blob-2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  left: -120px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 60%);
  opacity: 0.4;
  animation-delay: -8s;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  opacity: 0.5;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -30px) scale(0.95); }
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "eyebrow"
    "title"
    "lede"
    "actions"
    "trust"
    "card";
  gap: 28px;
}

.hero-eyebrow {
  grid-area: eyebrow;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: start;
  justify-self: start;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 8px 14px 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lift-deep);
  box-shadow: 0 0 0 0 rgba(0, 168, 144, 0.5);
  animation: pulse 2s infinite;
}
.hero-eyebrow .sep { color: var(--mute); }
.hero-eyebrow .regions { display: inline-flex; gap: 4px; }
.hero-eyebrow .flag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--paper);
  padding: 3px 6px;
  border-radius: 4px;
}

.hero-title {
  grid-area: title;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 8.2vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0.06em;
  height: 0.16em;
  background: var(--lift);
  opacity: 0.45;
  border-radius: 999px;
  z-index: -1;
}
.hero-title .hl {
  background: linear-gradient(180deg, transparent 56%, var(--lift) 56%, var(--lift) 92%, transparent 92%);
  padding: 0 4px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-lede {
  grid-area: lede;
  max-width: 580px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-lede strong { color: var(--ink); font-weight: 700; }

.hero-actions {
  grid-area: actions;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  grid-area: trust;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  margin-top: 8px;
}
.trust-cell {
  padding: 18px 14px;
  border-right: 1px solid var(--rule);
}
.trust-cell:last-child { border-right: none; }
.trust-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 30;
}
.trust-label {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--mute);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.hero-card {
  grid-area: card;
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 212, 184, 0.22), transparent 65%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  position: relative;
}
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(250, 247, 242, 0.14);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-card-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lift);
  box-shadow: 0 0 0 0 rgba(0, 212, 184, 0.7);
  animation: pulse 2s infinite;
}
.hero-card-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--rule-dark), transparent);
}

.hero-card-list {
  display: grid;
  gap: 2px;
  margin-bottom: 22px;
  position: relative;
}
.hero-card-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.08);
  font-size: 0.95rem;
  font-weight: 500;
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list .num {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--lift);
  font-variation-settings: "opsz" 36, "SOFT" 100;
  letter-spacing: 0;
}

.hero-card-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-dark);
  position: relative;
}
.hero-card-foot-l, .hero-card-foot-r {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-card-foot span {
  font-size: 0.74rem;
  color: rgba(250, 247, 242, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-card-foot strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--paper);
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.hero-card-foot-r strong { color: var(--lift); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 184, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(0, 212, 184, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 184, 0); }
}

/* Hero desktop layout */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto 1fr auto;
    grid-template-areas:
      "eyebrow card"
      "title   card"
      "lede    card"
      "actions card"
      "trust   trust";
    gap: 32px 56px;
    align-items: start;
  }
  .hero-eyebrow { margin-bottom: 4px; }
  .hero-card {
    align-self: center;
    margin-top: 0;
  }
  .hero-trust { margin-top: 32px; }
}

/* ---------- 10. Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--rule-dark);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 36px;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  font-variation-settings: "opsz" 36, "SOFT" 80;
}
.marquee-track .sep {
  font-family: var(--sans);
  font-style: normal;
  color: var(--lift);
  font-size: 0.9rem;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 11. Section base ---------- */
section { position: relative; }
.manifesto, .services, .pricing, .proof, .compare, .about, .faq, .start {
  padding: clamp(72px, 10vw, 128px) 0;
}

/* ---------- 12. Manifesto ---------- */
.manifesto {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
  border-radius: 24px;
  overflow: hidden;
}
.manifesto-card {
  background: var(--paper);
  padding: 32px;
  transition: background 0.3s ease;
}
.manifesto-card:hover { background: var(--paper-2); }
.manifesto-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--lift-deep);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  line-height: 1;
}
.manifesto-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
  color: var(--ink);
}
.manifesto-card p {
  color: var(--mute);
  font-size: 0.96rem;
  line-height: 1.6;
}

.manifesto-foot {
  margin-top: 48px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.3;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 100;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 720px) {
  .manifesto-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .manifesto-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- 13. Services ---------- */
.services {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.service-tile {
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--lift), var(--lift-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-tile:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.service-tile:hover::before { transform: scaleX(1); }

.service-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--lift-deep);
  font-variation-settings: "opsz" 96, "SOFT" 100;
  line-height: 1;
}
.service-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 5px 10px;
  border-radius: 6px;
}

.service-tile h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
  color: var(--ink);
}
.service-tile p {
  color: var(--mute);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.service-points {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.service-points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
}
.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lift);
}

/* ---------- 14. Process ---------- */
.process {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--rule-dark);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 212, 184, 0.18), transparent 50%);
  pointer-events: none;
}
.process .section-head { position: relative; }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 600px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process-step {
  background: var(--ink-2);
  padding: 32px 28px;
  transition: background 0.3s ease;
}
.process-step:hover { background: var(--ink-3); }
.process-step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 12px;
}
.process-week {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--lift);
}
.process-stage {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.55);
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.process-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--paper);
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.process-step p {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ---------- 15. Pricing ---------- */
.pricing {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.currency-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 auto 24px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 5px;
  justify-content: center;
}
.cur-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mute);
  transition: background 0.25s ease, color 0.25s ease;
}
.cur-btn .cur-flag { display: inline-flex; align-items: center; }
.cur-btn .cur-flag img { border-radius: 2px; object-fit: cover; }
.cur-btn:hover { color: var(--ink); }
.cur-btn.active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 4px 12px rgba(10, 14, 13, 0.18);
}

.currency-switcher,
.pricing-toggle {
  display: flex;
  justify-content: center;
}

.pricing-toggle {
  max-width: 580px;
  margin: 0 auto 48px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 6px;
  gap: 4px;
}
.pt-tab {
  flex: 1;
  padding: 14px 18px;
  border-radius: 13px;
  text-align: center;
  font-weight: 600;
  color: var(--mute);
  transition: background 0.3s ease, color 0.3s ease;
}
.pt-tab:hover { color: var(--ink); }
.pt-tab.active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(10, 14, 13, 0.16);
}
.pt-tab-title { display: block; font-size: 0.92rem; font-weight: 700; }
.pt-tab-sub { display: block; font-size: 0.74rem; font-weight: 500; opacity: 0.7; margin-top: 3px; }

.pricing-panel { display: none; }
.pricing-panel.active {
  display: block;
  animation: panelIn 0.4s var(--ease);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.plan {
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.plan-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.plan-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(10, 14, 13, 0.22);
}

.plan-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lift);
  color: var(--ink);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}

.plan-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--paper-2);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 18px;
}
.plan-tag-gold { background: var(--gold); color: var(--ink); }
.plan-tag-green { background: var(--lift); color: var(--ink); }
.plan-featured .plan-tag { background: rgba(250, 247, 242, 0.12); color: var(--paper); }
.plan-featured .plan-tag-gold { background: var(--gold); color: var(--ink); }

.plan-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.plan-pitch {
  font-size: 0.92rem;
  color: var(--mute);
  line-height: 1.5;
  min-height: 60px;
  margin-bottom: 24px;
}
.plan-featured .plan-pitch { color: rgba(250, 247, 242, 0.7); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.plan-featured .plan-price { border-bottom-color: var(--rule-dark); }
.plan-amt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.plan-per {
  font-size: 0.88rem;
  color: var(--mute);
}
.plan-featured .plan-per { color: rgba(250, 247, 242, 0.6); }

.plan-feats {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
}
.plan-feats li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  line-height: 1.45;
}
.plan-feats li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}
.plan-feats li.yes::before {
  content: "✓";
  background: var(--lift);
  color: var(--ink);
}
.plan-feats li.no {
  color: var(--mute);
  text-decoration: line-through;
  text-decoration-color: var(--rule-strong);
}
.plan-feats li.no::before {
  content: "×";
  background: var(--paper-2);
  color: var(--mute);
}
.plan-featured .plan-feats li.no::before { background: rgba(250, 247, 242, 0.08); color: rgba(250, 247, 242, 0.5); }
.plan-featured .plan-feats li.no { color: rgba(250, 247, 242, 0.4); }

.plan-addons {
  margin-bottom: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.plan-featured .plan-addons { border-top-color: var(--rule-dark); }

.plan-addons summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
  list-style: none;
  padding: 4px 0;
}
.plan-addons summary::-webkit-details-marker { display: none; }
.addon-chev {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.plan-featured .addon-chev { background: rgba(250, 247, 242, 0.1); color: var(--paper); }
.plan-addons[open] .addon-chev { transform: rotate(45deg); }

.addon-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.addon {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.plan-featured .addon {
  background: rgba(250, 247, 242, 0.05);
  border-color: rgba(250, 247, 242, 0.12);
}
.addon input { position: absolute; opacity: 0; pointer-events: none; }
.addon-tick {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--rule-strong);
  background: var(--paper);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.addon-tick::after {
  content: "✓";
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.plan-featured .addon-tick { background: rgba(250, 247, 242, 0.05); border-color: rgba(250, 247, 242, 0.18); }
.addon-text { display: grid; gap: 1px; min-width: 0; }
.addon-text strong {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.addon-text small {
  font-size: 0.76rem;
  color: var(--mute);
}
.plan-featured .addon-text small { color: rgba(250, 247, 242, 0.55); }
.addon-amt {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lift-deep);
}
.plan-featured .addon-amt { color: var(--lift); }

.addon:has(input:checked),
.addon.selected {
  background: var(--lift-soft);
  border-color: var(--lift-deep);
}
.plan-featured .addon:has(input:checked),
.plan-featured .addon.selected {
  background: rgba(0, 212, 184, 0.14);
  border-color: var(--lift);
}
.addon:has(input:checked) .addon-tick,
.addon.selected .addon-tick {
  background: var(--lift);
  border-color: var(--lift);
}
.addon:has(input:checked) .addon-tick::after,
.addon.selected .addon-tick::after {
  opacity: 1;
  transform: scale(1);
}

.plan-calc {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: grid;
  gap: 8px;
}
.plan-featured .plan-calc {
  background: rgba(250, 247, 242, 0.05);
  border-color: var(--rule-dark);
}
.plan-calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--mute);
}
.plan-calc-row strong { color: var(--ink); font-weight: 600; }
.plan-featured .plan-calc-row { color: rgba(250, 247, 242, 0.65); }
.plan-featured .plan-calc-row strong { color: var(--paper); }
.plan-calc-row.total {
  padding-top: 8px;
  border-top: 1px solid var(--rule);
  font-size: 0.94rem;
  color: var(--ink);
  font-weight: 700;
}
.plan-featured .plan-calc-row.total {
  border-top-color: var(--rule-dark);
  color: var(--paper);
}
.plan-calc-row.total strong { color: var(--lift-deep); font-size: 1.1rem; }
.plan-featured .plan-calc-row.total strong { color: var(--lift); }

.plan-premium-note {
  background: var(--lift-soft);
  border: 1px solid var(--lift);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.86rem;
  line-height: 1.45;
}
.plan-premium-note strong { display: block; color: var(--ink); margin-bottom: 2px; }
.plan-premium-note span { color: var(--ink-3); }

.plan-cta { margin-bottom: 16px; }
.plan-featured .btn-plan {
  background: var(--lift);
  color: var(--ink);
  border-color: var(--lift);
}
.plan-featured .btn-plan:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.plan-best {
  font-size: 0.82rem;
  color: var(--mute);
  line-height: 1.5;
  margin-top: auto;
}
.plan-best strong { color: var(--ink); font-weight: 600; }
.plan-featured .plan-best { color: rgba(250, 247, 242, 0.6); }
.plan-featured .plan-best strong { color: var(--paper); }

.pricing-disclaimer {
  max-width: 880px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--mute);
  padding: 22px 26px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 16px;
}
.pricing-disclaimer strong { color: var(--ink); font-weight: 700; }

/* ---------- 16. Proof / Testimonials ---------- */
.proof {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

/* Featured testimonial — editorial hero card */
.proof-featured {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 56px 52px;
  position: relative;
  margin-bottom: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.proof-featured:hover {
  border-color: rgba(10, 14, 13, 0.2);
  box-shadow: 0 8px 32px rgba(10, 14, 13, 0.06);
}
.proof-featured-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 7rem;
  line-height: 0.5;
  color: var(--lift);
  opacity: 0.25;
  position: absolute;
  top: 40px;
  left: 48px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  pointer-events: none;
}
.proof-featured-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 36px;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  position: relative;
  max-width: 820px;
}
.proof-featured-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.proof-featured-meta {
  flex: 1;
}
@media (max-width: 600px) {
  .proof-featured {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .proof-featured-quote {
    font-size: 4.5rem;
    top: 18px;
    left: 24px;
    opacity: 0.15;
    z-index: 0;
  }
  .proof-featured-text {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
  }
  .proof-featured-foot {
    flex-wrap: wrap;
    gap: 12px;
  }
  .testimonial-stars {
    width: 100%;
    margin-top: 4px;
  }
}

/* Supporting 2×2 grid */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 700px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* Testimonial cards */
.testimonial {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 14, 13, 0.2);
  box-shadow: 0 6px 24px rgba(10, 14, 13, 0.05);
}

.testimonial-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 36, "SOFT" 30;
  position: relative;
  flex: 1;
}

.testimonial-foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin-top: auto;
}
.testimonial-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--mute);
  margin-top: 2px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

/* ---------- 17. Compare ---------- */
.compare {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.compare-table {
  border: 1px solid var(--rule-strong);
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 18px 20px;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
}
.compare-row > div:last-child { border-right: none; }
.compare-row > div:first-child { font-weight: 700; color: var(--ink); }
.compare-row.compare-head {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}
.compare-row.compare-head > div { border-right-color: var(--rule-dark); }
.compare-row.compare-head > div:first-child { color: var(--paper); }
.compare-row .winner { background: var(--lift-soft); color: var(--ink); }
.compare-row .winner.c-good { background: var(--lift-soft); }
.compare-row.compare-head .winner { background: var(--lift); color: var(--ink); }
.c-good { color: var(--lift-deep); font-weight: 700; }
.c-bad { color: var(--mute-2); }
.c-mid { color: var(--accent); font-weight: 600; }
.compare-row.compare-verdict {
  background: var(--paper-2);
  font-weight: 700;
}
.compare-row.compare-verdict .winner { color: var(--lift-deep); }

@media (max-width: 768px) {
  .compare-row {
    grid-template-columns: 1fr 1fr;
    border-bottom: 2px solid var(--rule-strong);
  }
  .compare-row.compare-head { display: none; }
  .compare-row > div {
    padding: 12px 14px;
    border-right: none;
    border-bottom: 1px solid var(--rule);
    font-size: 0.88rem;
  }
  .compare-row > div:first-child {
    grid-column: 1 / -1;
    background: var(--paper-2);
    font-weight: 800;
  }
  .compare-row > div:nth-child(2)::before { content: "Solo: "; color: var(--mute); font-weight: 700; margin-right: 4px; }
  .compare-row > div:nth-child(3)::before { content: "Bots: "; color: var(--mute); font-weight: 700; margin-right: 4px; }
  .compare-row > div:nth-child(4)::before { content: "ProLift: "; color: var(--lift-deep); font-weight: 700; margin-right: 4px; }
}

/* ---------- 18. About / Founder ---------- */
.about {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 380px 1fr; gap: 64px; }
}

.founder-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 212, 184, 0.16), transparent 60%);
  pointer-events: none;
}

.founder-photo-wrap {
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--lift), var(--gold));
  position: relative;
}
.founder-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ink);
  background: var(--ink);
}

.founder-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 212, 184, 0.16);
  color: var(--lift);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.founder-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}

.founder-title {
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.75);
  margin-bottom: 24px;
}

.founder-actions {
  display: grid;
  gap: 10px;
}

.about-copy { position: relative; }
.about-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.about-lead em {
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 100;
  color: var(--lift-deep);
}
.about-copy > p:not(.about-lead) {
  color: var(--mute);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 28px 0;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-stat {
  background: var(--paper);
  padding: 22px 20px;
}
.about-stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 8px;
}
.about-stat span {
  font-size: 0.86rem;
  color: var(--mute);
  line-height: 1.4;
}

.about-disclaim {
  background: var(--paper-2);
  border-left: 3px solid var(--lift-deep);
  padding: 18px 22px;
  border-radius: 0 14px 14px 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.about-disclaim strong { color: var(--ink); font-weight: 700; }

/* ---------- 19. FAQ ---------- */
.faq {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item:hover { border-color: var(--ink); }
.faq-item[open] {
  background: var(--paper);
  border-color: var(--ink);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  font-variation-settings: "opsz" 36, "SOFT" 30;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-ans { padding: 0 24px 22px; }
.faq-ans p {
  color: var(--mute);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ---------- 20. Start / Lead capture ---------- */
.start {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--rule-dark);
  position: relative;
  overflow: hidden;
}
.start::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 212, 184, 0.18), transparent 60%);
  pointer-events: none;
}

.start-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}
@media (min-width: 900px) {
  .start-grid { grid-template-columns: 1fr 1.05fr; gap: 64px; }
}

.start-copy { position: relative; }
.start-lede {
  margin-top: 22px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.75);
  max-width: 520px;
}

.start-checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 28px;
}
.start-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 500;
}
.start-check span {
  color: var(--lift);
  font-weight: 800;
}

.start-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  font-size: 0.9rem;
  font-weight: 500;
}
.start-socials a {
  color: var(--lift);
  border-bottom: 1px solid rgba(0, 212, 184, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.start-socials a:hover { color: var(--paper); border-bottom-color: var(--paper); }

/* Form */
.start-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.start-form-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 540px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.field-row .field { margin-bottom: 0; }

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.field .req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  background: var(--paper);
  font-size: 0.95rem;
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0e0d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lift-deep);
  box-shadow: 0 0 0 3px rgba(0, 212, 184, 0.18);
  background: var(--white);
}

.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:focus) {
  border-color: rgba(255, 107, 61, 0.4);
}

.field-cta {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.start-form-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--mute);
  text-align: center;
}

.start-form-success {
  text-align: center;
  padding: 12px 0;
}
.start-form-success .success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--lift);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  animation: successPop 0.6s var(--ease);
}
@keyframes successPop {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.start-form-success h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.start-form-success p {
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

/* ---------- 21. Footer ---------- */
.footer {
  background: var(--paper);
  color: var(--ink);
  padding: 64px 0 24px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 980px) {
  .footer-grid { grid-template-columns: 1.5fr 0.8fr 0.9fr 1.1fr; }
}
.footer-brand p {
  margin: 18px 0;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 320px;
}
.footer-regions {
  display: flex;
  gap: 6px;
}
.footer-regions span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 7px;
  border-radius: 5px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--mute);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover {
  color: var(--lift-deep);
  transform: translateX(2px);
}
.footer-col p {
  color: var(--mute);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.footer-li {
  display: grid;
  gap: 6px;
}
.footer-li a { font-weight: 600; color: var(--ink); }
.footer-li a:hover { color: var(--lift-deep); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--mute);
}
.footer-priv { font-style: italic; }

/* ---------- 22. Floating WhatsApp ---------- */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 95;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

/* ---------- 23. Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  gap: 8px;
  padding: 10px 14px 14px;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--rule);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-cta.visible { transform: translateY(0); }
.btn-mobile-primary { flex: 1; padding: 14px 18px; font-size: 0.92rem; }
.btn-mobile-secondary {
  width: 48px;
  height: 48px;
  padding: 0;
  flex-shrink: 0;
}

/* ---------- 24. Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- 25. Responsive ---------- */
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header-h));
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 36px var(--gutter);
    gap: 4px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.3s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .nav.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 1.4rem;
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 96, "SOFT" 50;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none; }

  .menu-btn { display: block; }
  .header-cta { display: none; }

  .mobile-cta { display: flex; }

  .floating-wa { display: none; }

  body.menu-open { overflow: hidden; }
}

@media (max-width: 540px) {
  :root { --gutter: 18px; }

  /* Extra overflow safety on the smallest screens */
  body { overflow-x: clip; }
  .container, .hero-grid, .header-inner { max-width: 100%; }

  .hero-title { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .trust-cell { border-right: 1px solid var(--rule); }
  .trust-cell:nth-child(2n) { border-right: none; }
  .trust-cell:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }

  .hero-card { padding: 22px; border-radius: 18px; }
  .hero-card-foot { grid-template-columns: 1fr; gap: 14px; }

  .plan { padding: 26px 22px; }
  .plan-name { font-size: 1.55rem; }
  .plan-amt { font-size: 2.2rem; }

  .start-form { padding: 24px 20px; }

  .testimonial { padding: 28px 22px; }
  .testimonial-text { font-size: 1rem; }

  .proof-featured { padding: 28px 20px; border-radius: 18px; }
  .proof-featured-text { font-size: 1.05rem; line-height: 1.5; }
  .proof-featured-quote { font-size: 3.5rem; top: 14px; left: 20px; }

  .main { padding-bottom: 80px; }
  body { padding-bottom: 70px; }
}

/* ---------- 26. Reduced motion (Removed to force animations) ---------- */

/* ---------- 27. Print ---------- */
@media print {
  .header, .marquee, .floating-wa, .mobile-cta, .cursor-glow, .grain,
  .hero-bg, .skip-link, .start-form { display: none !important; }
  body { background: white; color: black; }
  section { padding: 24px 0; page-break-inside: avoid; }
}
