
:root {
  --af-navy: #0a2540;
  --af-blue: #0047ab;
  --af-blue-soft: #e8f0fc;
  --af-bg: #f5f5f7;
  --af-surface: #ffffff;
  --af-text: #1d1d1f;
  --af-muted: #6e6e73;
  --af-border: rgba(0,0,0,.08);
  --radius-sm: 12px;
  --radius-lg: 20px;
  --radius-pill: 980px;
  --shadow-sm: 0 2px 16px rgba(10,37,64,.06);
  --shadow-md: 0 12px 40px rgba(10,37,64,.10);
  --max: 1080px;
  --header-h: 64px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--af-text);
  background: var(--af-surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--af-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* —— Header —— */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--af-border);
}
.header-inner {
  max-width: var(--max); margin: 0 auto;
  height: 100%; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .95rem; letter-spacing: .04em;
  color: var(--af-blue); text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo img { width: 32px; height: 32px; border-radius: 8px; }
.site-nav { display: none; gap: 1.25rem; align-items: center; }
.site-nav a {
  font-size: .82rem; font-weight: 500; color: var(--af-text);
  text-decoration: none;
}
.site-nav a:hover { color: var(--af-blue); text-decoration: none; }
@media (min-width: 900px) { .site-nav { display: flex; } }
.header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--af-navy); color: #fff; font-size: .8rem; font-weight: 600;
  letter-spacing: .02em; text-decoration: none; white-space: nowrap;
}
.header-cta:hover { background: #123456; text-decoration: none; color: #fff; }

/* —— Hero —— */
.hero {
  padding: 3.5rem 1.25rem 2.5rem;
  background: var(--af-surface);
}
.hero-inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  margin: 0 0 .75rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--af-blue);
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.02em;
  color: var(--af-navy); max-width: 16ch;
}
.lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.5; color: var(--af-muted); max-width: 38rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  font-size: .88rem; font-weight: 600; letter-spacing: .02em;
  text-decoration: none; border: 2px solid transparent;
}
.btn-primary { background: var(--af-navy); color: #fff; }
.btn-primary:hover { background: #123456; color: #fff; text-decoration: none; }
.btn-secondary {
  background: transparent; color: var(--af-navy);
  border-color: rgba(10,37,64,.2);
}
.btn-secondary:hover { border-color: var(--af-navy); text-decoration: none; color: var(--af-navy); }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--af-border);
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--af-muted); font-weight: 500;
}
.trust-item svg { flex-shrink: 0; color: var(--af-blue); }

.hero-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.hero-product {
  display: block; text-decoration: none;
  background: #fafafa;
  border-radius: var(--radius-lg);
  border: 1px solid var(--af-border);
  padding: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-product:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.hero-product img {
  width: 100%; aspect-ratio: 1;
  object-fit: contain;
}
.hero-product span {
  display: block; margin-top: .65rem;
  font-size: .78rem; font-weight: 600; color: var(--af-navy);
  text-align: center; line-height: 1.3;
}
@media (max-width: 720px) {
  .hero-products { grid-template-columns: 1fr; }
  .hero-product img { max-height: 220px; }
}

.city-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: .75rem;
  margin: 1.25rem 0;
  min-height: 400px;
}
.city-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.city-gallery img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 400px;
}
.city-gallery img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.city-gallery img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 720px) {
  .city-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
  .city-gallery img:nth-child(1),
  .city-gallery img:nth-child(2),
  .city-gallery img:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 280px;
  }
}

/* —— Navy feature strip —— */
.feature-strip {
  background: var(--af-navy); color: #fff;
  padding: 1.5rem 1.25rem;
}
.feature-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  text-align: center;
}
.feature-strip strong {
  display: block; font-size: .95rem; font-weight: 600; margin-bottom: .2rem;
}
.feature-strip span { font-size: .8rem; opacity: .75; }
@media (max-width: 640px) { .feature-strip-inner { grid-template-columns: 1fr; gap: 1rem; } }

/* —— Quote banner —— */
.quote-banner {
  background: var(--af-bg);
  padding: 1.1rem 1.25rem;
  text-align: center;
  font-size: .95rem; color: var(--af-muted);
}
.quote-banner strong { color: var(--af-navy); font-weight: 600; }

/* —— Sections —— */
.section { padding: 3.5rem 1.25rem; }
.section.alt { background: var(--af-bg); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label {
  margin: 0 0 .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--af-blue);
}
.section h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700; letter-spacing: -.02em;
  color: var(--af-navy); line-height: 1.15;
}
.section p {
  margin: 0 0 1rem;
  font-size: 1.05rem; line-height: 1.65; color: var(--af-muted);
}
.section p:last-child { margin-bottom: 0; }

.distributor {
  margin-top: 1.5rem;
  background: var(--af-blue-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
.distributor strong {
  display: block; font-size: 1.05rem; color: var(--af-navy); margin-bottom: .5rem;
}
.distributor-partner {
  margin: 0 0 .65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--af-navy);
}
.distributor-meta {
  margin: 0 0 .4rem;
  line-height: 1.55;
  color: var(--af-muted);
}
.distributor-meta a {
  font-weight: 600;
  color: var(--af-blue);
  text-decoration: none;
}
.distributor-meta a:hover { text-decoration: underline; }
.distributor p { font-size: .95rem; margin-bottom: .5rem; }

.landmarks { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.25rem 0; }
.landmark {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  padding: .45rem 1rem; border-radius: var(--radius-pill);
  font-size: .88rem; font-weight: 500; color: var(--af-navy);
}
.section.alt .landmark { background: var(--af-surface); }

/* —— Company / why us —— */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 1.5rem 0 0;
}
.stat {
  text-align: center; padding: 1.25rem .75rem;
  background: var(--af-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--af-border);
}
.section.alt .stat { background: var(--af-surface); }
.stat strong {
  display: block; font-size: 1.5rem; font-weight: 700;
  color: var(--af-navy); line-height: 1.1;
}
.stat span { font-size: .82rem; color: var(--af-muted); }
@media (max-width: 640px) { .stats-row { grid-template-columns: 1fr; } }

.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  padding: 1.25rem; border-radius: var(--radius-lg);
  background: var(--af-bg); border: 1px solid var(--af-border);
}
.section.alt .why-card { background: var(--af-surface); }
.why-card strong {
  display: block; font-size: .92rem; color: var(--af-navy); margin-bottom: .35rem;
}
.why-card p { margin: 0; font-size: .85rem; }
.why-card .why-note {
  margin: .55rem 0 0;
  font-size: .72rem;
  line-height: 1.4;
  color: var(--af-muted);
}

.info-links {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem;
  justify-content: center;
}
.info-links a {
  display: inline-block; padding: .45rem .9rem;
  border-radius: var(--radius-pill); font-size: .8rem; font-weight: 600;
  background: var(--af-blue-soft); color: var(--af-blue); text-decoration: none;
}
.info-links a:hover { background: #dce8fa; text-decoration: none; }

/* —— Testimonials —— */
.testimonials {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--af-surface); border: 1px solid var(--af-border);
  border-radius: var(--radius-lg); padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.section.alt .testimonial { background: var(--af-surface); }
.stars { color: #f5a623; font-size: .9rem; letter-spacing: .05em; margin-bottom: .75rem; }
.testimonial blockquote {
  margin: 0 0 1rem; font-size: .92rem; line-height: 1.55;
  color: var(--af-muted); font-style: italic;
}
.testimonial cite {
  display: block; font-style: normal; font-weight: 600;
  font-size: .85rem; color: var(--af-navy);
}
.testimonial cite span {
  display: block; font-weight: 400; color: var(--af-muted); font-size: .78rem;
}

/* —— Top 3 promoted products —— */
.featured-promoted .products,
.product-category .products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
@media (max-width: 768px) {
  .featured-promoted .products,
  .product-category .products { grid-template-columns: 1fr; }
}
.featured-promoted .product-card {
  border-color: rgba(0,71,171,.15);
  box-shadow: var(--shadow-md);
}
.featured-promoted .product-card .tag { color: var(--af-navy); }

/* —— Product categories —— */
.product-category { margin-bottom: 2.5rem; }
.product-category:last-child { margin-bottom: 0; }
.section-head-row {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: .5rem 1rem; margin-bottom: 1.25rem;
}
.section-head-row h2 { margin: 0; }
.section-head-row a {
  font-size: .88rem; font-weight: 600; text-decoration: none;
}
.section-head-row a:hover { text-decoration: underline; }

/* —— Products —— */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--af-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--af-border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-card img {
  width: 100%; aspect-ratio: 1;
  object-fit: contain; background: #fafafa;
  padding: 1rem;
}
.product-card .body {
  padding: 1rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--af-blue); margin-bottom: .35rem;
}
.product-card h3 {
  font-size: .95rem; font-weight: 600; line-height: 1.35;
  margin: 0 0 .5rem; color: var(--af-navy);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 3);
}
.product-card .price {
  font-size: 1.05rem; font-weight: 700; color: var(--af-navy);
  margin-bottom: .75rem;
}
.product-card .btn {
  display: inline-block;
  margin-top: auto;
  padding: .5rem 1rem; border-radius: var(--radius-pill);
  background: var(--af-navy); color: #fff;
  font-size: .78rem; font-weight: 600; text-decoration: none;
}
.product-card .btn:hover { background: #123456; text-decoration: none; color: #fff; }

/* —— FAQ —— */
.faq details {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  border-radius: var(--radius-sm);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1rem 1.25rem;
  font-weight: 600; font-size: .95rem; color: var(--af-navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; float: right; font-weight: 400; color: var(--af-muted);
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin: 0; padding: 0 1.25rem 1.1rem;
  font-size: .92rem; color: var(--af-muted); line-height: 1.6;
}

/* —— CTA —— */
.cta-section {
  background: var(--af-navy); color: #fff;
  padding: 4rem 1.25rem; text-align: center;
}
.cta-section h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; letter-spacing: -.02em; color: #fff;
}
.cta-section p { margin: 0 0 1.75rem; font-size: 1.05rem; opacity: .8; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.cta-actions .btn-primary,
.cta-actions .btn-secondary { width: auto; flex: 0 0 auto; }
.cta-section .btn-primary { background: #fff; color: var(--af-navy); }
.cta-section .btn-primary:hover { background: #f0f0f0; color: var(--af-navy); }
.cta-section .btn-secondary { border-color: rgba(255,255,255,.35); color: #fff; }
.cta-section .btn-secondary:hover { border-color: #fff; color: #fff; }

/* —— Footer —— */
.site-footer {
  background: #061a2c; color: rgba(255,255,255,.7);
  padding: 3rem 1.25rem 2rem;
  font-size: .85rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem; margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-logo {
  display: flex; align-items: center; gap: .5rem;
  color: #fff; font-weight: 700; letter-spacing: .04em;
  margin-bottom: .75rem; text-decoration: none;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 6px; }
.footer-col h4 {
  margin: 0 0 .75rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.65);
  margin-bottom: .45rem; text-decoration: none;
}
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .78rem;
}

/* —— Performance: skip rendering off-screen sections until needed —— */
.section,
.social-proof,
.feature-strip,
.quote-banner,
.cta-section,
.city-map-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

/* —— Hero entrance (first paint, no JS) —— */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes hero-mascot-zoom {
  from { opacity: 0; transform: scale(0.86); }
  70% { opacity: 1; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}
.hero .eyebrow { animation: hero-fade-up .7s cubic-bezier(.22, 1, .36, 1) both; }
.hero h1 { animation: hero-fade-up .8s cubic-bezier(.22, 1, .36, 1) .08s both; }
.hero .lead { animation: hero-fade-up .8s cubic-bezier(.22, 1, .36, 1) .16s both; }
.hero-actions { animation: hero-fade-up .8s cubic-bezier(.22, 1, .36, 1) .24s both; }
.hero .trust-row { animation: hero-fade-up .8s cubic-bezier(.22, 1, .36, 1) .32s both; }
.hero-mascot img {
  transform-origin: center bottom;
  animation: hero-mascot-zoom 1.1s cubic-bezier(.22, 1, .36, 1) .12s both;
}
.hero-products-wrap { animation: hero-fade-up .9s cubic-bezier(.22, 1, .36, 1) .38s both; }

/* —— Scroll reveal (only when JS enabled) —— */
html.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1),
    transform .75s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
html.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .65s cubic-bezier(.22, 1, .36, 1),
    transform .65s cubic-bezier(.22, 1, .36, 1);
}
html.js .reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .22s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .34s; }

/* Subtle lift on interactive cards */
.product-card,
.unique-card,
.hero-product,
.testimonial,
.why-card {
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--af-border), 0 8px 24px rgba(10,37,64,.06);
}

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero-actions,
  .hero .trust-row,
  .hero-mascot,
  .hero-mascot img,
  .hero-products-wrap {
    animation: none;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .product-card,
  .unique-card,
  .hero-product,
  .testimonial,
  .why-card {
    transition: none;
  }
}

.hero-top {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-mascot {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-mascot img {
  display: block;
  width: auto;
  max-width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform-origin: center bottom;
  will-change: transform, opacity;
}
@media (min-width: 900px) {
  .hero-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }
  .hero-mascot {
    justify-content: flex-start;
  }
  .hero-mascot img {
    max-width: min(100%, 400px);
  }
}
.lifestyle-carousel {
  margin-top: 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--af-border);
  box-shadow: var(--shadow-md);
  background: #0a2540;
}
.lifestyle-carousel-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0a2540;
}
.lifestyle-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity .85s ease, visibility .85s ease;
}
.lifestyle-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.lifestyle-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  display: block;
}
.lifestyle-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.75rem 1.25rem 1.15rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10,37,64,.55) 35%, rgba(10,37,64,.88) 100%);
  color: #fff;
  font-size: clamp(1.2rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
  pointer-events: none;
}
@media (min-width: 900px) {
  .lifestyle-carousel-viewport {
    aspect-ratio: auto;
    height: min(80vh, 640px);
    max-height: min(80vh, 640px);
  }
  .lifestyle-slide figcaption {
    padding: 2.25rem 1.5rem 1.1rem;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lifestyle-slide { transition: none; }
}
.unique-products {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 900px) {
  .unique-products { grid-template-columns: 1fr 1fr; }
}
.unique-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--af-surface);
  border: 1px solid rgba(0,71,171,.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.unique-card-visual {
  position: relative;
  min-height: 240px;
  background: linear-gradient(180deg, #f4f8fc 0%, #e8f0f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
}
.unique-card-visual .product-hero {
  width: 100%;
  max-width: 420px;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(10,37,64,.14));
}
.unique-card-body {
  padding: 1.75rem 1.35rem 1.35rem;
}
.unique-card .badge {
  display: inline-block;
  margin-bottom: .55rem;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
  background: var(--af-blue-soft);
  color: var(--af-blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.unique-card h3 {
  margin: 0 0 .55rem;
  font-size: 1.2rem;
  color: var(--af-navy);
  line-height: 1.2;
}
.unique-card p {
  margin: 0 0 1rem;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--af-muted);
}
.unique-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--af-navy);
  margin-bottom: .85rem;
}
.unique-card .btn {
  display: inline-block;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--af-navy);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}
.unique-card .btn:hover {
  background: #123456;
  color: #fff;
  text-decoration: none;
}

.promo-video-wrap { margin: 0 0 2rem; }
.promo-video {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a2540;
  border: 1px solid var(--af-border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.promo-video-inner {
  position: absolute;
  inset: 0;
}
.promo-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .45s ease;
}
.promo-video.is-playing .promo-video-poster {
  opacity: 0;
  pointer-events: none;
}
.promo-video.is-fallback .promo-video-poster {
  opacity: 1;
}
.promo-video.is-fallback::after {
  content: '▶';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(10,37,64,.82);
  color: #fff;
  font-size: 1.75rem;
  line-height: 4.5rem;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.promo-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.promo-video-caption {
  margin-top: .75rem;
  text-align: center;
  font-size: .82rem;
  color: var(--af-muted);
}
.promo-video-caption a {
  font-weight: 600;
  text-decoration: none;
}
.promo-video-local-note {
  margin: .45rem 0 0;
  text-align: center;
  font-size: .78rem;
  color: var(--af-muted);
}

.catalog-cta-block {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--af-blue-soft) 0%, #f0f6ff 55%, #fff 100%);
  border: 1px solid rgba(0,71,171,.16);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.catalog-cta-block h3 {
  margin: 0 0 .65rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--af-navy);
  line-height: 1.2;
}
.catalog-cta-block .catalog-cta-lead {
  margin: 0 auto 1.35rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--af-muted);
}
.catalog-cta-block .btn-catalog {
  display: inline-block;
  padding: .85rem 1.65rem;
  border-radius: var(--radius-pill);
  background: var(--af-navy);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.catalog-cta-block .btn-catalog:hover {
  background: #123456;
  color: #fff;
  text-decoration: none;
}
.catalog-rent-note {
  margin: 1.25rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(0,71,171,.1);
  font-size: .88rem;
  line-height: 1.55;
  color: var(--af-muted);
}
.catalog-rent-note a {
  font-weight: 600;
  color: var(--af-blue);
  text-decoration: none;
}
.catalog-rent-note a:hover { text-decoration: underline; }

.financing-teaser {
  padding: 1.75rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--af-surface);
  border: 1px solid rgba(0,71,171,.14);
  box-shadow: var(--shadow-sm);
}
.financing-teaser-head {
  text-align: center;
  margin-bottom: 1.25rem;
}
.financing-teaser-head h3 {
  margin: 0 0 .45rem;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--af-navy);
  line-height: 1.25;
}
.financing-tagline {
  display: inline-block;
  margin: 0 0 .85rem;
  padding: .3rem .85rem;
  border-radius: var(--radius-pill);
  background: var(--af-blue-soft);
  font-size: .82rem;
  font-weight: 600;
  color: var(--af-blue);
}
.financing-intro {
  margin: 0 auto;
  max-width: 42rem;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--af-muted);
}
.financing-plans {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}
@media (min-width: 768px) {
  .financing-plans { grid-template-columns: 1fr 1fr; gap: 1.15rem; }
}
.financing-plan {
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--af-bg);
  border: 1px solid var(--af-border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.financing-plan h4 {
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  color: var(--af-navy);
  line-height: 1.3;
}
.financing-plan-lead {
  margin: 0;
  font-size: .84rem;
  line-height: 1.5;
  color: var(--af-muted);
}
.financing-msi-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}
.financing-msi-list li {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  padding: .55rem .65rem;
  border-radius: 8px;
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  font-size: .84rem;
  line-height: 1.4;
  color: var(--af-text);
}
.financing-msi-list strong {
  flex-shrink: 0;
  min-width: 3.5rem;
  font-size: .88rem;
  color: var(--af-blue);
}
.financing-plan-link {
  margin-top: auto;
  font-size: .82rem;
  font-weight: 600;
}
.financing-example {
  display: flex;
  gap: .85rem;
  align-items: center;
  padding: .75rem;
  border-radius: 8px;
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  text-decoration: none;
  color: inherit;
}
.financing-example:hover {
  text-decoration: none;
  color: inherit;
  border-color: rgba(0,71,171,.22);
}
.financing-example img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.financing-example strong {
  display: block;
  font-size: .88rem;
  color: var(--af-navy);
  margin-bottom: .1rem;
}
.financing-example .price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--af-navy);
}
.financing-pay-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.financing-pay-stat {
  padding: .65rem .5rem;
  border-radius: 8px;
  background: var(--af-blue-soft);
  border: 1px solid rgba(0,71,171,.14);
  text-align: center;
}
.financing-pay-stat .label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--af-muted);
  margin-bottom: .15rem;
}
.financing-pay-stat .amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--af-navy);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.financing-pay-stat .amount-lg {
  font-size: 1.45rem;
  color: var(--af-blue);
}
.financing-pay-stat .note {
  display: block;
  margin-top: .15rem;
  font-size: .68rem;
  color: var(--af-muted);
}
.financing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.financing-actions .btn-financing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
}
.financing-actions .btn-financing-primary {
  background: var(--af-navy);
  color: #fff;
}
.financing-actions .btn-financing-primary:hover {
  background: #123456;
  color: #fff;
  text-decoration: none;
}
.financing-actions .btn-financing-wa {
  background: #25d366;
  color: #fff;
}
.financing-actions .btn-financing-wa:hover {
  background: #1fb855;
  color: #fff;
  text-decoration: none;
}
.financing-disclaimer {
  margin: .85rem 0 0;
  padding: .45rem .65rem;
  border-radius: 8px;
  background: #fff8e6;
  border: 1px solid #f0dfa8;
  font-size: .68rem;
  line-height: 1.4;
  color: #7a6828;
  text-align: center;
}

.city-map-section {
  padding: 3rem 1.25rem 3.5rem;
  background: var(--af-bg);
  border-top: 1px solid var(--af-border);
}
.city-map-inner { max-width: var(--max); margin: 0 auto; }
.city-map-section h2 {
  margin: 0 0 .5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--af-navy);
}
.city-map-section p {
  margin: 0 0 1.25rem;
  font-size: .95rem;
  color: var(--af-muted);
  line-height: 1.55;
}
.city-map-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--af-border);
  box-shadow: var(--shadow-md);
  background: #e8ecf0;
  aspect-ratio: 16 / 9;
  max-height: 420px;
}
.city-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.city-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--af-muted);
  font-size: .85rem;
  background: linear-gradient(135deg, #eef2f6 0%, #e2e8f0 100%);
  transition: opacity .4s ease;
}
.city-map-frame.is-loaded .city-map-placeholder {
  opacity: 0;
  pointer-events: none;
}
.city-map-pin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--af-blue-soft);
  color: var(--af-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.city-map-links {
  margin-top: .85rem;
  font-size: .82rem;
}
.city-map-links a {
  font-weight: 600;
  text-decoration: none;
}
.city-map-links a:hover { text-decoration: underline; }

:root {
  --touch-min: 48px;
  --text-body: clamp(1.0625rem, 2.8vw, 1.125rem);
  --text-small: clamp(.9375rem, 2.5vw, 1rem);
  --text-label: clamp(.8125rem, 2.2vw, .875rem);
}

body {
  font-size: var(--text-body);
  line-height: 1.65;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.site-nav a,
.header-cta,
.btn-primary,
.btn-secondary,
.product-card .btn,
.unique-card .btn,
.header-cta,
.wa-fab {
  min-height: var(--touch-min);
}

.btn-primary,
.btn-secondary {
  font-size: 1rem;
  padding: .95rem 1.5rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  width: 100%;
  max-width: 100%;
}

.cta-section .cta-actions .btn-primary,
.cta-section .cta-actions .btn-secondary {
  width: auto;
  flex: 0 0 auto;
}

.header-cta {
  font-size: .9rem;
  padding: .65rem 1rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 7.5vw, 3.25rem);
  max-width: 100%;
  line-height: 1.12;
}

.lead,
.section p {
  font-size: clamp(1.0625rem, 3.8vw, 1.2rem);
  line-height: 1.62;
}

.eyebrow,
.section-label {
  font-size: var(--text-label);
  letter-spacing: .12em;
}

.trust-item {
  font-size: var(--text-small);
}

.hero-product span,
.product-card h3 {
  font-size: clamp(.95rem, 3.2vw, 1rem);
  line-height: 1.4;
}

.product-card .price,
.unique-card .price {
  font-size: clamp(1.1rem, 4vw, 1.2rem);
}

.product-card .btn,
.unique-card .btn {
  font-size: .95rem;
  padding: .7rem 1.2rem;
  width: 100%;
  text-align: center;
}

.faq summary {
  font-size: 1rem;
  padding: 1.15rem 1.25rem;
  line-height: 1.45;
}

.faq p {
  font-size: var(--text-small);
}

.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.6;
}

.lifestyle-slide figcaption {
  font-size: clamp(1.05rem, 4.5vw, 1.85rem);
  padding: 2.75rem 1rem 1.1rem;
}

/* —— Mobile layout (Android mid-tier ~360–412px) —— */
@media (max-width: 899px) {
  .hero {
    padding: 2rem 1rem 2rem;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-mascot {
    order: 0;
    justify-content: center;
    margin: 0 auto .25rem;
    max-width: 260px;
  }

  .hero-mascot img {
    width: auto;
    max-width: min(72vw, 260px);
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
  }

  .hero-products {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .hero-product {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: .85rem;
    align-items: center;
    padding: .85rem;
  }

  .hero-product img {
    aspect-ratio: 1;
    max-height: 112px;
    width: 112px;
    margin: 0 auto;
  }

  .hero-product span {
    text-align: left;
    margin-top: 0;
    font-size: 1rem;
  }

  .unique-card-visual {
    min-height: 200px;
    padding: 1.25rem 1rem;
  }

  .unique-card-visual .product-hero {
    max-height: 200px;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .site-header {
    height: auto;
    min-height: var(--header-h);
  }

  .header-inner {
    flex-wrap: wrap;
    padding: .65rem 1rem;
    gap: .5rem;
  }

  .header-cta {
    width: 100%;
    margin-top: .15rem;
  }

  .site-nav {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem;
  }

  .catalog-cta-block .btn-catalog {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    min-height: 48px;
    line-height: 1.35;
    padding-top: .95rem;
    padding-bottom: .95rem;
  }

  .city-map-section {
    padding: 2.5rem 1rem 3rem;
  }
}

@media (max-width: 899px) and (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
    flex: 1 1 12rem;
  }

  .header-cta {
    width: auto;
    margin-top: 0;
  }
}

.footer-offices {
  margin: 1rem 0 1.15rem;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
}
.footer-offices strong { color: #fff; font-weight: 600; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: background .2s, transform .2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


/* —— WhatsApp FAB —— */
.wa-fab {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.05); text-decoration: none; color: #fff; }

/* —— Dev nav (demo only) —— */
.demo-nav {
  background: #fffbe6; border-bottom: 1px solid #f0e6a0;
  text-align: center; padding: .45rem; font-size: .78rem;
}
.demo-nav a { margin: 0 .6rem; color: #7a6200; }
@media (max-width: 899px) {
  .demo-nav { display: none; }
}

.social-proof {
  background: #eef3f9;
  padding: 3rem 1.25rem;
}
.social-proof-inner { max-width: var(--max); margin: 0 auto; }
.sp-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
@media (max-width: 768px) { .sp-header { grid-template-columns: 1fr; } }
.sp-title {
  margin: 0 0 .35rem; font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800; letter-spacing: .06em; color: var(--af-navy);
}
.sp-subtitle { margin: 0; font-size: 1rem; color: var(--af-muted); max-width: 22rem; }
.sp-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 640px) { .sp-stats { grid-template-columns: 1fr; } }
.sp-stat { text-align: center; }
.sp-stat-num {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  color: var(--af-blue); line-height: 1.1;
}
.sp-stat-num span { font-variant-numeric: tabular-nums; }
.sp-stat-label { margin: .35rem 0 0; font-size: .88rem; color: var(--af-muted); }
.sp-divider {
  border: 0; height: 1px; margin: 2rem 0;
  background: linear-gradient(90deg, transparent, #d4a5a5 15%, #d4a5a5 85%, transparent);
  opacity: .55;
}
.sp-section-title {
  text-align: center; margin: 0 0 1.25rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 700;
  color: var(--af-navy); line-height: 1.35;
}
.sp-insurance-title { margin-top: 2.5rem; }
.logo-marquee {
  overflow: hidden; width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex; align-items: center; gap: 1.5rem;
  width: max-content; animation: marquee 40s linear infinite;
}
.logo-track.track-retail { animation-duration: 35s; }
.logo-track.track-insurance { animation-duration: 55s; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-slide {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 200px; height: 90px; padding: .5rem 1rem;
  background: rgba(255,255,255,.55); border-radius: 8px;
}
.logo-slide img {
  max-width: 100%; max-height: 72px; width: auto; height: auto;
  object-fit: contain; filter: grayscale(100%); opacity: .88;
}
.logo-slide:hover img { filter: grayscale(30%); opacity: 1; }
.sp-disclaimer {
  margin: 1.5rem 0 0; text-align: center;
  font-size: .78rem; font-style: italic; color: var(--af-muted);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
