/* ================================================
   ECRC Website — Design System v2
   Brand: #F26522 Orange · #034ea2 Navy · #00aeef Cyan
   Tone: Caribbean warmth — bold orange, rounded, gradients
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ── */
:root {
  /* Core brand */
  --navy:          #034ea2;
  --navy-dark:     #022d5c;
  --navy-mid:      #02408a;
  --orange:        #f26522;
  --orange-dark:   #d4521a;
  --orange-light:  #f8a06e;
  --orange-pale:   #fef5ef;
  --orange-glow:   rgba(242,101,34,.10);
  --cyan:          #00aeef;
  --cyan-dark:     #0891b2;
  --cyan-light:    #e6f7fd;
  --teal:          #0e7490;

  /* Backgrounds */
  --white:         #ffffff;
  --sand:          #fdf7f3;      /* warm off-white with orange tint */
  --sand-mid:      #faeee4;      /* slightly stronger sand */
  --gray-light:    #e8edf4;

  /* Text */
  --text-dark:     #1e293b;
  --text-body:     #4a5568;
  --text-muted:    #94a3b8;

  /* Effects */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.14);
  --shadow-orange: 0 8px 30px rgba(242,101,34,.30);

  /* Radii — more generous */
  --radius:      18px;
  --radius-sm:   10px;
  --radius-lg:   28px;
  --radius-pill: 50px;
  --radius-asym: 28px 10px 28px 10px;   /* ChatGPT-style organic corners */
  --radius-asym-sm: 16px 6px 16px 6px; /* icon variant */

  --transition:  all .28s ease;
  --max-width:   1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; } /* overflow-x must NOT be set on html — it breaks position:sticky sitewide */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }
ul  { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.1rem; line-height: 1.75; color: var(--text-body); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section        { padding: 5rem 0; position: relative; }
/* Sections with a wave-bottom: remove padding-bottom so wave fills the transition with no dead-colour strip */
.section:has(> .wave-bottom) { padding-bottom: 0; }
.section--white { background: var(--white); }
.section--sand  { background: var(--sand); }
.section--navy  { background: var(--navy-dark); }
.section--orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

/* Dark section text overrides */
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,.78); }
.section--orange h2, .section--orange h3, .section--orange h4 { color: var(--white); }
.section--orange p { color: rgba(255,255,255,.88); }

/* ── Section Headers ── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { font-size: 1.05rem; color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.section--navy   .section-label  { color: var(--cyan); }
.section--orange .section-label  { color: rgba(255,255,255,.80); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: .9rem auto 0;
}
.divider--left { margin-left: 0; }
.section--navy   .divider { background: var(--cyan); }
.section--orange .divider { background: rgba(255,255,255,.6); }

/* ── Wave Dividers ── */
.wave-bottom, .wave-top {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.wave-bottom { bottom: -20px; }
.wave-top    { top: -20px; transform: rotate(180deg); }
.wave-bottom svg, .wave-top svg { display: block; width: 100%; height: 100px; }

/* ── Decorative Blob Shapes ── */
.blob-tr::before, .blob-bl::after {
  content: '';
  position: absolute;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  pointer-events: none;
  z-index: 0;
}
.blob-tr::before {
  width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(242,101,34,.09) 0%, transparent 70%);
  top: -80px; right: -120px;
}
.blob-bl::after {
  width: 320px; height: 320px;
  background: radial-gradient(ellipse, rgba(3,78,162,.08) 0%, transparent 70%);
  bottom: -60px; left: -80px;
}
.section > * { position: relative; z-index: 1; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .025em;
  padding: .8rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.4rem; font-size: .95rem; }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.30);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 118px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 108px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-links a, .nav-links button {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.88);
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links button:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  padding: .5rem 1.3rem !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .6rem);
  left: 0;
  background: var(--white);
  border-radius: 18px 6px 18px 6px;
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: .5rem;
  z-index: 100;
  border: 1px solid rgba(0,0,0,.06);
  border-top: 3px solid var(--orange);
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block !important;
  color: var(--text-dark) !important;
  padding: .65rem 1rem !important;
  font-size: .84rem !important;
  background: none !important;
  border-radius: var(--radius-sm) !important;
}
.dropdown-menu a:hover { background: var(--sand) !important; color: var(--orange) !important; }
.dropdown-arrow { font-size: 1rem; color: var(--orange); transition: transform .2s; }
.dropdown button > svg { color: var(--orange); width: 28px; height: 28px; flex-shrink: 0; transition: transform .2s; }
.dropdown:hover .dropdown-arrow, .dropdown.open .dropdown-arrow { transform: rotate(180deg); }
.dropdown:hover button > svg, .dropdown.open button > svg { transform: rotate(180deg); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 118px;
  opacity: 0;
  transition: opacity .9s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Slide gradient fallbacks */
.slide-1 {
  /* Adobe Stock search: "caribbean aerial island chain turquoise water lush" */
  /* Upload as: /cms-assets/images/hero-slide-1.jpg */
  background-image:
    linear-gradient(105deg, rgba(2,29,60,.92) 0%, rgba(2,29,60,.62) 50%, rgba(2,29,60,.22) 100%),
    linear-gradient(145deg, #022d5c 0%, #034ea2 50%, #0891b2 100%);
}
.slide-2 {
  /* Adobe Stock search: "caribbean sunset tropical beach golden hour" */
  /* Upload as: /cms-assets/images/hero-slide-2.jpg */
  background-image:
    linear-gradient(105deg, rgba(20,10,5,.88) 0%, rgba(20,10,5,.52) 50%, rgba(20,10,5,.18) 100%),
    linear-gradient(145deg, #3d1208 0%, #d4521a 45%, #f26522 85%, #00aeef 100%);
}
.slide-3 {
  /* Adobe Stock search: "eastern caribbean island chain aerial helicopter british virgin islands anguilla" */
  /* Upload as: /cms-assets/images/hero-slide-3.jpg */
  background-image:
    linear-gradient(105deg, rgba(2,29,60,.92) 0%, rgba(2,29,60,.58) 50%, rgba(2,29,60,.18) 100%),
    linear-gradient(145deg, #022d5c 0%, #0e7490 50%, #06b6d4 100%);
}

/* ── Atmospheric Glow System ── */
/* Isolate blend modes to within each slide */
.hero-slide { isolation: isolate; }

/* Primary warm ambient glow — varies position per slide */
.hero-slide::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255,126,42,.42)  0%,
    rgba(255,126,42,.28) 22%,
    rgba(255,140,60,.16) 42%,
    rgba(255,170,80,.08) 58%,
    rgba(255,170,80,.03) 72%,
    transparent          82%
  );
  filter: blur(18px);
  mix-blend-mode: screen;
  z-index: 0;
  pointer-events: none;
  /* Slide 1 default position */
  top: -120px; right: -140px;
  animation: heroGlowFloat 18s ease-in-out infinite alternate;
}
/* Secondary cool ambient glow */
.hero-slide::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(0,189,255,.12)  0%,
    rgba(0,189,255,.05) 40%,
    transparent         72%
  );
  filter: blur(26px);
  z-index: 0;
  pointer-events: none;
  bottom: -120px; left: -120px;
}

/* Per-slide glow position variations */
.slide-2::before { top: -40px;  right: -180px; opacity: .85; }
.slide-3::before { top: -80px;  right: -100px; opacity: .70; }

@keyframes heroGlowFloat {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-10px, 12px, 0) scale(1.04); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,29,60,.70) 0%, rgba(2,29,60,.20) 60%, transparent 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* Wave at bottom of slider */
.hero-slider .wave-bottom svg { height: 110px; }

/* Slide text */
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.slide-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.slide-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.slide-content h1 em { font-style: normal; color: var(--orange-light); }
.slide-content .lead { color: rgba(255,255,255,.82); margin-bottom: 2rem; }
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.slide-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.slide-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.slide-stat-label { font-size: .78rem; color: rgba(255,255,255,.62); margin-top: .25rem; }

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 108px;
  left: 75%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: .6rem;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.40);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: var(--radius-pill);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.30);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: visible;
  background-size: cover;
  background-position: center;
}
/* Default gradient (shown if no image) */
.page-hero { background-color: var(--navy-dark); }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2,29,60,.90) 0%, rgba(2,29,60,.60) 60%, rgba(3,78,162,.40) 100%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }

/* Per-page hero background images + search terms */
.page-hero--about {
  /* Adobe Stock: "caribbean professional business aerial port city" */
  /* Upload: /cms-assets/images/hero-about.jpg */
  background-image:
    linear-gradient(100deg, rgba(2,29,60,.90) 0%, rgba(2,29,60,.55) 100%),
    linear-gradient(135deg, #022d5c 0%, #034ea2 100%);
}
.page-hero--products {
  /* Adobe Stock: "insurance protection caribbean property aerial" */
  /* Upload: /cms-assets/images/hero-products.jpg */
  background-image:
    linear-gradient(100deg, rgba(2,29,60,.88) 0%, rgba(2,29,60,.50) 100%),
    linear-gradient(135deg, #022d5c 0%, #0891b2 100%);
}
.page-hero--facultative {
  /* Adobe Stock: "caribbean residential buildings aerial coastal" */
  /* Upload: /cms-assets/images/hero-facultative.jpg */
  background-image:
    linear-gradient(100deg, rgba(2,29,60,.88) 0%, rgba(242,101,34,.25) 100%),
    linear-gradient(135deg, #022d5c 0%, #d4521a 100%);
}
.page-hero--quota-share {
  /* Adobe Stock: "business partnership handshake agreement contract financial" */
  /* Upload: /cms-assets/images/hero-quota-share.jpg */
  background-image:
    linear-gradient(100deg, rgba(2,29,60,.90) 0%, rgba(2,29,60,.55) 100%),
    linear-gradient(135deg, #022d5c 0%, #034ea2 100%);
}
.page-hero--motor {
  /* Adobe Stock: "caribbean coastal road driving tropical" */
  /* Upload: /cms-assets/images/hero-motor.jpg */
  background-image:
    linear-gradient(100deg, rgba(2,29,60,.88) 0%, rgba(242,101,34,.22) 100%),
    linear-gradient(135deg, #022d5c 0%, #0e7490 100%);
}
.page-hero--team {
  /* Adobe Stock: "professional business team office corporate meeting" */
  /* Upload: /cms-assets/images/hero-team.jpg */
  background-image:
    linear-gradient(100deg, rgba(2,29,60,.88) 0%, rgba(2,29,60,.55) 100%),
    linear-gradient(135deg, #022d5c 0%, #034ea2 100%);
}
.page-hero--contact {
  /* Adobe Stock: "caribbean waterfront city anguilla architecture" */
  /* Upload: /cms-assets/images/hero-contact.jpg */
  background-image:
    linear-gradient(100deg, rgba(2,29,60,.88) 0%, rgba(2,29,60,.55) 100%),
    linear-gradient(135deg, #022d5c 0%, #034ea2 100%);
}
.page-hero--privacy {
  background-image:
    linear-gradient(100deg, rgba(2,29,60,.92) 0%, rgba(2,29,60,.70) 100%),
    linear-gradient(135deg, #021d3c 0%, #034ea2 100%);
}

/* ── Privacy Policy page  —  pp-* namespace ───────────────── */
.pp-policy { padding-bottom: 3rem; }

.pp-intro-block {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(11,37,69,.12);
  margin-bottom: 2.5rem;
}

.pp-meta {
  font-size: 13px;
  color: #6B7280;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.pp-intro-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  border-left: 3px solid #f26522;
}
.pp-intro-text:last-child { margin-bottom: 0; }

.pp-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 2.5rem;
  align-items: start;
}

.pp-toc {
  position: sticky;
  top: 138px;   /* 118px nav height + 20px breathing room */
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(11,37,69,.12);
  border-radius: 8px;
}

.pp-toc-label {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: .75rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(11,37,69,.12);
}

.pp-toc-list { list-style: none; margin: 0; padding: 0; }
.pp-toc-list li { margin: 0; padding: 0; }
.pp-toc-list a {
  display: block;
  font-size: 12.5px;
  color: #6B7280;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 5px;
  line-height: 1.4;
  transition: background .15s, color .15s;
}
.pp-toc-list a:hover { background: #FEF3ED; color: #f26522; text-decoration: none; }
.pp-toc-num { font-size: 10px; color: #f26522; margin-right: 3px; }

.pp-section { margin-bottom: 2.5rem; scroll-margin-top: 120px; }

.pp-section-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(11,37,69,.12);
  margin-bottom: 1rem;
}
.pp-section-header .pp-section-num {
  font-size: 13px;
  font-weight: 700;
  color: #f26522;
  flex-shrink: 0;
  min-width: 20px;
}
.pp-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #034ea2;
  margin: 0;
  line-height: 1.3;
}
.pp-policy .pp-section-title { margin-top: 0; margin-bottom: 0; }

.pp-body { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 1rem; }
.pp-body:last-child { margin-bottom: 0; }

.pp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: .9rem 0; }
.pp-tag {
  background: #fff;
  border: 1px solid rgba(11,37,69,.12);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 12.5px;
  color: #034ea2;
}

.pp-note {
  background: #EEF3FA;
  border-radius: 7px;
  padding: 1rem 1.2rem;
  font-size: 14px;
  color: #1E3A5F;
  margin: 1rem 0;
  line-height: 1.7;
}
.pp-note a { color: #f26522; text-decoration: underline; }

.pp-contact-box {
  background: #034ea2;
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  margin-top: 1rem;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
}
.pp-contact-box strong { color: #fff; display: block; margin-bottom: .25rem; font-size: 15px; }
.pp-contact-box a { color: #F47B46; text-decoration: none; }
.pp-contact-box a:hover { text-decoration: underline; }

@media screen and (max-width: 860px) {
  .pp-layout { grid-template-columns: 1fr; }
  .pp-toc { position: static; margin-bottom: 2rem; }
}

.page-hero .breadcrumb { font-size: .8rem; color: rgba(255,255,255,.52); margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.52); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { margin: 0 .4rem; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.80); max-width: 580px; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-asym);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-body { padding: 2rem; }
.card-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--navy), var(--cyan-dark));
  border-radius: var(--radius-asym-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ── Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-asym);
  box-shadow: var(--shadow);
  padding: 2.25rem;
  border-top: 5px solid var(--orange);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 150px; height: 150px;
  background: var(--orange-pale);
  border-radius: 50%;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  color: inherit;
}
.product-card:hover::before { transform: scale(1.5); }
.product-card-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--navy), var(--cyan-dark));
  border-radius: var(--radius-asym-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.product-card:hover .product-card-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}
.product-card-icon svg { width: 28px; height: 28px; color: var(--white); fill: none; stroke: currentColor; stroke-width: 1.8; }
.product-card h3 { font-size: 1.15rem; margin-bottom: .65rem; color: var(--navy); }
.product-card p  { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.product-card-limits {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-size: .86rem;
  border-left: 3px solid var(--orange);
}
.product-card-limits strong { color: var(--navy); font-family: 'Montserrat', sans-serif; }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  margin-top: 1.25rem;
  letter-spacing: .03em;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--white);
  padding: 1.1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-body);
  padding: .5rem 1.25rem;
  white-space: nowrap;
}
.trust-item svg { width: 18px; height: 18px; stroke: var(--orange); flex-shrink: 0; }
.trust-item strong { color: var(--navy); }
.trust-divider { width: 1px; height: 28px; background: var(--gray-light); }

/* ── Home About Strip ── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-strip-content {}
.about-strip-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 340px; }
.about-card-stack { position: relative; width: 280px; }
.rating-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ── Wave Dividers (standalone, not positioned) ── */
.wave-divider { line-height: 0; display: block; }
.wave-divider svg { display: block; width: 100%; height: 60px; }
.wave-divider--alt { transform: scaleX(-1); }

/* ── Values Grid ── */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-asym);
  background: rgba(255,255,255,.05);
  border-top: 3px solid rgba(242,101,34,.45);
  transition: var(--transition);
}
.value-card:hover { background: rgba(255,255,255,.10); }
.value-icon {
  width: 70px; height: 70px;
  background: rgba(242,101,34,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  border: 1.5px solid rgba(242,101,34,.65);
  color: #ffffff;
}
.section--orange .value-icon { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.25); }
.section--orange .value-card h4 { color: var(--white); margin-bottom: .5rem; }
.section--orange .value-card p  { color: rgba(255,255,255,.82); font-size: .9rem; }

/* ── About Split ── */
.about-split  { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.three-col-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.about-visual-wrap { position: relative; padding: 1rem; }
.rating-card {
  background: var(--white);
  border-radius: var(--radius-asym);
  box-shadow: var(--shadow-lg);
  padding: 2.25rem;
  text-align: center;
  border-top: 6px solid var(--orange);
}
.rating-b-plus {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.rating-label { font-size: .82rem; color: var(--text-muted); margin-top: .4rem; }
.floating-pill {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  padding: .6rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.floating-pill::before { content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.floating-pill--tl { top: -8px; left: -20px; }
.floating-pill--br { bottom: -8px; right: -20px; }

/* ── Territory ── */
#territory-map { height: 440px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.territory-islands { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.island-chip {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--cyan-light);
  font-size: .78rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  padding: .32rem .85rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.island-chip { cursor: pointer; }
.island-chip:hover { background: var(--cyan-light); border-color: var(--cyan); }
.island-chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-photo-wrap {
  width: 150px; height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-photo-placeholder {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,.70);
  border: 3px solid rgba(255,255,255,.15);
}
.team-card h4 { color: var(--white); margin-bottom: .2rem; font-size: 1rem; }
.team-card .role { font-size: .78rem; color: var(--orange-light); font-weight: 700; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .06em; }
.team-card .company { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .15rem; }
.team-card .email { font-size: .8rem; color: var(--cyan); margin-top: .4rem; display: block; }

/* ── Contact CTA Strip ── */
.cta-strip {
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.18) 0 70px, transparent 71px),
    radial-gradient(circle at 8%  90%, rgba(255,255,255,.10) 0 90px, transparent 91px),
    linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 55%, #f8a06e 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  background: rgba(255,255,255,.06);
  border-radius: 40% 60% 55% 45%;
  right: -140px; top: -160px;
  transform: rotate(22deg);
}
.cta-strip::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  left: -70px; bottom: -100px;
}
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); font-size: 1.9rem; margin-bottom: .4rem; }
.cta-strip p   { color: rgba(255,255,255,.85); margin: 0; }

/* ── Sidebar / Product detail ── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.product-sidebar {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 88px;
  border: 1px solid rgba(242,101,34,.12);
}
.product-sidebar h4 { color: var(--navy); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 3px solid var(--orange); }
.limit-item { display: flex; justify-content: space-between; align-items: baseline; padding: .65rem 0; border-bottom: 1px solid var(--gray-light); font-size: .88rem; }
.limit-item:last-child { border-bottom: none; }
.limit-item strong { font-family: 'Montserrat', sans-serif; color: var(--navy); }
.limit-value { font-weight: 800; color: var(--orange); font-family: 'Montserrat', sans-serif; font-size: 1.05rem; }

.benefit-list li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .9rem; font-size: .93rem; }
.benefit-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: .15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.707 5.293a1 1 0 00-1.414 0L8 12.586 4.707 9.293a1 1 0 00-1.414 1.414l4 4a1 1 0 001.414 0l8-8a1 1 0 000-1.414z'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

.requirements-box {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-left: 5px solid var(--orange);
}
.requirements-box h3 { color: var(--white); margin-bottom: 1.25rem; }
.requirements-box li { display: flex; align-items: flex-start; gap: .75rem; color: rgba(255,255,255,.78); margin-bottom: .8rem; font-size: .92rem; }
.requirements-box li::before { content: '→'; color: var(--orange); flex-shrink: 0; margin-top: .05rem; }

.appetite-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.appetite-item {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: .85rem 1.1rem;
  font-size: .88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: var(--transition);
}
.appetite-item::before { content: '✦'; color: var(--orange); font-size: .65rem; flex-shrink: 0; }
.appetite-item:hover { border-color: var(--orange); background: var(--orange-pale); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-item-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(242,101,34,.25);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item h5 { font-family: 'Montserrat', sans-serif; color: var(--navy); margin-bottom: .2rem; }
.contact-item p, .contact-item a { font-size: .9rem; color: var(--text-muted); margin: 0; }
.contact-item a:hover { color: var(--orange); }

/* Contact form */
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700; color: var(--text-dark); margin-bottom: .4rem; letter-spacing: .04em; text-transform: uppercase; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,101,34,.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Map ── */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 300px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ── */
.site-footer { background: var(--navy-dark); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.55); margin-top: 1rem; max-width: 280px; line-height: 1.7; }
.footer-logo img { height: 52px; width: auto; }
.footer-col h5 { font-family: 'Montserrat', sans-serif; color: var(--white); font-size: .78rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a, .footer-col a { color: rgba(255,255,255,.55); font-size: .86rem; }
.footer-col ul li a:hover, .footer-col a:hover { color: var(--orange); }
.footer-col p { font-size: .86rem; color: rgba(255,255,255,.55); }
.footer-rating { display: flex; align-items: center; gap: .65rem; margin-top: 1.25rem; font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-rating-badge { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--orange); line-height: 1; }
.footer-rating em { font-style: normal; color: rgba(255,255,255,.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: .5rem; }
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--white); }

/* Orange accent dot in footer */
.footer-accent {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  margin-top: 1rem;
}
.footer-accent::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ── How it Works Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-asym);
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 4px solid var(--orange);
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-pale);
  line-height: 1;
  margin-bottom: .75rem;
}
.step-icon { font-size: 2rem; margin-bottom: .75rem; }
.step-card h4 { color: var(--navy); margin-bottom: .6rem; }
.step-card p  { font-size: .88rem; }

/* ── Utilities ── */
.text-center  { text-align: center; }
.text-orange  { color: var(--orange); }
.text-navy    { color: var(--navy); }
.text-cyan    { color: var(--cyan); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: var(--white); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0; }
.fw-bold { font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-grid      { grid-template-columns: 1fr 1fr; }
  .values-grid        { grid-template-columns: 1fr 1fr; }
  .team-grid          { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-split        { grid-template-columns: 1fr; }
  .about-visual-wrap  { display: none; }
  .three-col-grid     { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-sidebar    { position: static; }
  .appetite-grid      { grid-template-columns: 1fr 1fr; }
  .steps-grid         { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section             { padding: 3.5rem 0; }
  .hero-slider         { height: 88vh; }
  .hero-slide          { padding-top: 85px; padding-bottom: 90px; }
  .page-hero           { padding-top: 6rem; }
  .slide-stats         { flex-wrap: nowrap; gap: .75rem; margin-top: 1.25rem; padding-top: .75rem; }
  .slide-stat-value    { font-size: 1rem; }
  .slide-stat-label    { font-size: .62rem; }
  .slider-dots         { bottom: 92px; left: 50%; transform: translateX(-50%); }
  .slider-dot.active   { width: 28px; height: 10px; }
  .hero-slide::before  { width: 380px; height: 380px; top: -70px; right: -130px; filter: blur(16px); opacity: .95; }
  .hero-slide::after   { width: 260px; height: 260px; bottom: -100px; left: -80px; }
  .trust-divider       { display: none; }
  .trust-bar-inner     { flex-direction: column; align-items: flex-start; width: -moz-fit-content; width: fit-content; margin: 0 auto; gap: .6rem; }
  .trust-item          { padding: .25rem 0; }
  .products-grid       {
    grid-template-columns: unset;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: .75rem;
    /* hide scrollbar but keep scroll */
    scrollbar-width: none;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .products-grid .product-card {
    flex: 0 0 78vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .values-grid         { grid-template-columns: 1fr 1fr; }
  .team-grid           { grid-template-columns: 1fr 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .appetite-grid       { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .cta-strip-inner     { flex-direction: column; align-items: flex-start; }
  .about-strip         { grid-template-columns: 1fr; gap: 2rem; }
  .about-strip-visual  { min-height: auto; }
  .two-col-grid        { grid-template-columns: 1fr; }
  .three-col-grid      { grid-template-columns: 1fr; }
  .slide-stats         { gap: 1.5rem; }
  .slider-arrow        { display: none; }

  /* Mobile nav */
  .nav-inner       { height: 72px; }
  .nav-logo img    { height: 58px; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: .25rem;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open       { display: flex; }
  .nav-links a, .nav-links button { width: 100%; font-size: .95rem; padding: .8rem 1rem; justify-content: space-between; }
  .dropdown-menu        { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.06); border-radius: var(--radius-sm); margin-top: .25rem; padding: 0; }
  .dropdown-menu a      { color: rgba(255,255,255,.8) !important; }
  .dropdown-menu a:hover { background: rgba(255,255,255,.1) !important; color: var(--orange) !important; }
  .nav-toggle           { display: flex; }
  .nav-cta              { border-radius: var(--radius-sm) !important; }
}
@media (max-width: 480px) {
  .slide-actions  { flex-direction: column; align-items: flex-start; }
  .values-grid    { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeInUp .65s ease both; }
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .22s; }
.anim-d3 { animation-delay: .38s; }
