:root {
  --navy: #0f1b33;
  --gold: #c9a227;
  --gold-dark: #b8921f;
  --white: #ffffff;
  --grey-50: #f5f7fa;
  --grey-200: #e5e7eb;
  --text: #1a1a1a;
  --muted: #6b7280;
  --radius-card: 8px;
  --radius-pill: 50px;
  --radius-img: 4px;
  --shadow-card: 0 4px 24px rgba(15, 27, 51, 0.08);
  --shadow-hover: 0 8px 28px rgba(15, 27, 51, 0.14);
  --container: 1280px;
  --section-y: 96px;
  --section-y-mobile: 60px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, sans-serif; color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: var(--section-y) 0; }
.home-hero { padding-top: 24px; padding-bottom: 48px; }
.bg-light { background: var(--grey-50); }
.bg-navy { background: var(--navy); color: var(--white); }
.section-label { color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; font-size: .8rem; margin: 0 0 .8rem; }
.section-title { font-size: clamp(2rem, 3.2vw, 2.5rem); line-height: 1.2; margin: 0 0 1rem; }
.section-title::after { content: ''; display: block; width: 80px; height: 2px; margin-top: .8rem; background: var(--gold); }
.btn { display: inline-block; border-radius: 50px; padding: .8rem 1.2rem; font-weight: 600; transition: .2s ease; border: 2px solid transparent; }
.btn:focus-visible, .nav a:focus-visible, .service-link:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn-secondary { border-color: var(--navy); color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-secondary.inverse { border-color: var(--white); color: var(--white); }
.btn-secondary.inverse:hover { background: var(--white); color: var(--navy); }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--white); color: var(--navy); padding: .5rem; z-index: 9999; }
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); }
.site-header.scrolled { box-shadow: 0 2px 14px rgba(15, 27, 51, .1); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 88px; }
.brand { font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand-icon { color: var(--gold); }
.brand-logo { width: clamp(150px, 18vw, 250px); height: auto; object-fit: contain; display: block; }
.brand span { font-size: 0.88rem; letter-spacing: .4px; white-space: nowrap; }
.nav ul { list-style: none; display: flex; gap: 1.2rem; padding: 0; margin: 0; }
.nav a { color: var(--navy); font-weight: 600; }
.menu-toggle { display: none; border: 0; background: none; font-weight: 600; color: var(--navy); }
.mobile-menu { display: none; position: fixed; inset: 78px 0 0; background: var(--navy); padding: 2rem; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.mobile-menu a { color: var(--gold); font-size: 1.5rem; font-weight: 700; }
.hero { min-height: 85vh; display: grid; grid-template-columns: 55% 45%; align-items: stretch; }
.hero-content { display: grid; align-content: center; gap: 1rem; padding: 3rem 0; }
.pill { display: inline-block; background: var(--navy); color: var(--gold); padding: .4rem .9rem; border-radius: 50px; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; }
.hero h1 { margin: 0; line-height: 1.1; font-size: clamp(2.2rem, 5vw, 3.5rem); }
.hero-image { position: relative; overflow: hidden; border-radius: 0; height: 100%; }
.hero-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15, 27, 51, .55), transparent); }
.hero-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center; }
.home-hero-image {
  min-height: 85vh;
  background-image: url("../images/van-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.trust-bar { display: flex; flex-wrap: wrap; gap: 1rem; font-weight: 600; color: var(--muted); }
.hero-full-bg {
  position: relative;
  min-height: 85vh;
  grid-template-columns: 1fr;
  border-radius: 8px;
  overflow: hidden;
  background-image: url("../images/van-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-full-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 27, 51, 0.82) 0%, rgba(15, 27, 51, 0.55) 45%, rgba(15, 27, 51, 0.2) 100%);
}
.hero-full-bg .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 4.2rem 3rem;
}
.hero-full-bg .hero-content h1,
.hero-full-bg .hero-content p,
.hero-full-bg .trust-bar {
  color: var(--white);
}
.hero-full-bg .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}
.hero-full-bg .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}
.cards { display: grid; gap: 1.2rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: var(--white); border: 1px solid var(--grey-200); border-radius: 8px; box-shadow: var(--shadow-card); padding: 1.4rem; transition: .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card h3 { margin: .8rem 0 .4rem; font-size: 1.2rem; }
.service-link { color: var(--gold); font-weight: 600; }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.8rem; align-items: center; }
.check-list { list-style: none; margin: 1.2rem 0; padding: 0; display: grid; gap: .8rem; }
.check-list li::before { content: '✓'; color: var(--gold); margin-right: .5rem; font-weight: 700; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; text-align: center; }
.stat-number { font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); font-weight: 700; }
.locations { color: #c4ccd9; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.step-number { color: var(--gold); font-weight: 700; font-size: 2rem; }
.testimonial-stars { color: var(--gold); letter-spacing: 2px; }
.final-cta { background: var(--gold); color: var(--navy); text-align: center; }
.site-footer { background: var(--navy); color: #d8deea; padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 1rem; }
.site-footer h3 { color: var(--white); }
.site-footer a { color: #d8deea; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding: 1rem 0 2rem; font-size: .9rem; color: #b3bfd2; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
input, textarea, select { width: 100%; border: 1px solid var(--grey-200); border-radius: 8px; padding: .75rem; font: inherit; }
.form-alert { padding: .85rem 1rem; border-radius: 8px; margin: 0 0 1rem; font-weight: 600; }
.form-alert.success { background: #e9f8ef; color: #0f5132; border: 1px solid #b7e4c7; }
.form-alert.error { background: #fdecec; color: #842029; border: 1px solid #f5c2c7; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.whatsapp-float { position: fixed; right: 1rem; bottom: 1rem; background: #25d366; color: #083720; font-weight: 700; border-radius: 999px; padding: .75rem 1rem; box-shadow: var(--shadow-card); }
@media (max-width: 1023px) { .cards { grid-template-columns: repeat(2, minmax(0,1fr)); } .split { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 767px) { .section { padding: var(--section-y-mobile) 0; } .home-hero { padding-top: 8px; } .hero { grid-template-columns: 1fr; min-height: auto; } .hero-image img { min-height: 300px; } .home-hero-image { min-height: 60vh; } .hero-full-bg { min-height: 72vh; border-radius: 0; } .hero-full-bg .hero-content { padding: 2.2rem 1.2rem; } .cards, .steps, .stats, .form-grid, .footer-grid { grid-template-columns: 1fr; } .desktop-nav, .header-cta { display: none !important; } .menu-toggle { display: inline-block; } .brand span { display: none; } .brand-logo { width: 150px; } }
