/* Transportes LCAP — brand palette (Manual de identidad) */
:root {
  --color-primary: #005696;
  --color-primary-dark: #003d6b;
  --color-primary-light: #e8f2fa;
  --color-accent: #0078c7;
  --color-dark: #1A2332;
  --color-text: #2D3748;
  --color-muted: #5A6B7D;
  --color-border: #D8E2EC;
  --color-bg: #F4F7FA;
  --color-white: #FFFFFF;
  --color-success: #0D9488;
  --color-error: #DC2626;
  --shadow-sm: 0 1px 3px rgba(10, 77, 140, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 77, 140, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 77, 140, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --page-gutter: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

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

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

.container {
  width: min(1120px, calc(100% - 2 * var(--page-gutter)));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-dark);
}

.section-head p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.0625rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.has-hero .site-header {
  background: rgba(0, 28, 52, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.has-hero .site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.has-hero .site-nav a:hover {
  color: var(--color-white);
}

.has-hero .nav-cta {
  background: var(--color-white);
  color: var(--color-primary-dark) !important;
}

.has-hero .lang-switch {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.has-hero .lang-btn {
  color: rgba(255, 255, 255, 0.75);
}

.has-hero .lang-btn.active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary-dark);
}

.has-hero .header-phone {
  color: var(--color-white);
}

.has-hero .nav-toggle span {
  background: var(--color-white);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

.brand img { height: 44px; width: auto; max-width: 200px; }

/* Official logo unchanged — frosted pill on hero for contrast */
.has-hero:not(.header-scrolled) .brand {
  padding: 0.3rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.has-hero.header-scrolled .brand {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.has-hero.header-scrolled .site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--color-border);
}

.has-hero.header-scrolled .site-nav a {
  color: var(--color-muted);
}

.has-hero.header-scrolled .site-nav a:hover {
  color: var(--color-primary);
}

.has-hero.header-scrolled .nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
}

.has-hero.header-scrolled .lang-switch {
  background: var(--color-bg);
  border-color: var(--color-border);
}

.has-hero.header-scrolled .lang-btn {
  color: var(--color-muted);
}

.has-hero.header-scrolled .lang-btn.active {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.has-hero.header-scrolled .header-phone {
  color: var(--color-primary-dark);
}

.has-hero.header-scrolled .nav-toggle span {
  background: var(--color-dark);
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.15s;
}

.site-nav a:hover { color: var(--color-primary); }

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white) !important;
}

.nav-cta:hover { background: var(--color-primary-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.lang-btn {
  padding: 0.25rem 0.625rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-btn.active {
  background: var(--color-white);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

.header-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover { background: var(--color-primary-dark); }

.btn-ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Hero — cinematic full-bleed */
.hero--cinematic {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 88vh, 820px);
  padding: 0;
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 0;
  color: var(--color-white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 34, 68, 0.92) 0%, rgba(0, 34, 68, 0.72) 38%, rgba(0, 50, 96, 0.35) 62%, rgba(0, 20, 40, 0.25) 100%),
    linear-gradient(0deg, rgba(0, 20, 40, 0.85) 0%, transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero--cinematic .hero-copy {
  max-width: 640px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-chip {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.hero-chip--ghost {
  background: rgba(0, 86, 150, 0.45);
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.hero--cinematic .hero-copy h1 {
  color: var(--color-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero--cinematic .hero-lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
}

.hero--cinematic .hero-actions {
  margin-bottom: 0;
}

.btn-lg {
  padding: 1rem 1.625rem;
  font-size: 1rem;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: #1fb855;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stats:not(.hero-stats--bar) li {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero-stats:not(.hero-stats--bar) strong {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
}

.hero-stats:not(.hero-stats--bar) span {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Cinematic hero stats bar — keep after generic .hero-stats rules */
.hero-stats.hero-stats--bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgb(0 26 51 / 0.94);
  border: 1px solid rgb(255 255 255 / 0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgb(0 0 0 / 0.35);
}

.hero-stats.hero-stats--bar li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stats.hero-stats--bar strong {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 2px 12px rgb(0 0 0 / 0.45);
}

.hero-stats.hero-stats--bar span {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgb(255 255 255 / 0.95);
}

/* Client logos strip */
.clients {
  padding: 2rem 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.clients-label {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
}

.clients-logos img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.25s, opacity 0.25s;
}

.clients-logos img:hover,
.clients-logos li:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .hero--cinematic {
    min-height: clamp(560px, 92vh, 720px);
  }

  .hero-bg-photo {
    object-position: 55% center;
  }

  .hero-stats.hero-stats--bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }

  .hero--cinematic .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero--cinematic .hero-actions .btn {
    width: 100%;
  }

  .clients-logos img {
    height: 36px;
  }
}

@media (min-width: 960px) {
  .hero-inner {
    padding-bottom: 3.5rem;
  }

  .hero-stats.hero-stats--bar {
    max-width: 720px;
  }
}

/* Legacy hero (unused) */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 168, 232, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(1, 117, 194, 0.1), transparent),
    linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-white) 70%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.van-illustration {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  position: relative;
  overflow: hidden;
}

.van-illustration::before {
  content: "";
  position: absolute;
  bottom: 18%;
  left: 8%;
  right: 8%;
  height: 42%;
  border-radius: 10px 10px 6px 6px;
  background: rgba(255, 255, 255, 0.92);
}

.van-illustration::after {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 14%;
  width: 14%;
  height: 14%;
  border-radius: 50%;
  background: var(--color-dark);
  box-shadow: 52% 0 0 var(--color-dark), 130% 0 0 var(--color-dark);
}

.hero-card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

/* Services */
.services {
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 86, 150, 0.07), transparent 70%),
    var(--color-bg);
  padding-bottom: 0;
}

.services .section-head {
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 0;
  background: var(--color-white);
  border: none;
  border-right: 1px solid var(--color-border);
  box-shadow: none;
  overflow: hidden;
  transition: background 0.25s ease;
}

.service-card:last-child {
  border-right: none;
}

.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem clamp(1rem, 2vw, 1.5rem) 1.625rem;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--service-accent, var(--color-primary));
  opacity: 0;
  z-index: 2;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  background: var(--color-white);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--corporate { --service-accent: #005696; }
.service-card--school { --service-accent: #0078c7; }
.service-card--tourism { --service-accent: #0D9488; }
.service-card--airport { --service-accent: #003d6b; }

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -1.625rem 0 0.75rem;
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
}

.service-icon--corporate { color: #005696; }
.service-icon--school { color: #0078c7; }
.service-icon--tourism { color: #0D9488; }
.service-icon--airport { color: #003d6b; }

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  font-weight: 700;
  color: var(--color-dark);
}

.service-card p {
  margin: 0;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  line-height: 1.55;
  color: var(--color-muted);
}

/* Fleet — cinematic full-width bands */
.fleet {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 100%);
  padding-bottom: 0;
}

.fleet .section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.fleet-showcase {
  margin: 0;
}

.fleet-showcase--lead {
  margin-bottom: 0.5rem;
}

.fleet-showcase-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-dark);
}

.fleet-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgb(0 26 51 / 0.4) 0%,
    transparent 45%
  );
  pointer-events: none;
}

.fleet-showcase-media--wide {
  aspect-ratio: 21 / 9;
  width: 100%;
  max-height: min(46vh, 500px);
}

.fleet-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.fleet-showcase:hover .fleet-showcase-media img {
  transform: scale(1.03);
}

.fleet-showcase-copy {
  padding: 1.75rem 0 2.5rem;
  max-width: 640px;
}

.fleet-showcase--lead .fleet-showcase-copy {
  padding: 2rem 0 3rem;
  max-width: 720px;
}

.fleet-showcase-copy h3 {
  margin: 0 0 0.625rem;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--color-dark);
}

.fleet-showcase--lead .fleet-showcase-copy h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}

.fleet-showcase-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.fleet-showcase-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.fleet-showcase-trio .fleet-showcase {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-border);
  background: var(--color-white);
}

.fleet-showcase-trio .fleet-showcase:last-child {
  border-right: none;
}

.fleet-showcase-trio .fleet-showcase-media {
  aspect-ratio: 4 / 3;
}

.fleet-showcase-trio .fleet-showcase-copy-wrap {
  flex: 1;
  padding: 1.5rem 1.25rem 2rem;
}

.fleet-showcase-trio .fleet-showcase-copy {
  padding: 0;
  max-width: none;
}

.fleet-showcase-trio .fleet-showcase-copy h3 {
  font-size: 1.0625rem;
}

.fleet-showcase-trio .fleet-showcase-copy p {
  font-size: 0.9375rem;
}

@media (max-width: 960px) {
  .fleet-showcase-media--wide {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .fleet-showcase-trio {
    grid-template-columns: 1fr;
  }

  .fleet-showcase-trio .fleet-showcase {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .fleet-showcase-trio .fleet-showcase:last-child {
    border-bottom: none;
  }

  .fleet-showcase-trio .fleet-showcase-media {
    aspect-ratio: 16 / 10;
  }

  .fleet-showcase-trio .fleet-showcase-copy-wrap {
    padding: 1.5rem var(--page-gutter) 2rem;
  }

  .fleet-showcase-trio .fleet-showcase-copy h3 {
    font-size: 1.2rem;
  }
}

/* Features */
.features { padding: 3.5rem 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--color-primary-light);
  border: 2px solid var(--color-primary);
}

.feature h3 {
  margin: 0 0 0.5rem;
  color: var(--color-dark);
}

.feature p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

/* About */
.about { background: var(--color-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-dark);
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.about-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.about-panel h3 {
  margin: 0 0 1.25rem;
  color: var(--color-dark);
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-list li:last-child { border-bottom: none; }

.contact-list span {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.contact-list a {
  font-weight: 600;
  color: var(--color-primary);
}

.contact-list a:hover { text-decoration: underline; }

/* Quote form */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.quote-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-dark);
}

.quote-intro > p {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
}

.quote-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.quote-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.quote-included-title {
  margin: 1.75rem 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.quote-included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.25rem;
}

.quote-included li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.quote-included li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: var(--color-white);
}

.whatsapp-float svg {
  display: block;
}

.quote-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 1.125rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(1, 117, 194, 0.15);
}

.form-row input.invalid,
.form-row textarea.invalid {
  border-color: var(--color-error);
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 1rem 0 0;
  min-height: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-status.success { color: var(--color-success); }
.form-status.error { color: var(--color-error); }

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a:hover { color: var(--color-white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a:hover { color: var(--color-accent); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.8125rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p { margin: 0; }

/* Responsive */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-bottom: 1px solid var(--color-border); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-last-child(-n+2) { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero-grid,
  .about-grid,
  .quote-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 1.75rem;
  }

  .hero--cinematic {
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .hero-inner {
    padding-bottom: 2rem;
    gap: 1.5rem;
  }

  .hero--cinematic .hero-copy h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.15;
  }

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .header-phone { display: none; }

  .quote-included {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .site-nav.open a {
    color: var(--color-text);
  }

  .site-nav.open a:hover {
    color: var(--color-primary);
  }

  .site-nav.open .nav-cta {
    color: var(--color-white) !important;
  }

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

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--color-border); }
  .service-card:last-child { border-bottom: none; }
  .service-card-media { aspect-ratio: 16 / 9; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Legal pages */
.legal-page {
  padding-top: 3rem;
}

.legal-content {
  max-width: 720px;
}

.legal-content h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-dark);
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.125rem;
  color: var(--color-dark);
}

.legal-content p,
.legal-content li {
  color: var(--color-muted);
  line-height: 1.65;
}

.legal-content a {
  color: var(--color-primary);
  font-weight: 600;
}

.legal-list {
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-list li {
  margin-bottom: 0.5rem;
}

.legal-back {
  margin-top: 2.5rem;
}

.legal-back a {
  font-weight: 600;
  color: var(--color-primary-dark);
}
