/* Schouten Coolservice — 2026 Design System */
:root {
  --blue: #00a3e0;
  --blue-dark: #0088bc;
  --blue-light: #e6f6fc;
  --navy: #0a1628;
  --navy-soft: #132038;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --success: #10b981;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 80px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1200px, 100% - 2rem); margin-inline: auto; }
.section { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p { color: var(--gray-600); }
.lead { font-size: 1.125rem; line-height: 1.7; }
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section--navy .eyebrow { color: var(--blue); }
.text-center { text-align: center; }
.text-white p { color: rgba(255,255,255,0.75); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover { background: var(--navy-soft); }
.btn--ghost {
  background: var(--blue-light);
  color: var(--blue-dark);
  border-color: transparent;
}
.btn--ghost:hover { background: #cceaf7; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn--whatsapp:hover { background: #1fb855; border-color: #1fb855; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.header--scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo {
  height: 64px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}
.site-logo--footer {
  height: 80px;
  width: auto;
  max-width: none;
  margin-bottom: 1rem;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.75rem; }
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav__link:hover, .nav__link--active { color: var(--white); }
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}
.header__cta { display: flex; gap: 0.75rem; align-items: center; }
.header__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
}
.header__phone svg { width: 18px; height: 18px; fill: var(--blue); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 1px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.6) 50%, rgba(0,163,224,0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 0;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--blue); }
.hero .lead { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.hero__stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}
.hero__stat span { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* Page hero (subpages) */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,163,224,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 640px; }
.page-hero--sm { padding: 7rem 0 3rem; }

/* Prose (legal pages) */
.prose h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.prose p, .prose li {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose a { color: var(--blue); }
.prose a:hover { text-decoration: underline; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--blue); }

/* Service card — icon variant (no photo) */
.card--icon .card__icon-area {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--blue-light) 0%, #cceaf7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}
.card--icon .card__icon-area span:first-child { font-size: 3.5rem; line-height: 1; }
.card--icon .card__icon-area span:last-child {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Feature visual (pages without photo) */
.feature-visual {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.feature-visual__icon {
  width: 88px; height: 88px;
  margin: 0 auto 1.25rem;
  background: rgba(0,163,224,0.15);
  border: 2px solid rgba(0,163,224,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.feature-visual p { color: rgba(255,255,255,0.75); font-size: 0.9375rem; max-width: 280px; margin: 0 auto; }

/* Brand logos — global strip */
.brands-section { padding: 4rem 0; }
.brands-header { max-width: 560px; margin: 0 auto 2.5rem; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.875rem;
}
.brand-grid--global {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.brand-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.brand-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.brand-item img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
.section--navy .brand-item {
  background: rgba(255,255,255,0.96);
  border-color: rgba(255,255,255,0.12);
}
.section--navy .brand-item img { filter: none; }

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.whatsapp-btn:hover {
  background: #1fb855;
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: currentColor; }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}
.trust-bar__icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Cards grid */
.grid { display: grid; gap: 1.5rem; }
.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-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card__body { padding: 1.5rem; }
.card__body h3 { margin-bottom: 0.5rem; color: var(--navy); }
.card__body p { font-size: 0.9375rem; margin-bottom: 1rem; }
.card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card__link:hover { color: var(--blue-dark); }

/* Service cards (icon style) */
.service-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.75rem; color: var(--navy); }
.service-card p { font-size: 0.9375rem; margin-bottom: 1.25rem; }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__content h2 { margin-bottom: 1rem; color: var(--navy); }
.split__content p { margin-bottom: 1rem; }
.check-list { margin: 1.5rem 0; }
.check-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--gray-600);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -10%; top: -50%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,163,224,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner__text { position: relative; z-index: 1; }
.cta-banner__text h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner__text p { color: rgba(255,255,255,0.7); }
.cta-banner__actions { position: relative; z-index: 1; display: flex; gap: 1rem; flex-shrink: 0; }

/* Testimonials */
.testimonial {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  height: 100%;
}
.testimonial__stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial__text { font-size: 0.9375rem; color: var(--gray-600); margin-bottom: 1.25rem; font-style: italic; line-height: 1.7; }
.testimonial__text--rating { font-style: normal; color: var(--gray-500); font-size: 0.875rem; }
.reviews-grid-all { gap: 1.5rem; }
.testimonial__author { font-weight: 700; color: var(--navy); font-size: 0.9375rem; }
.testimonial__location { font-size: 0.8125rem; color: var(--gray-400); }

/* Google Reviews */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  max-width: 560px;
  margin-inline: auto;
}
.reviews-summary__score {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.reviews-summary__stars { color: #fbbf24; font-size: 1.125rem; letter-spacing: 2px; margin-bottom: 0.25rem; }
.reviews-summary__count { font-size: 0.875rem; color: var(--gray-600); margin: 0; }
.reviews-grid { min-height: 120px; }
.reviews-skeleton {
  height: 220px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.reviews-empty {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px dashed var(--gray-200);
  max-width: 520px;
  margin: 0 auto;
}
.reviews-empty p { margin-bottom: 1.25rem; color: var(--gray-600); }
.testimonial--google { display: flex; flex-direction: column; height: 100%; }
.testimonial__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial__meta {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 400;
}
.testimonial__source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(10,22,40,0.5));
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,22,40,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; border-radius: var(--radius-sm); }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Werkgebied */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.area-tag {
  padding: 0.4rem 1rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Forms */
.form { max-width: 640px; }
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form__group { margin-bottom: 1.25rem; }
.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,163,224,0.15);
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.form__checkbox input { margin-top: 0.2rem; }
.form__checkbox a { color: var(--blue); }
.form-wrap { max-width: 640px; }

.form__error {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fef2f2;
  color: #991b1b;
  border: 1.5px solid #fecaca;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.form__error.visible { display: flex; }
.form__error svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  fill: currentColor;
}
.form__error a { color: inherit; font-weight: 600; text-decoration: underline; }

.form-result {
  display: none;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1.5px solid #6ee7b7;
  border-radius: var(--radius);
  animation: formResultIn 0.45s ease;
}
.form-result.visible { display: block; }
.form-result__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: #10b981;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}
.form-result__icon svg { width: 32px; height: 32px; fill: currentColor; }
.form-result h3 {
  font-size: 1.375rem;
  color: #065f46;
  margin-bottom: 0.75rem;
}
.form-result p {
  color: #047857;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 28rem;
  margin: 0 auto;
}
.form-result__fallback {
  margin-top: 1.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 0.875rem !important;
  color: #065f46 !important;
}
.form-result__fallback a {
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: none;
}
.form-result__fallback a:hover { text-decoration: underline; }

.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: formSpin 0.65s linear infinite;
}

@keyframes formResultIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes formSpin { to { transform: rotate(360deg); } }

/* Contact info cards */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.info-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.info-card__icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}
.info-card h3 { margin-bottom: 0.5rem; color: var(--navy); font-size: 1rem; }
.info-card p, .info-card a { font-size: 0.9375rem; color: var(--gray-600); }
.info-card a:hover { color: var(--blue); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}
.faq-item summary {
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--blue); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 0.75rem; font-size: 0.9375rem; padding-right: 2rem; }

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand .site-logo { filter: none; }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.footer ul li { margin-bottom: 0.6rem; }
.footer a { font-size: 0.875rem; transition: color var(--transition); }
.footer a:hover { color: var(--blue); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__credit { color: var(--gray-400); margin-left: auto; }
.footer__credit a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__credit a:hover { color: var(--white); }
.footer__social { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer__social-link:hover { color: var(--white); }

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav__list, .header__cta .btn--outline { display: none; }
  .header__phone { display: none; }
  .menu-toggle { display: block; }
  .nav.open .nav__list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav.open .nav__link { padding: 0.75rem 0; display: block; }
  .nav.open .header__cta {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--header-h) + 280px); left: 0; right: 0;
    background: var(--navy);
    padding: 0 2rem 2rem;
  }
  .grid--2, .grid--3, .info-cards { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
  .whatsapp-btn { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .whatsapp-btn svg { width: 28px; height: 28px; }
  .brand-grid--global { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem; }
}

@media (max-width: 480px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .brand-grid--global { grid-template-columns: repeat(2, 1fr); }
