/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy-900: #0b1e38;
  --navy-800: #122a4d;
  --navy-700: #1c3c67;
  --navy-600: #2a4f82;
  --blue-500: #3a6ea8;
  --orange-500: #f15a29;
  --orange-600: #d8481c;
  --orange-100: #fdece4;
  --cream-50: #f7f5f0;
  --gray-100: #f1efe9;
  --gray-300: #d9d6cd;
  --gray-500: #8b8a84;
  --text-dark: #17233a;
  --text-body: #3c4658;
  --white: #ffffff;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Poppins", var(--sans);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 10px 30px -12px rgba(11, 30, 56, 0.25);
  --shadow-btn: 0 8px 20px -6px rgba(241, 90, 41, 0.55);
  --nav-height: 76px;
  --topbar-height: 40px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy-900);
  text-wrap: balance;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
::selection { background: var(--orange-500); color: var(--white); }
:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 20px; }
.container--narrow { max-width: 820px; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--navy-900); color: var(--white);
  border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon--filled { fill: currentColor; stroke: none; }
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section--alt { background: var(--cream-50); }
.section--navy { background: var(--navy-900); color: #cfd9ea; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--orange-600); background: var(--orange-100);
  padding: .4em .9em; border-radius: 999px; margin-bottom: 1rem;
}
.section--navy .eyebrow, .section--dark-card .eyebrow { color: #ffd8c9; background: rgba(255,255,255,.12); }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head--center { margin-inline: auto; text-align: center; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
.lead { font-size: 1.1rem; color: var(--text-body); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.7em; border-radius: 999px; font-weight: 600; font-size: .98rem;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .25s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange-500); color: var(--white); box-shadow: var(--shadow-btn); }
.btn--primary:hover { background: var(--orange-600); }
.btn--ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn--outline { background: transparent; color: var(--navy-900); border: 1.5px solid var(--gray-300); }
.btn--outline:hover { border-color: var(--navy-700); background: var(--gray-100); }
.btn--block { width: 100%; }
.btn--sm { padding: .7em 1.3em; font-size: .9rem; }

/* =============================================================
   5. Header
   ============================================================= */
.topbar {
  background: var(--navy-900); color: #b9c6dd; font-size: .82rem;
  height: var(--topbar-height); display: flex; align-items: center;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar a { color: var(--white); font-weight: 600; }
.topbar a:hover { color: #ffd8c9; }
.topbar__item { display: inline-flex; align-items: center; gap: .4em; }
.topbar__right { display: flex; align-items: center; gap: 1.4rem; }
.topbar__hours { display: none; }

.masthead {
  position: sticky; top: 0; z-index: 500; isolation: isolate;
  border-bottom: 1px solid var(--gray-300);
  transition: box-shadow .3s var(--ease-out);
}
.masthead::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
}
.masthead.is-scrolled { box-shadow: 0 8px 24px -14px rgba(11,30,56,.35); }
.masthead .container { height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--navy-900); }
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand__name b { color: var(--orange-500); }
.brand__tagline { display: none; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: flex; align-items: center; gap: .3em;
  padding: .7em 1em; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--navy-800);
  transition: background-color .2s var(--ease-out), color .2s var(--ease-out);
}
.nav__link:hover, .nav__link[aria-expanded="true"] { background: var(--gray-100); color: var(--orange-600); }
.nav__link .icon { width: 14px; height: 14px; transition: transform .25s var(--ease-out); }
.nav__item[data-dropdown]:hover .nav__link .icon,
.nav__link[aria-expanded="true"] .icon { transform: rotate(180deg); }

.nav__item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-300);
  padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease-out), transform .22s var(--ease-out), visibility .22s;
}
.nav__item[data-dropdown]:hover .dropdown,
.dropdown.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown__link { display: flex; align-items: center; gap: .7em; padding: .75em .9em; border-radius: var(--radius-sm); font-weight: 600; color: var(--navy-800); font-size: .93rem; }
.dropdown__link:hover { background: var(--orange-100); color: var(--orange-600); }
.dropdown__link .icon { color: var(--orange-500); width: 18px; height: 18px; }

.header__cta { display: flex; align-items: center; gap: .7rem; }
.header__cta .btn { display: none; }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--gray-100); color: var(--navy-900);
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon--close { display: none; }
.nav-open .nav-toggle .icon--menu { display: none; }
.nav-open .nav-toggle .icon--close { display: block; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; top: calc(var(--nav-height) + var(--topbar-height));
  background: var(--white); z-index: 400; padding: 1.2rem 1.2rem 2rem;
  overflow-y: auto; transform: translateX(100%); transition: transform .3s var(--ease-out);
}
.nav-open .mobile-nav { transform: translateX(0); }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1em .3em; font-weight: 600; font-size: 1.05rem; color: var(--navy-900);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav__link .icon { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.mobile-nav__sub { padding-left: 1rem; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease-out); }
.mobile-nav__group.is-open .mobile-nav__sub { max-height: 240px; }
.mobile-nav__group.is-open .mobile-nav__link .icon { transform: rotate(180deg); }
.mobile-nav__sub a { display: flex; align-items: center; gap: .6em; padding: .8em .3em; color: var(--text-body); font-weight: 500; }
.mobile-nav__sub a .icon { color: var(--orange-500); width: 18px; height: 18px; }
.mobile-nav__cta { margin-top: 1.4rem; display: grid; gap: .8rem; }

@media (min-width: 960px) {
  .topbar__hours { display: inline-flex; }
  .brand__tagline { display: block; font-family: var(--sans); font-weight: 500; font-size: .72rem; color: var(--gray-500); }
  .brand { flex-direction: row; }
  .nav { display: block; }
  .header__cta .btn { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 74svh;
  display: flex; align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}
.hero--tall { min-height: 84svh; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,20,38,.55) 0%, rgba(9,22,45,.78) 55%, rgba(8,18,38,.94) 100%);
}
.hero__content { padding-block: 3rem 3.4rem; max-width: 760px; }
.hero__crumb { font-size: .85rem; color: #cfe0ff; margin-bottom: 1rem; opacity: .85; }
.hero__crumb a:hover { text-decoration: underline; }
.hero h1 { color: var(--white); font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 16ch; }
.hero__sub { margin-top: 1.1rem; font-size: 1.1rem; max-width: 52ch; color: #dbe4f5; }
.hero__checks { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.6rem; }
.hero__checks li { display: flex; align-items: center; gap: .5em; font-size: .92rem; font-weight: 600; color: #eef3fc; }
.hero__checks .icon { color: #7fd99a; width: 18px; height: 18px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* =============================================================
   7. Intro / split sections
   ============================================================= */
.split {
  display: grid; gap: 2.4rem; align-items: center;
}
.split__figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.split__figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split ul.checklist { margin-top: 1.4rem; display: grid; gap: .7rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7em; font-weight: 500; color: var(--text-dark); }
.checklist .icon { color: var(--orange-500); width: 20px; height: 20px; margin-top: .15em; }

@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.6rem; }
  .split--reverse { direction: rtl; }
  .split--reverse > * { direction: ltr; }
}

/* =============================================================
   8. Service cards
   ============================================================= */
.card-grid { display: grid; gap: 1.4rem; }
@media (min-width: 640px) { .card-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .card-grid--3 { grid-template-columns: repeat(2, 1fr); } .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--navy-800); color: #dde6f5; border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card__icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm); background: var(--orange-500); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon .icon { width: 28px; height: 28px; }
.service-card h3 { color: var(--white); }
.service-card p { color: #b9c6dd; font-size: .95rem; }
.service-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: .5em; font-weight: 700; color: #ffd8c9; }
.service-card__link .icon { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.service-card:hover .service-card__link .icon { transform: translateX(4px); }

.big-service-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 340px; display: flex; align-items: flex-end; color: var(--white);
  box-shadow: var(--shadow-card); isolation: isolate;
}
.big-service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s var(--ease-out); }
.big-service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,20,38,.15), rgba(9,17,34,.92)); z-index: -1; }
.big-service-card:hover img { transform: scale(1.05); }
.big-service-card__body { padding: 2rem; }
.big-service-card .eyebrow { color: #ffd8c9; background: rgba(255,255,255,.14); }
.big-service-card h3 { color: var(--white); font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.big-service-card p { color: #dbe4f5; margin-top: .5rem; max-width: 40ch; }
.big-service-card .btn { margin-top: 1.2rem; }

/* Simple feature list (why choose us) */
.feature-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md);
  padding: 1.7rem; display: flex; flex-direction: column; gap: .8rem;
}
.feature__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; }
.feature__icon .icon { width: 24px; height: 24px; }
.feature h3 { font-size: 1.05rem; }
.feature p { font-size: .92rem; }

/* =============================================================
   9. CTA banner
   ============================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-lg); color: var(--white);
  padding: clamp(2rem, 5vw, 3.2rem); display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: center; justify-content: space-between; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: -40% -10% auto auto; width: 55%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(241,90,41,.4), transparent 70%); filter: blur(10px);
}
.cta-banner__text { max-width: 480px; position: relative; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 1.9rem); }
.cta-banner p { color: #cfd9ea; margin-top: .6rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: .9rem; position: relative; }

/* =============================================================
   9b. Brands marquee
   ============================================================= */
.brands-marquee {
  overflow: hidden; margin-top: 2.6rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.brands-track {
  display: flex; align-items: center; gap: 1.1rem; width: max-content;
  animation: brands-scroll 30s linear infinite;
}
.brands-marquee:hover .brands-track { animation-play-state: paused; }
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-badge {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  min-width: 168px; height: 86px; padding: 0 1.6rem;
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md);
  font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em;
  color: var(--navy-800); white-space: nowrap;
}
.brand-badge--accent { color: var(--orange-500); }
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .brands-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* =============================================================
   10. Zone cards
   ============================================================= */
.zone-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 220px;
  display: flex; align-items: flex-end; color: var(--white); box-shadow: var(--shadow-card);
  isolation: isolate;
}
.zone-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s var(--ease-out); }
.zone-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,60,103,.25), rgba(11,20,38,.9)); z-index: -1; }
.zone-card:hover img { transform: scale(1.06); }
.zone-card__body { padding: 1.6rem; }
.zone-card h3 { color: var(--white); }
.zone-card p { color: #dbe4f5; font-size: .88rem; margin-top: .4rem; }

/* =============================================================
   11. Contact section
   ============================================================= */
.contact-grid { display: grid; gap: 2.4rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 3.2rem; } }

.contact-info h2 { margin-bottom: .8rem; }
.contact-info__list { margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.contact-info__list li { display: flex; align-items: flex-start; gap: .9em; }
.contact-info__list .icon-badge {
  width: 40px; height: 40px; border-radius: 10px; background: var(--navy-800); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info__list .icon-badge .icon { width: 19px; height: 19px; }
.contact-info__list strong { display: block; color: var(--navy-900); font-size: .95rem; }
.contact-info__list span, .contact-info__list a { font-size: .92rem; color: var(--text-body); }
.contact-info__list a:hover { color: var(--orange-600); }

.form-card {
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-card);
}
.form-card--cover {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .9rem;
  padding: clamp(2.2rem, 5vw, 3rem) clamp(1.6rem, 4vw, 2.4rem);
}
.form-cover__icon {
  width: 62px; height: 62px; border-radius: 999px; background: var(--orange-100); color: var(--orange-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.form-card--cover h3 { font-size: 1.3rem; max-width: 24ch; }
.form-card--cover p { color: var(--text-body); max-width: 34ch; }
.form-card--cover .btn { margin-top: .5rem; max-width: 320px; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy-900); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8em .9em; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font: inherit; color: var(--text-dark); background: var(--white);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange-500); box-shadow: 0 0 0 4px var(--orange-100); outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field--check { display: flex; align-items: flex-start; gap: .6em; font-size: .82rem; color: var(--gray-500); margin-bottom: 1.2rem; }
.field--check input { width: 1.1em; height: 1.1em; margin-top: .2em; accent-color: var(--orange-500); }
.field--check a { color: var(--navy-800); text-decoration: underline; }
.form-note { margin-top: .9rem; font-size: .8rem; color: var(--gray-500); text-align: center; }
.form-status { margin-top: 1rem; font-size: .9rem; font-weight: 600; padding: .8em 1em; border-radius: var(--radius-sm); display: none; }
.form-status.is-visible { display: block; }
.form-status--ok { background: #e7f7ec; color: #1b7a3d; }
.form-status--error { background: #fdeceb; color: #b5301b; }

.form-alt { margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--gray-300); text-align: center; }
.form-alt span { display: block; font-size: .85rem; color: var(--gray-500); margin-bottom: .8rem; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-300); box-shadow: var(--shadow-card); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* =============================================================
   12. Footer
   ============================================================= */
.site-footer { background: var(--navy-900); color: #aab8d1; }
.site-footer .container { padding-block: 3.4rem 1.6rem; }
.footer-top { display: grid; gap: 2.4rem; }
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-brand .brand { color: var(--white); }
.footer-brand p { margin-top: 1rem; font-size: .9rem; max-width: 32ch; color: #93a3c1; }
.footer-social { margin-top: 1.4rem; display: flex; gap: .7rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 999px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background-color .2s var(--ease-out);
}
.footer-social a:hover { background: var(--orange-500); }
.footer-social .icon { width: 17px; height: 17px; }
.footer-col h4 { color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { font-size: .92rem; color: #aab8d1; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between; align-items: center;
  font-size: .8rem; color: #7c8bab;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--white); }

/* =============================================================
   13. WhatsApp floating button
   ============================================================= */
.whatsapp-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 600;
  width: 58px; height: 58px; border-radius: 999px; background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px -8px rgba(37,211,102,.7);
  transition: transform .25s var(--ease-out);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab .icon { width: 28px; height: 28px; }

/* =============================================================
   14. Fichas de producto
   ============================================================= */
.product-grid { display: grid; gap: 1.6rem; }
.product-card {
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.product-card__media { position: relative; aspect-ratio: 4/3; background: var(--gray-100); }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 1.4rem; }
.product-card__brand {
  position: absolute; top: .9rem; left: .9rem; background: var(--navy-900); color: var(--white);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: .35em .8em; border-radius: 999px;
}
.product-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.product-card__body h3 { font-size: 1.15rem; }
.product-card__type { font-size: .87rem; color: var(--gray-500); margin-bottom: .5rem; }
.product-card__specs { display: grid; gap: .5rem; margin-top: .3rem; font-size: .87rem; }
.product-card__specs li {
  display: flex; justify-content: space-between; gap: .8rem;
  border-bottom: 1px dashed var(--gray-300); padding-bottom: .45rem;
}
.product-card__specs li span:first-child { color: var(--gray-500); }
.product-card__specs li span:last-child { font-weight: 700; color: var(--navy-900); text-align: right; }
.product-card__features { margin-top: .8rem; display: grid; gap: .5rem; font-size: .87rem; }
.product-card__features li { display: flex; align-items: flex-start; gap: .6em; color: var(--text-body); }
.product-card__features .icon { color: var(--orange-500); width: 17px; height: 17px; margin-top: .15em; flex-shrink: 0; }
@media (min-width: 640px) { .product-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .product-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   15. Legal / simple content pages
   ============================================================= */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.2rem; margin-bottom: .8rem; font-size: 1.3rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { margin-bottom: .9rem; font-size: .96rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; }
.prose a { color: var(--navy-800); text-decoration: underline; }
.page-hero {
  background: var(--navy-900); color: var(--white); padding-block: calc(2.4rem + var(--nav-height)) 2.6rem;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero .hero__crumb { margin-bottom: .8rem; }

.credits-list { display: grid; gap: .8rem; margin-top: 1.6rem; }
.credits-list li { padding: 1rem 1.2rem; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-size: .9rem; }
.credits-list a { color: var(--navy-800); text-decoration: underline; }

/* =============================================================
   16. Reveal on scroll (progressive enhancement)
   ============================================================= */
.js-enhanced .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.js-enhanced .reveal.is-visible { opacity: 1; transform: none; }
.js-enhanced .reveal--stagger.is-visible { transition-delay: var(--stagger, 0ms); }

/* =============================================================
   17. Misc small screens polish
   ============================================================= */
@media (max-width: 539px) {
  .hero__actions .btn { flex: 1 1 auto; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions .btn { flex: 1 1 auto; }
}
