:root {
  --deep-purple:   #2D1B4E;
  --deeper-purple: #1E1236;
  --bright-purple: #6B3FA0;
  --forest-green:  #2D6A4F;
  --deep-green:    #1E4D38;
  --gold:          #E6B149;
  --gold-light:    #F5C662;
  --deep-gold:     #C4922A;
  --cream:         #F7F3E9;
  --lavender:      #F0EBF7;
  --canvas:        #FAF9FC;
  --ink:           #1A1628;

  --line:        rgba(26, 22, 40, 0.08);
  --line-strong: rgba(26, 22, 40, 0.16);
  --muted:       rgba(26, 22, 40, 0.62);
  --muted-soft:  rgba(26, 22, 40, 0.48);

  --font-display: 'IBM Plex Sans Hebrew', 'Heebo', sans-serif;
  --font-body:    'Heebo', 'IBM Plex Sans Hebrew', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Heebo', monospace;
}

/* Theme already sets html/body resets in main.css. The design's body{}
   removed so it doesn't fight the theme. The .nt-smart-landing wrapper
   below re-applies the design's intended typography to its subtree. */
.nt-smart-landing {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
.nt-smart-landing a { color: inherit; text-decoration: none; }
.nt-smart-landing button { font-family: inherit; cursor: pointer; }
/* Drop the .nt-main 48/96px tail so the masthead meets the chrome with
   no white seam (same trick as /guides/ + about). */
body.page-template-page-smart-landing-php .nt-main { padding-bottom: 0; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ HEADER ============ */
.site-header {
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--deep-purple);
  text-transform: uppercase;
}

.logo__mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--forest-green), var(--deep-purple));
  font-weight: 600;
  font-size: 16px;
}

.nav { display: flex; gap: 36px; }

.nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a:hover { color: var(--bright-purple); }

.header__icons { display: flex; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 16px;
  color: var(--deep-purple);
  transition: all 0.2s;
}
.icon-btn:hover {
  background: var(--lavender);
  border-color: var(--bright-purple);
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: linear-gradient(90deg,
    var(--deeper-purple) 0%,
    var(--deep-purple) 38%,
    var(--bright-purple) 62%,
    var(--deep-green) 100%);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
}

.breadcrumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 600px 200px at 15% 50%, rgba(230, 177, 73, 0.12), transparent 60%);
  pointer-events: none;
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 1;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
}
.breadcrumb__current { color: white; font-weight: 500; }

/* ============ MASTHEAD ============ */
.masthead {
  background: var(--deeper-purple);
  color: white;
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Background video — sits at the very back */
.masthead__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Gradient overlay — sits ON TOP of the video, tints it with brand colors,
   tuned for transparency so video atmosphere bleeds through while keeping text readable */
.masthead__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 30% 20%, rgba(107, 63, 160, 0.55), transparent 65%),
    radial-gradient(ellipse 900px 600px at 80% 100%, rgba(45, 106, 79, 0.55), transparent 70%),
    linear-gradient(160deg,
      rgba(30, 18, 54, 0.78) 0%,
      rgba(45, 27, 78, 0.62) 35%,
      rgba(30, 77, 56, 0.62) 100%);
}

/* Background image placeholder — empty for now until decided */
.masthead__bg {
  display: none;
}

.masthead::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.masthead::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(230, 177, 73, 0.5), transparent);
}

.masthead__inner {
  text-align: center;
  position: relative;
  z-index: 4;
  max-width: 880px;
  margin: 0 auto;
}

.masthead__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.masthead__eyebrow::before,
.masthead__eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: rgba(230, 177, 73, 0.5);
}

.masthead__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 84px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.masthead__title .accent {
  color: var(--gold);
  font-weight: 600;
}

.masthead__sub {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 300;
  color: rgba(247, 243, 233, 0.85);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.masthead__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: 0.01em;
}
.masthead__cta:hover {
  background: var(--gold-light);
  transform: translateX(-3px);
  box-shadow: 0 12px 30px rgba(230, 177, 73, 0.35);
}
.masthead__cta-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}
.masthead__cta:hover .masthead__cta-arrow {
  transform: translateX(-3px);
}

.masthead__meta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.masthead__meta__dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 177, 73, 0.18);
}
.masthead__meta__sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ============ SECTION 1 — SYSTEMS (white) ============ */
.systems {
  background: white;
  padding: 112px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.section-head__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bright-purple);
  margin-bottom: 20px;
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--deep-purple);
  margin-bottom: 22px;
}

.section-head__title-accent {
  color: var(--gold);
  font-weight: 600;
}

.section-head__sub {
  font-family: var(--font-body);
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

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

.system-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1.1), box-shadow 0.4s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(26, 22, 40, 0.04), 0 12px 32px -16px rgba(45, 27, 78, 0.10);
  /* Reset button defaults so <button> looks like a card */
  padding: 0;
  font-family: inherit;
  text-align: right;
  cursor: pointer;
  width: 100%;
}

.system-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 6px rgba(26, 22, 40, 0.04), 0 32px 80px -20px rgba(45, 27, 78, 0.32);
  border-color: rgba(107, 63, 160, 0.25);
}

.system-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.system-card__media {
  aspect-ratio: 4/4.4;
  background: white;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.system-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 28px 24px;
  transition: transform 0.5s ease;
}
.system-card:hover .system-card__media img {
  transform: scale(1.04);
}

.system-card__type {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bright-purple);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 18px rgba(107, 63, 160, 0.35);
  z-index: 5;
}

/* Each system gets its own brand color */
.system-card:nth-child(1) .system-card__type {
  background: var(--forest-green);
  box-shadow: 0 6px 18px rgba(45, 106, 79, 0.45);
}
.system-card:nth-child(2) .system-card__type {
  background: var(--bright-purple);
  box-shadow: 0 6px 18px rgba(107, 63, 160, 0.45);
}
.system-card:nth-child(3) .system-card__type {
  background: var(--deep-gold);
  box-shadow: 0 6px 18px rgba(196, 146, 42, 0.45);
}

.system-card__num {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-soft);
  letter-spacing: 0.05em;
}

.system-card__body {
  padding: 32px 30px 36px;
  position: relative;
}

/* Wally — green-dominant with purple whisper. Hot-spot: forest green bottom-right */
.system-card:nth-child(1) .system-card__body {
  background:
    radial-gradient(ellipse 460px 340px at 90% 110%, rgba(45, 106, 79, 0.78), transparent 62%),
    radial-gradient(ellipse 280px 220px at 5% 0%, rgba(107, 63, 160, 0.28), transparent 60%),
    linear-gradient(155deg, var(--deep-green) 0%, var(--deeper-purple) 55%, var(--deep-purple) 100%);
}

/* Homie — purple-dominant with deep green corner. Hot-spot: bright purple top-center */
.system-card:nth-child(2) .system-card__body {
  background:
    radial-gradient(ellipse 380px 280px at 50% 0%, rgba(107, 63, 160, 0.55), transparent 60%),
    radial-gradient(ellipse 360px 280px at 0% 100%, rgba(30, 77, 56, 0.55), transparent 65%),
    linear-gradient(170deg, var(--deep-purple) 0%, var(--deeper-purple) 50%, var(--deep-green) 100%);
}

/* Tobato — sun-warmed: gold whisper from top-right, deep green base. Most distinct of the three */
.system-card:nth-child(3) .system-card__body {
  background:
    radial-gradient(ellipse 360px 260px at 100% 0%, rgba(230, 177, 73, 0.22), transparent 55%),
    radial-gradient(ellipse 420px 320px at 20% 100%, rgba(45, 106, 79, 0.65), transparent 65%),
    radial-gradient(ellipse 260px 200px at 80% 60%, rgba(107, 63, 160, 0.30), transparent 60%),
    linear-gradient(165deg, var(--deeper-purple) 0%, var(--deep-purple) 45%, var(--deep-green) 100%);
}

.system-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.15;
}

.system-card__role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.system-card__desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: rgba(247, 243, 233, 0.85);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 22px;
}

.system-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 16px;
  border-top: 1px solid rgba(230, 177, 73, 0.25);
  width: 100%;
  transition: gap 0.2s ease, color 0.2s ease;
}

.system-card:hover .system-card__more {
  gap: 14px;
  color: var(--gold-light);
}

.system-card__more-arrow {
  font-size: 14px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.system-card:hover .system-card__more-arrow {
  transform: translateX(-4px);
}

/* ============ SECTION 2 — BENEFITS (dramatic green-purple gradient) ============ */
.benefits-section {
  background:
    radial-gradient(ellipse 800px 500px at 25% 20%, rgba(107, 63, 160, 0.55), transparent 60%),
    radial-gradient(ellipse 900px 600px at 80% 100%, rgba(45, 106, 79, 0.65), transparent 65%),
    linear-gradient(160deg,
      var(--deeper-purple) 0%,
      var(--deep-purple) 35%,
      var(--deep-green) 100%);
  color: white;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.benefits-section::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 177, 73, 0.4), transparent);
}

/* Override the section-head colors when inside the dark benefits section */
.benefits-section .section-head__eyebrow {
  color: var(--gold);
}
.benefits-section .section-head__title {
  color: white;
}
.benefits-section .section-head__title-accent {
  color: var(--gold);
}
.benefits-section .section-head__sub {
  color: white;
}
.benefits-section .section-head {
  position: relative;
  z-index: 2;
}

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

.benefit-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1.1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(26, 22, 40, 0.03), 0 12px 32px -16px rgba(45, 27, 78, 0.08);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(26, 22, 40, 0.04), 0 28px 60px -18px rgba(45, 27, 78, 0.22);
}

.benefit-card__top-bar {
  display: none;
}

.benefit-card__media {
  aspect-ratio: 16/9;
  background:
    radial-gradient(ellipse at center, rgba(107, 63, 160, 0.08) 0%, transparent 65%),
    linear-gradient(135deg, var(--cream) 0%, var(--lavender) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* Decorative pattern in placeholder */
.benefit-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(107, 63, 160, 0.04) 0 1px, transparent 1px 24px);
}

.benefit-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.benefit-card__media-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(45, 27, 78, 0.42);
  text-align: center;
  padding: 0 20px;
}

.benefit-card__body {
  padding: 32px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.benefit-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted-soft);
  margin-bottom: 14px;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--deep-purple);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.benefit-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.benefit-card__desc strong {
  color: var(--deep-purple);
  font-weight: 600;
}

/* ============ SECTION 3 — FORM (white) ============ */
.form-section {
  background: white;
  color: var(--ink);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(107, 63, 160, 0.022) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(45deg, rgba(45, 106, 79, 0.018) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.form-section::after {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 177, 73, 0.55), transparent);
}

.form-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.form-inner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bright-purple);
  margin-bottom: 24px;
}

.form-inner__eyebrow::before,
.form-inner__eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: rgba(107, 63, 160, 0.45);
}

.form-inner__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--deep-purple);
  margin-bottom: 22px;
}

.form-inner__sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.form-fields {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
  text-align: right;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field__label {
  display: block;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--deep-purple);
  margin-bottom: 9px;
}

.field__label-meta {
  font-weight: 400;
  color: var(--muted-soft);
}

.field__input {
  width: 100%;
  padding: 15px 18px;
  background: white;
  border: 1.5px solid rgba(107, 63, 160, 0.18);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: all 0.2s;
  outline: none;
  box-shadow: 0 1px 2px rgba(26, 22, 40, 0.02);
}
.field__input:focus {
  border-color: var(--bright-purple);
  box-shadow: 0 0 0 4px rgba(107, 63, 160, 0.12);
}
.field__input::placeholder {
  color: var(--muted-soft);
  font-weight: 300;
}

.system-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sys-chip {
  position: relative;
  cursor: pointer;
}
.sys-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sys-chip__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  background: white;
  border: 1.5px solid rgba(107, 63, 160, 0.18);
  border-radius: 12px;
  transition: all 0.2s;
  text-align: center;
  box-shadow: 0 1px 2px rgba(26, 22, 40, 0.02);
}
.sys-chip__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-purple);
}
.sys-chip__type {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-soft);
  font-weight: 400;
}
.sys-chip:hover .sys-chip__box {
  border-color: var(--bright-purple);
  box-shadow: 0 6px 18px -8px rgba(107, 63, 160, 0.28);
}
.sys-chip input:checked + .sys-chip__box {
  border-color: var(--deep-gold);
  background: rgba(230, 177, 73, 0.06);
  box-shadow: 0 0 0 4px rgba(230, 177, 73, 0.15);
}
.sys-chip input:checked + .sys-chip__box .sys-chip__name {
  color: var(--deep-gold);
}

.form-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 19px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16.5px;
  border-radius: 999px;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px -8px rgba(230, 177, 73, 0.5);
}
.form-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -10px rgba(230, 177, 73, 0.6);
}
.form-cta-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}
.form-cta:hover .form-cta-arrow {
  transform: translateX(-3px);
}

.form-disclaimer {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 540px;
  margin-right: auto;
  margin-left: auto;
}

/* ============ SECTION END DIVIDER ============ */
.section-end {
  text-align: center;
  padding: 32px 0 56px;
  background: white;
  color: var(--muted-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.section-end span {
  position: relative;
  padding: 0 18px;
}
.section-end span::before, .section-end span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--line-strong);
}
.section-end span::before { right: 100%; }
.section-end span::after  { left: 100%; }

/* ============ Stagger reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.75s ease forwards;
}
@keyframes reveal {
  to { opacity: 1; transform: none; }
}
.r-1 { animation-delay: 0.05s; }
.r-2 { animation-delay: 0.16s; }
.r-3 { animation-delay: 0.28s; }
.r-4 { animation-delay: 0.40s; }
.r-5 { animation-delay: 0.52s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .masthead { padding: 72px 0 84px; }
  .systems { padding: 80px 0; }
  .benefits-section { padding: 80px 0; }
  .form-section { padding: 80px 0; }
  .systems-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .nav { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .system-chips { grid-template-columns: repeat(2, 1fr); }
  .masthead__sub { font-size: 17px; }
  .masthead__cta { padding: 15px 28px; font-size: 14.5px; }
  .form-inner__sub { font-size: 16px; }
}
/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 40, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: white;
  border-radius: 24px;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.3, 1.1);
  /* Hide scrollbar — keep functionality */
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge legacy */
}
.modal::-webkit-scrollbar {
  display: none;                  /* Chrome, Safari, Edge, Opera */
  width: 0;
  height: 0;
}
.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--deep-purple);
  transition: all 0.2s;
  z-index: 11;
}
.modal__close:hover {
  background: var(--lavender);
  border-color: var(--bright-purple);
  transform: rotate(90deg);
}

.modal__hero {
  position: relative;
  background:
    radial-gradient(ellipse 600px 300px at 30% 20%, rgba(107, 63, 160, 0.45), transparent 60%),
    radial-gradient(ellipse 700px 400px at 80% 100%, rgba(45, 106, 79, 0.55), transparent 65%),
    linear-gradient(160deg, var(--deeper-purple) 0%, var(--deep-purple) 35%, var(--deep-green) 100%);
  color: white;
  overflow: hidden;
}
.modal__hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 177, 73, 0.5), transparent);
  z-index: 3;
}

.modal__hero-image {
  width: 100%;
  height: 320px;
  background: white;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
/* Default: product shot, contained with breathing room */
.modal__hero-image img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}
/* Lifestyle photos fill the entire frame */
.modal__hero-image.is-lifestyle img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal__hero-text {
  padding: 36px 48px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Tag absolute-positioned to top-left of the modal */
.modal__type {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  background: var(--bright-purple);
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(107, 63, 160, 0.4);
}

.modal__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: white;
  margin-bottom: 14px;
}

.modal__role {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.005em;
  line-height: 1.4;
  margin-bottom: 0;
}

.modal__cta-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 18px rgba(230, 177, 73, 0.25);
}
.modal__cta-product:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(230, 177, 73, 0.35);
  color: var(--ink);
}
.modal__cta-product[hidden] { display: none !important; }
.modal__cta-product-arrow {
  font-size: 16px;
  transition: transform 0.18s ease;
}
.modal__cta-product:hover .modal__cta-product-arrow { transform: translateX(-3px); }

.modal__body {
  padding: 36px 48px 44px;
}

.modal__section {
  margin-bottom: 28px;
}
.modal__section:last-child { margin-bottom: 0; }

.modal__section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--deep-purple);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal__section-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--bright-purple);
  border-radius: 2px;
  display: inline-block;
}

.modal__section p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 400;
}
.modal__section p strong {
  color: var(--deep-purple);
  font-weight: 600;
}

.modal__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.modal__spec {
  background: white;
  border: 1.5px solid rgba(107, 63, 160, 0.18);
  border-radius: 16px;
  padding: 22px 14px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.modal__spec:hover {
  transform: translateY(-3px);
  border-color: var(--deep-gold);
  box-shadow: 0 10px 24px -8px rgba(196, 146, 42, 0.28);
}

.modal__spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lavender);
  display: grid;
  place-items: center;
  color: var(--bright-purple);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.modal__spec-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

/* Hover: icon container -> gold, icon stroke -> dark, value -> gold */
.modal__spec:hover .modal__spec-icon {
  background: var(--gold);
  color: var(--deeper-purple);
}
.modal__spec:hover .modal__spec-value {
  color: var(--deep-gold);
}

.modal__spec-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-soft);
  display: block;
}

.modal__spec-value {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--deep-purple);
  letter-spacing: -0.015em;
  line-height: 1.15;
  transition: color 0.25s ease;
}

.modal__upgrades {
  background: linear-gradient(135deg, rgba(230, 177, 73, 0.08), rgba(45, 106, 79, 0.06));
  border: 1px solid rgba(230, 177, 73, 0.2);
  border-radius: 14px;
  padding: 18px 22px;
}
.modal__upgrades-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.modal__upgrades-list li {
  font-size: 14.5px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.modal__upgrades-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--forest-green);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

/* What's-included image section — appears at the very bottom of the modal body for systems that supply it */
.modal__included {
  margin: 36px -48px -44px;
  padding: 36px 32px 36px;
  background: #ffffff;
  border-top: 1px solid rgba(107, 63, 160, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.modal__included-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bright-purple);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.modal__included-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--deep-purple);
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}
.modal__included-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  margin: 0 auto 22px;
  max-width: 460px;
  position: relative;
  z-index: 2;
}
.modal__included-image {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  height: auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .modal-overlay { padding: 12px; }
  .modal__hero-image { height: 220px; }
  .modal__hero-text { padding: 28px 22px 32px; }
  .modal__body { padding: 24px 24px 32px; }
  .modal__name { font-size: 32px; }
  .modal__role { font-size: 17px; }
  .modal__type { top: 12px; left: 12px; font-size: 10.5px; padding: 6px 11px; }
  .modal__specs { grid-template-columns: repeat(2, 1fr); }
  .modal__included {
    margin: 28px -24px -32px;
    padding: 28px 20px 28px;
  }
  .modal__included-title { font-size: 19px; }
  .modal__included-sub { font-size: 14px; }
}

/* ============ MOBILE TYPOGRAPHY UPSCALE ============ */
@media (max-width: 640px) {
  body { font-size: 17px; }
  .container { padding: 0 22px; }

  .masthead { padding: 64px 0 76px; }
  .masthead__eyebrow { font-size: 11.5px; letter-spacing: 0.15em; }
  .masthead__title { font-size: clamp(38px, 11vw, 56px); }
  .masthead__sub { font-size: 17.5px; line-height: 1.65; }
  .masthead__cta { padding: 16px 30px; font-size: 15.5px; }

  .section-head__eyebrow { font-size: 12.5px; }
  .section-head__title { font-size: clamp(30px, 8.5vw, 42px); }
  .section-head__sub { font-size: 16.5px; line-height: 1.7; }

  .system-card__name { font-size: 26px; }
  .system-card__role { font-size: 15px; }
  .system-card__desc { font-size: 16px; line-height: 1.7; }
  .system-card__type { font-size: 13px; padding: 9px 16px; }
  .system-card__more { font-size: 12.5px; }

  .benefit-card__title { font-size: 22px; }
  .benefit-card__desc { font-size: 16px; line-height: 1.7; }
  .benefit-card__num { font-size: 12px; }

  .form-inner__title { font-size: clamp(28px, 7vw, 36px); }
  .form-inner__sub { font-size: 16px; line-height: 1.7; }
  .field__label { font-size: 14.5px; }
  .field__input { font-size: 16px; padding: 15px 18px; }
  .sys-chip__name { font-size: 15px; }
  .sys-chip__type { font-size: 13px; }
  .form-cta { padding: 18px; font-size: 16.5px; }
  .form-disclaimer { font-size: 13.5px; line-height: 1.7; }

  .modal__name { font-size: 28px; }
  .modal__role { font-size: 15px; }
  .modal__section-title { font-size: 17px; }
  .modal__section p { font-size: 16px; line-height: 1.7; }
  .modal__spec-label { font-size: 11.5px; }
  .modal__spec-value { font-size: 16px; }
  .modal__upgrades-list li { font-size: 15.5px; line-height: 1.6; }
}


/* ============ VEGARDI SHOWCASE SECTION ============ */
.vegardi-section {
  background: linear-gradient(180deg, var(--deep-green) 0%, #14392a 50%, var(--deeper-purple) 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.vegardi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 12%, rgba(230, 177, 73, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(107, 63, 160, 0.12) 0%, transparent 45%);
  pointer-events: none;
}
.vegardi-section .container { position: relative; z-index: 1; }

/* HERO: phones + headline */
.vegardi-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 88px;
}
.vegardi-hero__media {
  position: relative;
}
.vegardi-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
}
.vegardi-hero__text {
  text-align: right;
}
.vegardi-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.vegardi-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}
.vegardi-hero__title em {
  font-style: normal;
  color: var(--gold);
}
.vegardi-hero__sub-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 18px 0 0;
}

/* 3 FEATURE CARDS */
.vegardi-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 100px;
}
.vegardi-feature {
  background: linear-gradient(180deg, #ffffff 0%, var(--lavender) 100%);
  border-radius: 22px;
  padding: 36px 30px 30px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.vegardi-feature:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #ecf3eb 100%);
}
.vegardi-feature:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #fbeed7 100%);
}
.vegardi-feature__icon {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 63, 160, 0.08);
}
.vegardi-feature:nth-child(2) .vegardi-feature__icon { background: rgba(45, 106, 79, 0.10); }
.vegardi-feature:nth-child(3) .vegardi-feature__icon { background: rgba(230, 177, 73, 0.18); }

.vegardi-feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--bright-purple);
  margin-bottom: 12px;
  line-height: 1.3;
}
.vegardi-feature:nth-child(2) .vegardi-feature__title { color: var(--forest-green); }
.vegardi-feature:nth-child(3) .vegardi-feature__title { color: var(--deep-gold); }

.vegardi-feature__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: #4a4659;
  margin: 0;
}

/* WHY VEGARDI IS DIFFERENT panel */
.vegardi-why {
  background: linear-gradient(160deg, var(--deeper-purple) 0%, #2a1a55 60%, #1a3050 100%);
  border-radius: 28px;
  padding: 70px 50px 60px;
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}
.vegardi-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 32px);
  pointer-events: none;
}
.vegardi-why__head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.vegardi-why__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 18px;
}
.vegardi-why__sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}
.vegardi-why__sub em {
  font-style: normal;
  color: var(--gold);
}

.vegardi-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.vegardi-why__card {
  background: linear-gradient(180deg, #fdfdfb 0%, var(--cream) 100%);
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.5);
}
.vegardi-why__card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 76px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 8px;
}
.vegardi-why__card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.vegardi-why__card-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 300;
  color: #4a4659;
  margin: 0;
}

/* TRY IT NOW + chat preview */
.vegardi-try {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 96px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.vegardi-try__text {
  text-align: right;
}
.vegardi-try__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 0;
}

.vegardi-try__chat {
  background: linear-gradient(160deg, var(--deeper-purple) 0%, #2a1a55 100%);
  border-radius: 24px;
  padding: 36px 32px 32px;
  border: 1px solid rgba(107, 63, 160, 0.4);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}
.vegardi-try__chat-intro {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px;
  line-height: 1.4;
}
.vegardi-try__question {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}
.vegardi-try__question:hover {
  background: rgba(107, 63, 160, 0.18);
  border-color: rgba(230, 177, 73, 0.35);
  transform: translateX(-2px);
}
.vegardi-try__question-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bright-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-mono);
}
.vegardi-try__question-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  text-align: right;
  flex: 1;
}
.vegardi-try__chat-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}
.vegardi-try__chat-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* STATS BAR */
.vegardi-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}
.vegardi-stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.vegardi-stat__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .vegardi-hero { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .vegardi-hero__text { text-align: center; }
  .vegardi-features { grid-template-columns: 1fr; gap: 18px; }
  .vegardi-why { padding: 50px 28px 44px; }
  .vegardi-why__cards { grid-template-columns: 1fr; gap: 16px; }
  .vegardi-try { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .vegardi-try__text { text-align: center; }
  .vegardi-stats { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}
@media (max-width: 640px) {
  .vegardi-section { padding: 80px 0 70px; }
  .vegardi-hero { margin-bottom: 60px; }
  .vegardi-features { margin-bottom: 70px; }
  .vegardi-why { margin-bottom: 70px; padding: 40px 20px 36px; }
  .vegardi-try { margin-bottom: 70px; gap: 28px; }
  .vegardi-stats { padding-top: 40px; }
}

