/* ============================================
   TOKENS
   ============================================ */
:root {
  --brand: #2540E8;
  --brand-dark: #1A30C0;
  --brand-deep: #122287;
  --brand-soft: #E8EDFF;
  --brand-softer: #F4F6FF;

  --accent: #F97316;
  --accent-dark: #EA580C;
  --accent-soft: #FFEDD5;

  --ink: #0F172A;
  --ink-2: #1E293B;
  --ink-soft: #334155;
  --muted: #64748B;
  --muted-2: #94A3B8;

  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-soft-2: #F1F5F9;
  --line: #E2E8F0;
  --line-2: #CBD5E1;

  --yellow: #FACC15;

  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 2px 8px rgba(15,23,42,.04);
  --shadow: 0 2px 4px rgba(15,23,42,.04), 0 10px 30px -8px rgba(15,23,42,.12);
  --shadow-lg: 0 4px 8px rgba(15,23,42,.06), 0 30px 60px -20px rgba(37,64,232,.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.mono { font-family: 'JetBrains Mono', monospace; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.15; font-weight: 700; }
h1 em, h2 em, h3 em, h4 em { font-style: italic; font-weight: 400; color: var(--brand); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  transition: all .18s ease;
  white-space: nowrap;
  font-family: inherit;
  border: 1px solid transparent;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px -2px rgba(249,115,22,.4); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 20px -4px rgba(249,115,22,.5); }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 4px 14px -2px rgba(37,64,232,.35); }
.btn-brand:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--brand); color: var(--brand); }
.btn-white { background: #fff; color: var(--brand-deep); }
.btn-white:hover { background: var(--brand-soft); }
.btn-lg { padding: 15px 28px; font-size: 15.5px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 20px rgba(15,23,42,.04); }

.nav-inner { display: flex; align-items: center; gap: 40px; min-height: 160px; padding: 12px 0; }

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo svg, .logo img {
  height: 134px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Logo responsive scaling */
@media (max-width: 1024px) {
  .nav-inner { min-height: 110px; }
  .logo svg, .logo img { height: 90px; }
}
@media (max-width: 768px) {
  .nav-inner { min-height: 80px; gap: 16px; }
  .logo svg, .logo img { height: 60px; }
}
@media (max-width: 480px) {
  .nav-inner { min-height: 64px; }
  .logo svg, .logo img { height: 48px; }
}

.nav-links { display: flex; gap: 4px; margin-left: 10px; }
.nav-links > div {
  position: relative;
}
.nav-links a, .nav-links .navitem {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 6px;
  transition: all .15s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links .navitem:hover { background: var(--brand-soft); color: var(--brand-dark); }
.nav-links .caret { width: 10px; height: 10px; opacity: .6; }

.mega {
  position: absolute;
  top: calc(100% + 8px);
  left: -120px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  min-width: 620px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.nav-links > div:hover .mega { display: grid; }
.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all .15s;
}
.mega-item:hover { background: var(--bg-soft); }
.mega-ico {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; flex-shrink: 0;
}
.mega-ico svg { width: 18px; height: 18px; }
.mega-t { font-weight: 600; font-size: 13.5px; color: var(--ink); }
.mega-d { font-size: 11.5px; color: var(--muted); margin-top: 1px; }

.nav-cta { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.nav-login { font-size: 14px; color: var(--ink-soft); font-weight: 600; padding: 8px 14px; }
.nav-login:hover { color: var(--brand); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 70px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(37,64,232,.08), transparent),
    radial-gradient(ellipse 600px 400px at 90% 10%, rgba(249,115,22,.06), transparent),
    #fff;
  position: relative;
  overflow: hidden;
}


.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid rgba(37,64,232,.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-deep);
  margin-bottom: 24px;
}
.hero-badge .new {
  font-size: 10px;
  background: var(--accent);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 920px;
  margin: 0 auto;
  font-weight: 800;
}
.hero h1 em {
  color: var(--brand);
  font-style: italic;
  font-weight: 500;
}

.hero p.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 24px auto 0;
  line-height: 1.5;
  font-weight: 500;
}
.hero p.lede b { color: var(--ink); font-weight: 700; }

.hero-cta {
  margin-top: 34px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

.hero-reviews {
  margin-top: 30px;
  display: flex; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.review-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.review-badge .stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.review-badge .txt {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.2;
}
.review-badge .txt b { color: var(--ink); display: block; font-size: 13px; font-weight: 700; }

/* Partner logo strip */
.partners {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.partners-label {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.partners-strip {
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 32px;
}
.partner {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
  opacity: .65;
  transition: opacity .2s;
}
.partner:hover { opacity: 1; color: var(--ink); }
.partner .pico {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--line);
  display: grid; place-items: center;
  font-size: 12px;
  color: var(--ink);
}
.partner:nth-child(1) .pico { background: #4285F4; color: #fff; }
.partner:nth-child(2) .pico { background: #0061FF; color: #fff; }
.partner:nth-child(3) .pico { background: #635BFF; color: #fff; }
.partner:nth-child(4) .pico { background: #25D366; color: #fff; }
.partner:nth-child(5) .pico { background: #DA1F26; color: #fff; }
.partner:nth-child(6) .pico { background: #217346; color: #fff; }
.partner:nth-child(7) .pico { background: #0A66C2; color: #fff; }

/* ============================================
   INTERACTIVE WALKTHROUGH
   ============================================ */
.walk {
  padding: 80px 0 100px;
  background: #fff;
}

.walk-head {
  text-align: center;
  margin-bottom: 40px;
}
.walk-head .step-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--brand-dark);
  font-weight: 700;
  background: var(--brand-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.walk-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 12px;
  font-weight: 800;
}
.walk-head p {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

.walk-stepper {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 40px;
}
.w-step {
  display: flex; align-items: center; gap: 10px;
  padding: 0 24px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: all .2s;
  white-space: nowrap;
}
.w-step .num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--line);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  transition: all .25s;
}
.w-step.active { color: var(--ink); }
.w-step.active .num { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 0 0 4px rgba(37,64,232,.15); }
.w-step.done .num { background: var(--brand); border-color: var(--brand); color: #fff; }
.w-step.done .num::before { content: "✓"; }
.w-step.done .num span { display: none; }
.w-step + .w-step::before {
  content: "";
  position: absolute;
  left: -12px; top: 50%;
  width: 24px; height: 2px;
  background: var(--line);
  transform: translateY(-50%);
}
.w-step.done + .w-step::before,
.w-step + .w-step.done::before,
.w-step + .w-step.active::before { background: var(--brand); }

/* Demo frame */
.demo-frame {
  background: linear-gradient(135deg, var(--brand-softer), #fff);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.browser {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(15,23,42,.25), 0 1px 0 rgba(15,23,42,.05);
  border: 1px solid var(--line);
}
.browser-bar {
  background: var(--bg-soft-2);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line);
}
.browser-bar .d { width: 10px; height: 10px; border-radius: 50%; }
.browser-bar .d:nth-child(1) { background: #FF5F57; }
.browser-bar .d:nth-child(2) { background: #FEBC2E; }
.browser-bar .d:nth-child(3) { background: #28C840; }
.browser-bar .url {
  margin-left: 16px;
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--muted);
  border: 1px solid var(--line);
  flex: 1;
  max-width: 360px;
}
.browser-bar .url b { color: var(--brand-dark); }

.app-chrome {
  display: grid; grid-template-columns: 220px 1fr;
  min-height: 480px;
}
.app-side {
  background: var(--ink);
  color: #cbd5e1;
  padding: 16px 12px;
}
.app-side .brand {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 12px;
}
.app-side .brand-t { font-weight: 700; font-size: 14px; color: #fff; }
.app-side .brand-t em { color: var(--brand); font-style: italic; }
.app-side .label {
  font-size: 9.5px;
  color: #64748B;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 8px 6px;
  font-weight: 700;
}
.app-side .item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 12.5px;
  color: #cbd5e1;
  cursor: pointer;
  transition: all .15s;
  margin-bottom: 1px;
}
.app-side .item:hover { background: rgba(255,255,255,.05); color: #fff; }
.app-side .item.active { background: rgba(37,64,232,.15); color: var(--brand); font-weight: 600; }
.app-side .item .ic { width: 14px; height: 14px; opacity: .8; }
.app-side .item .badge {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-family: 'JetBrains Mono', monospace;
}

.app-main {
  background: var(--bg-soft);
  padding: 20px;
  overflow: auto;
}
.app-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.app-head .crumb { font-size: 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em; }
.app-head .crumb b { color: var(--ink); }
.app-head .hbtns { display: flex; gap: 8px; }
.hbtn {
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
.hbtn.primary { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Step 1 content: Booking kanban */
.demo-step { display: none; animation: fadein .4s ease; }
.demo-step.active { display: block; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.kanban-demo {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.kcol { }
.kcol-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px;
  margin-bottom: 8px;
}
.kcol-head .t { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.kcol-head .t::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  border-radius: 2px; margin-right: 6px; vertical-align: middle;
  background: var(--cc);
}
.kcol-head .c { font-size: 11px; color: var(--muted); font-weight: 600; }
.kcol.c1 { --cc: #94A3B8; }
.kcol.c2 { --cc: var(--brand); }
.kcol.c3 { --cc: var(--accent); }
.kcol.c4 { --cc: #22C55E; }
.kcol.c5 { --cc: #8B5CF6; }

.kcard-demo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  font-size: 11px;
  box-shadow: var(--shadow-sm);
}
.kcard-demo .id { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--muted); }
.kcard-demo .n { font-weight: 700; font-size: 12px; margin-top: 2px; }
.kcard-demo .s { color: var(--muted); margin-top: 2px; font-size: 10.5px; }
.kcard-demo .f {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; padding-top: 6px;
  border-top: 1px dashed var(--line);
  font-size: 10px;
}
.kcard-demo .p {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.kcard-demo .p .pd { width: 6px; height: 6px; border-radius: 50%; }
.pd-h { background: #EF4444; }
.pd-m { background: #F59E0B; }
.pd-l { background: #22C55E; }
.kcard-demo .a {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid; place-items: center;
  font-weight: 700; font-size: 9px;
}
.kcard-demo.live { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* Step 2: Visit form */
.visit-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}
.vf-head { display: flex; justify-content: space-between; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.vf-head .t { font-size: 15px; font-weight: 700; }
.vf-head .id { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); background: var(--bg-soft); padding: 4px 10px; border-radius: 4px; }
.vf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.vf-field .l { font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.vf-field .v { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.vf-field .v.brand { color: var(--brand-dark); }

.vf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 14px;
}
.vf-table th {
  text-align: left;
  padding: 8px 10px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.vf-table th:last-child, .vf-table td:last-child { text-align: right; }
.vf-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.vf-table td .mi { width: 6px; height: 6px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.vf-table td .mi.p { background: var(--accent); }
.vf-table td .mi.l { background: var(--brand); }

.vf-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 10px;
  background: var(--brand-soft);
  border-radius: 8px;
  border: 1px dashed var(--brand);
}
.vf-total .l { font-size: 13px; font-weight: 700; color: var(--brand-deep); letter-spacing: 0.02em; }
.vf-total .v { font-size: 24px; font-weight: 800; color: var(--brand-deep); }

/* Step 3: Done invoice */
.done-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
}
.done-check {
  width: 68px; height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(34,197,94,.5);
  animation: pop .5s cubic-bezier(.5,1.5,.5,1) both;
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.done-check svg { width: 34px; height: 34px; }
.done-card h3 { font-size: 22px; margin-bottom: 6px; }
.done-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.done-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--bg-soft);
  padding: 14px;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 18px;
}
.done-meta .k { font-size: 10px; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.done-meta .v { font-size: 13px; font-weight: 700; color: var(--ink); }
.done-actions { display: flex; gap: 10px; justify-content: center; }

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: var(--ink);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 500px at 10% 50%, rgba(37,64,232,.2), transparent),
    radial-gradient(circle 400px at 90% 50%, rgba(249,115,22,.12), transparent);
}
.stats .container { position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .big {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff, var(--brand));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.stat-item .lbl {
  font-size: 14px;
  color: #94A3B8;
  font-weight: 600;
}

/* ============================================
   SECTION HEAD
   ============================================ */
.section { padding: 100px 0; }
.section-bg { background: var(--bg-soft); }

.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
}
.section-head.left { text-align: left; margin: 0 0 40px; max-width: 600px; }
.section-head .kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 46px);
  margin-bottom: 14px;
  font-weight: 800;
  line-height: 1.1;
}
.section-head h2 em { color: var(--brand); font-style: italic; font-weight: 500; }
.section-head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   CLINIC TYPES
   ============================================ */
.ctypes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ctype {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.ctype:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}
.ctype-emoji {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: grid; place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
  transition: all .25s;
}
.ctype:nth-child(4n+2) .ctype-emoji { background: var(--accent-soft); }
.ctype:nth-child(4n+3) .ctype-emoji { background: #DCFCE7; }
.ctype:nth-child(4n+4) .ctype-emoji { background: #FEF3C7; }
.ctype:hover .ctype-emoji { transform: scale(1.05) rotate(-3deg); }
.ctype h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ctype p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.ctype-pill {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   SPLIT (image + copy)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-copy { order: 2; }
.split-copy h2 {
  font-size: clamp(30px, 3.8vw, 42px);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;
}
.split-copy h2 em { color: var(--brand); font-style: italic; font-weight: 500; }
.split-copy .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.split-copy > p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}
.check-list {
  list-style: none;
  margin-bottom: 28px;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* Quick booking mockup */
.quick-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quick-mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.qm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.qm-title { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.qm-title .dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 0 rgba(34,197,94,.4); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.qm-id { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }

.qm-field {
  margin-bottom: 12px;
}
.qm-field .l { font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 5px; }
.qm-field .i {
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.qm-field .i .info { color: var(--muted); font-weight: 500; font-size: 12px; }

.qm-table { margin-top: 14px; background: var(--bg-soft); border-radius: 8px; overflow: hidden; }
.qm-row { display: flex; justify-content: space-between; padding: 10px 14px; font-size: 13px; border-top: 1px solid var(--line); }
.qm-row:first-child { border-top: none; }
.qm-row .n { display: flex; align-items: center; gap: 8px; }
.qm-row .i-emoji { font-size: 16px; }
.qm-row .p { font-weight: 700; color: var(--ink); }

.qm-total {
  margin-top: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.qm-total .l { font-size: 13px; opacity: .85; font-weight: 600; }
.qm-total .v { font-size: 24px; font-weight: 800; }

.qm-actions { display: flex; gap: 8px; margin-top: 16px; }
.qm-btn {
  flex: 1;
  padding: 11px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: #fff;
}
.qm-btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================
   FEATURE GRID
   ============================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 22px;
  transition: all .25s;
  position: relative;
}
.feat-new {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 4px;
}
.feat:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feat-emoji {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feat h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.feat p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================
   WORKFLOW STEPS
   ============================================ */
.workflow-steps {
  margin-top: 50px;
}
.wstep {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.wstep:last-child { border-bottom: none; }
.wstep-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 8px 20px -6px rgba(37,64,232,.5);
}
.wstep.done .wstep-num { background: #22C55E; box-shadow: 0 8px 20px -6px rgba(34,197,94,.5); }
.wstep.done .wstep-num::before { content: "✓"; }
.wstep.done .wstep-num span { display: none; }
.wstep h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 700;
}
.wstep p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.wstep-mock {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.6;
}
.wstep-mock b { color: var(--brand-dark); }
.wstep-mock .ok { color: #16A34A; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  position: relative;
  transition: all .25s;
}
.test:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); }
.test-stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.test-quote {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}
.test-quote::before { content: "“"; font-size: 48px; color: var(--brand); line-height: 0.5; vertical-align: -16px; margin-right: 2px; font-family: Georgia, serif; font-weight: 700; }
.test-attr {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.test-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 15px;
}
.test-n { font-weight: 700; font-size: 14px; }
.test-r { font-size: 12px; color: var(--muted); }

/* ============================================
   INTEGRATIONS
   ============================================ */
.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.int {
  display: flex; align-items: center; gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all .2s;
}
.int:hover { border-color: var(--brand); transform: translateY(-2px); }
.int-ico {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.int-n { font-weight: 700; font-size: 14.5px; }
.int-d { font-size: 12px; color: var(--muted); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all .2s;
}
.faq-item[open] { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  font-size: 22px;
  color: var(--brand);
  transition: transform .25s;
  line-height: 1;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--brand-dark); }
.faq-item .a {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================
   FEATURE TILES (big)
   ============================================ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.tile-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-softer));
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.tile-img svg {
  width: 60px; height: 60px;
  color: var(--brand);
  opacity: 0.9;
  filter: drop-shadow(0 4px 10px rgba(37,64,232,.25));
}
.tile:nth-child(even) .tile-img { background: linear-gradient(135deg, var(--accent-soft), #FFFBEB); }
.tile:nth-child(even) .tile-img svg { color: var(--accent); filter: drop-shadow(0 4px 10px rgba(249,115,22,.25)); }

.tile-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tile h3 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.tile p { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.tile-link {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: 4px;
}
.tile-link::after {
  content: "→";
  transition: transform .2s;
}
.tile:hover .tile-link::after { transform: translateX(4px); }

/* ============================================
   KEY TAKEAWAYS + SUPPORT
   ============================================ */
.takeaways {
  background: var(--bg-soft);
  border-left: 4px solid var(--brand);
  padding: 30px 34px;
  border-radius: 0 12px 12px 0;
  max-width: 860px;
  margin: 0 auto;
}
.takeaways h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 800;
}
.takeaways ul { list-style: none; }
.takeaways li {
  padding: 8px 0 8px 28px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  position: relative;
}
.takeaways li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 9px;
  background-position: center;
  background-repeat: no-repeat;
}

.support-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.support-box {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all .2s;
}
.support-box:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.support-ico {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.support-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.support-box p { color: var(--muted); font-size: 14px; margin-bottom: 16px; line-height: 1.55; }
.support-box .link {
  font-weight: 700;
  color: var(--brand);
  font-size: 14px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-dark) 60%, var(--brand));
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 600px at 10% 100%, rgba(249,115,22,.2), transparent),
    radial-gradient(circle 400px at 90% 0%, rgba(255,255,255,.08), transparent);
}
.final .container { position: relative; z-index: 2; }
.final h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.final h2 em { color: var(--accent); font-style: italic; font-weight: 500; }
.final p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto 30px; }
.final-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final .note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: 0.03em; }
.final .note b { color: var(--accent); }

/* ============================================
   PRICING · SINGLE PLAN
   ============================================ */
.pricing-section {
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(37,64,232,.06), transparent),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}

.price-card {
  max-width: 840px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 50px;
  position: relative;
  box-shadow: 0 30px 70px -24px rgba(15,23,42,.28);
}

.price-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  box-shadow: 0 10px 24px -6px rgba(249,115,22,.5);
  white-space: nowrap;
}

.price-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 22px;
}

.price-name {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.price-name em { color: var(--brand); font-style: italic; font-weight: 400; }

.price-tag {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}

.price-figure {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  white-space: nowrap;
}
.price-figure .dollar {
  font-size: 28px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 10px;
}
.price-figure .num {
  font-size: 80px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.05em;
}
.price-figure .per {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  align-self: flex-end;
  margin-bottom: 12px;
  margin-left: 4px;
}

.price-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--brand-deep);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 12px 18px;
  background: var(--brand-soft);
  border-radius: 8px;
  border: 1px solid rgba(37,64,232,.15);
  margin-bottom: 32px;
  text-transform: uppercase;
  font-weight: 700;
}

.price-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.col-head {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: flex;
  align-items: center;
  gap: 10px;
}
.col-head.accent { border-bottom-color: var(--accent); }

.new-badge {
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

.price-check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-check li {
  padding: 7px 0 7px 30px;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  line-height: 1.4;
}
.price-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.price-check.accent li::before {
  background-color: var(--accent);
}

.price-cta {
  text-align: center;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.price-cta .btn {
  padding: 16px 34px;
  font-size: 16px;
}
.price-fine {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.price-fine b { color: var(--accent); }

@media (max-width: 780px) {
  .price-card { padding: 44px 28px 36px; }
  .price-top { flex-direction: column; align-items: flex-start; gap: 18px; padding-bottom: 18px; }
  .price-split { grid-template-columns: 1fr; gap: 24px; }
  .price-figure .num { font-size: 64px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: #94A3B8;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer-about {
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-parent {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #CBD5E1;
}
.footer-parent b { color: var(--accent); }

.footer-col h5 {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 13.5px;
  color: #94A3B8;
  transition: color .15s;
}
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: #64748B;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #94A3B8;
  transition: all .2s;
}
.footer-social a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-copy { order: 1; }
  .feat-grid, .tile-grid, .int-grid, .ctypes-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mega { left: 0; min-width: auto; width: 100%; }
  .app-chrome { grid-template-columns: 160px 1fr; }
  .kanban-demo { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .wstep { grid-template-columns: 60px 1fr; }
  .wstep-mock { grid-column: 1 / -1; margin-top: 10px; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .nav-links { display: none; }
  .feat-grid, .tile-grid, .int-grid, .support-row, .footer-grid, .ctypes-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section { padding: 60px 0; }
  .walk-stepper { flex-direction: column; gap: 10px; }
  .w-step + .w-step::before { display: none; }
  .w-step { justify-content: flex-start; padding: 0; }
  .app-side { display: none; }
  .app-chrome { grid-template-columns: 1fr; }
  .kanban-demo { grid-template-columns: 1fr; }
  .vf-grid { grid-template-columns: 1fr; }
  .done-meta { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
