/* ═══════════════════════════════════════════════════
           DESIGN SYSTEM — 2026 Minimalist
           ═══════════════════════════════════════════════════ */
:root {
  --bg-primary: #fafaf8;
  --bg-secondary: #f3f1ec;
  --bg-dark: #0a0f0d;
  --bg-darker: #060a08;
  --bg-card: #ffffff;

  --accent: #0fa090;
  --accent-light: #2dd4c0;
  --accent-dark: #0c8378;
  --accent-glow: rgba(15, 160, 144, 0.35);
    --accent-subtle: rgba(15, 160, 144, 0.08);

  --gold: #d4a853;
  --gold-light: #e8c77b;

  --text-primary: #0a1a14;
  --text-secondary: rgba(10, 26, 20, 0.6);
  --text-tertiary: rgba(10, 26, 20, 0.4);
  --text-inverse: #f5f0e8;
  --text-inverse-muted: rgba(245, 240, 232, 0.55);

  --border-color: rgba(10, 26, 20, 0.08);
  --border-hover: rgba(15, 160, 144, 0.5);

  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-dark: rgba(10, 15, 13, 0.55);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  --ease-out: cubic-bezier(0.16, 0.8, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px var(--accent-glow);

  --section-py: clamp(80px, 10vw, 140px);
  --container-max: 1400px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

select,
input {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--accent-light);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: #c5d3cc;
  border-radius: 99px;
  border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ─── Layout ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
}

.text-balance {
  text-wrap: balance;
}

.stat-num {
  font-variant-numeric: tabular-nums;
}

/* ─── Typography ─── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label--light {
  color: var(--accent-light);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  color: var(--text-primary);
  margin-top: 10px;
}

.section-title--light {
  color: var(--text-inverse);
}

.section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 420px;
  margin-top: 14px;
}

/* ─── Glass ─── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
}

.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.glass-dark {
  background: var(--glass-dark);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── Noise Texture ─── */
.noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.btn-primary i {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.8);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-ghost:hover {
  color: var(--accent-light);
}

.btn-ghost i {
  width: 16px;
  height: 16px;
}

.btn-glow {
  animation: glowPulse 2.8s ease-in-out infinite;
}

.btn-glow:hover {
  animation: none;
  box-shadow:
    0 0 40px var(--accent-glow),
    0 8px 28px rgba(0, 0, 0, 0.2) !important;
}

/* ═══════════════════════════════════════════════════
           NAVIGATION & ANIMATED DROPDOWNS
           ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease-out);
  /* Prevent any child from causing horizontal overflow */
  overflow-x: clip;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-top: 14px;
  padding: 0 20px;
  height: 64px;
  /* Ensure inner never exceeds viewport */
  max-width: 100%;
  min-width: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 30px rgba(10, 26, 20, 0.06);
  transition: all 0.5s var(--ease-out);
  /* Prevent overflow */
  overflow: visible;
}

.nav-inner.scrolled {
  margin-top: 8px;
  height: 58px;
  box-shadow: 0 8px 40px rgba(10, 26, 20, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Allow shrink to prevent stretching on small screens */
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

.nav-logo img {
  /* Use CSS sizing — ignore HTML attributes for responsiveness */
  width: 40px;
  height: 40px;
  min-width: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  /* Prevent brand text from causing overflow */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.nav-brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-left: -4px;
  white-space: nowrap;
}

/* Nav Links Container */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Nav Dropdown Wrapper & Trigger */
.nav-item--dropdown {
  position: relative;
}

/* Hover Bridge: ensures smooth cursor movement from link trigger to dropdown */
.nav-item--dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
  display: block;
  pointer-events: auto;
}

.nav-link-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav-link-trigger:hover,
.nav-link-trigger.current,
.nav-item--dropdown:hover .nav-link-trigger {
  color: var(--text-primary);
}

.nav-link-trigger:hover::after,
.nav-link-trigger.current::after,
.nav-item--dropdown:hover .nav-link-trigger::after {
  transform: scaleX(1);
}

.nav-chevron {
  width: 14px;
  height: 14px;
  opacity: 0.55;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, color 0.3s ease;
}

.nav-item--dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent);
}

.nav-badge {
  font-size: 9.5px;
  font-weight: 700;
  background: rgba(15, 160, 144, 0.12);
  color: var(--accent-dark);
  padding: 2px 7px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Animated Dropdown Container ─── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 60px rgba(10, 26, 20, 0.14), 0 0 0 1px rgba(10, 26, 20, 0.04);
  border-radius: var(--radius-lg);
  padding: 16px;
  z-index: 1100;
  transition: opacity 0.3s var(--ease-out), transform 0.35s var(--ease-spring), visibility 0.3s;
  min-width: 340px;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Mega Dropdown Specifics */
.nav-dropdown--mega {
  width: 620px;
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.96);
  padding: 20px;
}

.nav-item--dropdown:hover .nav-dropdown--mega {
  transform: translateX(-50%) translateY(0) scale(1);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-column--featured {
  padding-right: 14px;
  border-right: 1px solid var(--border-color);
}

.dropdown-section-title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
  padding-left: 4px;
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.dropdown-see-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
  transition: color 0.2s ease;
}

.dropdown-see-all:hover {
  color: var(--accent);
}

/* Dropdown Grids */
.dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dropdown-grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 520px;
}

/* Dropdown Card Link */
.dropdown-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
  border: 1px solid transparent;
  background: transparent;
}

.dropdown-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--border-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 26, 20, 0.06);
}

.dropdown-card--highlight {
  background: linear-gradient(135deg, rgba(15, 160, 144, 0.08), rgba(212, 168, 83, 0.08));
  border: 1px solid rgba(15, 160, 144, 0.2);
}

.dropdown-card--highlight:hover {
  background: linear-gradient(135deg, rgba(15, 160, 144, 0.15), rgba(212, 168, 83, 0.15));
  border-color: var(--accent);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring), background 0.3s ease, color 0.3s ease;
}

.dropdown-card:hover .dropdown-icon {
  transform: scale(1.08);
  background: var(--accent);
  color: #fff;
}

.dropdown-icon i {
  width: 18px;
  height: 18px;
}

.dropdown-icon--teal {
  background: var(--accent);
  color: #fff;
}

.dropdown-icon--gold {
  background: var(--gold);
  color: #fff;
}

.dropdown-card-body {
  flex: 1;
}

.dropdown-card-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  line-height: 1.3;
}

.dropdown-card-desc {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-top: 2px;
}

.card-badge {
  font-size: 8.5px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  text-transform: uppercase;
}

.card-badge--teal {
  background: var(--accent-dark);
  color: #fff;
}

/* Mega Footer */
.mega-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mega-footer-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-secondary);
}

.mega-footer-text i {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

.mega-footer-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.mega-footer-btn:hover {
  color: var(--accent);
}

/* Action Controls & Currency */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Never shrinks to cause overflow */
  flex-shrink: 0;
  min-width: 0;
}

.currency-wrap {
  position: relative;
}

.currency-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 7px 12px 7px 14px;
  transition: border-color 0.3s ease;
}

.currency-btn:hover {
  border-color: var(--border-hover);
}

.currency-btn i {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.currency-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 130px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  padding: 4px 0;
  z-index: 1200;
}

.currency-dropdown.hidden {
  display: none;
}

.currency-opt {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  transition: background 0.2s ease;
  text-align: left;
}

.currency-opt:hover {
  background: var(--bg-secondary);
}

.currency-opt span:last-child {
  opacity: 0.35;
}

.nav-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-account-btn:hover {
  border-color: var(--border-hover);
  background: var(--accent-subtle);
}

.nav-account-btn i {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px 10px 20px;
  border-radius: var(--radius-full);
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 4px 18px rgba(10, 26, 20, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent-dark);
  color: #fff;
}

.nav-cta i {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-cta:hover i {
  transform: rotate(45deg);
}

.nav-mobile-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  transition: border-color 0.35s var(--ease-out), background-color 0.35s var(--ease-out), transform 0.35s var(--ease-spring);
}

.nav-mobile-btn:hover {
  border-color: var(--border-hover);
  background: var(--accent-subtle);
}

.nav-mobile-btn:active {
  transform: scale(0.92);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2.5px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.45s var(--ease-spring), opacity 0.25s var(--ease-out), background-color 0.35s var(--ease-out);
  transform-origin: center;
}

.nav-mobile-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-mobile-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-mobile-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ════════════════ FULL-COVERAGE MOBILE DRAWER ════════════════ */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 13, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-drawer.is-active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.mobile-drawer-close:hover {
  background: var(--bg-secondary);
  transform: rotate(90deg);
}

.mobile-drawer-close i {
  width: 20px;
  height: 20px;
}

.mobile-drawer-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-content::-webkit-scrollbar {
  width: 5px;
}

.mobile-drawer-content::-webkit-scrollbar-thumb {
  background: rgba(10, 26, 20, 0.15);
  border-radius: 99px;
}

/* Accordions inside Mobile Drawer */
.mobile-accordion {
  flex-shrink: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(10, 26, 20, 0.03);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.mobile-accordion.is-open {
  border-color: rgba(15, 160, 144, 0.35);
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(10, 26, 20, 0.06);
}

.mobile-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
}

.mobile-accordion-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-accordion-label i {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
}

.mobile-accordion-icon {
  width: 18px;
  height: 18px;
  opacity: 0.5;
  transition: transform 0.35s var(--ease-spring);
}

.mobile-accordion.is-open .mobile-accordion-icon {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent);
}

.mobile-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px;
}

.mobile-accordion.is-open .mobile-accordion-body {
  max-height: 1000px;
  padding: 4px 12px 14px;
}

.mobile-sublink {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-sublink:hover {
  background: var(--bg-secondary);
}

.mobile-sublink.highlight {
  background: rgba(15, 160, 144, 0.08);
  border: 1px solid rgba(15, 160, 144, 0.2);
}

.mobile-sublink i {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
  margin-top: 2px;
  flex-shrink: 0;
}

.mobile-sublink strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-primary);
  line-height: 1.3;
}

.mobile-sublink small {
  display: block;
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-top: 1px;
}

.mobile-nav-single {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 4px rgba(10, 26, 20, 0.03);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-nav-single:hover {
  background: var(--bg-secondary);
  border-color: rgba(15, 160, 144, 0.25);
}

.mobile-nav-single i {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
}

.mobile-drawer-footer {
  flex-shrink: 0;
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.85);
}

.mobile-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(12, 131, 120, 0.25);
  transition: background 0.3s ease, transform 0.2s ease;
}

.mobile-drawer-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.mobile-drawer-cta i {
  width: 18px;
  height: 18px;
}

/* ─── Nav Responsive Breakpoints ─── */

/* Tablet / small desktop: hide nav links, show hamburger */
@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .nav-cta--desktop {
    display: none;
  }
  .nav-account-label {
    display: none;
  }
  .nav-mobile-btn {
    display: flex;
  }
  .nav-brand-sub {
    display: none;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-btn {
    display: flex;
    flex-shrink: 0;
  }

  .nav-brand-sub {
    display: none;
  }

  .nav-cta--desktop {
    display: none;
  }

  .nav-logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-brand {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    font-size: 19px;
  }

  /* Account btn: icon only on tablet */
  .nav-account-label {
    display: none;
  }

  .nav-account-btn {
    padding: 7px 10px;
  }
}

/* Mobile large: 768px and below */
@media (max-width: 768px) {
  .nav-inner {
    margin-top: 10px;
    padding: 0 16px;
    height: 60px;
    border-radius: var(--radius-md);
  }

  .nav-inner.scrolled {
    margin-top: 6px;
    height: 54px;
  }

  .nav-logo img {
    width: 36px;
    height: 36px;
    min-width: 32px;
  }

  .nav-brand {
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .nav-actions {
    gap: 8px;
  }

  .currency-btn {
    padding: 6px 10px 6px 12px;
    font-size: 11px;
  }

  /* Account btn icon only */
  .nav-account-btn {
    padding: 7px 10px;
  }
}

/* Mobile small: 480px and below */
@media (max-width: 480px) {
  .nav-inner {
    margin-top: 8px;
    padding: 0 12px;
    height: 56px;
    border-radius: var(--radius-sm);
  }

  .nav-inner.scrolled {
    margin-top: 5px;
    height: 50px;
  }

  .nav-logo {
    gap: 6px;
  }

  .nav-logo img {
    width: 32px;
    height: 32px;
    min-width: 28px;
  }

  .nav-brand {
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .nav-actions {
    gap: 6px;
  }

  .currency-btn {
    padding: 5px 8px 5px 10px;
    gap: 3px;
    font-size: 11px;
  }

  .currency-btn i {
    width: 11px;
    height: 11px;
  }

  /* Account btn: icon only, tighter padding */
  .nav-account-btn {
    padding: 6px 9px;
    gap: 0;
  }

  .nav-mobile-btn {
    width: 38px;
    height: 38px;
  }

  .hamburger-line {
    width: 17px;
  }
}

/* Mobile XS: 360px and below */
@media (max-width: 360px) {
  .nav-inner {
    padding: 0 10px;
    height: 52px;
  }

  .nav-logo img {
    width: 28px;
    height: 28px;
    min-width: 24px;
  }

  .nav-brand {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .nav-actions {
    gap: 5px;
  }

  /* Hide currency label text, show icon only */
  .currency-btn {
    padding: 6px 8px;
    gap: 0;
  }

  #currency-label {
    display: none;
  }

  .currency-btn i {
    width: 12px;
    height: 12px;
    opacity: 0.7;
  }

  .nav-account-btn {
    padding: 6px 8px;
  }

  .nav-mobile-btn {
    width: 34px;
    height: 34px;
  }

  .hamburger-line {
    width: 15px;
  }
}

/* Mobile menu legacy helper classes */
.mobile-menu a i {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  background: var(--accent-subtle);
}

.mobile-menu a.current {
  background: var(--accent-subtle);
  color: var(--accent-dark);
}

.mobile-menu a.current i {
  color: var(--accent-dark);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 14px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(10, 26, 20, 0.2);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), background-color 0.3s ease;
}

.mobile-menu-cta i {
  width: 15px;
  height: 15px;
}

.mobile-menu-cta:active {
  background: var(--accent-dark);
  transform: scale(0.97);
}

/* ═══════════════════════════════════════════════════
           ROUTE RAIL (side navigation dots)
           ═══════════════════════════════════════════════════ */
#route-rail {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
}

#route-rail .rail-line {
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(var(--text-primary) 55%, transparent 0%);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  opacity: 0.2;
}

#route-rail button {
  display: block;
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 99px;
  border: 1.5px solid rgba(10, 26, 20, 0.3);
  background: transparent;
  margin: 28px 0;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

#route-rail button.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-subtle);
}

#route-rail button:hover {
  border-color: var(--accent);
}

#route-rail .rail-label {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

#route-rail button:hover .rail-label,
#route-rail button.active .rail-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 1280px) {
  #route-rail {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   HERO – Optimized 2026
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0f0d;
  /* fallback colour while video loads */
}

/* Background container – no superfluous transforms */
.hero-bg {
  position: absolute;
  inset: 0;
}

/* Video styling – use a subtle, hardware-accelerated zoom */
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Very gentle zoom to keep the sense of motion without jank */
  animation: kenburnsOpt 30s ease-in-out infinite alternate;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Overlay – solid gradient, NO backdrop-filter blur */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 10, 8, 0.82) 0%,
    rgba(10, 15, 13, 0.55) 40%,
    rgba(10, 15, 13, 0.45) 100%
  );
  /* Removed backdrop-filter: blur() to save GPU */
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-label-line {
  width: 32px;
  height: 1px;
  background: var(--accent-light);
}

.hero-label span:last-child {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 0.95;
  color: var(--text-inverse);
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-subtitle {
  margin-top: 20px;
  max-width: 440px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.5);
}

.trust-badge i {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
}

.trust-badge-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--gold);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
  }

  .hero-label {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .btn-ghost {
    display: none;
  }
}

/* ═══════ OPTIMIZED KENBURNS (smooth & low‑cost) ═══════ */
@keyframes kenburnsOpt {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    /* very subtle zoom + pan – less than 2% in each axis */
    transform: translate3d(-0.8%, -1%, 0) scale(1.04);
  }
}

/* Reduced motion: disable all animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .hero-bg video {
    animation: none;
    transform: none;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════
           SEARCH PANEL
           ═══════════════════════════════════════════════════ */
.search-panel-wrap {
  scroll-margin-top: 100px;
}

.search-panel {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: 20px;
  position: relative;
  overflow: hidden;
  animation:
    borderGlow 3.5s ease-in-out infinite,
    float 6s ease-in-out infinite;
}

.search-panel-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  z-index: 1;
}

.search-panel-shimmer::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 55%,
    transparent 65%
  );
  animation: shimmer 5s ease-in-out infinite;
}

.search-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.search-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(10, 26, 20, 0.12);
  background: rgba(10, 26, 20, 0.03);
  color: var(--text-tertiary);
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.search-tab i {
  width: 14px;
  height: 14px;
}

.search-tab:hover {
  border-color: var(--border-hover);
  color: var(--text-secondary);
  background: var(--accent-subtle);
}

.search-tab[data-active="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.search-panel-content {
  position: relative;
  z-index: 2;
  display: none;
}

.search-panel-content.active {
  display: block;
  animation: fadeSlideUp 0.4s var(--ease-out) forwards;
}

.field-row {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.field-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.field-row--2 {
  grid-template-columns: 1fr 1fr;
}

.field-group {
  margin-bottom: 12px;
}

.field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 5px;
  margin-left: 4px;
}

.field-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}

.field-value {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.field-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(10, 26, 20, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 26, 20, 0.06);
  transition: all 0.3s ease;
}

.field-input-wrap:focus-within {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 3px rgba(15, 160, 144, 0.08);
}

.field-input-wrap i {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.field-input-wrap select,
.field-input-wrap input {
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.field-input-wrap select option {
  background: #fff;
  color: var(--text-primary);
}

.field-input-wrap input::placeholder {
  color: var(--text-tertiary);
}

.field-input-wrap input[type="date"] {
  cursor: pointer;
}

/* ═══════ COMPACT STEPPERS ═══════ */
.compact-stepper-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.compact-stepper-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: rgba(10, 26, 20, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 26, 20, 0.08);
  height: 42px;
  transition: all 0.3s ease;
}

.compact-stepper-control:focus-within,
.compact-stepper-control:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.c-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(10, 26, 20, 0.12);
  background: #ffffff;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.c-btn:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: scale(1.06);
}

.c-btn:active {
  transform: scale(0.94);
}

.c-btn i {
  width: 13px;
  height: 13px;
}

.c-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 24px;
  text-align: center;
}

.tier-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.tier-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.tier-grid--2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .tier-grid--4,
  .tier-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .field-row--3,
  .field-row--2 {
    grid-template-columns: 1fr !important;
  }
}

.tier-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(10, 26, 20, 0.1);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tier-pill:hover {
  border-color: var(--border-hover);
}

.tier-pill[data-active="true"] {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.search-btn {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-sm);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.35s var(--ease-out);
  margin-top: 4px;
}

.search-btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.search-btn i {
  width: 14px;
  height: 14px;
}

.result-card {
  margin-top: 12px;
  padding: 16px;
  background: var(--bg-dark);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
}

.result-card.hidden {
  display: none;
}

.result-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.result-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-light);
}

.result-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-inverse-muted);
}

.result-price {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 600;
  margin-top: 6px;
}

.result-route {
  font-family: var(--font-display);
  font-size: 18px;
  margin-top: 8px;
  line-height: 1.4;
}

.result-blurb {
  font-size: 12px;
  color: var(--text-inverse-muted);
  line-height: 1.6;
  margin-top: 8px;
}

.result-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}

.result-cta:hover {
  background: var(--accent-light);
}

.result-cta i {
  width: 14px;
  height: 14px;
}

.lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lang-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(10, 26, 20, 0.1);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.lang-chip[data-active="true"] {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background: #dce7e1;
  margin-top: 8px;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--text-primary);
  border: 3px solid var(--accent-light);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.range-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--text-primary);
  border: 3px solid var(--accent-light);
  cursor: pointer;
}

@media (max-width: 640px) {
  .field-row--3,
  .field-row--2 {
    grid-template-columns: 1fr;
  }

  .search-panel {
    padding: 16px;
  }

  .search-panel-shimmer {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
           WHY YANKOLANKA — BENTO
           ═══════════════════════════════════════════════════ */
.bento-section {
  padding: var(--section-py) 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 48px;
}

.section-header--split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 56px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.bento-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.bento-card--large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 32px;
}

.bento-card--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
  border-color: transparent;
}

.bento-card--gradient {
  background: linear-gradient(135deg, var(--accent), #155a47);
  color: #fff;
  border-color: transparent;
}

.bento-card--wide {
  grid-column: span 2;
}

.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bento-icon i {
  width: 18px;
  height: 18px;
}

.bento-card--dark .bento-icon {
  background: rgba(255, 255, 255, 0.08);
}

.bento-card--gradient .bento-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
}

.bento-card--large h3 {
  font-size: 32px;
}

.bento-card p {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 10px;
  max-width: 320px;
}

.bento-card--dark p {
  color: var(--text-inverse-muted);
}

.bento-card--gradient p {
  color: rgba(255, 255, 255, 0.75);
}

.bento-stat {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.bento-stat-unit {
  font-size: 16px;
  color: var(--accent-light);
}

.reroute-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid rgba(15, 160, 144, 0.3);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  transition: all 0.3s ease;
}

.reroute-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.reroute-btn i {
  width: 12px;
  height: 12px;
}

.route-path {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.route-path.active {
  opacity: 1;
}

.route-path path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}

.route-path.active path {
  stroke-dashoffset: 0;
}

.marker-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 rgba(15, 160, 144, 0.6);
  animation: pulse 2.2s infinite;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card--large,
  .bento-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ═══════════════════════════════════════════════════
           PRICE ESTIMATOR
           ═══════════════════════════════════════════════════ */
.estimator-section {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: start;
}

.est-controls {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.est-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.est-days-display {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.est-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.est-tier-card {
  text-align: left;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all 0.3s ease;
  cursor: pointer;
}

.est-tier-card:hover {
  border-color: var(--border-hover);
}

.est-tier-card[data-active="true"] {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.est-tier-card i {
  width: 18px;
  height: 18px;
  margin-bottom: 10px;
  display: block;
}

.est-tier-name {
  font-size: 14px;
  font-weight: 600;
}

.est-tier-rate {
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: 0.55;
  margin-top: 4px;
}

.est-tier-card[data-active="true"] .est-tier-rate {
  opacity: 0.6;
}

.est-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.est-addon:has(input:checked) {
  border-color: var(--accent);
  background: rgba(15, 160, 144, 0.04);
}

.est-addon-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.est-addon-left input {
  width: 16px;
  height: 16px;
  accent-color: var(--text-primary);
}

.est-addon-name {
  font-size: 13.5px;
  font-weight: 500;
}

.est-addon-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

.est-sticky {
  position: sticky;
  top: 100px;
}

.est-panel {
  border-radius: var(--radius-xl);
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.est-panel-amount {
  display: flex;
  align-items: start;
  gap: 4px;
  margin-top: 12px;
}

.est-panel-symbol {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent-light);
  margin-top: 10px;
}

.est-panel-total {
  font-family: var(--font-mono);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
}

.est-breakdown {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.est-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-inverse-muted);
}

.est-panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}

.est-panel-cta:hover {
  background: var(--accent-light);
}

.est-panel-cta i {
  width: 16px;
  height: 16px;
}

.est-panel-note {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-inverse-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .estimator-grid {
    grid-template-columns: 1fr;
  }

  .est-sticky {
    position: static;
  }
}

@media (max-width: 640px) {
  .est-tier-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
           DESTINATIONS GALLERY
           ═══════════════════════════════════════════════════ */
.gallery-section {
  padding: var(--section-py) 0;
}

.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 clamp(16px, 3vw, 48px) 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.dest-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: clamp(260px, 26vw, 340px);
  cursor: pointer;
}

.dest-card-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  filter: saturate(1.05) contrast(1.02) brightness(0.95);
}

.dest-card:hover .dest-card-img img {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 13, 0.15) 0%,
    transparent 40%,
    rgba(10, 15, 13, 0.55) 100%
  );
  pointer-events: none;
}

.dest-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--text-primary);
  padding: 5px 10px;
  border-radius: var(--radius-full);
}

.dest-card-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 12px;
}

.dest-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.dest-card-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

/* Route Map Section */
.route-map-section {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 24px;
}

.route-stop-list {
  display: flex;
  flex-direction: column;
}

.route-stop-item {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background 0.2s ease;
}

.route-stop-item:hover {
  background: var(--accent-subtle);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 8px;
}

.route-stop-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.route-stop-item:hover .route-stop-num {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.route-stop-name {
  font-size: 14px;
  font-weight: 600;
}

.route-stop-blurb {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 2px;
}

#route-map {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  z-index: 0;
}

.route-search-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.route-search-row .field-input-wrap {
  flex: 1;
  margin-bottom: 0;
}

.route-add-btn {
  flex-shrink: 0;
  width: auto;
  padding: 0 16px;
  margin-top: 0;
  border-radius: var(--radius-sm);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.35s var(--ease-out);
}

.route-add-btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.route-add-btn i {
  width: 14px;
  height: 14px;
}

.route-stop-remove {
  margin-left: auto;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all 0.2s ease;
}

.route-stop-remove:hover {
  background: rgba(200, 60, 60, 0.12);
  color: #c83c3c;
}

.route-stop-remove i {
  width: 13px;
  height: 13px;
  pointer-events: none;
}

#route-finish-btn {
  margin-top: 18px;
}

/* Google Places autocomplete dropdown sits above our glass panels */
.pac-container {
  z-index: 10000;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .route-map-section {
    grid-template-columns: 1fr;
  }

  .route-stop-list {
    order: 2;
  }

  #route-map {
    height: 360px;
  }
}

/* ═══════════════════════════════════════════════════
           DEALS SECTION
           ═══════════════════════════════════════════════════ */
.deals-section {
  padding: var(--section-py) 0;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.deal-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  padding: 28px;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s ease;
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.deal-card-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.deal-card-shimmer::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(15, 160, 144, 0.06) 45%,
    rgba(15, 160, 144, 0.12) 50%,
    rgba(15, 160, 144, 0.06) 55%,
    transparent 65%
  );
  animation: shimmer 6s ease-in-out infinite;
}

.deal-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.deal-badge--save {
  background: #e8f5e9;
  color: #2e7d32;
}

.deal-badge--popular {
  background: #fff3e0;
  color: #e65100;
}

.deal-badge--instant {
  background: var(--accent-subtle);
  color: var(--accent-dark);
}

.deal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.deal-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
}

.deal-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  transition: color 0.3s ease;
}

.deal-cta:hover {
  color: var(--accent);
}

.deal-cta i {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.deal-cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .deals-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
           FLEET SECTION
           ═══════════════════════════════════════════════════ */
.fleet-section {
  padding: var(--section-py) 0;
  background: var(--bg-dark);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fleet-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.fleet-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.85);
}

.fleet-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 13, 0.3) 0%,
    transparent 40%,
    rgba(10, 15, 13, 0.2) 100%
  );
}

.fleet-card-body {
  padding: 20px;
}

.fleet-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
}

.fleet-card-detail {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-light);
  margin-top: 4px;
}

.fleet-card-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.fleet-lang-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 4px 10px;
}

.fleet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
}

.fleet-card-stars {
  color: var(--gold);
  font-size: 12px;
}

@media (max-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
           TESTIMONIALS
           ═══════════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-py) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(15, 160, 144, 0.25);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  margin-top: -8px;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
}

.testimonial-origin {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
  margin-top: 2px;
  text-transform: uppercase;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
           FAQ
           ═══════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-py) 0;
}

.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  gap: 16px;
}

.faq-trigger span {
  font-size: 15px;
  font-weight: 500;
}

.faq-trigger i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-panel p {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════ */
.footer {
  background: var(--bg-darker);
  color: var(--text-inverse);
  padding-top: 80px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 3fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.08em;
}

.footer-desc {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-inverse-muted);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.footer-social i {
  width: 16px;
  height: 16px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-inverse-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.65);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-newsletter-desc {
  font-size: 13px;
  color: var(--text-inverse-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-inverse);
  outline: none;
  transition: border-color 0.3s ease;
}

.footer-newsletter-input::placeholder {
  color: rgba(245, 240, 232, 0.25);
}

.footer-newsletter-input:focus {
  border-color: var(--accent-light);
}

.footer-newsletter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer-newsletter-btn:hover {
  background: var(--accent-light);
}

.footer-newsletter-btn i {
  width: 16px;
  height: 16px;
}

.footer-newsletter-msg {
  margin-top: 8px;
  font-size: 12px;
  color: var(--accent-light);
  display: none;
}

.footer-newsletter-msg.show {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-payments {
  display: flex;
  gap: 8px;
}

.footer-payment {
  font-family: var(--font-mono);
  font-size: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 4px 8px;
  color: var(--text-inverse-muted);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-inverse-muted);
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact i {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
}

.footer-copy {
  padding: 0 0 32px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(245, 240, 232, 0.2);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════
           ANIMATIONS
           ═══════════════════════════════════════════════════ */
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.12) translate(-1.5%, -2%);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow:
      0 0 18px var(--accent-glow),
      0 8px 28px rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow:
      0 0 32px rgba(15, 160, 144, 0.5),
      0 0 64px rgba(15, 160, 144, 0.2),
      0 8px 28px rgba(0, 0, 0, 0.2);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) skewX(-25deg);
  }

  100% {
    transform: translateX(250%) skewX(-25deg);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderGlow {
  0%,
  100% {
    border-color: rgba(15, 160, 144, 0.2);
    box-shadow: 0 0 12px rgba(15, 160, 144, 0.05);
  }

  50% {
    border-color: rgba(15, 160, 144, 0.5);
    box-shadow: 0 0 24px rgba(15, 160, 144, 0.12);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 160, 144, 0.55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(15, 160, 144, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(15, 160, 144, 0);
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger.visible > *:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-stagger.visible > *:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal-stagger.visible > *:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal-stagger.visible > *:nth-child(5) {
  transition-delay: 0.33s;
}

.reveal-stagger.visible > *:nth-child(6) {
  transition-delay: 0.4s;
}

section[id] {
  scroll-margin-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
