/* ==========================================================================
   Autorijschool Rijtechnologie — base styles (mobile-first)
   ========================================================================== */

:root {
  /* Colors */
  --color-primary:        #0E1B3A;
  --color-primary-dark:   #08122A;
  --color-primary-soft:   rgba(14, 27, 58, 0.08);
  --color-accent:         #E63946;
  --color-accent-dark:    #C7303C;
  --color-text:           #14181F;
  --color-text-muted:     #5B6472;
  --color-bg:             #FFFFFF;
  --color-bg-alt:         #F5F1EA;
  --color-border:         #E5DFD5;
  --color-white:          #FFFFFF;
  --color-success:        #2E7D55;
  --color-whatsapp:       #25D366;

  /* Typography */
  --font-display:         "Fraunces", Georgia, serif;
  --font-body:            "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Type scale (mobile defaults) */
  --fs-h1:                2rem;
  --fs-h2:                1.625rem;
  --fs-h3:                1.25rem;
  --fs-eyebrow:           0.875rem;
  --fs-body-lg:           1.125rem;
  --fs-body:              1rem;
  --fs-small:             0.875rem;
  --fs-nav:               0.9375rem;
  --fs-button:            1rem;
  --fs-price:             2.5rem;

  /* Line height + tracking */
  --lh-tight:             1.05;
  --lh-snug:              1.25;
  --lh-normal:            1.5;
  --lh-loose:             1.65;
  --tracking-tight:       -0.02em;
  --tracking-eyebrow:     0.08em;

  /* Spacing */
  --space-2xs:            4px;
  --space-xs:             8px;
  --space-sm:             16px;
  --space-md:             24px;
  --space-lg:             40px;
  --space-xl:             64px;
  --space-2xl:            96px;
  --space-3xl:            128px;

  /* Radius */
  --radius-sm:            6px;
  --radius-md:            8px;
  --radius-lg:            12px;
  --radius-xl:            16px;
  --radius-pill:          999px;

  /* Shadows */
  --shadow-sm:            0 1px 3px rgba(14,27,58,0.06);
  --shadow-md:            0 6px 16px rgba(14,27,58,0.08);
  --shadow-lg:            0 12px 32px rgba(14,27,58,0.10);
  --shadow-accent:        0 6px 16px rgba(230,57,70,0.25);

  /* Layout */
  --container-max:        1200px;
  --container-wide:       1320px;
  --container-pad:        clamp(20px, 5vw, 32px);

  /* Motion */
  --ease-default:         cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:        150ms;
  --duration-base:        200ms;
  --duration-slow:        320ms;

  /* Z-index */
  --z-header:             50;
  --z-cookie:             70;
  --z-whatsapp:           80;
  --z-overlay:            85;
  --z-drawer:             90;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--duration-base) var(--ease-default); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  letter-spacing: var(--tracking-tight);
  font-feature-settings: "ss01" on, "ss02" on;
}
h1 { font-size: var(--fs-h1); font-weight: 900; line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: var(--lh-snug); }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: var(--lh-snug); }
h4 { font-size: var(--fs-eyebrow); font-weight: 600; line-height: 1.4; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
p { color: var(--color-text); }
.muted { color: var(--color-text-muted); }

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-sm);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  z-index: 1000;
  transition: top var(--duration-base) var(--ease-default);
}
.skip-link:focus { top: var(--space-sm); color: var(--color-white); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Sections */
.section {
  padding-block: var(--space-xl);
}
.section--alt {
  background: var(--color-bg-alt);
}
.section--primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.section--primary h1,
.section--primary h2,
.section--primary h3 { color: var(--color-white); }
.section--primary p { color: rgba(255, 255, 255, 0.85); }
.section__head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}
.section__head .eyebrow { display: inline-block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition:
    background-color var(--duration-base) var(--ease-default),
    color var(--duration-base) var(--ease-default),
    border-color var(--duration-base) var(--ease-default),
    transform var(--duration-base) var(--ease-default),
    box-shadow var(--duration-slow) var(--ease-default);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.section--primary .btn--secondary {
  color: var(--color-white);
  border-color: var(--color-white);
}
.section--primary .btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  padding: 8px 0;
  border-radius: 0;
  font-weight: 600;
}
.btn--ghost::after {
  content: "→";
  margin-left: var(--space-2xs);
  transition: transform var(--duration-base) var(--ease-default);
}
.btn--ghost:hover {
  color: var(--color-accent);
  transform: none;
}
.btn--ghost:hover::after { transform: translateX(4px); }
.btn--lg { font-size: 1rem; padding: 18px 32px; }
.btn--block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.btn-group .btn { width: 100%; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--duration-base) var(--ease-default);
}
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(14, 27, 58, 0.06);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-md);
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: var(--tracking-tight);
}
.nav-brand:hover { color: var(--color-primary); }
.nav-list {
  display: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  color: var(--color-accent);
  background: var(--color-primary-soft);
}
.nav-phone:hover { color: var(--color-white); background: var(--color-accent); }
.nav-phone svg { width: 20px; height: 20px; }
.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-pill { display: none; }

/* Mobile drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) var(--ease-default), visibility var(--duration-slow) var(--ease-default);
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 360px;
  background: var(--color-bg);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-default);
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}
.nav-drawer__close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.nav-drawer__close svg { width: 24px; height: 24px; }
.nav-drawer__list { display: flex; flex-direction: column; }
.nav-drawer__list a {
  display: block;
  padding: 18px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.nav-drawer__list a.is-active { color: var(--color-accent); }
.nav-drawer__cta {
  margin-top: var(--space-md);
  display: grid;
  gap: var(--space-xs);
}

/* Hero */
.hero {
  padding-block: var(--space-xl) var(--space-xl);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.hero__title { margin-block: var(--space-sm) var(--space-md); }
.hero__sub { font-size: var(--fs-body-lg); color: var(--color-text-muted); margin-bottom: var(--space-lg); max-width: 50ch; }
.hero__ctas { display: grid; gap: var(--space-sm); }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 100%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 24px -16px -24px 24px;
  background: var(--color-accent);
  opacity: 0.12;
  border-radius: var(--radius-xl);
  z-index: 1;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-block: var(--space-md);
  border-block: 1px solid var(--color-border);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text);
}
.trust-strip__item svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }

/* USP / 3-column blocks */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.usp {
  text-align: left;
}
.usp__icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.usp h3 { margin-bottom: var(--space-xs); }
.usp p { color: var(--color-text-muted); }

/* Cards — generic */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform var(--duration-base) var(--ease-default), box-shadow var(--duration-slow) var(--ease-default), border-color var(--duration-base) var(--ease-default);
}
.section--alt .card { background: var(--color-white); }
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.card h3 { margin-bottom: var(--space-xs); }
.card p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.card .btn--ghost { padding: 0; }

/* Pricing card */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border: 2px solid var(--color-primary);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  right: var(--space-md);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}
.pricing-card__name {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2xs);
  margin-bottom: var(--space-sm);
}
.pricing-card__currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: var(--fs-price);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}
.pricing-card__divider {
  height: 1px;
  background: var(--color-border);
  margin-block: var(--space-md);
}
.pricing-card__list {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  flex: 1;
}
.pricing-card__list li {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  font-size: var(--fs-body);
}
.pricing-card__list li svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card .btn { width: 100%; }
.pricing-foot {
  margin-top: var(--space-md);
  text-align: center;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* Geslaagden wall */
.graduates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.graduate {
  display: block;
}
.graduate__photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.graduate__caption {
  margin-top: var(--space-xs);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text);
}
.graduate__date { color: var(--color-text-muted); margin-left: 4px; }

/* Werkwijze (steps) */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.step { position: relative; padding-left: 64px; }
.step__num {
  position: absolute;
  left: 0;
  top: -8px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.18;
  line-height: 1;
}
.step h3 { margin-bottom: var(--space-xs); }
.step p { color: var(--color-text-muted); }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.testimonial {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
}
.testimonial__quote {
  font-style: italic;
  font-size: 1.0625rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--color-text);
  position: relative;
  z-index: 1;
}
.testimonial__author {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
}
.testimonial__name { font-size: var(--fs-small); font-weight: 500; }
.testimonial__city { font-size: var(--fs-small); color: var(--color-text-muted); }

/* CTA banner */
.cta-banner {
  text-align: center;
}
.cta-banner h2 { margin-bottom: var(--space-sm); }
.cta-banner p { max-width: 600px; margin-inline: auto; margin-bottom: var(--space-lg); }
.cta-banner .btn-group { justify-content: center; }

/* Service section detailed */
.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}
.service-block:last-child { border-bottom: 0; }
.service-block__body { display: grid; gap: var(--space-sm); }
.service-block__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-block: var(--space-sm);
}
.service-block__highlights span {
  font-size: var(--fs-small);
  font-weight: 500;
  padding: 6px 12px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-pill);
  color: var(--color-text);
}

/* FAQ */
.faq-list { display: grid; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-md) 0;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-primary);
  font-family: var(--font-body);
}
.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: var(--space-sm);
  transition: transform var(--duration-base) var(--ease-default);
  color: var(--color-accent);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-default), opacity var(--duration-slow) var(--ease-default);
  opacity: 0;
}
.faq-item.is-open .faq-item__panel { opacity: 1; }
.faq-item__panel-inner { padding-bottom: var(--space-md); color: var(--color-text-muted); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.form-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
}
.section--alt .form-card { background: var(--color-white); }
.form-card h2 { margin-bottom: var(--space-md); }
.field { margin-bottom: var(--space-sm); }
.field label {
  display: block;
  margin-bottom: var(--space-2xs);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-size: 16px;
  transition: border-color var(--duration-base) var(--ease-default);
  font-family: var(--font-body);
  color: var(--color-text);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2314181F' stroke-width='2'%3e%3cpath d='M4 6l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-primary);
}
.field--check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}
.field--check input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background var(--duration-base) var(--ease-default), border-color var(--duration-base) var(--ease-default);
}
.field--check input:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.field--check input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 6l3 3 5-6'/%3e%3c/svg%3e") center / contain no-repeat;
}
.field--check label {
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
  cursor: pointer;
}
.honeypot { position: absolute; left: -10000px; }

.contact-info { display: grid; gap: var(--space-md); }
.contact-info__row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.contact-info__row svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__row strong {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  margin-bottom: 2px;
}
.contact-info__row a, .contact-info__row span { color: var(--color-text); font-weight: 500; }
.contact-info__row a:hover { color: var(--color-accent); }
.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 11;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-hours dl { display: grid; grid-template-columns: 1fr auto; gap: 4px var(--space-md); font-size: var(--fs-small); }
.contact-hours dt { color: var(--color-text); font-weight: 500; }
.contact-hours dd { color: var(--color-text-muted); text-align: right; }

.form-success {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
}
.form-success__icon {
  width: 48px;
  height: 48px;
  color: var(--color-success);
  margin: 0 auto var(--space-sm);
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  padding-block: var(--space-lg);
  font-size: 0.8rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: start;
}
.site-footer .nav-brand { color: var(--color-white); display: inline-block; }
.footer-tagline { color: rgba(255, 255, 255, 0.7); margin-top: 4px; font-size: 0.8rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0; column-gap: var(--space-sm); row-gap: var(--space-2xs); }
.footer-nav a { color: var(--color-white); font-size: 0.8rem; font-weight: 500; }
.footer-nav a:hover { color: var(--color-accent); }
.footer-nav .sep { color: rgba(255, 255, 255, 0.3); margin-inline: 4px; }
.footer-contact { display: grid; gap: 4px; font-size: 0.8rem; }
.footer-contact a { color: var(--color-white); }
.footer-contact a:hover { color: var(--color-accent); }
.footer-social { display: flex; gap: var(--space-sm); margin-top: var(--space-xs); }
.footer-social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}
.footer-social a:hover { background: var(--color-accent); }
.footer-social svg { width: 16px; height: 16px; }
.footer-strip {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-xs);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-strip a { color: rgba(255, 255, 255, 0.6); }
.footer-strip a:hover { color: var(--color-white); }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: var(--z-whatsapp);
  transition: transform var(--duration-base) var(--ease-default);
}
.whatsapp-float:hover { transform: scale(1.05); color: var(--color-white); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
  padding: var(--space-sm) var(--space-md);
  z-index: var(--z-cookie);
}
.cookie-banner.is-hidden { display: none; }
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: var(--container-max);
  margin-inline: auto;
}
.cookie-banner__text { font-size: var(--fs-small); color: var(--color-text); }
.cookie-banner .btn { align-self: flex-start; }

/* Page hero (inner pages) */
.page-hero {
  padding-block: var(--space-xl);
  background: var(--color-bg-alt);
  text-align: left;
}
.page-hero h1 { margin-bottom: var(--space-sm); }
.page-hero p { font-size: var(--fs-body-lg); color: var(--color-text-muted); max-width: 60ch; }

/* Lists / inclusions */
.check-list { display: grid; gap: var(--space-xs); }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: var(--fs-body);
}
.check-list li svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-default), transform 500ms var(--ease-default);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* 404 / privacy text page */
.text-page { max-width: 720px; margin-inline: auto; }
.text-page h2 { margin-block: var(--space-md) var(--space-xs); }
.text-page p { margin-bottom: var(--space-sm); }
.text-page ul { margin-bottom: var(--space-sm); padding-left: var(--space-md); list-style: disc; }
.text-page ul li { margin-bottom: 4px; }

/* Utility */
.center { text-align: center; }
.center .hero__sub { margin-inline: auto; }
.center .btn-group { justify-content: center; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.fill { flex: 1; }

/* Form messages */
.form-message {
  color: var(--color-accent);
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}
