/* ============================================
   Nuevo Automations — design tokens
   ============================================ */
:root {
  --navy: #0a2540;
  --navy-deep: #061a2e;
  --navy-soft: #0f3157;
  --teal: #1f6b7a;
  --teal-light: #2f8fa3;
  --teal-text: #5fb8cc;
  --whatsapp: #25D366;
  --white: #ffffff;
  --ink-muted: #aebdd0;
  --ink-faint: #7e93ad;
  --border-soft: rgba(255, 255, 255, 0.10);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Noto Kufi Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-w: 1180px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 20px 60px -25px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   Reset & base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-muted); }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.text-teal { color: var(--teal-text); }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease), color 200ms var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 40px -16px rgba(31, 107, 122, 0.75);
}
.btn-primary:hover { background: var(--teal-light); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-soft);
}
.btn-ghost:hover { border-color: var(--teal-light); background: var(--surface); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-soft);
}
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-text); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #08321b;
  box-shadow: 0 14px 40px -14px rgba(37, 211, 102, 0.6);
}
.btn-whatsapp:hover { background: #2ee574; }

.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 37, 64, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.logo-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text strong { color: var(--teal-text); font-weight: 700; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.94rem;
  color: var(--ink-muted);
  font-weight: 500;
  transition: color 200ms var(--ease);
  cursor: pointer;
}
.main-nav a:hover { color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: clip;
  background:
    radial-gradient(820px 420px at 82% -10%, rgba(31, 107, 122, 0.35), transparent 60%),
    radial-gradient(600px 380px at -10% 30%, rgba(31, 107, 122, 0.18), transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 56ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
}
.hero-stats span {
  font-size: 0.84rem;
  color: var(--ink-faint);
}

/* ---- Phone mockup ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.phone-frame {
  width: 300px;
  border-radius: 38px;
  background: linear-gradient(160deg, #0d3052, #08213b);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.02) inset;
}

.phone-notch {
  width: 90px;
  height: 18px;
  background: var(--navy-deep);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 10px;
}

.phone-screen {
  background: #0c1f33;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--navy-soft);
  border-bottom: 1px solid var(--border-soft);
}
.wa-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  overflow: hidden;
}
.wa-avatar img { width: 22px; height: 22px; object-fit: contain; }
.wa-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.wa-header-text strong {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-header-text em {
  font-style: normal;
  font-size: 0.74rem;
  color: var(--whatsapp);
}
.wa-icon { color: var(--ink-faint); flex-shrink: 0; }

.wa-body {
  flex: 1;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(31,107,122,0.16), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(37,211,102,0.08), transparent 40%);
}

.bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 0.84rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  animation: bubble-in 420ms var(--ease) forwards;
}
@keyframes bubble-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bubble--in {
  align-self: flex-start;
  background: var(--surface-strong);
  color: var(--white);
  border-bottom-left-radius: 4px;
}
.bubble--out {
  align-self: flex-end;
  background: var(--whatsapp);
  color: #07331b;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.bubble--ar {
  direction: rtl;
  font-family: "Noto Kufi Arabic", var(--font-body);
  text-align: right;
}
.bubble time {
  display: block;
  margin-top: 4px;
  font-size: 0.66rem;
  opacity: 0.6;
  font-weight: 400;
}

.wa-typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 11px 15px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  background: var(--surface-strong);
  opacity: 0;
  animation: bubble-in 320ms var(--ease) forwards;
}
.wa-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-muted);
  animation: typing-dot 1.1s infinite ease-in-out;
}
.wa-typing span:nth-child(2) { animation-delay: 0.15s; }
.wa-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.wa-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--ink-faint);
  font-size: 0.82rem;
}
.wa-input svg { color: var(--whatsapp); }

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: 8px 18px;
  border-radius: 999px;
}
.phone-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
}

/* ============================================
   Sections (shared)
   ============================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--navy-deep); }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  color: var(--white);
}
.section-sub {
  font-size: 1.02rem;
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  background: var(--surface-strong);
}

/* ---- Problem cards ---- */
.pain-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.pain-card p { margin-bottom: 0; font-size: 0.95rem; }
.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(31, 107, 122, 0.22);
  color: var(--teal-light);
  margin-bottom: 22px;
}

/* ---- How it works steps ---- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 36px 30px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: var(--surface);
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal-light);
  background: rgba(31, 107, 122, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.step h3 { color: var(--white); font-size: 1.18rem; margin-bottom: 10px; }
.step p { font-size: 0.95rem; margin-bottom: 0; }

/* ---- Features ---- */
.grid-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--surface);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}
.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
  background: var(--surface-strong);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 107, 122, 0.22);
  color: var(--teal-light);
  margin-bottom: 18px;
}
.feature h3 { color: var(--white); font-size: 1.04rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- Who It's For ---- */
.grid-who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who-card {
  padding: 26px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--surface);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}
.who-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
  background: var(--surface-strong);
}
.who-card h3 { color: var(--white); font-size: 1.02rem; margin-bottom: 6px; }
.who-card p { font-size: 0.88rem; margin-bottom: 0; color: var(--ink-faint); }
.who-secondary {
  margin: 32px 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-muted);
}
.who-secondary strong { color: var(--white); font-weight: 600; }

/* ---- Pricing ---- */
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.price {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price span:first-child {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-faint);
}
.price span:last-child {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-faint);
}
.price-desc { font-size: 0.92rem; min-height: 3.2em; }
.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  color: var(--ink-muted);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(31, 107, 122, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.price-features li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 0.62em;
  width: 7px;
  height: 4px;
  border-left: 1.6px solid var(--teal-light);
  border-bottom: 1.6px solid var(--teal-light);
  transform: rotate(-45deg);
}

.price--onetime { margin-bottom: 4px; }
.price-addon {
  font-size: 0.84rem;
  color: var(--teal-text);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---- Comparison table ---- */
.compare-wrap {
  margin-top: 56px;
  overflow-x: auto;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}
.compare-table caption {
  text-align: left;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 22px 24px 4px;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  color: var(--ink-muted);
}
.compare-table thead th {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-table th[scope="row"] {
  text-align: left;
  color: var(--white);
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
}
.compare-table tbody tr:hover { background: var(--surface-strong); }
.compare-table .cell-yes { color: var(--teal-light); font-weight: 700; }
.compare-table .cell-no { color: var(--ink-faint); }

.pricing-fineprint {
  margin: 28px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-faint);
}

/* ---- Proof ---- */
.proof-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.55;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 22px;
}
.proof-sub {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.price-card--featured {
  border-color: var(--teal-light);
  background: linear-gradient(165deg, rgba(31,107,122,0.22), rgba(255,255,255,0.04));
  box-shadow: 0 30px 70px -30px rgba(31, 107, 122, 0.55);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-light);
  color: var(--navy-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 18px;
  border-radius: 999px;
}

/* ============================================
   Trial CTA
   ============================================ */
.trial-cta {
  background:
    radial-gradient(640px 360px at 50% 0%, rgba(31, 107, 122, 0.38), transparent 65%),
    var(--navy-deep);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 110px 0;
}
.trial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.trial-inner h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 18px;
}
.trial-inner > p:not(.trial-fineprint) { font-size: 1.05rem; margin-bottom: 36px; }
.trial-fineprint {
  margin: 28px 0 0;
  font-size: 0.84rem;
  color: var(--ink-faint);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-soft);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-mark { width: 34px; height: 34px; }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 38ch;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 0.92rem;
  color: var(--ink-muted);
  transition: color 200ms var(--ease);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--teal-text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border-soft);
  padding: 24px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ============================================
   Reveal-on-scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1080px) {
  .grid-features { grid-template-columns: repeat(2, 1fr); }
  .grid-who { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .phone-frame { width: 260px; }
  .phone-screen { height: 420px; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.is-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--border-soft);
    padding: 20px 24px 28px;
  }
  .header-actions .btn-sm { padding: 9px 16px; font-size: 0.82rem; }

  .grid-features { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 56px; }
  .hero-stats { gap: 28px; }
}
