/* ==========================================
   VISIT BONAIRE — Premium Design System
   Brand: Blue Innovation B.V.
   ========================================== */

/* ── DESIGN TOKENS ── */
:root {
  --blue:         #1B4DB4;
  --blue-dark:    #0D2D6B;
  --blue-light:   #2E64D4;
  --blue-pale:    #EBF1FB;
  --orange:       #F7941D;
  --orange-light: #FFB347;
  --orange-pale:  #FEF3E2;
  --pink:         #E91E8C;
  --cyan:         #00BCD4;
  --cyan-pale:    #E0F9FB;
  --yellow:       #FFD200;
  --white:        #FFFFFF;
  --off-white:    #F8FAFB;
  --mint:         #EBF9F9;
  --dark:         #0D1B3E;
  --dark-mid:     #1A2A4A;
  --gray:         #6B7280;
  --gray-border:  #E2E8F0;
  --gray-light:   #F1F5F9;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-py:    100px;
  --section-py-sm: 60px;
  --container-max: 1280px;
  --container-pad: clamp(20px, 5vw, 80px);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  --shadow-sm:     0 2px 8px rgba(13,29,62,0.08);
  --shadow-md:     0 8px 32px rgba(13,29,62,0.12);
  --shadow-lg:     0 20px 60px rgba(13,29,62,0.16);
  --shadow-xl:     0 40px 100px rgba(13,29,62,0.22);
  --shadow-orange: 0 12px 40px rgba(247,148,29,0.38);
  --shadow-blue:   0 12px 40px rgba(27,77,180,0.30);

  --ease:   cubic-bezier(0.4,0,0.2,1);
  --t-fast: 0.15s cubic-bezier(0.4,0,0.2,1);
  --t-base: 0.3s  cubic-bezier(0.4,0,0.2,1);
  --t-slow: 0.55s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
body.menu-open { overflow: hidden; }

/* ── LAYOUT ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section    { padding: var(--section-py) 0; }
.section-sm { padding: var(--section-py-sm) 0; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.section-label span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
}
.section-label.on-dark::before { background: rgba(255,255,255,0.5); }
.section-label.on-dark span    { color: rgba(255,255,255,0.7); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font);
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: #e8830e;
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(247,148,29,0.52);
}
.btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: var(--shadow-orange); }
.btn-secondary:active { transform: translateY(0) scale(0.97); }
.btn-blue:active { transform: translateY(0) scale(0.97); }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: var(--dark-mid);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ── APP STORE BUTTONS ── */
.store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--dark);
  color: white;
  border-radius: var(--r-md);
  transition: all var(--t-base);
  box-shadow: var(--shadow-md);
  min-width: 168px;
}
.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: #1a2a4a;
}
.store-btn.light {
  background: white;
  color: var(--dark);
}
.store-btn.light:hover { background: #f0f4ff; }
.store-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-icon svg { width: 100%; height: 100%; }
.store-text { display: flex; flex-direction: column; }
.store-text .pre  { font-size: 10px; opacity: 0.65; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.store-text .main { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--t-base);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-sm);
  padding: 14px var(--container-pad);
}
.nav-logo { height: 48px; width: auto; transition: height var(--t-base); }
.nav.scrolled .nav-logo { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  transition: color var(--t-fast);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
  border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--orange-light); }
.nav.scrolled .nav-link { color: var(--dark); }
.nav.scrolled .nav-link:hover { color: var(--blue); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 4px;
  backdrop-filter: blur(10px);
}
.nav.scrolled .lang-switcher { background: var(--gray-light); }
.lang-btn {
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: all var(--t-fast);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lang-btn.active {
  background: var(--orange);
  color: white;
  box-shadow: 0 2px 8px rgba(247,148,29,0.4);
}
.nav.scrolled .lang-btn { color: var(--gray); }
.nav.scrolled .lang-btn.active { color: white; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1010;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-toggle.open span { background: white !important; }

/* ── NAV DROPDOWN ── */
.nav-item { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  /* inherits .nav-link visual styles — color, font, underline ::after */
}

.dropdown-chevron {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--t-base);
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-item.dropdown-open .dropdown-chevron { transform: rotate(180deg); }

/* The dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(13,29,62,0.18), 0 4px 16px rgba(13,29,62,0.08);
  border: 1px solid rgba(13,29,62,0.07);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base), transform var(--t-base);
  z-index: 200;
  pointer-events: none;
}
/* Invisible hover bridge — fills the gap between the trigger and the panel.
   When the cursor travels downward through the gap, it stays within .nav-item
   because it is hovering this pseudo-element, so :hover never drops. */
@media (min-width: 769px) {
  .nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: 100%;    /* extends upward from the top edge of the panel */
    left: -24px;
    right: -24px;
    height: 24px;    /* covers the 16px gap + 8px safety margin */
    background: transparent;
    /* pointer-events inherits 'auto' once the panel is visible,
       so this zone is live exactly when it needs to be */
  }
}

/* Tiny arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-left: 1px solid rgba(13,29,62,0.07);
  border-top: 1px solid rgba(13,29,62,0.07);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px 0 0 0;
}
/* On transparent nav: dark glass panel */
.nav.transparent .nav-dropdown {
  background: rgba(10,20,50,0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.2);
}
.nav.transparent .nav-dropdown::before {
  background: rgba(10,20,50,0.90);
  border-color: rgba(255,255,255,0.12);
}

/* Show on hover (desktop) OR keyboard focus-within OR open class (click/JS) */
@media (min-width: 769px) {
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown,
  .nav-item.dropdown-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}
.nav-item.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Dropdown links */
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
}
.dropdown-link:hover { background: var(--blue-pale); color: var(--blue); }

.dl-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.dropdown-link:first-child .dl-icon { background: var(--blue-pale); }
.dropdown-link:last-child  .dl-icon { background: var(--orange-pale); }
.dropdown-link:hover .dl-icon { filter: brightness(0.95); }

/* On transparent nav: white text links */
.nav.transparent .dropdown-link { color: rgba(255,255,255,0.88); }
.nav.transparent .dropdown-link:hover { background: rgba(255,255,255,0.1); color: white; }
.nav.transparent .dropdown-link:first-child .dl-icon { background: rgba(27,77,180,0.4); }
.nav.transparent .dropdown-link:last-child  .dl-icon { background: rgba(247,148,29,0.35); }

.dl-text-wrap { display: flex; flex-direction: column; gap: 2px; }
.dl-main { font-size: 14px; font-weight: 700; }
.dl-sub  { font-size: 11px; opacity: 0.6; font-weight: 500; }

/* Mobile: accordion-style */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: var(--r-md) !important;
    box-shadow: none !important;
    padding: 4px 0 4px 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base), padding var(--t-base) !important;
  }
  .nav-dropdown::before { display: none; }

  .nav-item.dropdown-open .nav-dropdown {
    max-height: 160px;
    padding: 4px 0 4px 16px;
  }

  .dropdown-link { color: rgba(255,255,255,0.75); padding: 10px 12px; }
  .dropdown-link:hover { background: rgba(255,255,255,0.08); color: white; }
  .dl-icon { display: none; }
  .dl-sub  { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.78;
  filter: brightness(0.94) saturate(0.86);
}
.hero-poster {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D2D6B 0%, #1B4DB4 50%, #00BCD4 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,29,62,0.50) 0%,
    rgba(13,29,62,0.12) 30%,
    rgba(13,29,62,0.08) 55%,
    rgba(13,29,62,0.68) 100%
  );
  z-index: 1;
}
/* Subtle brand-color tint layer over the video */
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,29,62,0.22) 0%,
    rgba(27,77,180,0.08) 50%,
    rgba(0,140,180,0.06) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 110px var(--container-pad) 60px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.hero-text { flex: 1; max-width: 600px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247,148,29,0.18);
  border: 1px solid rgba(247,148,29,0.45);
  padding: 7px 18px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-eyebrow span {
  font-size: 12px;
  font-weight: 700;
  color: #FFB347;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 900;
  color: white;
  line-height: 0.98;
  margin-bottom: 18px;
  letter-spacing: -0.035em;
}
.hero-title .accent { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 0;
}
.hero-stat-num {
  font-size: 26px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.03em;
}
.hero-stat-num .accent { color: var(--orange); }
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.58);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Phone Mockup */
.hero-phone-wrap {
  flex-shrink: 0;
  position: relative;
  perspective: 1000px;
}
.phone-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(27,77,180,0.4) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.phone-mockup {
  width: 270px;
  height: 548px;
  background: #0a0e1a;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 0 3px rgba(255,255,255,0.04),
    0 60px 120px rgba(0,0,0,0.65),
    0 0 80px rgba(27,77,180,0.35);
  position: relative;
  transform: rotate(-5deg) rotateY(5deg);
  transition: transform var(--t-slow);
}
.phone-mockup:hover { transform: rotate(-2deg) rotateY(2deg) translateY(-10px); }
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #0a0e1a;
  border-radius: 20px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(160deg, #0B2451 0%, #1B4DB4 38%, #0099AA 68%, #007A6B 100%);
  position: relative;
}
.phone-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.8) 28px, rgba(255,255,255,0.8) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(255,255,255,0.8) 28px, rgba(255,255,255,0.8) 29px);
}
.phone-ui {
  position: relative;
  z-index: 1;
  padding: 44px 14px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.phone-topbar {
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-brand {
  font-size: 11px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.03em;
}
.phone-topbar-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}
.phone-search {
  background: rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.phone-search-icon { font-size: 12px; }
.phone-search-placeholder {
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.phone-chips {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.phone-chip {
  background: rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 5px 11px;
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-chip.active {
  background: var(--orange);
  color: white;
}
.phone-cards { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.phone-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: 13px;
  padding: 10px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.phone-card-thumb {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
}
.phone-card-thumb.c1 { background: linear-gradient(135deg, #0B2D6B, #00BCD4); }
.phone-card-thumb.c2 { background: linear-gradient(135deg, #F7941D, #FFD200); }
.phone-card-thumb.c3 { background: linear-gradient(135deg, #E91E8C, #F7941D); }
.phone-card-lines { flex: 1; }
.phone-card-line {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.phone-card-line.short { width: 65%; background: rgba(255,255,255,0.4); }
.phone-bottombar {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.nav-dot {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
}
.nav-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--orange);
}


/* ── PHONE DEMO — interactive enhancements ── */
.phone-chip {
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  user-select: none;
}
.phone-chip:hover:not(.active) {
  background: rgba(255,255,255,0.30);
  transform: scale(1.06);
}
.phone-chip:active { transform: scale(0.94); }
.phone-chip.active {
  box-shadow: 0 2px 14px rgba(247,148,29,0.45);
}
.phone-cards {
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.phone-cards.demo-out {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}
.phone-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.phone-card-info { flex: 1; min-width: 0; }
.phone-card-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 3px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-card-sub {
  font-size: 8px;
  color: rgba(255,255,255,0.50);
  font-weight: 500;
}
.nav-dot {
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

/* ── HIGHLIGHTS ── */
.highlights { padding: var(--section-py) 0; background: var(--white); position: relative; }
.highlights::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(13,29,62,0.055) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.highlights-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.highlights-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.highlights-sub {
  font-size: 18px;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.65;
}

.highlights-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 240px 200px;
  gap: 12px;
}
.hl-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.hl-item:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hl-item:first-child { grid-row: 1 / 3; }
/* nth-child(7) column override removed — auto-placement correctly fills all 8 items */

.hl-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0D1B3E; /* fallback if image fails to load */
  /* GPU compositing hints — pre-promotes the layer so the browser rasterises
     at native device-pixel-ratio rather than deferring until the hover
     transform kicks in, which is the main cause of perceived softness */
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.65s var(--ease);
}
.hl-item:hover .hl-bg { transform: scale(1.06); }

.hl-overlay {
  position: absolute;
  inset: 0;
  /* Reduced from 0.85/0.18 — enough for text contrast without dulling image colour */
  background: linear-gradient(to top, rgba(13,29,62,0.76) 0%, rgba(13,29,62,0.08) 48%, transparent 100%);
  z-index: 1;
}
.hl-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
  z-index: 2;
}
.hl-icon  { font-size: 22px; display: block; margin-bottom: 7px; }
.hl-title {
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.hl-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.68);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.hl-item:hover .hl-desc { opacity: 1; transform: translateY(0); }

.hl-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity var(--t-base);
}
.hl-item:hover .hl-badge { opacity: 1; }

/* Category real images — applied via .hl-bg which inherits background-size/position */
.hl-dive        { background-image: url('../assets/Duiken-Snorkelen.webp'); }
.hl-attractions { background-image: url('../assets/Top-attractions.jpg'); }
.hl-adventure   { background-image: url('../assets/Adventure-trips.jpeg'); }
.hl-restaurants { background-image: url('../assets/Best-restaurants.jpg'); }
.hl-watersports { background-image: url('../assets/Water-sports.jpg'); }
.hl-getting     { background-image: url('../assets/getting-around.jpg'); }
.hl-all         { background-image: url('../assets/all-highlights.jpg'); }
.hl-essential   { background-image: url('../assets/essential-visit.webp'); }

/* Decorative shapes inside hl items */
.hl-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

/* ── FEATURES / APP STORY ── */
.features {
  background: var(--dark);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(27,77,180,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.features::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,188,212,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.features-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.features-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.features-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto;
}
/* ── FEATURES BENTO GRID ── */
.features-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.feat-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feat-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  padding: 44px 40px;
  cursor: default;
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
}
.feat-card:hover {
  transform: translateY(-5px) scale(1.006);
  box-shadow: 0 28px 72px rgba(0,0,0,0.32);
}
.feat-num-bg {
  position: absolute;
  bottom: -16px;
  right: 16px;
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  opacity: 0.04;
  color: white;
  pointer-events: none;
  user-select: none;
}
.feat-card--offline {
  background: linear-gradient(145deg, rgba(8,20,42,0.84) 0%, rgba(14,34,88,0.78) 55%, rgba(27,77,180,0.72) 100%), url('../assets/bonaire-offline.jpg') center/cover no-repeat;
  min-height: 420px;
  border: 1px solid rgba(27,77,180,0.35);
  box-shadow: 0 20px 60px rgba(8,20,42,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
}
.feat-card--offline::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(ellipse, rgba(247,148,29,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.feat-card--tours {
  background: linear-gradient(145deg, rgba(13,31,60,0.82) 0%, rgba(10,41,82,0.76) 100%), url('../assets/Bonaire-island-tour.jpeg') center/cover no-repeat;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.feat-card--map {
  background: linear-gradient(145deg, rgba(8,20,42,0.74) 0%, rgba(14,34,88,0.68) 100%), url('../assets/Bonaire_map.webp') center/cover no-repeat;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.feat-card--guided {
  grid-column: 1 / -1;
  background: linear-gradient(130deg, rgba(13,27,62,0.84) 0%, rgba(22,18,74,0.80) 45%, rgba(13,45,107,0.76) 100%), url('../assets/bonaire-guided tour.webp') center/cover no-repeat;
  border: 1px solid rgba(247,148,29,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 44px 52px;
}
.feat-card--guided::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(247,148,29,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.feat-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.feat-card-inner--h {
  flex-direction: row;
  align-items: center;
  gap: 60px;
}
.feat-guided-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}
.feat-guided-right {
  flex: 1;
  max-width: 520px;
}
.feat-icon-ring {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(247,148,29,0.18);
  border: 1px solid rgba(247,148,29,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 0 24px rgba(247,148,29,0.16);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.feat-icon-ring svg {
  width: 26px; height: 26px;
  stroke: var(--orange); fill: none;
  stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.feat-card:hover .feat-icon-ring {
  box-shadow: 0 0 40px rgba(247,148,29,0.32);
  background: rgba(247,148,29,0.26);
}
.feat-icon-ring--gold {
  background: rgba(247,148,29,0.14);
  border-color: rgba(247,148,29,0.32);
  margin-bottom: 20px;
}
.feat-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s var(--ease);
}
.feat-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: rgba(255,255,255,0.85); fill: none;
  stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.feat-card:hover .feat-icon-wrap { background: rgba(255,255,255,0.17); }
.feat-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
.feat-badge--usp {
  background: rgba(247,148,29,0.18);
  border: 1px solid rgba(247,148,29,0.42);
  color: var(--orange);
}
.feat-badge--premium {
  background: rgba(247,148,29,0.14);
  border: 1px solid rgba(247,148,29,0.30);
  color: #FFB347;
}
.feat-card-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.feat-card--offline .feat-card-title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
}
.feat-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  font-weight: 400;
  max-width: 320px;
}
.feat-card--offline .feat-card-desc {
  font-size: 15px;
  max-width: 380px;
  color: rgba(255,255,255,0.68);
}
.feat-card--guided .feat-card-desc {
  max-width: 100%;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}

/* ── DOWNLOAD ── */
.download {
  background: linear-gradient(140deg, #E88010 0%, var(--orange) 50%, #F5A033 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.download::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(ellipse, rgba(255,210,0,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.download-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.download-text { flex: 1; }
.download-heading {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.download-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
  max-width: 440px;
}
.download-benefits {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.benefit-check {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: white;
  font-weight: 800;
}
.benefit-item span {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.download-qr-side { flex-shrink: 0; text-align: center; }
.qr-frame {
  width: 224px; height: 224px;
  background: white;
  border-radius: var(--r-xl);
  padding: 18px;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-frame svg { width: 100%; height: 100%; }
.qr-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ── ABOUT ── */
.about { background: var(--mint); padding: var(--section-py) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-block {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(145deg, #0D2D6B 0%, #1B4DB4 45%, #00BCD4 75%, #00897B 100%);
}
.about-block-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: blur(0.8px) brightness(0.72) contrast(1.05) saturate(0.85);
  transform: scale(1.07);
  animation: aboutVideoDrift 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes aboutVideoDrift {
  from { transform: scale(1.07); }
  to   { transform: scale(1.13); }
}
.about-block-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    150deg,
    rgba(10, 32, 90,  0.78) 0%,
    rgba(15, 65, 160, 0.58) 40%,
    rgba(0,  170, 190, 0.42) 72%,
    rgba(0,  110, 100, 0.50) 100%
  );
}
.about-block-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px);
}
.about-block-label {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  z-index: 3;
}
.about-island-tag {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.about-island-name {
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.about-island-coord {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  font-family: monospace;
}

/* Decorative circle overlay */
.about-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  z-index: 2;
  background: radial-gradient(ellipse, rgba(247,148,29,0.25) 0%, transparent 70%);
}

.about-badge {
  position: absolute;
  top: -22px; right: -22px;
  width: 96px; height: 96px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  border: 4px solid white;
  z-index: 2;
}
.about-badge-text {
  font-size: 9px;
  font-weight: 800;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.about-text { padding: 8px 0; }
.about-quote {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.about-quote .accent { color: var(--blue); }
.about-body {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-team {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.team-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  border-radius: var(--r-full);
  padding: 8px 16px 8px 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}
.team-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
}
.team-chip:nth-child(1) .team-avatar { background: var(--blue); }
.team-chip:nth-child(2) .team-avatar { background: var(--pink); }
.team-chip:nth-child(3) .team-avatar { background: var(--cyan); }
.team-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.about-meta {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.about-meta a { color: var(--blue); font-weight: 600; transition: color var(--t-fast); }
.about-meta a:hover { color: var(--orange); }
.meta-sep { color: var(--gray-border); }

/* ── BUSINESS ── */
.business { background: var(--white); padding: var(--section-py) 0; }
.business-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.business-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.business-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}
.business-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--t-fast);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.business-contact:hover {
  color: var(--orange);
  border-color: var(--orange);
  gap: 12px;
}
.business-points { display: flex; flex-direction: column; gap: 16px; }
.bp {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  transition: all var(--t-base);
}
.bp:hover {
  background: var(--blue-pale);
  border-color: rgba(27,77,180,0.12);
  transform: translateX(6px);
}
.bp-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  transition: background var(--t-base);
}
.bp:hover .bp-icon { background: var(--blue); }
.bp h3, .bp h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
}
.bp p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── FOR BUSINESSES PAGE ── */
.biz-value-section  { padding: 100px 0; background: var(--white); }
.biz-how-section    { padding: 80px 0; background: var(--off-white); }
.biz-points-section { padding: 80px 0; background: var(--white); }
.biz-cta-section    { padding: 80px 0; background: var(--dark); }

.biz-value-inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.biz-value-heading { font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--dark); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.biz-value-intro  { font-size: 17px; color: var(--gray); line-height: 1.75; }

.biz-value-stats  { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 40px; }
.biz-stat         { background: var(--blue-pale); border-radius: var(--r-md); padding: 24px; transition: transform var(--t-base), box-shadow var(--t-base); }
.biz-stat:hover   { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.biz-stat-num     { font-size: 36px; font-weight: 900; color: var(--blue); line-height: 1; letter-spacing: -0.03em; margin-bottom: 4px; }
.biz-stat-num span { color: var(--orange); }
.biz-stat-label   { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.3; }

.biz-how-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.biz-step       { background: var(--white); border-radius: var(--r-lg); padding: 36px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-border); position: relative; transition: box-shadow var(--t-base), transform var(--t-base); }
.biz-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.biz-step-num   { font-size: 48px; font-weight: 900; color: var(--blue-pale); line-height: 1; margin-bottom: 16px; letter-spacing: -0.04em; }
.biz-step-title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 10px; letter-spacing: -0.01em; }
.biz-step-text  { font-size: 14px; color: var(--gray); line-height: 1.7; }

.biz-cta-inner   { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.biz-cta-heading { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--white); letter-spacing: -0.02em; margin-bottom: 12px; }
.biz-cta-sub     { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.65; }
.biz-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; white-space: nowrap; }
.biz-faq-link    { font-size: 14px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 8px; }
.biz-faq-link a  { color: rgba(255,255,255,0.7); font-weight: 600; }
.biz-faq-link a:hover { color: white; }
.biz-transparency { padding: 36px 40px; background: var(--blue-pale); border-radius: var(--r-lg); border-left: 4px solid var(--blue); margin-top: 52px; }
.biz-transparency-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.biz-transparency-text  { font-size: 14px; color: var(--gray); line-height: 1.65; margin: 0; }

/* About page */
.about-team-section    { padding: 80px 0; background: var(--off-white); }
.about-company-section { padding: 80px 0; background: var(--white); }
.about-cta-section     { padding: 80px 0; background: var(--blue); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.team-card { background: var(--white); border-radius: var(--r-lg); padding: 36px 24px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-border); transition: box-shadow var(--t-base), transform var(--t-base); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar-lg { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 900; color: white; margin: 0 auto 20px; }
.team-card-role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 8px; }
.team-card-name { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 14px; letter-spacing: -0.02em; }
.team-card-bio  { font-size: 14px; color: var(--gray); line-height: 1.7; }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 52px; }
.company-copy-heading { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.company-copy-text    { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 32px; }
.company-detail { display: flex; flex-direction: column; gap: 3px; padding: 16px 0; border-bottom: 1px solid var(--gray-border); }
.company-detail:first-child { padding-top: 0; }
.company-label  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }
.company-value  { font-size: 15px; font-weight: 600; color: var(--dark); }
.company-value a { color: var(--blue); }
.company-value a:hover { text-decoration: underline; }
.about-cta-inner  { text-align: center; max-width: 560px; margin: 0 auto; }
.about-cta-title  { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--white); letter-spacing: -0.02em; margin-bottom: 16px; }
.about-cta-sub    { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.65; }
.about-cta-btns   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-on-blue      { background: white !important; color: var(--blue) !important; box-shadow: var(--shadow-md); }
.btn-on-blue:hover { background: var(--off-white) !important; transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.4); color: white; padding: 14px 28px; border-radius: var(--r-full); font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; transition: border-color var(--t-base), background var(--t-base); font-family: var(--font); cursor: pointer; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }

/* Responsive — for-businesses + about */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .biz-value-inner { grid-template-columns: 1fr; gap: 40px; }
  .biz-value-stats { grid-template-columns: 1fr 1fr; }
  .biz-how-grid    { grid-template-columns: 1fr; }
  .biz-cta-inner   { grid-template-columns: 1fr; gap: 32px; }
  .biz-cta-actions { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── ENHANCED FADE + MICRO-INTERACTIONS ── */
.fade-up { transition-duration: 0.7s; }
.hl-item { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.hl-item:hover { transform: scale(1.018); }

/* ── FAQ PREVIEW ── */
.faq-preview {
  background: linear-gradient(140deg, var(--blue-pale) 0%, var(--cyan-pale) 100%);
  padding: var(--section-py) 0;
}
.faq-preview-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-preview-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.faq-preview-sub { font-size: 17px; color: var(--gray); }
.faq-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 52px 44px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all var(--t-base);
}
.faq-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27,77,180,0.1);
}
.faq-card-icon {
  width: 76px; height: 76px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 34px;
}
.faq-card:first-child .faq-card-icon { background: var(--blue-pale); }
.faq-card:last-child  .faq-card-icon { background: var(--orange-pale); }
.faq-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.faq-card-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 80px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand { max-width: 300px; }
.footer-logo { height: 50px; margin-bottom: 20px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  color: rgba(255,255,255,0.55);
}
.social-link:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-3px);
}
.social-link svg { width: 18px; height: 18px; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  transition: color var(--t-fast);
  font-weight: 400;
}
.footer-link:hover { color: rgba(255,255,255,0.9); }
.footer-contact-item {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fc-label {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.fc-value {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.fc-value a { color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.fc-value a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-credit {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 12px;
  width: 100%;
}
.footer-credit a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-credit a:hover {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}
.footer-credit:hover {
  color: rgba(255,255,255,0.6);
}

/* ── INNER PAGE HERO ── */
.page-hero {
  padding: 148px var(--container-pad) 80px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #00A0C0 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 56px, rgba(255,255,255,0.025) 56px, rgba(255,255,255,0.025) 57px),
    repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(255,255,255,0.025) 56px, rgba(255,255,255,0.025) 57px);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
}
.page-breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.page-breadcrumb a:hover { color: white; }
.bc-sep   { color: rgba(255,255,255,0.3); }
.bc-curr  { color: rgba(255,255,255,0.85); font-weight: 600; }
.page-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.page-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.68);
  font-weight: 400;
  line-height: 1.65;
  max-width: 580px;
}

/* ── INNER PAGE CONTENT ── */
.page-body {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px var(--container-pad) 100px;
}
.page-body h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin: 52px 0 16px;
  letter-spacing: -0.02em;
  padding-top: 8px;
  border-top: 2px solid var(--blue-pale);
}
.page-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.page-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 10px;
}
.page-body p {
  font-size: 16px;
  color: #4A5568;
  line-height: 1.85;
  margin-bottom: 18px;
}
.page-body ul, .page-body ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
}
.page-body li {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.75;
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--gray-border);
}
.page-body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.page-body ol { counter-reset: item; }
.page-body ol li { counter-increment: item; }
.page-body ol li::before { content: counter(item)'.'; }
.page-body a { color: var(--blue); font-weight: 600; text-underline-offset: 3px; text-decoration: underline; }
.page-body strong { font-weight: 700; color: var(--dark); }
.page-body .highlight-box {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.page-body .highlight-box p { margin-bottom: 0; color: var(--dark); }

/* FAQ Page */
.faq-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin: 48px 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-section-title::before {
  content: '';
  width: 18px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.faq-list { border-top: 1px solid var(--gray-border); }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  gap: 20px;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--blue); }
.faq-toggle {
  width: 34px; height: 34px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--gray);
  transition: all var(--t-base);
  font-weight: 300;
}
.faq-item.open .faq-toggle {
  background: var(--blue);
  color: white;
  transform: rotate(45deg);
}
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p {
  padding: 0 48px 24px 0;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}
.contact-info-card {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  border: 1px solid var(--gray-border);
}
.contact-info-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}
.contact-detail {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-border);
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cd-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.cd-value { font-size: 15px; color: var(--dark); font-weight: 500; }
.cd-value a { color: var(--blue); text-decoration: none; transition: color var(--t-fast); }
.cd-value a:hover { color: var(--orange); }

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--off-white);
  border: 2px solid var(--gray-border);
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark);
  transition: border-color var(--t-fast), background var(--t-fast);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
  background: white;
}
.form-textarea { min-height: 148px; resize: vertical; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --section-py: 76px; }
  .highlights-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .hl-item:first-child { grid-row: auto; grid-column: 1 / -1; }
  .hl-item:nth-child(7) { grid-column: auto; }
  .highlights-mosaic .hl-item { min-height: 220px; }
  .highlights-mosaic .hl-item:first-child { min-height: 300px; }
  .features-bento { grid-template-columns: 1fr; }
  .feat-card--guided { grid-column: 1; }
  .feat-card-inner--h { flex-direction: column; gap: 24px; }
  .feat-card--offline { min-height: 300px; }
  .feat-guided-left { min-width: unset; }
  .download-inner { flex-direction: column; gap: 56px; }
  .download-text { text-align: center; }
  .download-benefits { align-items: center; }
  .download-sub { margin: 0 auto 32px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .business-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1005;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 22px; color: white !important; }
  .nav-link::after { display: none; }
  .nav-toggle { display: flex; }
  .nav .btn { display: none; }

  .hero-content { flex-direction: column; text-align: center; gap: 40px; padding: 100px 20px 60px; }
  .hero-phone-wrap { order: unset; }
  .phone-mockup { width: 200px; height: 406px; border-radius: 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .highlights-mosaic { grid-template-columns: 1fr; }
  .highlights-mosaic .hl-item:first-child { min-height: 260px; }
  .highlights-mosaic .hl-item { min-height: 190px; }

  .feature-item { padding: 52px 32px; }
  .feature-num { font-size: 90px; }

  .faq-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .page-body { padding: 52px 20px 80px; }
  .page-hero { padding: 110px 20px 56px; }
  .faq-card { padding: 36px 24px; }
  .feat-card { padding: 32px 24px; }
  .feat-card--guided { padding: 32px 24px; }
  .biz-transparency { padding: 24px 20px; }
  .contact-info-card { padding: 32px 24px; }
  .biz-cta-actions { flex-direction: column; align-items: stretch; }
  .biz-cta-actions a { justify-content: center; }
}

@media (max-width: 500px) {
  .store-btns { flex-direction: column; }
  .store-btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .about-badge { width: 80px; height: 80px; top: -16px; right: -16px; }
  .biz-value-stats { grid-template-columns: 1fr; }
}
