/* =========================================================
   BlueWave Supply — Premium International B2B Export Site
   Design system per official brand identity brief.
   ========================================================= */

:root {
  --bw-primary-blue: #2563EB;
  --bw-premium-gold: #D4AF37;
  --bw-bronze:       #B8860B;
  --bw-light-blue:   #60A5FA;
  --bw-dark-blue:    #1E40AF;
  --bw-cream:        #FEF3C7;
  --bw-white:        #FFFFFF;
  --bw-text:         #333333;
  --bw-muted:        #6B7280;
  --bw-border:       #E5E7EB;

  --bw-radius:       10px;
  --bw-radius-lg:    16px;
  --bw-shadow-sm:    0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --bw-shadow-md:    0 8px 24px rgba(15, 23, 42, .08);
  --bw-shadow-lg:    0 20px 50px rgba(15, 23, 42, .12);

  --bw-container:    1240px;
  --bw-gutter:       24px;
  --bw-section-y:    96px;

  --bw-font-head:    "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --bw-font-body:    "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--bw-font-body);
  font-weight: 400;
  color: var(--bw-text);
  line-height: 1.65;
  background: var(--bw-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--bw-primary-blue); text-decoration: none; }
a:hover { color: var(--bw-dark-blue); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bw-font-head);
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.12; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.2; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--bw-font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bw-primary-blue);
  margin-bottom: 14px;
}

.eyebrow--gold { color: var(--bw-bronze); }
.eyebrow--light { color: var(--bw-light-blue); }

/* =========================================================
   Layout
   ========================================================= */
.container {
  max-width: var(--bw-container);
  margin: 0 auto;
  padding: 0 var(--bw-gutter);
}

.section { padding: var(--bw-section-y) 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--bw-cream); }
.section--dark { background: var(--bw-dark-blue); color: #E0E7FF; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #FFFFFF; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { color: var(--bw-muted); font-size: 1.05rem; }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  :root { --bw-section-y: 64px; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--bw-font-body);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: var(--bw-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--bw-primary-blue);
  color: var(--bw-white);
  border-color: var(--bw-primary-blue);
  box-shadow: 0 8px 20px rgba(37, 99, 235, .25);
}
.btn--primary:hover {
  background: var(--bw-dark-blue);
  border-color: var(--bw-dark-blue);
  color: var(--bw-white);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(30, 64, 175, .3);
}

.btn--secondary {
  background: var(--bw-white);
  color: var(--bw-primary-blue);
  border-color: var(--bw-primary-blue);
}
.btn--secondary:hover {
  background: var(--bw-primary-blue);
  color: var(--bw-white);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--bw-premium-gold);
  color: #1B1B1B;
  border-color: var(--bw-premium-gold);
}
.btn--gold:hover {
  background: var(--bw-bronze);
  border-color: var(--bw-bronze);
  color: #FFFFFF;
}

.btn--ghost-light {
  background: transparent;
  color: var(--bw-white);
  border-color: rgba(255, 255, 255, .55);
}
.btn--ghost-light:hover {
  background: var(--bw-white);
  color: var(--bw-dark-blue);
}

.btn--lg { padding: 18px 34px; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--bw-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--bw-font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: #0F172A;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--bw-primary-blue); }

.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bw-primary-blue), var(--bw-dark-blue));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: var(--bw-font-head);
  box-shadow: 0 8px 18px rgba(30, 64, 175, .28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-weight: 500;
  color: #1F2937;
  font-size: .96rem;
  position: relative;
}
.nav a:hover { color: var(--bw-primary-blue); }
.nav a.is-active { color: var(--bw-primary-blue); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--bw-primary-blue);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px; height: 42px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: #0F172A;
}
.nav-toggle:hover { background: #F1F5F9; }

@media (max-width: 1020px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn--secondary { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--bw-border);
    padding: 18px var(--bw-gutter) 22px;
  }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(96, 165, 250, .35), transparent 60%),
    linear-gradient(135deg, #1E3A8A 0%, #2563EB 55%, #1E40AF 100%);
  color: #FFFFFF;
  padding: 110px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .25;
  pointer-events: none;
}
.hero .container { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.hero h1 { color: #FFFFFF; margin-bottom: 22px; }
.hero h1 .accent { color: var(--bw-premium-gold); }

.hero p.lead {
  font-size: 1.15rem;
  color: #DBEAFE;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  margin-top: 36px;
  font-size: .92rem;
  color: #BFDBFE;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--bw-premium-gold); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--bw-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

/* Compact hero used on internal pages */
.page-hero {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
  color: #FFFFFF;
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 28px 28px; opacity: .22; pointer-events: none;
}
.page-hero .container { position: relative; max-width: 880px; }
.page-hero h1 { color: #FFFFFF; }
.page-hero p { color: #DBEAFE; font-size: 1.1rem; max-width: 680px; }
.breadcrumb {
  font-size: .85rem;
  color: #BFDBFE;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.breadcrumb a { color: #DBEAFE; }
.breadcrumb a:hover { color: #FFFFFF; }

/* =========================================================
   Image placeholders (image containers preserved for manual upload)
   ========================================================= */
.image-placeholder {
  position: relative;
  width: 100%;
  background:
    linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 2px dashed rgba(37, 99, 235, .35);
  border-radius: var(--bw-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bw-dark-blue);
  font-family: var(--bw-font-head);
  font-weight: 600;
  text-align: center;
  padding: 24px;
  min-height: 200px;
  overflow: hidden;
}
.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  background-image:
    linear-gradient(45deg, rgba(37, 99, 235, .06) 25%, transparent 25%, transparent 50%, rgba(37, 99, 235, .06) 50%, rgba(37, 99, 235, .06) 75%, transparent 75%, transparent);
  background-size: 18px 18px;
  pointer-events: none;
}
.image-placeholder__label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.image-placeholder__tag {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--bw-dark-blue);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 999px;
}
.image-placeholder__size {
  font-size: .8rem;
  color: var(--bw-muted);
  font-weight: 500;
  font-family: var(--bw-font-body);
}

.image-placeholder--ratio-16x9 { aspect-ratio: 16 / 9; }
.image-placeholder--ratio-4x3  { aspect-ratio: 4 / 3; }
.image-placeholder--ratio-1x1  { aspect-ratio: 1 / 1; }
.image-placeholder--ratio-3x2  { aspect-ratio: 3 / 2; }
.image-placeholder--ratio-21x9 { aspect-ratio: 21 / 9; }

.image-placeholder--hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .02) 100%);
  border-color: rgba(255, 255, 255, .35);
  color: #FFFFFF;
  min-height: 360px;
}
.image-placeholder--hero .image-placeholder__tag {
  background: var(--bw-premium-gold);
  color: #1B1B1B;
}
.image-placeholder--hero .image-placeholder__size { color: #DBEAFE; }
.image-placeholder--hero::before {
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, .08) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, .08) 75%, transparent 75%, transparent);
}

/* Filled state: placeholder shell preserved (aspect ratio) but content is the image */
.image-placeholder.is-filled {
  background: none;
  border: 0;
  padding: 0;
  min-height: 0;
}
.image-placeholder.is-filled::before { display: none; }
.image-placeholder.is-filled .image-placeholder__label { display: none; }
.image-placeholder.is-filled img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

/* =========================================================
   Trust bar
   ========================================================= */
.trust-bar {
  background: #F8FAFC;
  border-top: 1px solid var(--bw-border);
  border-bottom: 1px solid var(--bw-border);
  padding: 28px 0;
}
.trust-bar__row {
  display: flex; flex-wrap: wrap; gap: 18px 44px;
  align-items: center; justify-content: center;
  color: #1F2937;
  font-family: var(--bw-font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trust-bar__row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-bar__row svg { width: 18px; height: 18px; color: var(--bw-premium-gold); }

/* =========================================================
   Feature cards
   ========================================================= */
.feature-card {
  background: var(--bw-white);
  border: 1px solid var(--bw-border);
  border-radius: var(--bw-radius-lg);
  padding: 30px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bw-shadow-md);
  border-color: rgba(37, 99, 235, .35);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(37, 99, 235, .1);
  color: var(--bw-primary-blue);
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card.gold .feature-card__icon {
  background: rgba(212, 175, 55, .15);
  color: var(--bw-bronze);
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--bw-muted); margin: 0; }

/* =========================================================
   Product cards
   ========================================================= */
.product-card {
  background: #FFFFFF;
  border: 1px solid var(--bw-border);
  border-radius: var(--bw-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bw-shadow-md);
}
.product-card__media {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--bw-border);
}
.product-card__media.image-placeholder { border-radius: 0; }
.product-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.product-card__name {
  font-family: var(--bw-font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 6px;
}
.product-card__tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bw-bronze);
  margin-bottom: 6px;
}
.product-card__desc { color: var(--bw-muted); margin-bottom: 18px; }
.product-card__benefits { list-style: none; padding: 0; margin: 0 0 22px; }
.product-card__benefits li {
  position: relative;
  padding-left: 24px;
  font-size: .95rem;
  color: #1F2937;
  margin-bottom: 6px;
}
.product-card__benefits li::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .12);
  position: absolute; left: 0; top: 5px;
  background-image: linear-gradient(45deg, transparent 40%, var(--bw-primary-blue) 40%, var(--bw-primary-blue) 60%, transparent 60%);
}
.product-card__cta { margin-top: auto; }

.product-card--coming-soon { opacity: .92; }
.product-card--coming-soon .product-card__tag { color: var(--bw-muted); }

/* =========================================================
   How it works steps
   ========================================================= */
.steps {
  counter-reset: step;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .steps { grid-template-columns: 1fr; } }

.step {
  background: #FFFFFF;
  border: 1px solid var(--bw-border);
  border-radius: var(--bw-radius-lg);
  padding: 28px 22px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--bw-font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--bw-premium-gold);
  opacity: .9;
}
.step h3 { font-size: 1.05rem; margin: 14px 0 8px; }
.step p { margin: 0; color: var(--bw-muted); font-size: .94rem; }
.step__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bw-primary-blue);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, .12);
}

/* =========================================================
   Certifications strip
   ========================================================= */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }

.cert-card {
  background: #FFFFFF;
  border: 1px solid var(--bw-border);
  border-radius: var(--bw-radius);
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: center; align-items: center;
}
.cert-card__seal {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bw-bronze);
  margin-bottom: 4px;
}
.cert-card__seal svg { width: 30px; height: 30px; }
.cert-card h4 { margin: 0; font-size: 1rem; }
.cert-card p { margin: 0; color: var(--bw-muted); font-size: .88rem; }

/* =========================================================
   Global markets map
   ========================================================= */
.markets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .markets { grid-template-columns: 1fr; } }

.markets__list {
  list-style: none;
  padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}
.markets__list li {
  display: flex; align-items: center; gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--bw-border);
  border-radius: var(--bw-radius);
  padding: 12px 16px;
  font-weight: 500;
}
.markets__list li::before {
  content: "";
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bw-premium-gold);
  flex-shrink: 0;
}

.world-map {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #EFF6FF 0%, #DBEAFE 100%);
  border-radius: var(--bw-radius-lg);
  border: 1px solid var(--bw-border);
  overflow: hidden;
}
.world-map svg { width: 100%; height: 100%; display: block; }
.world-map .pin {
  fill: var(--bw-primary-blue);
  stroke: #FFFFFF; stroke-width: 1.5;
}
.world-map .pin-glow {
  fill: var(--bw-primary-blue);
  opacity: .2;
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial {
  background: #FFFFFF;
  border: 1px solid var(--bw-border);
  border-radius: var(--bw-radius-lg);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial__quote {
  font-family: var(--bw-font-head);
  font-weight: 500;
  font-size: 1.05rem;
  color: #1F2937;
  line-height: 1.55;
}
.testimonial__quote::before { content: "“"; font-size: 2.4rem; color: var(--bw-premium-gold); line-height: 0; margin-right: 4px; vertical-align: -16px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bw-primary-blue), var(--bw-dark-blue));
  color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--bw-font-head);
  font-weight: 700;
}
.testimonial__name { font-weight: 600; font-size: .95rem; }
.testimonial__role { font-size: .85rem; color: var(--bw-muted); }

/* =========================================================
   Final CTA banner
   ========================================================= */
.cta-banner {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(96, 165, 250, .35), transparent 60%),
    linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
  color: #FFFFFF;
  padding: 80px 0;
  border-radius: 0;
  text-align: center;
}
.cta-banner h2 { color: #FFFFFF; max-width: 760px; margin: 0 auto 16px; }
.cta-banner p { color: #DBEAFE; max-width: 640px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner .btn-row { justify-content: center; }

/* =========================================================
   Forms
   ========================================================= */
.form-card {
  background: #FFFFFF;
  border: 1px solid var(--bw-border);
  border-radius: var(--bw-radius-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--bw-shadow-md);
}
@media (max-width: 600px) { .form-card { padding: 26px 22px; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: .88rem;
  font-weight: 600;
  color: #1F2937;
  letter-spacing: .02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--bw-font-body);
  font-size: 1rem;
  color: var(--bw-text);
  padding: 12px 14px;
  border-radius: var(--bw-radius);
  border: 1px solid var(--bw-border);
  background: #F9FAFB;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bw-primary-blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}
.field textarea { min-height: 120px; resize: vertical; }

.field__hint { font-size: .82rem; color: var(--bw-muted); }

.form-consent {
  font-size: .85rem; color: var(--bw-muted);
  display: flex; gap: 10px; align-items: flex-start;
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--bw-border);
  border-radius: var(--bw-radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--bw-font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: #0F172A;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--bw-primary-blue);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body { padding: 0 22px 22px; color: #475569; }

/* =========================================================
   Info cards (contact methods)
   ========================================================= */
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #FFFFFF;
  border: 1px solid var(--bw-border);
  border-radius: var(--bw-radius-lg);
  padding: 22px;
}
.info-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, .1);
  color: var(--bw-primary-blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card__icon svg { width: 22px; height: 22px; }
.info-card h4 { margin: 0 0 4px; font-size: 1rem; }
.info-card p, .info-card a { margin: 0; font-size: .95rem; color: var(--bw-muted); }
.info-card a:hover { color: var(--bw-primary-blue); }

/* =========================================================
   Specs table
   ========================================================= */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--bw-radius-lg);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--bw-border);
}
.spec-table th, .spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--bw-border);
  font-size: .95rem;
}
.spec-table th {
  width: 40%;
  background: #F8FAFC;
  font-family: var(--bw-font-head);
  font-weight: 600;
  color: #1F2937;
}
.spec-table tr:last-child td,
.spec-table tr:last-child th { border-bottom: 0; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--bw-dark-blue);
  color: #DBEAFE;
  padding: 64px 0 28px;
}
.site-footer h4 {
  color: #FFFFFF;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: #DBEAFE; }
.footer-grid a:hover { color: #FFFFFF; }
.footer-grid p { color: #C7D2FE; font-size: .95rem; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .brand { color: #FFFFFF; }
.footer-brand .brand:hover { color: #FFFFFF; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-top: 48px;
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: #C7D2FE;
  font-size: .88rem;
}

/* =========================================================
   Floating widgets
   ========================================================= */
.float-stack {
  position: fixed;
  bottom: 24px; right: 22px;
  z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}

.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .25);
  border: 0;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(15, 23, 42, .3); }

.fab--whatsapp { background: #25D366; color: #FFFFFF; }
.fab--whatsapp svg { width: 30px; height: 30px; }

.fab--top {
  background: var(--bw-dark-blue);
  color: #FFFFFF;
  width: 44px; height: 44px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.fab--top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab--top svg { width: 22px; height: 22px; }

.sticky-quote {
  position: fixed;
  bottom: 24px; left: 22px;
  z-index: 60;
  display: none;
  background: var(--bw-premium-gold);
  color: #1B1B1B;
  font-family: var(--bw-font-body);
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
  text-decoration: none;
  align-items: center; gap: 10px;
}
.sticky-quote:hover { background: var(--bw-bronze); color: #FFFFFF; }
.sticky-quote.is-visible { display: inline-flex; }

@media (max-width: 600px) {
  .sticky-quote { left: 50%; transform: translateX(-50%); }
  .sticky-quote.is-visible { transform: translateX(-50%); }
}

/* =========================================================
   Utility
   ========================================================= */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.text-center { text-align: center; }
.muted { color: var(--bw-muted); }

.skip-link {
  position: absolute; left: -9999px;
  background: #0F172A; color: #FFFFFF;
  padding: 10px 14px; border-radius: 6px;
  top: 8px;
}
.skip-link:focus { left: 8px; }

/* =========================================================
   Calendly embed placeholder
   ========================================================= */
.calendly-wrap {
  background: #F8FAFC;
  border: 1px dashed var(--bw-border);
  border-radius: var(--bw-radius-lg);
  padding: 22px;
}
.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
}

/* =========================================================
   Google Maps embed placeholder
   ========================================================= */
.map-wrap {
  border-radius: var(--bw-radius-lg);
  overflow: hidden;
  border: 1px solid var(--bw-border);
  background: #EFF6FF;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
