/* =====================================================================
   AtenClin — Figma-matched styles (refined)
   ===================================================================== */

:root {
  --bg:          rgb(238,235,241);
  --bg-soft:     rgb(249,248,249);
  --bg-lav:      rgb(234,230,254);
  --bg-ft:       rgb(246,245,255);

  --purple:      rgb(100,36,158);
  --purple-d:    rgb(74,27,134);
  --magenta:     rgb(200,16,236);
  --pink:        rgb(213,38,167);
  --brt-purple:  rgb(132,0,249);

  --ink:         rgb(2,0,104);
  --ink-2:       rgb(56,56,56);
  --ink-3:       rgb(100,100,120);
  --line:        rgba(100,36,158,0.10);

  --grad:        linear-gradient(90deg, rgb(100,36,158) 0%, rgb(200,16,236) 100%);
  --grad-vert:   linear-gradient(180deg, rgb(100,36,158) 0%, rgb(200,16,236) 100%);

  --font-head:   'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body:   'Figtree', system-ui, -apple-system, sans-serif;
  --font-mono:   'SFMono-Regular', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--ink);
}

.hl {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p { color: var(--ink-2); }

/* ===================== Buttons ===================== */
.btn-grad {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 20px -8px rgba(200,16,236,0.45);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -8px rgba(200,16,236,0.6); filter: brightness(1.05); }

.btn-outline-grad {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 30px;
  background: transparent;
  color: var(--magenta);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid var(--magenta);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-outline-grad:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 30px;
  background: transparent;
  border: 1.5px solid var(--purple);
  color: var(--purple);
  font-weight: 700;
  font-size: 15px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--purple); color: #fff; }

/* ===================== Nav ===================== */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  padding: 26px 40px;
  background: transparent;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; height: 150px; }
.brand img { height: 150px; width: auto; }
.nav-links {
  display: flex; gap: 36px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--magenta); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-right { margin-left: auto; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--purple);
  transition: all .25s ease;
  border-radius: 2px;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 70px 16px auto 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 30px 60px -20px rgba(100,36,158,0.3);
  z-index: 49;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 600; font-size: 16px; color: var(--ink); padding: 8px 4px; }
.mobile-menu a.btn-grad { color: #fff; padding: 14px 22px; margin-top: 6px; }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: 240px 40px 90px;
  overflow: hidden;
  background: var(--bg);
  min-height: 720px;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(238,235,241,0) 30%, rgba(238,235,241,0.6) 70%, var(--bg) 100%),
    linear-gradient(90deg, rgba(238,235,241,0.92) 0%, rgba(238,235,241,0.45) 55%, rgba(238,235,241,0) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
}
.hero h1 {
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===================== Stats ===================== */
.stats { padding: 80px 40px 60px; }
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start;
}
.stats-h {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--magenta);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat p { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* ===================== Demo (phone + bullets) ===================== */
.demo { padding: 60px 40px 80px; }
.demo-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 30px; align-items: stretch;
}
.demo-photo {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #efeef3 0%, #e6e1ee 100%);
  display: flex; align-items: stretch;
}
.demo-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.demo-copy {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 48px 44px;
  display: flex; flex-direction: column;
}
.demo-copy h2 {
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.1;
  margin-bottom: 14px;
}
.demo-lead {
  font-size: 15.5px; color: var(--ink-2); margin-bottom: 26px;
}
.bullets {
  display: grid; gap: 18px; margin-bottom: 22px;
}
.bullets li {
  display: grid; grid-template-columns: 48px 1fr; gap: 14px;
  align-items: start;
}
.bullets p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.bullets .bicon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.bullets .bicon svg { width: 22px; height: 22px; }
.demo-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-top: auto;
}
.demo-note b { color: var(--purple); font-weight: 700; }

/* ===================== 10 Min ===================== */
.ten { padding: 80px 40px; }
.ten-inner { max-width: 1280px; margin: 0 auto; }
.ten-head {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.ten-head h2 {
  font-size: clamp(30px, 3vw, 42px); line-height: 1.08;
}
.ten-aside p {
  font-size: 15.5px; color: var(--ink-2); margin-bottom: 22px;
  max-width: 460px;
}
.ten-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
}
/* NO card backgrounds — just icon + heading inline */
.ten-card {
  display: block;
}
.ten-ico {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-lav); color: var(--purple);
  margin-bottom: 18px;
}
.ten-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 280px;
}

/* ===================== Case (doctors + stats) ===================== */
.case { padding: 60px 40px 80px; }
.case-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: center;
}
.case-photo {
  border-radius: 14px; overflow: hidden;
}
.case-photo img { width: 100%; height: auto; display: block; }
.case-copy h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.1;
  margin-bottom: 14px;
}
.case-sub {
  font-size: 14.5px; color: var(--ink-2); margin-bottom: 28px;
  max-width: 460px;
}
.case-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px;
  margin-bottom: 30px;
  max-width: 560px;
}
.cs-num {
  font-family: var(--font-head);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;
  color: var(--magenta);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.case-stat p { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* ===================== Features ===================== */
.feats { padding: 80px 40px; }
.feats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 380px 1fr; gap: 60px;
  align-items: start;
}
.feats h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.05;
  position: sticky; top: 60px;
}
.feats-right { display: flex; flex-direction: column; gap: 40px; }
.feats-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 38px 32px;
}
/* NO card background — just icon + title + text */
.feat { display: block; }
.feat-ico {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-lav); color: var(--purple);
  margin-bottom: 16px;
}
.feat h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--purple);
  margin-bottom: 8px;
  line-height: 1.15;
}
.feat p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; max-width: 280px; }
.feats-cta { align-self: center; margin-top: 12px; }

/* ===================== Steps ===================== */
.steps { padding: 80px 40px; }
.steps-inner { max-width: 1280px; margin: 0 auto; }
.steps h2 {
  text-align: center;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  margin-bottom: 48px;
  max-width: 880px; margin-left: auto; margin-right: auto;
}
.steps-lead {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 15px;
}
.steps-lead strong { color: var(--purple); }
.steps-lead code {
  font-family: var(--font-mono);
  font-size: 0.95em;
  background: rgba(100, 36, 158, 0.08);
  color: var(--purple);
  padding: 2px 7px;
  border-radius: 999px;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  min-height: 190px;
  transition: all .25s ease;
  overflow: hidden;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(200,16,236,0.25);
  box-shadow: 0 20px 40px -20px rgba(200,16,236,0.3);
}
.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.step code {
  font-family: var(--font-mono);
  font-size: 0.95em;
  background: rgba(100, 36, 158, 0.08);
  color: var(--purple);
  padding: 2px 7px;
  border-radius: 999px;
}
.steps-codebox {
  margin: 28px auto 0;
  max-width: 860px;
  background: #ffffff;
  color: #000000;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 24px 50px -30px rgba(0,0,0,0.25);
  overflow: hidden;
}
.steps-codebox pre {
  margin: 0;
  padding: 24px 26px;
  overflow-x: auto;
  background: #ffffff;
  color: #000000;
}
.steps-codebox code {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  background: #ffffff;
  color: #000000;
}

/* ===================== Requisitos ===================== */
.reqs { padding: 80px 40px; }
.reqs-inner { max-width: 1280px; margin: 0 auto; }
.reqs h2 {
  text-align: center;
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 56px;
}
.reqs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
/* NO card background — just icon + title + description */
.req { display: block; }
.req-ico {
  display: inline-grid; place-items: center;
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--purple); color: #fff;
  margin-bottom: 22px;
}
.req-ico img {
  width: 30px; height: 30px;
  filter: brightness(0) invert(1);
}
.req h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--purple);
  margin-bottom: 10px;
  line-height: 1.2;
}
.req p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; max-width: 320px; }

/* ===================== Testimonials ===================== */
.testi { padding: 80px 40px 100px; }
.testi-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.testi-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}
.testi h2 {
  font-size: clamp(32px, 3.2vw, 44px); line-height: 1.05;
}
.testi-mascot {
  animation: floaty 6s ease-in-out infinite;
  flex-shrink: 0;
  width: 220px;
}
.testi-mascot img {
  width: 100%; height: auto; display: block;
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.testi-card {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--line);
  transition: all .3s ease;
}
.testi-card.dim { opacity: 0.6; transform: scale(0.98); }
.testi-card.focus {
  box-shadow: 0 20px 40px -20px rgba(100,36,158,0.3);
  border-color: rgba(200,16,236,0.3);
}
.t-head b {
  display: block;
  color: var(--purple);
  font-weight: 700;
  font-size: 14.5px;
  font-family: var(--font-head);
  margin-bottom: 2px;
}
.t-head span { color: var(--ink-3); font-size: 12px; }
.testi-card p { font-size: 13px; color: var(--ink-2); line-height: 1.6; flex: 1; }
.stars { color: var(--magenta); font-size: 15px; letter-spacing: 2px; }

.testi-dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 36px;
}
.testi-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(100,36,158,0.25);
  transition: all .25s ease;
}
.testi-dots button.active {
  background: var(--grad);
  width: 28px; border-radius: 99px;
}

/* ===================== Pricing ===================== */
.pricing {
  padding: 100px 40px;
  background: var(--grad-vert);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: ''; position: absolute; pointer-events: none;
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,135,224,0.2) 0%, transparent 60%);
  top: -300px; right: -200px;
}
.pricing-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.pricing h2 {
  text-align: center;
  color: #fff;
  font-size: clamp(32px, 3.6vw, 50px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pricing-sub {
  text-align: center;
  color: #fff;
  opacity: 0.92;
  font-size: 16px;
  max-width: 760px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.plans {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  align-items: stretch;
}
.plan {
  background: var(--bg-lav);
  border-radius: 18px;
  padding: 28px 24px;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: all .3s ease;
}
.plan-light:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.3); }
.plan h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
}
.price {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-head);
  flex-wrap: nowrap;
}
.amt {
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: opacity .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.per {
  font-size: 14px;
  color: var(--ink-3);
  font-family: var(--font-body);
  font-weight: 500;
}
.annual-note {
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
  margin-top: -6px;
}
.plan ul { display: grid; gap: 8px; margin-top: 6px; flex: 1; }
.plan ul li {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}
.plan ul li.off { color: rgba(56,56,56,0.45); }
.plan-pitch {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brt-purple);
  line-height: 1.45;
  margin-top: -4px;
}
.plan-btn {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 18px;
  border-radius: 28px;
  background: transparent;
  border: 1.5px solid var(--pink);
  color: var(--purple);
  font-weight: 700;
  font-size: 13.5px;
  transition: all .2s;
  text-align: center;
}
.plan-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.plan-btn-solid {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}
.plan-btn-solid:hover { filter: brightness(1.08); color: #fff; }

.plan-featured {
  background: #fff;
  transform: scale(1.04);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
  z-index: 2;
}
.plan-featured:hover { transform: scale(1.04) translateY(-4px); }
.badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 99px;
  white-space: nowrap;
}

/* ===================== FAQ ===================== */
.faq { padding: 100px 40px; background: var(--bg); }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--magenta);
  letter-spacing: 0.18em;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
.faq h2 {
  text-align: center;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 56px;
  line-height: 1.1;
}
.faq-list { display: grid; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(100,36,158,0.15);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}
.faq-item summary::-webkit-details-marker { display: none; }
.chev {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-lav);
  color: var(--purple);
  display: grid; place-items: center;
  font-size: 16px; font-weight: 400;
  transition: all .3s ease;
  flex-shrink: 0;
}
.faq-item[open] .chev {
  transform: rotate(45deg);
  background: var(--grad);
  color: #fff;
}
.faq-body {
  padding: 0 4px 22px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 760px;
}

/* ===================== Footer ===================== */
.ft {
  background: var(--bg-ft);
  padding: 70px 40px 30px;
}
.ft-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr 1.4fr 1.2fr; gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(100,36,158,0.12);
}
.ft-brand img { height: 150px; width: auto; margin-bottom: 18px; }
.ft-social { display: flex; gap: 10px; }
.ft-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(100,36,158,0.15);
  display: grid; place-items: center;
  color: var(--purple);
  transition: all .25s;
}
.ft-social a:hover {
  background: var(--grad); color: #fff; border-color: transparent;
}
.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-col .ft-h {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.ft-col a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.ft-col a:hover { color: var(--magenta); }
.ft-cta-col p {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 14px;
  font-family: var(--font-head);
}
.ft-cta-col .btn-grad { align-self: flex-start; }
.ft-contact { gap: 14px; }
.ft-contact-row {
  display: flex; align-items: center; gap: 10px;
  color: var(--purple-d);
}
.ft-contact-row a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}
.ft-contact-row a:hover { color: var(--magenta); }
.ft-base {
  max-width: 1280px; margin: 0 auto;
  padding-top: 24px;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}

/* ===================== Responsive ===================== */
@media (max-width: 1080px) {
  .nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-right { display: none; }
  .hero { padding: 110px 24px 70px; min-height: 600px; }
  .stats { padding: 60px 24px; }
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 28px; }
  .demo { padding: 40px 24px 60px; }
  .demo-inner { grid-template-columns: 1fr; gap: 22px; }
  .demo-photo { min-height: 380px; max-height: 520px; }
  .ten { padding: 60px 24px; }
  .ten-head { grid-template-columns: 1fr; gap: 28px; }
  .ten-grid { grid-template-columns: 1fr; gap: 32px; }
  .case { padding: 40px 24px 60px; }
  .case-inner { grid-template-columns: 1fr; gap: 32px; }
  .case-photo { max-width: 480px; }
  .feats { padding: 60px 24px; }
  .feats-inner { grid-template-columns: 1fr; gap: 36px; }
  .feats h2 { position: static; }
  .feats-grid { grid-template-columns: 1fr 1fr; gap: 36px 26px; }
  .feats-cta { align-self: flex-start; }
  .steps { padding: 60px 24px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-codebox pre { padding: 22px; }
  .reqs { padding: 60px 24px; }
  .reqs-grid { grid-template-columns: 1fr; gap: 36px; max-width: 520px; margin: 0 auto; }
  .testi { padding: 60px 24px 80px; }
  .testi-head { flex-direction: column-reverse; align-items: flex-start; gap: 20px; }
  .testi-mascot { align-self: center; }
  .testi-mascot { width: 160px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing { padding: 80px 24px; }
  .plans { grid-template-columns: 1fr 1fr; gap: 22px; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
  .faq { padding: 70px 24px; }
  .ft { padding: 60px 24px 30px; }
  .ft-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; min-height: 520px; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 15px; }
  .hero-sub br { display: none; }
  .hero-ctas { gap: 10px; }
  .hero-ctas a { padding: 12px 20px; font-size: 14px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-h { font-size: 22px; }
  .stat-num { font-size: 32px; }
  .demo-copy { padding: 32px 24px; }
  .demo-copy h2 br { display: none; }
  .ten-head h2 { font-size: 28px; }
  .case-grid { grid-template-columns: 1fr 1fr; gap: 22px 24px; }
  .feats h2 br { display: inline; }
  .feats-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step { min-height: auto; }
  .steps-lead { margin-bottom: 24px; font-size: 14.5px; }
  .steps-codebox pre { padding: 18px; }
  .steps-codebox code { font-size: 13px; }
  .plans { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .pricing h2 { font-size: 28px; }
  .pricing-sub { font-size: 14.5px; }
  .ft-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .faq-item summary { font-size: 14.5px; gap: 12px; }
  .faq h2 { margin-bottom: 36px; }
}

@media (max-width: 420px) {
  .stats-row { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
}