/* ==========================================================================
   Claudphic CRM — marketing design system
   Dark-first, high-contrast SaaS aesthetic. Single stylesheet, no build step,
   no framework (matches this codebase's no-Composer/no-bundler philosophy).
   ========================================================================== */

:root {
  /* Canvas */
  --bg: #07080C;
  --bg-2: #0B0D14;
  --surface: #101320;
  --surface-2: #151929;
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .14);

  /* Text */
  --text: #F2F4F8;
  --text-soft: #A2A9BC;
  --text-dim: #6E768C;

  /* Brand */
  --accent: #6E5BFF;
  --accent-2: #9B8CFF;
  --accent-dim: rgba(110, 91, 255, .14);
  --amber: #FD7100;
  --amber-2: #FF9440;
  --amber-dim: rgba(253, 113, 0, .13);
  --green: #29D3A0;
  --green-dim: rgba(41, 211, 160, .12);
  --rose: #FF5F6D;

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1320px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Manrope', var(--font);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.hidden { display: none !important; }

/* Ambient glow behind the whole page ------------------------------------ */
body::before {
  content: '';
  position: fixed;
  top: -30%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(110, 91, 255, .16) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* ---------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; position: relative; z-index: 1; }
.section { padding: 96px 0; position: relative; z-index: 1; }
.section-tight { padding: 64px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--border); }
.center { text-align: center; }
.stack > * + * { margin-top: 16px; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }

/* ----------------------------------------------------------- Typography */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.12; letter-spacing: -.025em; margin: 0; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.9vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
p { margin: 0; }

.lead { color: var(--text-soft); font-size: clamp(1rem, 1.6vw, 1.19rem); line-height: 1.72; }
.muted { color: var(--text-soft); }
.dim { color: var(--text-dim); }
.small { font-size: .875rem; }
.tiny { font-size: .8rem; }

.grad {
  background: linear-gradient(112deg, #FFFFFF 8%, var(--accent-2) 48%, var(--amber-2) 96%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-accent {
  background: linear-gradient(112deg, var(--accent-2), var(--amber-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-dim);
  border: 1px solid rgba(110, 91, 255, .26);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.eyebrow-amber { color: var(--amber-2); background: var(--amber-dim); border-color: rgba(253, 113, 0, .28); }

/* -------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: .94rem;
  padding: 13px 24px; border-radius: 11px; border: 1px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #8B79FF 100%);
  color: #fff; box-shadow: 0 8px 26px -8px rgba(110, 91, 255, .75);
}
.btn-primary:hover { box-shadow: 0 14px 34px -10px rgba(110, 91, 255, .9); }

.btn-accent {
  background: linear-gradient(135deg, var(--amber) 0%, #FF9440 100%);
  color: #fff; box-shadow: 0 8px 26px -8px rgba(253, 113, 0, .7);
}
.btn-accent:hover { box-shadow: 0 14px 34px -10px rgba(253, 113, 0, .85); }

.btn-whatsapp { background: #25D366; color: #06301A; font-weight: 700; box-shadow: 0 8px 26px -8px rgba(37, 211, 102, .6); }
.btn-whatsapp:hover { box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .8); }

.btn-ghost { background: rgba(255, 255, 255, .04); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .24); }

.btn-lg { padding: 16px 30px; font-size: 1rem; border-radius: 13px; }
.btn-sm { padding: 9px 16px; font-size: .85rem; border-radius: 9px; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 13px; }
.btn-row.center { justify-content: center; }

.cta-note { font-size: .82rem; color: var(--text-dim); margin-top: 16px; }

/* ------------------------------------------------------------------ Nav */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(7, 8, 12, .82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.06rem; letter-spacing: -.02em; flex-shrink: 0; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--amber));
  color: #fff; font-size: .92rem; font-weight: 800;
}
.nav-links { display: none; gap: 28px; font-size: .91rem; font-weight: 500; color: var(--text-soft); }
.nav-links a { transition: color .18s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid var(--border-strong); color: var(--text); cursor: pointer; }
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 16px 24px 26px;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  position: sticky; top: 68px; z-index: 89;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; color: var(--text-soft); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: 0; margin-top: 12px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ----------------------------------------------------------------- Hero */
.hero { padding: 84px 0 76px; position: relative; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 30%, #000 20%, transparent 78%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; margin-inline: auto; text-align: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 660px; margin-inline: auto; font-size: clamp(1.02rem, 1.9vw, 1.24rem); }
.hero-actions { margin-top: 34px; justify-content: center; }

.trust-strip { margin-top: 46px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; font-size: .84rem; color: var(--text-dim); }
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip svg { width: 15px; height: 15px; color: var(--green); }

/* -------------------------------------------------------------- Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: .94rem; }

.card-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-dim); border: 1px solid rgba(110, 91, 255, .24);
  color: var(--accent-2); margin-bottom: 18px;
}
.card-icon svg { width: 21px; height: 21px; }
.card-icon.amber { background: var(--amber-dim); border-color: rgba(253,113,0,.26); color: var(--amber-2); }
.card-icon.green { background: var(--green-dim); border-color: rgba(41,211,160,.26); color: var(--green); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ------------------------------------------------------- Problem blocks */
.split { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } }

.vs-wrap { position: relative; }
.vs-grid { display: grid; gap: 20px; }
@media (min-width: 800px) { .vs-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.vs-divider-badge {
  display: none;
}
@media (min-width: 800px) {
  .vs-divider-badge {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 54px; height: 54px; border-radius: 50%; z-index: 2;
    background: var(--bg-2); border: 1px solid var(--border-strong);
    font-family: var(--display); font-weight: 800; font-size: .76rem; letter-spacing: .03em;
    color: var(--text-soft); box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .6);
  }
}

.vs-card { border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--border); }
.vs-bad { background: rgba(255, 95, 109, .045); border-color: rgba(255, 95, 109, .2); }
.vs-good { background: rgba(41, 211, 160, .045); border-color: rgba(41, 211, 160, .22); }

.vs-col-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.vs-bad .vs-col-label { color: var(--rose); }
.vs-good .vs-col-label { color: var(--green); }
.vs-col-label .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.vs-card h3 { font-size: 1.28rem; line-height: 1.28; margin-bottom: 22px; }
.vs-bad h3 { color: var(--text); }
.vs-good h3 { color: var(--text); }

.vs-items { display: grid; gap: 10px; }
.vs-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 14px; border-radius: 12px;
  background: rgba(255, 255, 255, .025); border: 1px solid var(--border);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.vs-bad .vs-item:hover { border-color: rgba(255, 95, 109, .4); transform: translateX(3px); }
.vs-good .vs-item:hover { border-color: rgba(41, 211, 160, .4); transform: translateX(3px); }

.vs-icon-chip {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.vs-icon-chip svg { width: 15px; height: 15px; }
.vs-bad .vs-icon-chip { background: rgba(255, 95, 109, .14); color: var(--rose); }
.vs-good .vs-icon-chip { background: rgba(41, 211, 160, .16); color: var(--green); }

.vs-item p { margin: 0; padding-top: 4px; font-size: .89rem; color: var(--text-soft); line-height: 1.5; }

/* ------------------------------------------------------------- Steps */
.steps { display: grid; gap: 20px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.step-num {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--amber));
  font-family: var(--display); font-weight: 800; font-size: .95rem; color: #fff; margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 9px; }
.step p { color: var(--text-soft); font-size: .93rem; }

/* --------------------------------------------------------------- Code */
.code-block {
  background: #04050A; border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 20px; overflow-x: auto; font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: .8rem; line-height: 1.75; color: #C8CEE0;
}
.code-block .c-key { color: #9B8CFF; }
.code-block .c-str { color: #29D3A0; }
.code-block .c-com { color: #5C6480; font-style: italic; }
.code-caption { font-size: .8rem; color: var(--text-dim); margin-top: 12px; }

/* -------------------------------------------------------------- Stats */
.stat-row { display: grid; gap: 20px; }
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: center; padding: 26px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .88rem; color: var(--text-soft); }

/* -------------------------------------------------------------- Pricing */
.price-grid { display: grid; gap: 20px; align-items: start; }
@media (min-width: 700px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.price-card.featured { border-color: rgba(110, 91, 255, .5); background: linear-gradient(180deg, rgba(110,91,255,.08), var(--surface) 42%); box-shadow: 0 20px 60px -30px rgba(110,91,255,.8); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--amber)); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.price-name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.price-desc { font-size: .87rem; color: var(--text-dim); margin-bottom: 22px; min-height: 40px; }
.price-amount { font-family: var(--display); font-weight: 800; font-size: 2.5rem; line-height: 1; letter-spacing: -.03em; }
.price-period { font-size: .88rem; color: var(--text-dim); margin-bottom: 24px; }
.price-features { list-style: none; margin: 24px 0 0; padding: 24px 0 0; border-top: 1px solid var(--border); display: grid; gap: 12px; }
.price-features li { display: flex; gap: 10px; font-size: .89rem; color: var(--text-soft); line-height: 1.5; }
.price-features svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ------------------------------------------------------- Compare table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .89rem; min-width: 560px; }
.compare-table th, .compare-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table thead th { font-family: var(--display); font-weight: 700; font-size: .82rem; color: var(--text); background: var(--surface-2); white-space: nowrap; }
.compare-table td { color: var(--text-soft); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--green); font-weight: 600; }
.compare-table .no { color: var(--text-dim); }
.compare-table svg { width: 17px; height: 17px; vertical-align: -3px; }

/* ----------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 12px; max-width: 800px; margin-inline: auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--text);
  font-family: var(--display); font-weight: 700; font-size: 1rem; padding: 20px 22px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; line-height: 1.4;
}
.faq-q svg { width: 18px; height: 18px; color: var(--text-dim); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--accent-2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 520px; }
.faq-a p { padding: 0 22px 22px; color: var(--text-soft); font-size: .93rem; }

/* ------------------------------------------------------------ CTA band */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #140B4A 0%, #1E1163 45%, #3A1B4F 100%);
  border: 1px solid rgba(155, 140, 255, .28);
  border-radius: var(--radius-lg); padding: 56px 36px; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 113, 0, .3) 0%, transparent 68%);
  top: -55%; right: -12%; pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band .lead { color: rgba(255, 255, 255, .78); max-width: 560px; margin-inline: auto; }
.cta-band .btn-row { margin-top: 30px; }

/* --------------------------------------------------------- Page hero */
.page-hero { padding: 66px 0 44px; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 660px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-dim); margin-bottom: 18px; }
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--accent-2); }

/* -------------------------------------------------------------- Forms */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-size: .93rem; font-family: var(--font);
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: 11px;
  color: var(--text); outline: none; transition: border-color .18s, box-shadow .18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.field textarea { resize: vertical; min-height: 120px; }

/* ----------------------------------------------- Floating + sticky CTAs */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; box-shadow: 0 10px 30px -6px rgba(37, 211, 102, .65);
  transition: transform .2s;
}
.wa-float svg { width: 29px; height: 29px; color: #fff; }
.wa-float:hover { transform: scale(1.08); }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  display: none; gap: 10px; padding: 11px 14px;
  background: rgba(11, 13, 20, .95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-strong);
}
.sticky-cta .btn { flex: 1; padding: 13px 12px; font-size: .88rem; }
@media (max-width: 767px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
  .wa-float { bottom: 80px; width: 50px; height: 50px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* -------------------------------------------------------------- Footer */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 60px 0 32px; position: relative; z-index: 1; }
.footer-grid { display: grid; gap: 34px; margin-bottom: 42px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr repeat(4, 1fr); } }
.footer-brand p { color: var(--text-dim); font-size: .88rem; margin-top: 14px; max-width: 300px; line-height: 1.7; }
.footer-col h4 { font-family: var(--display); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin-bottom: 15px; font-weight: 700; }
.footer-col a { display: block; color: var(--text-dim); font-size: .89rem; padding: 5px 0; transition: color .18s; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .82rem; color: var(--text-dim); }

/* ---------------------------------------------------------- Legal docs */
.legal-doc h2 { font-size: 1.28rem; margin: 36px 0 12px; }
.legal-doc p { color: var(--text-soft); margin-bottom: 14px; font-size: .95rem; }
.legal-doc a { color: var(--accent-2); font-weight: 500; }

/* ------------------------------------------------------------ Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------- Small screens */
@media (max-width: 640px) {
  .section { padding: 66px 0; }
  .section-tight { padding: 48px 0; }
  .container { padding-inline: 18px; }
  .card, .step, .price-card, .vs-card { padding: 24px; }
  .cta-band { padding: 40px 22px; }
  .hero { padding: 56px 0 52px; }
  .btn-row .btn { width: 100%; }
  .section-head { margin-bottom: 36px; }
}
