/* ============================================================
   BakkieBij — Globale stijlen
   Kleuren: #ffd21f #ffd87d #fdf8f4 #091d2e #ffffff #000000
   Font: Inter (400 500 600 700 800)
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #000000;
  background: #ffffff;
  line-height: 1.6;
}

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

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(9,29,46,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.3px;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

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

.nav-links > a,
.nav-links > .nav-dropdown > a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  transition: color 0.15s;
}

.nav-links > a:hover,
.nav-links > .nav-dropdown > a:hover { color: #091d2e; }

.nav-links > a.active { font-weight: 700; }

/* ── Dropdown ────────────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(9,29,46,0.13);
  padding: 8px;
  padding-top: 18px;
  min-width: 220px;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  transition: background 0.15s;
}

.nav-dropdown-menu a:hover { background: #fdf8f4; }

.nav-dropdown-menu a .dd-icon {
  width: 28px;
  height: 28px;
  background: #ffd21f;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Nav button ─────────────────────────────────────────────── */
.btn-nav {
  background: #091d2e;
  color: #ffffff !important;
  padding: 9px 22px;
  border-radius: 7px;
  font-size: 0.93rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover {
  background: #1a3a54;
  transform: translateY(-1px);
}

/* ── Hamburger (mobile) ──────────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: #091d2e;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #1a3a54;
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  background: #091d2e;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: #1a3a54;
  transform: translateY(-2px);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: #ffd87d;
  padding: 90px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(9,29,46,0.08);
  color: rgba(9,29,46,0.75);
  border: 1px solid rgba(9,29,46,0.18);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 22px;
}

.hero-text h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #000000;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.7);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-ghost {
  color: rgba(0,0,0,0.65);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.btn-ghost:hover { color: #000; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 8px 40px rgba(9,29,46,0.12);
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.hero-card-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-card h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 0.92rem;
  color: #555;
}

/* ── Yellow banner strip ────────────────────────────────────── */
.yellow-banner {
  background: #ffd21f;
  padding: 24px 0;
}

.yellow-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.yellow-banner p {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.yellow-banner-icon {
  font-size: 1.6rem;
}

/* ── Dark strip ─────────────────────────────────────────────── */
.dark-strip {
  background: #091d2e;
  padding: 20px 0;
}

.dark-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.dark-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
  font-weight: 500;
}

.dark-strip-item span.check {
  width: 22px;
  height: 22px;
  background: rgba(255,210,31,0.2);
  border: 1px solid rgba(255,210,31,0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #ffd21f;
  flex-shrink: 0;
}

/* ── Section defaults ──────────────────────────────────────── */
section { padding: 80px 0; }

.section-label {
  display: inline-block;
  background: rgba(9,29,46,0.07);
  color: rgba(9,29,46,0.7);
  border: 1px solid rgba(9,29,46,0.14);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.80rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #000000;
  text-align: center;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: #555;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

/* ── Voordelen (3-col cards) ─────────────────────────────────── */
.voordelen {
  background: #fdf8f4;
}

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

.voordeel-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 26px;
  border: 1px solid rgba(9,29,46,0.06);
  box-shadow: 0 2px 14px rgba(9,29,46,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.voordeel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(9,29,46,0.10);
}

.voordeel-icon {
  width: 54px;
  height: 54px;
  background: #ffd21f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.voordeel-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.voordeel-card p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
}

/* ── Hoe het werkt (steps) ─────────────────────────────────── */
.hoe-het-werkt {
  background: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  text-align: center;
  padding: 28px 20px;
}

.step-number {
  width: 58px;
  height: 58px;
  background: #ffd21f;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(255,210,31,0.4);
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
}

/* ── Locaties (binnen/buiten) ─────────────────────────────── */
.locaties {
  background: #fdf8f4;
}

.locaties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.locatie-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(9,29,46,0.06);
  box-shadow: 0 2px 14px rgba(9,29,46,0.05);
}

.locatie-img-wrap {
  width: 100%;
  height: 260px;
  background: #fdf8f4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.locatie-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.locatie-card:hover .locatie-img-wrap img {
  transform: scale(1.03);
}

.locatie-badge {
  display: inline-block;
  background: #ffd21f;
  color: #000;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.locatie-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.locatie-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
}

.locatie-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.locatie-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.locatie-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #333;
}

.locatie-feature::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: #ffd21f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Omzetdeling ────────────────────────────────────────────── */
.omzetdeling {
  background: #091d2e;
  color: #ffffff;
}

.omzetdeling .section-title { color: #ffffff; }
.omzetdeling .section-sub { color: rgba(255,255,255,0.65); }
.omzetdeling .section-label {
  background: rgba(255,210,31,0.12);
  color: #ffd21f;
  border-color: rgba(255,210,31,0.25);
}

.omzetdeling-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.omzetdeling-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
}

.omzetdeling-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.omzetdeling-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.omzetdeling-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,210,31,0.15);
  border: 1px solid rgba(255,210,31,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.omzetdeling-feature-text h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.omzetdeling-feature-text p {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

.reken-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 36px 32px;
}

.reken-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.reken-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.reken-pct {
  background: rgba(255,210,31,0.15);
  color: #ffd21f;
  border: 1px solid rgba(255,210,31,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.reken-table { width: 100%; }

.reken-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.93rem;
}

.reken-row .label { color: rgba(255,255,255,0.65); }
.reken-row .val { font-weight: 600; color: #fff; }

.reken-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255,210,31,0.12);
  border: 1px solid rgba(255,210,31,0.25);
  border-radius: 10px;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffd21f;
}

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews {
  background: #ffd21f;
}

.reviews .section-title { color: #000; }
.reviews .section-sub { color: rgba(0,0,0,0.65); }

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

.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.review-stars {
  font-size: 1.05rem;
  color: #ffd21f;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.93rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: #ffd21f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.review-info strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: #000;
}

.review-info span {
  font-size: 0.82rem;
  color: #555;
}

/* ── CTA sectie ─────────────────────────────────────────────── */
.cta-section {
  background: #ffd87d;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #000;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(0,0,0,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  background: #fdf8f4;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid rgba(9,29,46,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.faq-list summary {
  padding: 18px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #000;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: #555;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.75;
}

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: #ffd87d;
  padding: 64px 0;
}

.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #000;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(0,0,0,0.7);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Formulier ───────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fdf8f4;
  border: 1.5px solid #e2dbd3;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: #000;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd21f;
  box-shadow: 0 0 0 3px rgba(255,210,31,0.2);
}

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

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: #fdf8f4;
  border-top: 1px solid rgba(9,29,46,0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #000;
}

.footer-logo img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.90rem;
  color: #555;
  transition: color 0.15s;
}

.footer-links a:hover { color: #000; }

.footer-contact a {
  font-size: 0.90rem;
  color: #091d2e;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  text-align: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(9,29,46,0.07);
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(0,0,0,0.45);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-visual { display: none; }

  .voordelen-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .locaties-grid { grid-template-columns: 1fr; }
  .omzetdeling-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Navbar wraps zodat open menu in de flow uitklapt */
  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    min-height: 68px;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 6px 0 14px;
    gap: 2px;
    border-top: 1px solid rgba(9,29,46,0.07);
    box-shadow: 0 8px 24px rgba(9,29,46,0.10);
  }

  /* Grotere tikgebieden per item */
  .nav-links.open > a {
    padding: 11px 24px;
    border-radius: 8px;
    margin: 0 8px;
    font-size: 1rem;
  }

  .nav-links.open > a:hover,
  .nav-links.open > a:active { background: #fdf8f4; }

  .nav-links.open > .nav-dropdown { margin: 0 8px; }

  .nav-links.open > .nav-dropdown > a {
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 1rem;
    display: flex;
  }

  .nav-links.open > .nav-dropdown > a:hover,
  .nav-links.open > .nav-dropdown > a:active { background: #fdf8f4; }

  .nav-links.open .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: #fdf8f4;
    border-radius: 10px;
    display: block;
    margin: 4px 8px 4px 16px;
    min-width: 0;
    padding: 4px;
  }

  .nav-links.open .nav-dropdown-menu a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  /* Contact-knop in mobiel menu */
  .nav-links.open > .btn-nav {
    margin: 6px 16px 0;
    display: block;
    text-align: center;
    border-radius: 8px;
  }
}

@media (max-width: 620px) {
  .hero-text h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .voordelen-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-links { align-items: center; }
  .form-grid { grid-template-columns: 1fr; }
  .dark-strip-inner { gap: 20px; flex-direction: column; align-items: flex-start; padding: 0 24px; }
}
