/* ZapaKid — landing site styles */

:root {
  --green-900: #1b4332;
  --green-700: #2d6a4f;
  --green-600: #3a8a5f;
  --green-500: #4caf7d;
  --green-400: #74c69d;
  --green-300: #95d5b2;
  --green-100: #e7f9ee;
  --yellow: #ffd166;
  --yellow-dark: #f4a300;
  --orange: #ff9f55;
  --bg: #fbfdf9;
  --text: #1b3328;
  --text-light: #5b7a6b;
  --white: #ffffff;
  --border: #d9efe1;
  --shadow: 0 10px 30px rgba(45, 106, 79, .10);
  --radius: 18px;
  --radius-sm: 12px;
  --font-head: 'Baloo 2', 'Poppins', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--green-700); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--green-900);
  line-height: 1.2;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { line-height: 1.65; color: var(--text-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 14px 30px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(76, 175, 125, .35);
}
.btn-primary:hover { background: var(--green-600); }

.btn-cta {
  background: var(--yellow);
  color: var(--green-900);
  box-shadow: 0 8px 20px rgba(244, 163, 0, .35);
}
.btn-cta:hover { background: var(--yellow-dark); }

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-300);
}
.btn-outline:hover { border-color: var(--green-500); background: var(--green-100); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 253, 249, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-900);
  text-decoration: none;
}
.logo svg { flex-shrink: 0; }
.logo .brand { color: var(--green-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  font-size: 1.02rem;
  transition: color .15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-600); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--green-100);
  border: none;
  border-radius: 999px;
  padding: 8px 28px 8px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--green-700);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%232D6A4F' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 7px;
}

.btn-feedback {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--green-700);
  background: var(--green-100);
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background .2s ease;
  white-space: nowrap;
}
.btn-feedback:hover { background: var(--green-300); }

/* ---------- Feedback modal ---------- */
.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(27, 51, 40, .5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.feedback-modal.show { display: flex; }
.feedback-modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  max-width: 460px;
  width: 100%;
}
.feedback-modal-content h3 { margin-bottom: 6px; }
.feedback-modal-content > p { margin-bottom: 18px; }
.feedback-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
}
.feedback-modal-close:hover { color: var(--green-700); }

.nav-mobile-only { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--green-900);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 40px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-note {
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-700);
  font-size: .95rem;
  max-width: 480px;
}

.highlight-box {
  background: var(--green-100);
  border: 1px solid var(--green-300);
  border-radius: var(--radius);
  padding: 30px 36px;
  max-width: 840px;
  margin: 0 auto 44px;
  text-align: center;
}
.highlight-box h3 { margin-bottom: 10px; }
.highlight-box p { margin: 0 auto; color: var(--green-900); max-width: 680px; }
.highlight-box p + p { margin-top: 10px; }
.highlight-box strong { color: var(--green-700); }

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art .blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, var(--green-300), transparent 70%);
  opacity: .5;
  border-radius: 50%;
  filter: blur(30px);
}
.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--border);
}
.hero-card .task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.hero-card .task:last-child { border-bottom: none; }
.hero-card .task .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-card .task.done .check { background: var(--green-500); color: var(--white); }
.hero-card .task .label { flex: 1; font-weight: 700; color: var(--green-900); font-family: var(--font-head); }
.hero-card .task .reward { font-weight: 700; color: var(--yellow-dark); font-family: var(--font-head); }
.hero-card .task.done .label { text-decoration: line-through; color: var(--text-light); }

/* ---------- Sections ---------- */
section { padding: 60px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-head p { font-size: 1.05rem; }

.section-alt { background: var(--green-100); }

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  background: var(--green-100);
}
.feature-card:nth-child(2) .icon { background: #fff4d9; }
.feature-card:nth-child(3) .icon { background: #ffe9dc; }
.feature-card:nth-child(5) .icon { background: #fff4d9; }
.feature-card:nth-child(6) .icon { background: #ffe9dc; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: .98rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 0 12px;
}
.step .num {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(76, 175, 125, .35);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 540px; margin: 0 auto 24px; }

/* ---------- Pricing ---------- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.price-card.highlight {
  border: 2px solid var(--green-500);
  position: relative;
}
.price-card .tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--green-600);
  background: var(--green-100);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.price-card .price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--green-900);
  margin: 8px 0 4px;
}
.price-card .price small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}
.price-card .desc { margin-bottom: 20px; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-weight: 600;
  color: var(--text);
}
.price-card ul li .tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}

.note-box {
  max-width: 760px;
  margin: 40px auto 0;
  background: var(--white);
  border: 1px dashed var(--green-300);
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  text-align: center;
}
.note-box strong { color: var(--green-700); }

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-900);
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green-500);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 22px 20px;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--green-900);
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-400);
}
.field textarea { min-height: 130px; resize: vertical; }

.form-msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
.form-msg.success { display: block; background: var(--green-100); color: var(--green-700); }
.form-msg.error { display: block; background: #fde2e1; color: #c0392b; }

.contact-info {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info h3 { color: var(--white); }
.contact-info p { color: var(--green-100); }
.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
}
.contact-info .info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info .info-item a,
.contact-info .info-item span {
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-head);
  text-decoration: none;
  font-size: 1.05rem;
}

/* ---------- Contact map ---------- */
.contact-map {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ---------- Legal info ---------- */
.legal-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 24px;
}
.legal-info h3 { margin-bottom: 6px; }
.legal-info dl { margin: 14px 0 0; }
.legal-info dt {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-600);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 14px;
}
.legal-info dt:first-child { margin-top: 0; }
.legal-info dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--green-100);
  padding: 50px 0 30px;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer .logo { color: var(--white); }
.site-footer .logo .brand { color: var(--green-300); }
.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: var(--green-100);
  text-decoration: none;
  font-weight: 600;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  font-size: .9rem;
  color: var(--green-300);
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: .85rem;
}
.footer-legal a {
  color: var(--green-300);
  text-decoration: underline;
  font-weight: 600;
}
.footer-legal a:hover { color: var(--white); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--green-900);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  color: var(--green-100);
  font-size: .92rem;
  max-width: 640px;
}
.cookie-banner a { color: var(--white); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-actions .btn { padding: 11px 22px; font-size: .92rem; }
.cookie-btn-outline {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.cookie-btn-outline:hover { background: rgba(255,255,255,.08); border-color: var(--white); }

/* ---------- Legal pages ---------- */
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
}
.legal-doc h2 { margin-top: 36px; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc ul { padding-left: 22px; }
.legal-doc ul li { margin-bottom: 6px; }
.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: .95rem;
}
.legal-doc table th,
.legal-doc table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.legal-doc table th { background: var(--green-100); font-family: var(--font-head); color: var(--green-900); }
.legal-doc .updated {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 30px;
}

/* ---------- Știați că? landing preview ---------- */
.sc-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.sc-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s ease;
}
.sc-preview-card:hover { transform: translateY(-4px); }
.sc-preview-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.sc-preview-body { padding: 20px 22px; }
.sc-preview-body h3 { font-size: 1rem; margin-bottom: 8px; }
.sc-preview-body p { font-size: .9rem; margin: 0; }
.sc-preview-note {
  text-align: center;
  font-size: .9rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Hero demo credentials ---------- */
.hero-demo {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #fffdf0;
  border: 1px solid #f7cc4b;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9rem;
  max-width: 480px;
}
.hero-demo-label {
  font-weight: 800;
  font-family: var(--font-head);
  margin-bottom: 4px;
}
.hero-demo code {
  background: var(--green-100);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: .85rem;
}
.hero-demo-link {
  margin-top: 8px;
  font-weight: 700;
  color: var(--green-700);
  text-decoration: none;
}
.hero-demo-link:hover { text-decoration: underline; }

/* ---------- Leaderboard podium ---------- */
.podium-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 560px;
}
.podium-spot {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.podium-stars {
  font-size: 1.6rem;
  letter-spacing: 4px;
  margin-bottom: 8px;
  animation: star-pulse 2s ease-in-out infinite;
}
@keyframes star-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}
.podium-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 4px;
  text-align: center;
}
.podium-1 .podium-name { font-size: 1.25rem; }
.podium-pts {
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 10px;
}
.podium-base {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0 0;
  font-size: 2.2rem;
  padding: 12px 0;
}
.podium-1 .podium-base { height: 140px; background: linear-gradient(180deg, #ffe066, #e5a500); box-shadow: 0 -4px 24px rgba(229,165,0,.35); }
.podium-2 .podium-base { height: 96px;  background: linear-gradient(180deg, #e0e0e0, #9e9e9e); }
.podium-3 .podium-base { height: 70px;  background: linear-gradient(180deg, #e8a87c, #b5652a); }
.lb-note {
  font-size: .85rem;
  color: var(--text-light);
  text-align: center;
  max-width: 520px;
  line-height: 1.5;
}
.lb-loading { text-align: center; color: var(--text-light); font-size: .95rem; padding: 20px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sc-preview-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav { flex-wrap: wrap; }
  .nav-cta { display: none; }
  .nav-mobile-only { display: list-item !important; }
  .nav-mobile-cta { display: inline-block; padding: 10px 20px; font-size: .95rem; }
  .features { grid-template-columns: 1fr; }
  .site-footer .wrap { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; align-items: center; gap: 12px; }
}
