/* Veridian Labs — Premium B2B Landing */

:root {
  --green: #2fa84f;
  --green-dark: #248a40;
  --green-soft: #e8f7ec;
  --green-glow: rgba(47, 168, 79, 0.18);

  --ink: #0f1412;
  --ink-soft: #2a332e;
  --muted: #5f6d64;
  --faint: #8d9a92;

  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-2: #f0f4f1;
  --border: #dde5e0;
  --border-soft: #e8eeea;

  --shadow-sm: 0 1px 2px rgba(15, 20, 18, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 20, 18, 0.06);
  --shadow-lg: 0 24px 60px rgba(15, 20, 18, 0.08);
  --shadow-green: 0 12px 40px rgba(47, 168, 79, 0.22);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --header-h: 76px;
  --header-logo-h: 52px;
  --footer-logo-h: 64px;
  --drawer-logo-h: 48px;
  --content-max: 1120px;
  --content-pad: clamp(20px, 4vw, 40px);
  --mobile-cta-h: 0px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: calc(var(--mobile-cta-h) + var(--safe-bottom));
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

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

img.header__logo {
  max-width: none;
  flex-shrink: 0;
}

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

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

strong { font-weight: 600; color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: max(var(--content-pad), var(--safe-left)) max(var(--content-pad), var(--safe-right));
}

main,
.header,
.footer,
.mobile-cta {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(47, 168, 79, 0.15);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(180deg, #38b85a 0%, var(--green) 100%);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(47, 168, 79, 0.28);
}

.btn--lg { padding: 16px 28px; font-size: 15px; min-height: 52px; }
.btn--full { width: 100%; }

@media (hover: none) {
  .btn--primary:hover { transform: none; }
  .btn--primary:active { transform: scale(0.98); }
}

.btn__arrow { transition: transform 0.2s var(--ease); }
.btn--primary:hover .btn__arrow { transform: translateX(3px); }

/* Header */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  background: rgba(246, 248, 247, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.header--scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__brand {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.header__logo {
  height: var(--header-logo-h);
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.header__nav .btn {
  padding: 13px 22px;
  font-size: 15px;
}

/* Language switcher */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
}

.lang-switch--mobile {
  margin-bottom: 8px;
  align-self: flex-start;
}

.lang-switch__btn {
  min-width: 36px;
  padding: 6px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-switch__btn:hover {
  color: var(--ink-soft);
}

.lang-switch__btn.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.header__link:hover { color: var(--ink); }

.header__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.header__menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.header__menu[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.header__menu[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.header__mobile {
  position: fixed;
  inset: calc(var(--header-h) + var(--safe-top)) 0 0;
  z-index: 99;
  background: var(--surface);
  padding: 24px 28px calc(28px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: mobile-nav-in 0.25s var(--ease);
}

.header__mobile[hidden] { display: none; }

@keyframes mobile-nav-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.header__mobile-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  min-height: 52px;
  display: flex;
  align-items: center;
}

.header__mobile .btn {
  flex-shrink: 0;
  margin-top: 24px;
  padding: 18px 24px;
  min-height: 56px;
  font-size: 16px;
  line-height: 1.3;
  border-radius: var(--radius-sm);
}

.header__mobile-backdrop {
  position: fixed;
  inset: calc(var(--header-h) + var(--safe-top)) 0 0;
  z-index: 98;
  background: rgba(15, 20, 18, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: fade-in 0.2s ease;
}

.header__mobile-backdrop[hidden] { display: none; }

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hero */

.hero {
  position: relative;
  padding: calc(var(--header-h) + var(--safe-top) + 48px) 0 88px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(47, 168, 79, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.hero__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.hero__content {
  min-width: 0;
  flex: 1 1 380px;
  max-width: 520px;
}

.hero__title {
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero__actions { margin-bottom: 40px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}

.stat__value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.stat__label {
  display: block;
  font-size: 12px;
  color: var(--faint);
  line-height: 1.45;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 400px;
  max-width: 520px;
}

.hero__panel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg);
}

.hero__panel-tag {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.hero__panel-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
}

.hero__panel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(47, 168, 79, 0.5);
}

.hero__panel-outcomes {
  list-style: none;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__outcome {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease);
}

.hero__outcome:hover {
  border-color: rgba(47, 168, 79, 0.22);
}

.hero__outcome-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}

.hero__outcome strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.hero__outcome span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.hero__panel-foot {
  background: linear-gradient(145deg, var(--ink) 0%, #1a2420 100%);
  color: #c8d4cc;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__panel-foot p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

/* Sections */

.section-header { margin-bottom: 48px; }

.section-header--center { text-align: center; }

.section-header__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: center;
  justify-items: center;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
  margin-inline: auto;
}

.section-header--center .section-desc {
  margin: 12px auto 0;
}

/* Audience */

.audience {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

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

.audience__card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.audience__card:hover {
  border-color: rgba(47, 168, 79, 0.22);
  box-shadow: var(--shadow-sm);
}

.audience__region {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.audience__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.audience__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Product */

.product {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

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

.pillar {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 168, 79, 0.22);
}

.pillar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pillar__index {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--faint);
}

.pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.pillar__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.product-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.product-cta__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

/* Specs */

.specs { padding: 96px 0; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.spec-card:hover {
  border-color: rgba(47, 168, 79, 0.2);
  box-shadow: var(--shadow-md);
}

.spec-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.spec-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Vision */

.vision {
  padding: 96px 0 112px;
}

.vision__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px;
  background: linear-gradient(145deg, var(--ink) 0%, #1a2420 100%);
  border-radius: var(--radius-lg);
  color: #dce4df;
  box-shadow: var(--shadow-lg);
}

.vision__panel .eyebrow {
  background: rgba(47, 168, 79, 0.12);
  border-color: rgba(47, 168, 79, 0.2);
  color: #6fd48a;
}

.vision__panel .section-title { color: #fff; }

.vision__intro {
  font-size: 16px;
  color: #a8b5ad;
  line-height: 1.75;
  margin-top: 12px;
}

.roadmap {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.roadmap__item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.roadmap__item:last-child { border-bottom: none; padding-bottom: 0; }

.roadmap__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #3d4a43;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.roadmap__item--active .roadmap__dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.2), 0 0 16px rgba(47, 168, 79, 0.35);
}

.roadmap__status {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6d7a72;
  margin-bottom: 4px;
}

.roadmap__item--active .roadmap__status { color: #6fd48a; }

.roadmap__name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.roadmap__desc {
  display: block;
  font-size: 14px;
  color: #95a39b;
}

/* Footer */

.footer {
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
}

.footer__logo {
  height: var(--footer-logo-h);
  width: auto;
  max-width: 280px;
  margin-bottom: 18px;
}

.footer__about {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 14px;
}

.footer__about-link {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  padding: 0;
}

.footer__about-link:hover { color: var(--green); }

.footer__meta { text-align: right; }

.footer__email {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  margin-bottom: 8px;
}

.footer__copy {
  font-size: 13px;
  color: var(--faint);
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 18, 0.45);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  animation: panel-in 0.25s ease;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.modal__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-input {
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--faint); }

.form-input:focus {
  border-color: rgba(47, 168, 79, 0.45);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-input--error {
  border-color: #c94a4a;
}

.form-input--error:focus {
  border-color: #c94a4a;
  box-shadow: 0 0 0 3px rgba(201, 74, 74, 0.15);
}

.form-hint {
  font-size: 12px;
  color: var(--faint);
  line-height: 1.45;
}

.form-error {
  font-size: 12px;
  font-weight: 500;
  color: #b83a3a;
  line-height: 1.45;
}

.form-textarea { resize: vertical; min-height: 96px; }

/* Drawer */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.drawer[hidden] { display: none; }

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 18, 0.4);
  backdrop-filter: blur(4px);
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 40px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: drawer-in 0.3s ease;
}

@keyframes drawer-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.drawer__logo {
  height: var(--drawer-logo-h);
  width: auto;
  max-width: min(220px, 75%);
  margin-bottom: 20px;
}

.drawer__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.drawer__body {
  flex: 1;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.drawer__body p { margin-bottom: 14px; }

.drawer__contact {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

.drawer__panel > .btn { margin-top: 24px; }

body.overlay-open,
body.menu-open { overflow: hidden; }

/* Sticky mobile CTA */

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 20px calc(12px + var(--safe-bottom));
  background: rgba(246, 248, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 32px rgba(15, 20, 18, 0.08);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta .btn {
  min-height: 50px;
  font-size: 15px;
}

/* Responsive — Desktop polish */

@media (min-width: 769px) {
  .header__menu,
  .header__mobile,
  .header__mobile-backdrop,
  .mobile-cta {
    display: none !important;
  }

  .header__nav {
    display: flex;
  }

  .hero__visual { order: unset; }
  .hero__content { order: unset; }

  .hero__content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero__visual {
    align-items: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__stats {
    max-width: 520px;
    margin-inline: auto;
  }

  .section-header {
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .hero__grid {
    gap: 40px;
    max-width: 920px;
  }

  .hero__title {
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  }

}

@media (max-width: 900px) {
  .audience__grid { grid-template-columns: 1fr; }
  .audience { padding: 56px 0; }
  .pillars { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .vision__panel { grid-template-columns: 1fr; padding: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__meta { text-align: left; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --header-logo-h: 44px;
    --footer-logo-h: 56px;
    --drawer-logo-h: 44px;
    --mobile-cta-h: 74px;
  }

  .container { padding-inline: max(20px, var(--safe-left)) max(20px, var(--safe-right)); }

  .header__nav { display: none; }

  .header__menu {
    display: flex;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-cta { display: block; }

  .hero {
    padding: calc(var(--header-h) + var(--safe-top) + 28px) 0 64px;
  }

  .hero__grid {
    flex-direction: column;
    gap: 32px;
    max-width: none;
  }

  .hero__visual { order: 2; }

  .hero__content {
    order: 1;
    flex: 1 1 auto;
    max-width: none;
    text-align: left;
    align-items: stretch;
    display: block;
  }

  .hero__visual {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }

  .hero__title { font-size: clamp(1.85rem, 8.5vw, 2.5rem); }

  .hero__subtitle { font-size: 1rem; margin-bottom: 24px; }

  .hero__actions { margin-bottom: 0; }

  .hero__actions   .btn--lg,
  .product-cta .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .btn--full {
    padding: 14px 20px;
    min-height: 48px;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 24px;
    margin-top: 28px;
  }

  .stat__value { font-size: 13px; }

  .stat__label { font-size: 11px; }

  .hero__visual {
    max-width: none;
  }

  .eyebrow {
    font-size: 10px;
    padding: 6px 12px;
    letter-spacing: 0.08em;
  }

  .product, .specs, .vision { padding: 56px 0; }

  .section-header { margin-bottom: 32px; }

  .section-title { font-size: clamp(1.65rem, 6vw, 2rem); }

  .pillar { padding: 22px 20px; }

  .spec-card { padding: 22px 20px; }

  .vision__panel { padding: 28px 20px; border-radius: var(--radius); }

  .footer { padding: 40px 0 24px; }


  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal__panel {
    max-width: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 28px 20px calc(28px + var(--safe-bottom));
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer__panel {
    max-width: none;
    padding: 32px 20px calc(32px + var(--safe-bottom));
  }

}

@media (max-width: 480px) {
  :root {
    --header-h: 60px;
    --header-logo-h: 38px;
    --footer-logo-h: 48px;
    --drawer-logo-h: 40px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .stat:last-child { border-bottom: none; }

  .pillar__top { margin-bottom: 16px; }

  .roadmap__item { padding: 14px 0; }
}

@media (max-width: 360px) {
  .container { padding-inline: max(16px, var(--safe-left)) max(16px, var(--safe-right)); }

  .hero__title { font-size: 1.7rem; }
}

/* ============================================================
   v2 — Challenge, How It Works, Regions, Pricing, FAQ, CTA band,
   RTL / Arabic, secondary buttons, form success
   ============================================================ */

.container--narrow { max-width: 800px; }

/* Secondary buttons */

.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(47, 168, 79, 0.4);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: var(--surface);
  color: var(--green-dark);
  border: 1px solid rgba(47, 168, 79, 0.35);
}

.btn--outline:hover {
  background: var(--green-soft);
  transform: translateY(-1px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--faint);
}

.hero__trust-flags {
  font-size: 16px;
  letter-spacing: 0.12em;
}

.hero__trust-arrow { color: var(--faint); }

/* Challenge */

.challenge {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(47, 168, 79, 0.06) 0%, transparent 70%),
    var(--bg);
}

.eyebrow--alert {
  color: #b06119;
  background: #fdf3e7;
  border-color: rgba(176, 97, 25, 0.18);
}

.challenge__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.challenge__card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.challenge__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 168, 79, 0.22);
}

.challenge__value {
  display: block;
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.challenge__label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.challenge__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Countdown */

.countdown {
  background: linear-gradient(145deg, var(--ink) 0%, #1a2420 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  color: #dce4df;
  box-shadow: var(--shadow-lg);
}

.countdown__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fa096;
  margin-bottom: 18px;
}

.countdown__timer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 3vw, 24px);
  margin-bottom: 16px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
}

.countdown__num {
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  min-width: 88px;
}

.countdown__cap {
  font-size: 12px;
  color: #8fa096;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown__sep {
  font-family: var(--mono);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #3d4a43;
  padding-top: 14px;
}

.countdown__note {
  font-size: 14px;
  font-weight: 500;
  color: #6fd48a;
}

/* How It Works */

.how {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 168, 79, 0.22);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #38b85a 0%, var(--green) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-green);
  margin-bottom: 18px;
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Regions */

.regions { padding: 96px 0; }

.regions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.region-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 168, 79, 0.22);
}

.region-card__flag {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
}

.region-card__name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.region-card__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 4px 9px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.region-card__text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Pricing */

.pricing {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  background: var(--surface);
  border: 2px solid rgba(47, 168, 79, 0.45);
  box-shadow: var(--shadow-md);
}

.price-card__badge {
  position: absolute;
  top: -13px;
  inset-inline-start: 30px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #38b85a 0%, var(--green) 100%);
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-green);
}

.price-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.price-card__name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.price-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  flex: 1;
}

.price-card__features li {
  position: relative;
  padding-inline-start: 26px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.price-card__features li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.pricing__note {
  max-width: 680px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* FAQ */

.faq { padding: 96px 0; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  overflow: hidden;
}

.faq__item:hover,
.faq__item[open] {
  border-color: rgba(47, 168, 79, 0.25);
}

.faq__item[open] { box-shadow: var(--shadow-md); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 20px 24px;
  color: var(--ink);
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: "+";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.25s var(--ease);
}

.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* CTA band */

.cta-band { padding: 0 0 112px; }

.cta-band__panel {
  position: relative;
  background:
    radial-gradient(ellipse 70% 90% at 80% -10%, rgba(47, 168, 79, 0.22) 0%, transparent 60%),
    linear-gradient(145deg, var(--ink) 0%, #1a2420 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center;
  color: #dce4df;
  box-shadow: var(--shadow-lg);
}

.eyebrow--invert {
  background: rgba(47, 168, 79, 0.12);
  border-color: rgba(47, 168, 79, 0.25);
  color: #6fd48a;
}

.cta-band__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 16px;
}

.cta-band__desc {
  font-size: 16px;
  color: #a8b5ad;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 30px;
}

/* Form success */

.form-success {
  text-align: center;
  padding: 12px 0 4px;
}

.form-success[hidden] { display: none; }

.form-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 18px;
}

.form-error--global {
  text-align: center;
  margin-top: 4px;
}

/* ---------- RTL / Arabic ---------- */

[dir="rtl"] body,
[dir="rtl"] .btn,
[dir="rtl"] .form-input,
[dir="rtl"] .lang-switch__btn {
  font-family: "Tajawal", var(--font);
}

[dir="rtl"] .hero__title,
[dir="rtl"] .section-title,
[dir="rtl"] .cta-band__title,
[dir="rtl"] .modal__title,
[dir="rtl"] .drawer__title {
  letter-spacing: 0;
}

[dir="rtl"] .eyebrow,
[dir="rtl"] .countdown__label,
[dir="rtl"] .roadmap__status,
[dir="rtl"] .price-card__tag,
[dir="rtl"] .price-card__badge,
[dir="rtl"] .region-card__tag,
[dir="rtl"] .hero__panel-tag,
[dir="rtl"] .audience__region {
  letter-spacing: 0;
}

[dir="rtl"] .btn__arrow,
[dir="rtl"] .hero__trust-arrow {
  transform: scaleX(-1);
}

[dir="rtl"] .btn--primary:hover .btn__arrow {
  transform: scaleX(-1) translateX(3px);
}

[dir="rtl"] .footer__meta { text-align: left; }

[dir="rtl"] .modal__close,
[dir="rtl"] .drawer__close {
  right: auto;
  left: 16px;
}

[dir="rtl"] .drawer__panel {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--border);
  animation: drawer-in-rtl 0.3s ease;
}

@keyframes drawer-in-rtl {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

[dir="rtl"] .countdown__timer { direction: ltr; }

/* ---------- Responsive for new sections ---------- */

@media (max-width: 1000px) {
  .regions__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .challenge__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .challenge, .how, .regions, .pricing, .faq { padding: 56px 0; }
  .cta-band { padding: 0 0 64px; }

  .hero__actions .btn--ghost {
    width: 100%;
    text-align: center;
  }

  .hero__trust { margin-top: 18px; }

  .countdown { padding: 28px 16px; }

  .countdown__num {
    min-width: 64px;
    padding: 10px 12px;
  }

  .countdown__unit { min-width: 56px; }

  .price-card { padding: 28px 22px; }

  .faq__q { padding: 16px 18px; font-size: 15px; }

  .faq__a { padding: 0 18px 18px; }
}

@media (max-width: 560px) {
  .regions__grid { grid-template-columns: 1fr; }
}

/* ---------- Skip link ---------- */

.skip-link {
  position: fixed;
  top: 8px;
  inset-inline-start: 8px;
  z-index: 300;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  color: #fff;
}

/* ---------- Scrollspy ---------- */

.header__link.is-active {
  color: var(--green-dark);
}

/* ---------- Scroll reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Calculator ---------- */

.calc {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(47, 168, 79, 0.07) 0%, transparent 70%),
    var(--bg);
}

.calc__panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  max-width: 880px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc__inputs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px;
  border-inline-end: 1px solid var(--border-soft);
}

.calc__inputs .btn { margin-top: auto; white-space: normal; text-align: center; }

.calc__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235f6d64' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-inline-end: 40px;
}

[dir="rtl"] .calc__select { background-position: left 16px center; }

.calc__results {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--bg);
}

.calc__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.calc__label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.calc__value {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.calc__value--bad {
  color: #b8483a;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(184, 72, 58, 0.5);
}

.calc__save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--green-soft);
  border: 1px solid rgba(47, 168, 79, 0.25);
  border-radius: var(--radius-sm);
}

.calc__save-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
}

.calc__save-value {
  font-family: var(--mono);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 500;
  color: var(--green-dark);
  white-space: nowrap;
}

.calc__disclaimer {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--faint);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .calc { padding: 56px 0; }

  .calc__panel { grid-template-columns: 1fr; }

  .calc__inputs {
    border-inline-end: none;
    border-bottom: 1px solid var(--border-soft);
    padding: 24px 20px;
  }

  .calc__results { padding: 24px 20px; }

  .calc__row { flex-direction: column; align-items: flex-start; gap: 2px; }

  .calc__save { flex-direction: column; align-items: flex-start; gap: 4px; }
}

