/* ==========================================================================
   Cloudkvarteret — Design System
   ========================================================================== */

:root {
  /* Brand colors */
  --navy-950: #0a1628;
  --navy-900: #0f1e35;
  --navy-800: #16294a;
  --navy-700: #1f3760;
  --green-500: #16a34a;
  --green-400: #22c55e;
  --green-300: #4ade80;
  --blue-500: #3b82f6;
  --coral-600: #d95f30;
  --coral-500: #ec7248;
  --coral-300: #f7a583;

  /* Neutrals (warm-tinted) */
  --white: #ffffff;
  --cream: #fbf8f2;
  --gray-50: #f8f4ec;
  --gray-100: #f0ead9;
  --gray-200: #e5dfd0;
  --gray-300: #cec5b3;
  --gray-500: #736a5c;
  --gray-600: #52493d;
  --gray-700: #333c4d;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--cream);
  --text: var(--navy-950);
  --text-muted: var(--gray-600);
  --accent: var(--green-500);
  --accent-strong: var(--green-400);
  --accent-warm: var(--coral-500);
  --border: var(--gray-200);

  /* Layout */
  --max-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(60, 40, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(60, 40, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(30, 25, 15, 0.14);

  --font-heading: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--warm { color: var(--accent-warm); }
.eyebrow--warm::before { background: var(--accent-warm); }

/* Handwritten accents & highlight */
.hand {
  font-family: var(--font-hand);
  font-weight: 600;
}
.highlight {
  position: relative;
  white-space: nowrap;
  isolation: isolate;
}
.highlight::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.06em;
  height: 0.32em;
  background: var(--accent-warm);
  opacity: 0.32;
  border-radius: 3px;
  z-index: -1;
}

.section {
  padding: 88px 0;
}
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.section--dark p { color: var(--gray-300); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.28);
}
.btn-primary:hover { background: var(--green-400); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); }

.btn-block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 234, 217, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(10, 22, 40, 0.03);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy-950);
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--green-400), var(--coral-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
  position: relative;
}
.nav-links a:hover {
  color: var(--navy-950);
  background-color: rgba(10, 22, 40, 0.06);
  transform: translateY(-1px);
}
.nav-links a.active {
  color: var(--navy-950);
  background-color: rgba(22, 163, 74, 0.12);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-950);
  border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 85% 8%, rgba(236, 114, 72, 0.12), transparent 45%),
    radial-gradient(circle at 8% 92%, rgba(34, 197, 94, 0.12), transparent 42%),
    var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero-lead {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.hero-visual {
  position: relative;
}

/* Growth-journey illustration — replaces generic dashboard mockups */
.grow-visual {
  background: linear-gradient(165deg, var(--cream), var(--white) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 30px 26px;
  position: relative;
  z-index: 2;
  overflow: visible;
}
.grow-visual svg { width: 100%; height: auto; display: block; }
.grow-visual-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  padding: 0 6px;
}
.grow-visual-labels span {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--navy-800);
  transform: rotate(-3deg);
  display: inline-block;
}
.grow-visual-labels span:nth-child(2) { color: var(--coral-600); transform: rotate(2deg); }
.grow-visual-labels span:nth-child(3) { color: var(--green-500); transform: rotate(-2deg); }

.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -20px;
  background: var(--navy-950);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-2deg);
}
.hero-badge-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-warm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { width: 18px; height: 18px; color: var(--white); }
.hero-badge .label { font-size: 0.85rem; font-weight: 600; color: var(--white); max-width: 150px; line-height: 1.3; }

/* Visual panel — warm illustrated stand-in used instead of fake UI mockups */
.visual-panel {
  border-radius: var(--radius-lg);
  padding: 56px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  position: relative;
  min-height: 280px;
}
.visual-panel--green { background: radial-gradient(circle at 30% 20%, rgba(34,197,94,0.16), transparent 55%), var(--cream); }
.visual-panel--coral { background: radial-gradient(circle at 70% 20%, rgba(236,114,72,0.16), transparent 55%), var(--cream); }
.visual-panel--navy { background: radial-gradient(circle at 30% 80%, rgba(59,130,246,0.12), transparent 55%), var(--cream); }
.visual-panel-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-panel-icon svg { width: 40px; height: 40px; color: var(--accent); }
.visual-panel--coral .visual-panel-icon svg { color: var(--accent-warm); }
.visual-panel-tag {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--navy-800);
  transform: rotate(-2deg);
}

/* ==========================================================================
   Logo strip
   ========================================================================== */
.strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  font-weight: 700;
  color: var(--gray-600);
  font-size: 0.92rem;
  text-align: center;
}
.strip-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon--warm { background: rgba(236, 114, 72, 0.12); color: var(--accent-warm); }
.card:nth-child(2n) .card-icon:not(.card-icon--warm) { background: rgba(236, 114, 72, 0.12); color: var(--accent-warm); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-950);
  margin-top: 8px;
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* Feature list */
.feature-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .card-icon { margin-bottom: 0; flex-shrink: 0; }
.feature-row h3 { margin-bottom: 6px; }
.feature-row p { margin-bottom: 0; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  padding: 30px 24px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 10px;
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
}
.step:nth-child(2n) .step-num { -webkit-text-stroke-color: var(--accent-warm); }
.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 0; font-size: 0.92rem; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--green-400);
  margin-bottom: 6px;
}
.stat .label { font-size: 0.9rem; color: var(--gray-300); }

/* Portfolio / case cards */
.case-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-thumb {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.case-thumb svg { width: 56px; height: 56px; color: rgba(255,255,255,0.9); }
.case-thumb.t1 { background: linear-gradient(135deg, #16a34a, #0a1628); }
.case-thumb.t2 { background: linear-gradient(135deg, #3b82f6, #0a1628); }
.case-thumb.t3 { background: linear-gradient(135deg, #22c55e, #16294a); }
.case-thumb.t4 { background: linear-gradient(135deg, #0a1628, #1f3760); }
.case-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.case-body { padding: 24px; }
.case-body h3 { margin-bottom: 8px; }
.case-meta {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.case-meta span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-50);
  padding: 5px 10px;
  border-radius: 6px;
}

.note-box {
  background: var(--gray-50);
  border: 1px dashed var(--coral-300);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Testimonial */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  left: 28px;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-warm);
  opacity: 0.25;
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 22px;
  line-height: 1.5;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--coral-500));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-family: var(--font-heading);
}
.testimonial-author .name { font-weight: 700; font-size: 0.92rem; }
.testimonial-author .role { font-size: 0.82rem; color: var(--text-muted); }

/* CTA band */
.cta-band {
  border-radius: var(--radius-lg);
  padding: 56px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: var(--gray-300); margin-bottom: 0; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Values / about */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 10px; }
#form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(22, 163, 74, 0.1);
  color: var(--green-500);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item h3 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { margin-bottom: 0; font-size: 0.92rem; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  cursor: pointer;
}
.faq-question .icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding: 0 4px 22px; margin: 0; }
.faq-item.open .faq-answer { max-height: 300px; }

/* Breadcrumb / page hero */
.page-hero {
  padding: 64px 0 56px;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--gray-300); max-width: 640px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--green-400); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--gray-300);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-about { font-size: 0.9rem; max-width: 280px; }
.footer-note {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--green-300);
  margin-top: 14px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--gray-300); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--green-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 12px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.social-links a:hover { background: var(--accent); }
.social-links svg { width: 16px; height: 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin: 0 auto; }
  .grid-4, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .contact-layout, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .grid-4, .grid-3, .steps, .stats, .values-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-band-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badge { position: static; margin-top: 16px; display: inline-flex; transform: none; }
  .grow-visual-labels span { font-size: 1.1rem; }
  .visual-panel { padding: 40px 24px; min-height: 220px; }
}
