/* ============================================================
   MEILS – GLOBAL STYLES  (Brand v2 palette)
   Color palette:
     --teal-dark:   #005B63  (dark accent)
     --teal-mid:    #007D88  (primary teal)
     --teal-light:  #5FD4C6  (secondary / highlight)
     --green:       #5FD4C6  (icon accents → now teal)
     --green-bright:#5FD4C6  (hero span highlights)
     --cta-orange:  #FF8A00  (all CTA buttons)
     --white:       #ffffff
     --gray-bg:     #F5F7F8
     --text-dark:   #222222
     --text-muted:  #6b7c7c
============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #222222;
  background: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --teal-dark:   #005B63;
  --teal-mid:    #007D88;
  --teal-light:  #5FD4C6;
  --green:       #5FD4C6;
  --green-bright:#5FD4C6;
  --cta-orange:  #FF8A00;
  --white:       #ffffff;
  --gray-bg:     #F5F7F8;
  --gray-border: #e2e8e8;
  --text-dark:   #222222;
  --text-mid:    #555555;
  --text-muted:  #6b7c7c;
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-md:   0 6px 28px rgba(0,0,0,.11);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.14);
  --gray-light:  #eef1f1;
  --text-light:  #8a9999;
  --radius:      12px;
  --nav-h:       72px;
}

/* ---------- UTILITY ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.hidden     { display: none !important; }
.center     { text-align: center; }
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  height: var(--nav-h);
  border-bottom: none;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Logo */
.logo {
  display: flex; align-items: center; margin-right: 12px; flex-shrink: 0;
}
.logo-img {
  height: 100px; width: auto; object-fit: contain;
  /* White version for dark navbar — use a white-version logo if available,
     otherwise CSS filter makes it white on the dark background */
  //*filter: brightness(0) invert(1);*/
}
.logo-img-footer {
  height: 200px;
  //*filter: brightness(0) invert(1);*/
}

/* Quote widget logo — shown on white bg, use original colors */
.qw-logo-img {
  height: 120px; width: auto; object-fit: contain;
}

.logo-accent { color: var(--green-bright); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }

.nav-item { position: relative; }

.nav-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; border-radius: 6px;
  color: #222222; font-size: .88rem; font-weight: 500;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-btn:hover, .nav-item:hover .nav-btn {
  color: #007D88; background: rgba(0,125,136,.07);
}
.nav-btn .fa-chevron-down {
  font-size: .65rem; transition: transform .2s;
}
.nav-item:hover .fa-chevron-down { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  display: flex; gap: 0; min-width: 660px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, visibility .2s;
}
.nav-item:hover .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
/* Invisible hover bridge – fills the gap between nav button and dropdown */
.nav-item.has-mega::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 10px;
}
/* Right-side nav items: flip menu to the right edge so it doesn't overflow */
.nav-item:nth-last-child(-n+2).has-mega .mega-menu {
  left: auto; right: 0;
}

.mega-left {
  width: 220px; flex-shrink: 0;
  background: var(--gray-bg);
  padding: 28px 24px;
  border-radius: var(--radius) 0 0 var(--radius);
  display: flex; flex-direction: column; gap: 10px;
}
.mega-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(95,212,198,.12); color: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.mega-title { font-size: .95rem; font-weight: 700; color: var(--text-dark); }
.mega-desc  { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

.mega-grid {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; padding: 16px;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 8px;
  transition: background .15s;
  color: var(--text-dark);
}
.mega-item:hover { background: var(--gray-bg); }
.mega-item > i {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(95,212,198,.12); color: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; margin-top: 2px;
}
.mega-item div { display: flex; flex-direction: column; gap: 2px; }
.mega-item strong { font-size: .84rem; font-weight: 600; }
.mega-item span   { font-size: .75rem; color: var(--text-muted); }
.view-all-item > i { background: rgba(95,212,198,.2); color: var(--teal-light); }

/* Solutions mega menu — 14-item compact grid */
.mega-menu-solutions { min-width: 680px; }
.mega-grid-solutions { grid-template-columns: repeat(2, 1fr); }
.mega-item-sm { padding: 8px 10px; gap: 10px; align-items: center; }
.mega-item-sm > i { width: 28px; height: 28px; font-size: .78rem; flex-shrink: 0; }
.mega-item-sm strong { font-size: .79rem; font-weight: 600; }

/* Disabled mega item (e.g. Careers — Coming Soon) */
.mega-item-disabled {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 8px;
  color: var(--text-muted);
  cursor: not-allowed; opacity: .6;
  position: relative;
}
.mega-item-disabled > i {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(0,0,0,.05); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; margin-top: 2px;
}
.mega-item-disabled div { display: flex; flex-direction: column; gap: 2px; }
.mega-item-disabled strong { font-size: .84rem; font-weight: 600; }
.mega-item-disabled span:not(.mega-soon) { font-size: .75rem; color: var(--text-muted); }
.mega-soon {
  font-size: .65rem; font-weight: 700; letter-spacing: .4px;
  background: var(--gray-border); color: var(--text-muted);
  padding: 2px 7px; border-radius: 20px;
  align-self: flex-start; margin-top: 4px; flex-shrink: 0;
}
@media (max-width: 900px) {
  .mega-menu-solutions { min-width: unset; }
  .mega-grid-solutions { grid-template-columns: 1fr; }
}

/* Right side nav */
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }

.lang-selector {
  display: flex; align-items: center; gap: 5px;
  color: #222222; font-size: .83rem; cursor: pointer;
  padding: 6px 10px; border-radius: 6px;
  transition: background .2s;
}
.lang-selector:hover { background: rgba(0,0,0,.05); }

.btn-expert {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 20px; border-radius: 8px;
  background: #007D88;
  border: none;
  color: #fff; font-size: .85rem; font-weight: 600;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-expert:hover { background: #006671; transform: translateY(-1px); }

.hamburger { display: none; color: #222222; font-size: 1.3rem; padding: 6px; }

/* ── Nav user widget (shown when logged in) ── */
.nav-user {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  padding: 4px 10px 4px 4px;
  border-radius: 24px;
  border: 1.5px solid rgba(0,0,0,.15);
  transition: border-color .2s, background .2s;
}
.nav-user:hover { border-color: #007D88; background: rgba(0,125,136,.05); }

.nav-user-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal-mid); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; flex-shrink: 0;
}
.nav-user-name { font-size: .82rem; color: #222222; max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.nav-user-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  border: 1px solid var(--gray-border);
  min-width: 170px; overflow: hidden; z-index: 999;
}
.nav-user:hover .nav-user-dropdown { display: block; }

.nav-user-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: .84rem; color: var(--text-dark);
  text-decoration: none; transition: background .15s;
}
.nav-user-item:hover { background: var(--gray-light); }
.nav-user-item i { color: var(--teal-mid); width: 14px; text-align: center; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 60%, #1fa8a8 100%);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
/* ── Hero background image — targets both class names for reliability ── */
#heroSection,
.hero-image.hero,
.hero-photo.hero {
  background: url('/images/home%20page.jpg') center center / cover no-repeat !important;
  padding-top: 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(62,201,110,.18) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-content {
  flex: 1; max-width: 560px;
  padding: 80px 28px 80px 80px;
  position: relative; z-index: 1;
}

/* ── IMAGE HERO ── */
.hero-photo {
  background: transparent;
  padding-top: 0;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /* flex removed — content uses absolute positioning */
}
/* Heavy dark overlay for text readability */
.hero-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 0;
}

.hero-content-3d {
  position: absolute;
  left: 0px;                  /* distance from left edge */
  top: 38%;                    /* vertical position of title+subtitle */
  transform: translateY(-50%);
  padding-top: 36px;
  z-index: 2;
  width: 55%;
  max-width: 950px;
  pointer-events: none;
}

/* ── Search widget — independently positioned ── */
#heroSearch {
  position: absolute;
  left: 5px;
   top: 50%;   
 
  z-index: 10;
  width: 100%;
  max-width: 950px;
  pointer-events: all;
}
.hero-content-3d .btn-outline-white,
.hero-content-3d .btn-solid-white,
.hero-content-3d .hero-search-wrap { pointer-events: all; }

.hero-content-3d .hero-search-wrap { margin-top: 32px !important; }

/* Safety net — hide WCA card even if old HTML is cached */
.wca-float-card { display: none !important; }

/* WCA floating card */
.wca-float-card {
  position: absolute;
  top: 38%; right: 6%;
  z-index: 3;
  animation: wcaBob 5s ease-in-out infinite;
  will-change: transform;
  transition: transform .05s linear;
}
@keyframes wcaBob {
  0%,100% { transform: translateY(0)   rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

.wca-inner {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  padding: 18px 22px 14px;
  min-width: 230px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.wca-logo-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.wca-svg { width: 44px; height: 38px; flex-shrink: 0; }
.wca-text { display: flex; align-items: center; gap: 8px; }
.wca-name {
  font-size: 1.6rem; font-weight: 800;
  color: #fff; letter-spacing: .5px; line-height: 1;
}
.wca-divider {
  font-size: 1.2rem; color: rgba(255,255,255,.35);
  margin: 0 2px;
}
.wca-tagline {
  font-size: .68rem; color: rgba(255,255,255,.75);
  line-height: 1.45; font-weight: 500;
}
.wca-badge-row { display: flex; align-items: center; }
.wca-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 700; letter-spacing: .5px;
  color: var(--green-bright);
  background: rgba(62,201,110,.12);
  border: 1px solid rgba(62,201,110,.3);
  border-radius: 20px; padding: 4px 12px;
}
.wca-badge .fa-circle-check { font-size: .8rem; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .55;
  animation: fadeScrollHint 3s ease-in-out infinite;
}
.hero-scroll-hint span { font-size: .65rem; letter-spacing: 2px; color: #fff; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.8), transparent);
  animation: scrollLineGrow 2s ease-in-out infinite;
}
@keyframes scrollLineGrow {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeScrollHint {
  0%,100% { opacity: .4; }
  50%      { opacity: .75; }
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .green        { color: rgba(255,255,255,.85); }
.hero-title .bright-green        { color: var(--green-bright); }
.hero-title .bright-green.go-word { color: #007D88; }

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.8);
  margin-bottom: 36px; line-height: 1.7;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.75);
  color: #fff; font-size: .9rem; font-weight: 500;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* Orange CTA on dark hero background (for non-Expert hero buttons) */
.btn-hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  background: var(--cta-orange); border: none;
  color: #fff; font-size: .9rem; font-weight: 600;
  transition: background .2s, transform .15s;
}
.btn-hero-cta:hover { background: #e07800; transform: translateY(-1px); }

.btn-solid-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  background: var(--cta-orange);
  border: none;
  color: #fff; font-size: .9rem; font-weight: 600;
  transition: background .2s, transform .15s;
}
.btn-solid-white:hover { background: #e07800; transform: translateY(-1px); }

.hero-image {
  flex: 1; display: flex; align-items: flex-end; justify-content: center;
  position: relative; min-height: 500px;
  padding-right: 40px;
}
.hero-image img {
  width: 100%; max-width: 720px;
  object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}

/* Location pins overlay */
.world-map-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}

/* ============================================================
   QUOTE WIDGET
============================================================ */
.quote-widget-wrap {
  background: #ffffff;
  padding: 20px 150px 20px;
  position: Center; z-index: 10;
}
.quote-widget {
  max-width: 1200px; margin:10 auto;
  background: #0e0000;
  border-radius: 10px 100px / 120px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border); border-top: none;
  display: flex; align-items: center;
  padding: 28px 36px; gap: 36px;
}

/* Left brand panel */
.qw-brand {
  display: flex; flex-direction: column; gap: 6px;
  flex-shrink: 0; min-width: 160px;
}
/* .qw-logo is now an <img> — see .qw-logo-img above */
.qw-tagline {
  font-size: .78rem; color: rgb(255,255,255); line-height: 1.55;
}

/* Vertical divider */
.qw-divider {
  width: 1px; height: 56px;
  background: var(--gray-border);
  flex-shrink: 0;
}

/* Right content */
.qw-content {
  display: flex; align-items: center; gap: 28px;
  flex: 1; flex-wrap: wrap;
}
.qw-heading {
  font-size: 1rem; font-weight: 700;
  color:  rgb(255,255,255);; white-space: nowrap;
}

/* Mode buttons */
.qw-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.qw-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 28px; border-radius: 8px;
  border: none;
  color: #fff; font-size: .88rem; font-weight: 600;
  background: var(--cta-orange);
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.qw-btn i { font-size: .95rem; }
.qw-btn:hover {
  background: #e07800; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,138,0,.35);
}
.qw-btn:active { transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .quote-widget { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
  .qw-divider   { width: 100%; height: 1px; }
  .qw-content   { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--teal-dark);
  padding: 24px 0;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px; flex: 1; min-width: 180px;
}
.trust-item > i {
  font-size: 1.6rem; color: var(--green-bright); flex-shrink: 0;
}
.trust-item strong { display: block; color: #fff; font-size: .9rem; font-weight: 600; }
.trust-item span   { font-size: .78rem; color: rgba(255,255,255,.6); }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ============================================================
   SECTION COMMON
============================================================ */
.section-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}
.section-title { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); }
.section-sub   { font-size: .88rem; color: var(--text-muted); margin-top: 4px; }
.view-all {
  display: flex; align-items: center; gap: 6px;
  font-size: .83rem; font-weight: 600; color: var(--teal-mid);
  white-space: nowrap; margin-top: 6px;
  transition: gap .2s;
}
.view-all:hover { gap: 10px; }

/* ============================================================
   WCA MEMBERSHIP SECTION
============================================================ */
.wcam-section { background: #fff; padding: 72px 0; border-bottom: 1px solid var(--gray-border); }
.wcam-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.wcam-article .cc-label { display: inline-block; margin-bottom: 14px; }
.wcam-article h2 {
  font-size: 1.75rem; font-weight: 800; color: var(--text-dark);
  line-height: 1.25; margin-bottom: 18px;
}
.wcam-article p {
  font-size: .9rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 14px;
}
.wcam-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; margin-bottom: 24px; }
.wcam-badge-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600; color: var(--text-dark);
}
.wcam-badge-item i { color: var(--teal-mid); font-size: .9rem; width: 18px; }
.wcam-cert-frame {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  border: 1px solid var(--gray-border);
}
.wcam-cert-img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .wcam-inner { grid-template-columns: 1fr; gap: 40px; }
  .wcam-cert-frame { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 480px) { .wcam-article h2 { font-size: 1.4rem; } }

/* ============================================================
   HOT OFFERS CAROUSEL
============================================================ */
/* ── Special Offers Section ────────────────────────────────── */
.special-offers-section { background: #f0f4f8; }

/* Header row */
.so-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.so-title { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin: 0; }

/* Tab toggle */
.so-tabs {
  display: flex; gap: 0;
  border: 1.5px solid var(--gray-border); border-radius: 8px;
  overflow: hidden; background: #fff;
}
.so-tab {
  padding: 9px 20px; font-size: .82rem; font-weight: 600;
  border: none; background: transparent; color: var(--text-muted);
  cursor: pointer; transition: background .18s, color .18s; white-space: nowrap;
}
.so-tab.active {
  background: var(--teal-mid); color: #fff;
}
.so-tab:not(.active):hover { background: var(--gray-bg); color: var(--text-dark); }

/* Offers grid — 4 columns */
.so-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

/* Individual offer card */
.so-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 18px 18px 20px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  min-height: 110px;
}
.so-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.10); transform: translateY(-2px); }

/* Container badge — top right */
.so-badge {
  position: absolute; top: 14px; right: 14px;
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 600; color: var(--text-muted);
}
.so-badge i { font-size: .78rem; color: var(--teal-mid); }

/* City / route */
.so-city {
  display: flex; align-items: center; gap: 7px;
  font-size: 1.08rem; font-weight: 700; color: var(--text-dark);
  margin-top: 32px; margin-bottom: 8px;
}
.so-flag { font-size: 1.15rem; line-height: 1; }
.so-flag-img { width: 20px; height: 15px; border-radius: 2px; flex-shrink: 0; object-fit: cover; }
.so-flag-fallback { font-size: 1rem; line-height: 1; }
.so-arrow { color: var(--text-muted); font-size: .8rem; margin: 0 2px; }

/* Price row */
.so-price-row { display: flex; align-items: baseline; gap: 6px; }
.so-price { font-size: 1.18rem; font-weight: 800; color: var(--text-dark); }
.so-from { font-size: .8rem; color: var(--text-muted); font-weight: 400; }

/* Skeleton */
.so-skeleton {
  background: linear-gradient(90deg, #e8edf2 25%, #f0f4f8 50%, #e8edf2 75%);
  background-size: 200% 100%;
  animation: soShimmer 1.4s infinite;
  min-height: 110px;
}
@keyframes soShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Trending sub-heading */
.so-trending-title {
  font-size: 1.2rem; font-weight: 700; color: var(--text-dark);
  margin: 0 0 18px;
}

/* Empty state */
.so-empty {
  grid-column: 1 / -1; text-align: center; padding: 40px 20px;
  color: var(--text-muted); font-size: .9rem;
}
.so-empty i { font-size: 2rem; color: var(--gray-border); display: block; margin-bottom: 10px; }

/* Legacy carousel — kept for other sections */
.carousel-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 48px 24px; width: 100%; text-align: center;
  color: var(--text-muted);
}
.carousel-empty i { font-size: 2rem; color: var(--gray-border); }
.carousel-empty p { font-size: .9rem; }
.carousel-wrap { position: relative; display: flex; align-items: center; gap: 8px; }
.carousel-track-wrap { flex: 1; overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; gap: 20px; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gray-border);
  background: #fff; color: var(--teal-mid); font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s, color .2s, border-color .2s;
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--teal-mid); color: #fff; border-color: var(--teal-mid); }

/* Legacy offer-card styles (offer-detail page etc.) */
.offer-card {
  min-width: calc((100% - 80px) / 5); flex-shrink: 0;
  border: 1px solid var(--gray-border); border-radius: var(--radius);
  overflow: hidden; background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.offer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.offer-img { height: 130px; background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark)); background-size: cover; background-position: center; }
.offer-body { padding: 14px; }
.route { font-size: .8rem; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 4px; }
.route .fa-arrow-right { font-size: .65rem; color: var(--green); }
.container-type { font-size: .72rem; color: var(--text-muted); margin: 4px 0; }
.price { font-size: 1.1rem; font-weight: 700; color: var(--teal-mid); margin: 6px 0; }
.validity { font-size: .7rem; color: var(--text-muted); margin-bottom: 10px; }
.view-details { display: inline-flex; align-items: center; gap: 4px; font-size: .75rem; font-weight: 600; color: var(--teal-mid); transition: gap .15s; }
.view-details:hover { gap: 8px; }

/* Responsive — special offers */
@media (max-width: 1024px) { .so-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .so-grid { grid-template-columns: 1fr; } .so-header { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   TRACK + CONVERTER
============================================================ */
.track-converter { background: var(--gray-bg); }

.card {
  background: #fff; border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-border);
}
.card-title { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.card-sub   { font-size: .83rem; color: var(--text-muted); margin-bottom: 20px; }

/* Track card */
.track-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.track-map-pin { font-size: 2rem; color: var(--green); opacity: .5; }
.track-map-pin .fa-location-dot { animation: bounce 2s infinite; }

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.track-input-row { display: flex; gap: 10px; margin-bottom: 28px; }
.track-input {
  flex: 1; border: 1.5px solid var(--gray-border); border-radius: 8px;
  padding: 11px 16px; font-size: .88rem; outline: none;
  transition: border-color .2s;
}
.track-input:focus { border-color: var(--teal-mid); }

.btn-primary {
  padding: 11px 24px; border-radius: 8px;
  background: var(--cta-orange); color: #fff; font-size: .88rem; font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
}
.btn-primary:hover { background: #e07800; }

/* Track steps */
.track-steps {
  display: flex; align-items: center; gap: 0; overflow-x: auto;
  padding-bottom: 4px;
}
.track-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 60px; text-align: center;
  font-size: .68rem; color: var(--text-muted); font-weight: 500;
}
.step-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gray-border); border: 2px solid var(--gray-border);
  transition: background .3s, border-color .3s;
}
.track-step.active .step-dot {
  background: var(--cta-orange); border-color: var(--cta-orange);
  box-shadow: 0 0 0 4px rgba(46,158,79,.2);
}
.track-step.done .step-dot { background: var(--teal-mid); border-color: var(--teal-mid); }
.track-line { flex: 1; height: 2px; background: var(--gray-border); min-width: 16px; margin-bottom: 28px; }
.track-line.done { background: var(--teal-mid); }

/* Converter */
.conv-tabs { display: flex; gap: 4px; margin-bottom: 20px; border-bottom: 1px solid var(--gray-border); padding-bottom: 0; }
.conv-tab {
  padding: 8px 16px; font-size: .82rem; font-weight: 500;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .2s, border-color .2s;
}
.conv-tab.active { color: var(--teal-mid); border-bottom-color: var(--teal-mid); }
.conv-tab:hover  { color: var(--teal-mid); }

.conv-body  { }
.conv-row   { display: flex; align-items: flex-end; gap: 12px; }
.conv-field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.conv-field label { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.conv-select {
  border: 1.5px solid var(--gray-border); border-radius: 8px;
  padding: 9px 10px; font-size: .82rem; outline: none; background: #fff;
  transition: border-color .2s; color: var(--text-dark);
}
.conv-select:focus { border-color: var(--teal-mid); }
.conv-input {
  border: 1.5px solid var(--gray-border); border-radius: 8px;
  padding: 9px 12px; font-size: .88rem; outline: none; width: 100%;
  transition: border-color .2s; color: var(--text-dark);
}
.conv-input:focus { border-color: var(--teal-mid); }
.conv-input[readonly] { background: var(--gray-bg); color: var(--teal-mid); font-weight: 600; }

.conv-swap {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(95,212,198,.12); color: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 2px;
  transition: background .2s, transform .2s;
}
.conv-swap:hover { background: var(--teal-light); color: #fff; transform: rotate(180deg); }

/* ============================================================
   LOGISTICS CTA BANNER
============================================================ */
.logistics-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  min-height: 220px;
  display: flex; align-items: center;
}
.logistics-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/cargo-workers.jpg') center/cover no-repeat;
  opacity: .25;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,61,61,.9) 0%, rgba(11,61,61,.4) 100%);
}
.cta-content {
  position: relative; z-index: 1;
  padding: 48px 80px;
}
.cta-content h2 { font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-content p  { font-size: .95rem; color: rgba(255,255,255,.75); margin-bottom: 24px; }

/* ============================================================
   PLATFORM SECTION
============================================================ */
.plat-section { background: linear-gradient(135deg, #f7fbfb 0%, #eef8f8 100%); }
.plat-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 64px; align-items: center;
}
.plat-content .cc-label { display: inline-block; margin-bottom: 14px; }
.plat-content h2 {
  font-size: 2rem; font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 18px;
}
.plat-content p {
  font-size: .92rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 14px;
}
.plat-btns { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 28px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border: 2px solid var(--teal-mid);
  border-radius: 8px; color: var(--teal-mid); font-weight: 600;
  font-size: .88rem; text-decoration: none;
  transition: background .2s, color .2s;
  opacity: .88;
}
.btn-outline:hover { background: var(--teal-mid); color: #fff; opacity: 1; }
.plat-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px; padding-top: 4px;
}
.plat-hl-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .84rem; font-weight: 600; color: var(--text-dark);
}
.plat-hl-item i { color: var(--teal-mid); font-size: .82rem; flex-shrink: 0; }
.plat-visual {
  display: flex; align-items: center; justify-content: center;
}
.plat-img { width: 100%; max-width: 460px; height: auto; }
@media (max-width: 920px) {
  .plat-inner { grid-template-columns: 1fr; gap: 40px; }
  .plat-visual { order: -1; }
  .plat-img { max-width: 340px; }
  .plat-content h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .plat-content h2 { font-size: 1.4rem; }
  .plat-highlights { grid-template-columns: 1fr; }
}

/* ============================================================
   BEST SELLERS
============================================================ */
.best-sellers { background: #fff; }

.product-card {
  min-width: calc((100% - 60px) / 4);
  flex-shrink: 0;
  border: 1px solid var(--gray-border); border-radius: var(--radius);
  overflow: hidden; background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.product-img {
  height: 170px; background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }

.product-body { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.product-name  { font-size: .88rem; font-weight: 600; color: var(--text-dark); }
.product-price { font-size: 1rem; font-weight: 700; color: var(--teal-mid); }

/* ============================================================
   WHY CHOOSE
============================================================ */
.why-section { background: var(--gray-bg); }

.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 40px;
}
.why-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
  border: 1px solid var(--gray-border);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(95,212,198,.12); color: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 16px;
}
.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.why-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #F5F7F8; color: #222222; border-top: 3px solid #FF8A00; }

.footer-top {
  display: grid;
  grid-template-columns: 260px repeat(5, 1fr);
  gap: 40px; padding-top: 60px; padding-bottom: 48px;
}

.footer-brand p { font-size: .82rem; line-height: 1.7; margin: 14px 0 20px; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 34px; height: 34px; border-radius: 8px;
  background: #007D88;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .85rem;
  transition: background .2s, color .2s;
}
.social-links a:hover { background: #006671; color: #fff; }

.footer-col h4 {
  font-size: .85rem; font-weight: 700; color: #222222;
  margin-bottom: 16px; letter-spacing: .3px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: .8rem; color: #555555;
  transition: color .2s;
}
.footer-col li a:hover { color: #007D88; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 20px; padding-bottom: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: .78rem; color: #888888;
}
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { color: #888888; transition: color .2s; }
.footer-bottom-links a:hover { color: #007D88; }
.footer-lang { color: #555555; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 200px repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 1100px) {
  .hero-content { padding-left: 48px; }
  .footer-top   { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .offer-card   { min-width: calc((100% - 60px) / 3); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2    { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .offer-card   { min-width: calc((100% - 40px) / 2); }
  .product-card { min-width: calc((100% - 40px) / 2); }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; padding: 60px 28px 60px 28px; }
}

@media (max-width: 640px) {
  .sw-summary { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sw-divider { display: none; }
  .sw-form-row { flex-direction: column; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .trust-divider { display: none; }
  .why-grid  { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .offer-card   { min-width: 240px; }
  .product-card { min-width: 200px; }
  .cta-content  { padding: 36px 28px; }
  .cta-content h2 { font-size: 1.4rem; }
}

/* Mobile nav open */
.nav-links.open {
  display: flex; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--teal-dark); padding: 24px; overflow-y: auto;
  z-index: 999; gap: 4px;
}
.nav-links.open .mega-menu {
  position: static; transform: none; min-width: unset;
  box-shadow: none; border: none; background: rgba(255,255,255,.05);
  border-radius: 8px; margin-top: 4px;
  flex-direction: column;
  opacity: 1; visibility: visible; pointer-events: auto;
  display: none;
}
.nav-links.open .nav-item.open .mega-menu { display: flex; }
.nav-links.open .mega-left { display: none; }
.nav-links.open .mega-grid { grid-template-columns: 1fr; padding: 8px; }
.nav-links.open .mega-item { color: rgba(255,255,255,.8); }
.nav-links.open .mega-item strong { color: #fff; }

/* ── HERO PHOTO: fallback colour while image loads ── */
.hero-photo { background-color: #071a38; }

/* Hero loader styles removed — replaced by image hero */

/* ── TABLET: hero content wider ───────────────────────── */
@media (max-width: 1024px) {
  .hero-content-3d { width: 65%; left: 48px; }
  .wca-float-card  { display: none; }
}

/* ── MOBILE: image hero ───────────────────────────────── */
@media (max-width: 768px) {
  .hero-photo {
    height: auto; min-height: 100vh;
    background-position: 70% center !important;
    display: flex; align-items: center;
  }
  .hero-content-3d {
    position: relative;       /* back to flow on mobile */
    left: auto; top: auto; transform: none;
    width: 100%;
    max-width: 100%;
    padding: calc(var(--nav-h) + 40px) 24px 40px;
    margin: 0;
  }
  .wca-float-card { display: none; }
}

/* ── Nav login icon button ───────────────────────────────── */
.nav-login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  border: none;
  background: #007D88;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.nav-login-btn i { font-size: .95rem; }
.nav-login-btn:hover {
  background: #006671;
  transform: translateY(-1px);
}

/* ── Floating Action Buttons ─────────────────────────────── */
.fab-wa,
.fab-cta {
  position: fixed;
  bottom: 28px;
  z-index: 900;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.fab-wa.fab-visible,
.fab-cta.fab-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* WhatsApp FAB */
.fab-wa {
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: background .2s, transform .3s, opacity .3s, box-shadow .2s;
  text-decoration: none;
}
.fab-wa:hover { background: #1ebe5e; box-shadow: 0 6px 20px rgba(37,211,102,.6); }
/* CTA FAB */
.fab-cta {
  right: 96px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-orange);
  color: #fff;
  padding: 0 20px;
  height: 48px;
  border-radius: 24px;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,138,0,.35);
  bottom: 32px;
  transition: background .2s, transform .3s, opacity .3s, box-shadow .2s;
}
.fab-cta:hover { background: #e07800; box-shadow: 0 6px 20px rgba(255,138,0,.5); }
.fab-cta i { font-size: 1rem; }

/* ── Quick-contact modal ─────────────────────────────────── */
.qc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.qc-modal.qc-open {
  opacity: 1;
  pointer-events: auto;
}
.qc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
}
.qc-panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  transform: translateY(24px) scale(.97);
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275);
  z-index: 1;
}
.qc-modal.qc-open .qc-panel {
  transform: translateY(0) scale(1);
}
.qc-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.qc-close:hover { color: #333; background: #f0f0f0; }
.qc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
  margin-bottom: 14px;
}
.qc-title { font-size: 1.25rem; font-weight: 800; color: var(--teal-dark); margin-bottom: 4px; }
.qc-sub   { font-size: .85rem; color: #888; margin-bottom: 20px; }
.qc-field { margin-bottom: 12px; }
.qc-field input,
.qc-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #dde2e2;
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  background: #fafafa;
  transition: border-color .2s;
  resize: vertical;
  box-sizing: border-box;
}
.qc-field input:focus,
.qc-field textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
  background: #fff;
}
.qc-submit {
  width: 100%;
  background: var(--cta-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}
.qc-submit:hover { background: #e07800; }
.qc-submit:disabled { opacity: .6; cursor: not-allowed; }
.qc-ok {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(0,125,136,.06);
  border: 1.5px solid var(--teal-mid);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: .9rem;
}
.qc-ok i { color: var(--teal-mid); }

@media (max-width: 600px) {
  .qc-modal { padding: 0; align-items: flex-end; }
  .qc-panel { border-radius: 20px 20px 0 0; max-width: 100%; }
  .fab-cta span { display: none; }
  .fab-cta { padding: 0; width: 48px; height: 48px; border-radius: 50%; justify-content: center; right: 94px; }
}

/* ── Cookie consent banner ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--teal-dark);
  color: #fff;
  z-index: 8888;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.cookie-show { transform: translateY(0); }
.cookie-banner.cookie-hide { transform: translateY(100%); }
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.5;
}
.cookie-inner p i { margin-right: 6px; color: #ffd600; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--cta-orange);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s;
}
.cookie-accept:hover { background: #e07800; }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cookie-decline:hover { background: rgba(255,255,255,.1); color: #fff; }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Stats band (replaces trust bar) ─────────────────────── */
.stats-band {
  background: rgba(0, 0, 0, 0.55);
  padding: 28px 0;
  position: relative;
  z-index: 2;
  margin-top: -80px;
}
.stats-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.sband-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.sband-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sband-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-left: 2px;
}
.sband-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.sband-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-band-inner { gap: 24px; }
  .sband-divider { display: none; }
  .sband-item { flex: 1 1 40%; }
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         