/* ============================================================
   SYNEDICA Global — Shared stylesheet
   Design tokens mirror the original brand system (ink / sky accent)
   ============================================================ */

:root {
  --ink:            hsl(215 50% 12%);
  --ink-deep:       hsl(215 55% 8%);
  --ink-soft:       hsl(215 18% 42%);
  --cream:          hsl(0 0% 100%);
  --paper:          hsl(210 30% 98%);
  --foreground:     hsl(215 45% 12%);
  --muted:          hsl(215 18% 42%);
  --accent:         hsl(217 55% 55%);
  --accent-strong:  hsl(217 60% 45%);
  --ring:           hsl(217 55% 55%);
  --sky:            hsl(210 80% 92%);
  --terra:          hsl(215 50% 18%);
  --primary:        hsl(215 50% 18%);
  --secondary:      hsl(217 45% 60%);
  --destructive:    hsl(0 70% 45%);
  --success:        hsl(152 62% 32%);
  --warning:        hsl(42 85% 40%);
  --border:         hsl(215 25% 90%);
  --radius:         1rem;

  --gradient-cinematic:
    radial-gradient(120% 80% at 20% 0%, hsl(217 70% 88% / 0.7) 0%, transparent 60%),
    radial-gradient(100% 70% at 100% 100%, hsl(215 60% 92% / 0.8) 0%, transparent 55%),
    linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(210 40% 98%) 100%);
  --gradient-hero:
    radial-gradient(60% 50% at 25% 30%, hsl(217 70% 90% / 0.9) 0%, transparent 60%),
    radial-gradient(70% 60% at 80% 70%, hsl(215 50% 95% / 0.95) 0%, transparent 65%),
    linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(210 40% 97%) 100%);
  --gradient-accent:
    linear-gradient(135deg, hsl(215 55% 20%) 0%, hsl(217 55% 45%) 50%, hsl(210 75% 70%) 100%);
  --gradient-accent-soft:
    linear-gradient(135deg, hsl(215 55% 25% / 0.92) 0%, hsl(217 60% 55% / 0.92) 100%);
  --gradient-sky:
    linear-gradient(135deg, hsl(210 90% 92%) 0%, hsl(208 85% 78%) 45%, hsl(212 80% 68%) 100%);

  --shadow-glow: 0 30px 80px -20px hsl(217 55% 50% / 0.25);
  --shadow-soft: 0 10px 40px -15px hsl(215 50% 25% / 0.12);
  --shadow-btn:  0 10px 40px -10px hsl(215 55% 25% / 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.35s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--foreground);
  background: var(--gradient-cinematic);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: hsl(217 55% 55% / 0.25); }

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.no-scroll { overflow: hidden; }


:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px hsl(217 55% 55% / 0.45);
  border-radius: 6px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -0.01em; }
.font-display { font-weight: 800; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  background: hsl(0 0% 100% / 0.7);
  border: 1px solid hsl(215 50% 12% / 0.1);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  backdrop-filter: blur(8px);
}

/* ---------- Layout ---------- */
.container-px { padding-left: clamp(1.25rem, 4vw, 2.5rem); padding-right: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding: 5rem 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 1rem 0 0;
  transition: padding var(--dur) var(--ease);
}
.site-header.is-scrolled { padding-top: 0.5rem; }

.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(96%, 1100px);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  background: hsl(0 0% 100% / 0.68);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid hsl(0 0% 100% / 0.6);
  box-shadow: 0 1px 0 hsl(215 50% 12% / 0.04), var(--shadow-soft);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled .nav-pill { box-shadow: var(--shadow-glow); background: hsl(0 0% 100% / 0.85); }

.brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.brand img { height: 40px; width: auto; }

.nav-links { display: none; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: 0.875rem;
  color: hsl(var(--ink) / 0.75);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); font-weight: 600; }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-accent);
}

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

/* Language dropdown */
.lang-menu { position: relative; }
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.7);
  border: 1px solid hsl(215 50% 12% / 0.1);
  box-shadow: 0 1px 2px hsl(215 50% 25% / 0.06);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--ink) / 0.8);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lang-trigger:hover { border-color: hsl(215 50% 12% / 0.22); background: #fff; }
.lang-trigger .chev { transition: transform 0.2s var(--ease); }
.lang-menu.is-open .lang-trigger .chev { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 13rem;
  padding: 0.4rem;
  border-radius: 1rem;
  background: hsl(0 0% 100% / 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(215 50% 12% / 0.1);
  box-shadow: var(--shadow-glow);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.lang-menu.is-open .lang-dropdown { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-dropdown .lang-label {
  padding: 0.5rem 0.75rem 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsl(var(--ink) / 0.5);
  font-weight: 600;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  font-size: 0.875rem;
  color: var(--ink);
  transition: background 0.15s ease;
}
.lang-dropdown a:hover { background: hsl(215 50% 12% / 0.04); }
.lang-dropdown a.is-active { background: hsl(215 50% 12% / 0.06); font-weight: 600; }
.lang-dropdown .flag {
  position: relative;
  display: inline-block;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px hsl(0 0% 100% / 0.6), 0 1px 2px hsl(0 0% 0% / 0.08), 0 0 0 1px hsl(215 50% 12% / 0.15);
}
.lang-dropdown .flag img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4);
}
.lang-dropdown .code { margin-left: auto; font-size: 0.7rem; letter-spacing: 0.08em; color: hsl(var(--ink) / 0.4); }

/* Mobile nav */
.mobile-toggle { display: inline-flex; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a { font-size: 1.4rem; font-weight: 700; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), opacity 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.55; pointer-events: none; }

.btn-accent {
  background: var(--gradient-accent);
  background-size: 150% 150%;
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-accent:hover { background-position: 100% 50%; box-shadow: var(--shadow-glow); }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid hsl(215 50% 12% / 0.15);
}
.btn-outline:hover { border-color: hsl(215 50% 12% / 0.3); background: hsl(0 0% 100% / 0.5); }
.btn-ghost { color: hsl(var(--ink) / 0.75); }
.btn-ghost:hover { color: var(--ink); background: hsl(215 50% 12% / 0.05); }

/* ---------- Cards ---------- */
.card {
  border-radius: 1.5rem;
  background: hsl(0 0% 100% / 0.85);
  border: 1px solid hsl(215 50% 12% / 0.08);
  box-shadow: 0 30px 80px -30px hsl(215 60% 20% / 0.25);
  backdrop-filter: blur(10px);
}
.card-pad { padding: clamp(1.5rem, 4vw, 2.5rem); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.82rem; font-weight: 600; color: hsl(var(--ink) / 0.7); }
.input, .textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: hsl(0 0% 100% / 0.9);
  border: 1px solid hsl(215 50% 12% / 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.input {
  height: 3.5rem;
  border-radius: 999px;
  padding: 0 1.25rem;
  font-size: 1rem;
}
.textarea {
  min-height: 8rem;
  border-radius: 1.5rem;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  resize: vertical;
}
.input::placeholder, .textarea::placeholder { color: hsl(var(--ink) / 0.4); }
.input:focus, .textarea:focus {
  outline: none;
  border-color: hsl(var(--ink) / 0.3);
  box-shadow: 0 0 0 4px hsl(215 50% 12% / 0.08);
  background: #fff;
}
.field.is-invalid .input, .field.is-invalid .textarea { border-color: var(--destructive); }
.field-error {
  display: none;
  font-size: 0.8rem;
  color: var(--destructive);
  padding-left: 0.5rem;
}
.field.is-invalid .field-error { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 0%, hsl(217 90% 92% / 0.75) 0%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 64rem; margin: 0 auto; text-align: center; }
.hero h1 {
  margin-top: 1.4rem;
  font-size: clamp(2.1rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 0.98;
}
.hero p.lead {
  margin: 1.4rem auto 0;
  max-width: 40rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: hsl(var(--ink) / 0.65);
}

/* Noise texture overlay */
.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Modal (floating) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: hsl(215 55% 8% / 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal-card {
  width: min(100%, 26rem);
  border-radius: 1.5rem;
  background: hsl(0 0% 100% / 0.98);
  border: 1px solid hsl(0 0% 100% / 0.6);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s var(--ease);
}
.modal-overlay.is-open .modal-card { transform: translateY(0) scale(1); }

.modal-body { padding: 2rem; text-align: center; }
.modal-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 1.9rem;
}
.modal-icon.success { background: hsl(152 60% 90%); color: var(--success); }
.modal-icon.danger  { background: hsl(0 70% 92%); color: var(--destructive); }
.modal-icon.warning { background: hsl(42 90% 90%); color: var(--warning); }
.modal-icon.info    { background: hsl(217 60% 92%); color: var(--accent-strong); }
.modal-title { font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.modal-text { margin-top: 0.5rem; font-size: 0.95rem; color: hsl(var(--ink) / 0.62); }
.modal-actions { margin-top: 1.5rem; display: flex; justify-content: center; }

/* ---------- Verify result ---------- */
.result {
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid transparent;
}
.result .result-icon { font-size: 3rem; line-height: 1; margin-bottom: 0.6rem; }
.result .result-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.4rem; }
.result .result-message { font-size: 0.95rem; line-height: 1.6; }
.result .result-date { display: inline-block; margin-top: 0.75rem; font-size: 0.82rem; opacity: 0.75; }
.result-success { background: linear-gradient(135deg, hsl(152 60% 93%), hsl(152 50% 88%)); border-color: hsl(152 50% 60%); }
.result-success .result-title, .result-success .result-message { color: hsl(152 60% 22%); }
.result-danger { background: linear-gradient(135deg, hsl(0 70% 95%), hsl(0 65% 90%)); border-color: hsl(0 65% 68%); }
.result-danger .result-title, .result-danger .result-message { color: hsl(0 60% 32%); }
.result-warning { background: linear-gradient(135deg, hsl(42 90% 95%), hsl(42 85% 88%)); border-color: hsl(42 80% 58%); }
.result-warning .result-title, .result-warning .result-message { color: hsl(42 80% 30%); }
.result-secondary { background: linear-gradient(135deg, hsl(217 20% 96%), hsl(217 18% 90%)); border-color: hsl(217 15% 70%); }
.result-secondary .result-title, .result-secondary .result-message { color: hsl(217 20% 30%); }

/* Code input (verify) */
.code-input {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.5rem;
  height: 4rem;
}

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; gap: 2rem; max-width: 72rem; margin: 0 auto; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-info-item .ico {
  flex: none;
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem;
  background: hsl(210 90% 94%);
  color: var(--accent-strong);
}
.contact-info-item .ico svg { width: 1rem; height: 1rem; }
.map-frame { border-radius: 1.5rem; overflow: hidden; border: 1px solid hsl(215 50% 12% / 0.08); }
.map-frame iframe { width: 100%; height: 380px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid hsl(215 50% 12% / 0.08);
  padding: 3rem 0 2rem;
  background: hsl(0 0% 100% / 0.5);
  backdrop-filter: blur(8px);
}
.footer-inner { max-width: 72rem; margin: 0 auto; }
.footer-tagline { font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.footer-sub { margin-top: 0.5rem; max-width: 32rem; font-size: 0.9rem; color: hsl(var(--ink) / 0.55); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(215 50% 12% / 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: hsl(var(--ink) / 0.5);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.6); }
  70%  { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
.animate-fade-up { animation: fadeInUp 0.6s var(--ease) both; }
.animate-pop { animation: popIn 0.5s var(--ease) both; }

/* ---------- Spinner ---------- */
.spinner {
  width: 1rem; height: 1rem;
  border: 2px solid hsl(0 0% 100% / 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
  .contact-grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
}

@media (max-width: 640px) {
  .nav-pill { padding: 0.6rem 1rem; }
  .brand img { height: 32px; }
  .hero { padding: 7.5rem 0 3.5rem; }
  .map-frame iframe { height: 300px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Homepage components
   ============================================================ */
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-lead {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
  color: hsl(var(--ink) / 0.6);
  font-size: 1.05rem;
}
.section-wrap { max-width: 72rem; margin: 0 auto; }

/* Products */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.product-card {
  position: relative;
  border-radius: 1.5rem;
  background: hsl(0 0% 100% / 0.85);
  border: 1px solid hsl(215 50% 12% / 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.product-media {
  height: 12rem;
  background: var(--gradient-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--ink) / 0.35);
}
.product-media svg { width: 4rem; height: 4rem; }
.product-body { padding: 1.25rem 1.25rem 1.5rem; }
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient-accent);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.75rem;
}
.product-name { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.product-desc { margin-top: 0.5rem; font-size: 0.9rem; color: hsl(var(--ink) / 0.6); line-height: 1.6; }
.verify-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.92rem;
  color: hsl(var(--ink) / 0.6);
}
.verify-note a { color: var(--accent-strong); font-weight: 600; }
.verify-note a:hover { text-decoration: underline; }

/* Feature / pillar / quality grids */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.feature-card {
  border-radius: 1.25rem;
  background: hsl(0 0% 100% / 0.8);
  border: 1px solid hsl(215 50% 12% / 0.07);
  padding: 1.5rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.feature-ico {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.8rem;
  background: var(--gradient-sky);
  color: var(--accent-strong);
  margin-bottom: 1rem;
}
.feature-ico svg { width: 1.2rem; height: 1.2rem; }
.feature-card h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.88rem; color: hsl(var(--ink) / 0.6); line-height: 1.6; }

/* Process steps */
.steps { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.step {
  position: relative;
  border-radius: 1.25rem;
  background: hsl(0 0% 100% / 0.8);
  border: 1px solid hsl(215 50% 12% / 0.07);
  padding: 1.5rem;
}
.step-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-strong);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; color: hsl(var(--ink) / 0.6); line-height: 1.6; }

/* Testimonials */
.testimonials-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.testimonial {
  border-radius: 1.25rem;
  background: hsl(0 0% 100% / 0.8);
  border: 1px solid hsl(215 50% 12% / 0.07);
  padding: 1.5rem;
}
.testimonial blockquote { font-size: 0.95rem; color: hsl(var(--ink) / 0.75); line-height: 1.6; font-style: italic; }
.testimonial cite { display: block; margin-top: 1rem; font-size: 0.82rem; font-style: normal; font-weight: 700; color: var(--ink); }

/* FAQ accordion */
.faq-list { max-width: 46rem; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item {
  border-radius: 1rem;
  background: hsl(0 0% 100% / 0.8);
  border: 1px solid hsl(215 50% 12% / 0.08);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .chev { flex: none; transition: transform 0.25s var(--ease); color: hsl(var(--ink) / 0.4); }
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner { padding: 0 1.25rem 1.1rem; font-size: 0.92rem; color: hsl(var(--ink) / 0.62); line-height: 1.7; }
.faq-item.is-open .faq-a { max-height: 20rem; }

/* Newsletter + CTA */
.newsletter-card, .cta-card {
  border-radius: 1.75rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.newsletter-card h2, .cta-card h2 { color: #fff; }
.newsletter-card p, .cta-card p { color: hsl(0 0% 100% / 0.85); }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.5rem; }
.newsletter-form input {
  flex: 1 1 15rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid hsl(0 0% 100% / 0.35);
  background: hsl(0 0% 100% / 0.92);
  color: var(--ink);
  padding: 0 1.2rem;
  font: inherit;
}
.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 4px hsl(0 0% 100% / 0.3); }
.newsletter-note { margin-top: 1rem; font-size: 0.8rem; color: hsl(0 0% 100% / 0.75); }
.cta-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-soft); }
.btn-light:hover { box-shadow: var(--shadow-glow); }
.cta-email { display: inline-flex; align-items: center; gap: 0.4rem; color: hsl(0 0% 100% / 0.9); font-weight: 600; }
.cta-email:hover { text-decoration: underline; }

/* Results statement */
.results-banner {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}






