/* ==========================================================
   Wandertrup Holidays — Website Theme
   Palette pulled from brand logo: deep navy + warm orange.
   Display face: Poppins (confident, geometric — travel/education brand)
   Body face: Inter (clean, highly readable for institutional buyers)
   Signature motif: dotted travel-route line in the hero, echoed as the
   connector in the "how booking works" process strip.
   ========================================================== */

:root {
  --navy-950: #0d2036;
  --navy-900: #14324a;
  --navy-800: #1e4662;
  --navy-700: #2a5c80;
  --orange-600: #b5610a;
  --orange-500: #de7c09;
  --orange-400: #f4a340;
  --orange-100: #fdecd3;

  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #16232f;
  --text-muted: #647184;
  --border: #e4e9f1;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(13, 32, 54, 0.06);
  --shadow: 0 8px 28px rgba(13, 32, 54, 0.10);
  --shadow-lg: 0 20px 48px rgba(13, 32, 54, 0.16);

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo { font-family: var(--font-display); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Navbar ---------- */
.navbar {
  background: linear-gradient(135deg, rgba(13,32,54,0.98), rgba(20,50,74,0.96));
  backdrop-filter: blur(16px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(6,17,36,0.24);
}
.navbar::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange-500), var(--orange-400), var(--orange-500), transparent);
  opacity: 0.9;
}
.navbar { position: sticky; }
.navbar .logo { display: flex; align-items: center; transition: transform .2s ease; }
.navbar .logo:hover { transform: scale(1.04); }
.navbar .logo-img { height: 44px; width: auto; border-radius: 6px; }

.navbar nav { display: flex; align-items: center; gap: 28px; }
.navbar nav ul { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.navbar nav ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
  position: relative;
  padding: 10px 16px;
  border-radius: 8px;
  transition: opacity .25s ease, background .25s ease, color .25s ease;
}
.navbar nav ul li a::after {
  content: '';
  position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2.5px; background: linear-gradient(90deg, var(--orange-400), var(--orange-500));
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  border-radius: 2px;
}
.navbar nav ul li a:hover { 
  opacity: 1; 
  background: rgba(255,165,0, 0.12);
  color: var(--orange-300);
}
.navbar nav ul li a:hover::after { transform: scaleX(1); }
.cta-buttons-desktop .btn-outline {
  border-width: 1.5px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.cta-buttons-desktop .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,255,255,0.12);
}

.cta-buttons { display: flex; gap: 10px; align-items: center; }
.cta-buttons-mobile { display: none; }
.nav-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  box-shadow: 0 6px 16px rgba(222, 124, 9, 0.35);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(222, 124, 9, 0.45); }
.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* Outline variant used on light backgrounds (cards) */
.itinerary-card .btn-outline, .value-card .btn-outline {
  border-color: var(--navy-800); color: var(--navy-800);
}
.itinerary-card .btn-outline:hover, .value-card .btn-outline:hover {
  background: var(--navy-800); color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #fff;
  padding: 96px 32px 84px;
  text-align: center;
}
/* Background image carousel — 4 slides, auto crossfade + slow zoom */
.hero-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-carousel .slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideFade 20s infinite;
}
.hero-carousel .slide:nth-child(1) { animation-delay: 0s; }
.hero-carousel .slide:nth-child(2) { animation-delay: 5s; }
.hero-carousel .slide:nth-child(3) { animation-delay: 10s; }
.hero-carousel .slide:nth-child(4) { animation-delay: 15s; }
@keyframes heroSlideFade {
  0%   { opacity: 0; transform: scale(1.06); }
  4%   { opacity: 1; }
  22%  { opacity: 1; transform: scale(1.12); }
  27%  { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; }
}
/* Dark overlay so text stays readable over photos */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(222,124,9,0.16), transparent 60%),
    linear-gradient(150deg, rgba(6,17,36,0.55) 0%, rgba(10,24,46,0.48) 55%, rgba(16,34,58,0.42) 100%);
}
/* Signature motif: dotted travel-route line with waypoint dots */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, black, transparent 75%);
}
.hero-route {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.5; pointer-events: none;
}
.hero .hero-inner { position: relative; z-index: 3; }
.hero .eyebrow-group {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px;
}
.hero .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--orange-400);
  background: rgba(222,124,9,0.14); padding: 6px 16px; border-radius: 999px;
  border: 1px solid rgba(222,124,9,0.3);
}
.hero h1 { font-size: 44px; font-weight: 700; margin: 0 0 14px; letter-spacing: -0.01em; text-shadow: 0 2px 12px rgba(0,0,0,0.45); }
.hero .hero-segments { font-size: 17px; font-weight: 600; color: #fff; max-width: 660px; margin: 0 auto 6px; text-shadow: 0 2px 10px rgba(0,0,0,0.45); }
.hero .hero-browse { font-size: 15px; color: #cfd8e6; max-width: 640px; margin: 0 auto 32px; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Section wrapper ---------- */
.section { padding: 68px 32px; max-width: 1200px; margin: 0 auto; }
.section h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; color: var(--navy-900); letter-spacing: -0.01em; }
.section .subtext { color: var(--text-muted); margin-bottom: 36px; max-width: 560px; }

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Value points ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.value-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  animation: fadeUpIn .7s cubic-bezier(.2,.7,.3,1) both;
}
/* Gentle stagger so cards in a row don't all land at once */
.value-grid .value-card:nth-child(1) { animation-delay: 0s; }
.value-grid .value-card:nth-child(2) { animation-delay: .1s; }
.value-grid .value-card:nth-child(3) { animation-delay: .2s; }
.value-grid .value-card:nth-child(4) { animation-delay: .3s; }
.value-grid .value-card:nth-child(5) { animation-delay: .4s; }
.value-grid .value-card:nth-child(6) { animation-delay: .5s; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.value-card h3 { color: var(--navy-900); font-size: 17px; margin: 0 0 8px; font-weight: 600; }
.value-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ---------- Itinerary grid / cards ---------- */
/* Featured Itineraries section background */
.section:not(.section-segments) {
  background: linear-gradient(135deg, var(--bg) 0%, #eef2f8 50%, #e8ecf4 100%);
  border-radius: var(--radius-lg);
  transition: background .4s ease;
}
.section:not(.section-segments):hover {
  background: linear-gradient(135deg, #f0f3fa 0%, #e6ecf6 50%, #dfe8f2 100%);
}

/* Featured Itineraries heading with line effect */
.section:not(.section-segments) h2 {
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
}
.section:not(.section-segments) h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 1.5px;
  width: 40%;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  transform: scaleX(0) translateX(-50%);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.section:not(.section-segments) h2:hover::after {
  transform: scaleX(1) translateX(-50%);
}

.filters-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 30px; background: var(--surface);
  padding: 16px; border-radius: var(--radius); border: 1px solid var(--border);
}
.filters-bar select, .filters-bar input {
  padding: 9px 14px; border-radius: 999px; border: 1px solid var(--border);
  font-size: 13.5px; font-family: var(--font-body); background: var(--bg); color: var(--text);
}
.filters-bar select:focus, .filters-bar input:focus { border-color: var(--orange-500); }

.itinerary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.itinerary-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
}
.itinerary-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 20px 40px rgba(222, 124, 9, 0.18), 0 8px 16px rgba(13,32,54,0.12);
  border-color: rgba(222, 124, 9, 0.2);
}
.itinerary-card .cover {
  height: 175px; background-size: cover; background-position: center;
  background-color: #dde4ee; position: relative;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), filter .4s ease;
}
.itinerary-card:hover .cover { 
  transform: scale(1.06);
  filter: brightness(1.05);
}
.itinerary-card .body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.itinerary-card h3 { font-size: 16px; margin: 0 0 6px; color: var(--navy-900); font-weight: 600; }
.itinerary-card .meta { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.itinerary-card .price { font-weight: 700; color: var(--orange-600); margin-bottom: 14px; font-size: 15px; }
.itinerary-card .card-actions { margin-top: auto; display: flex; gap: 8px; }
.itinerary-card .card-actions .btn { flex: 1; padding: 9px 14px; font-size: 13px; }

/* ---------- Segment picker cards (home) ---------- */
.section-segments {
  background: linear-gradient(135deg, var(--bg) 0%, #eef2f8 50%, #e8ecf4 100%);
  border-radius: var(--radius-lg);
  transition: background .4s ease;
}
.section-segments:hover {
  background: linear-gradient(135deg, #f0f3fa 0%, #e6ecf6 50%, #dfe8f2 100%);
}
/* Heading + subtext entrance — pure CSS, no JS required */
.section-segments h2 { 
  animation: fadeUpIn .6s cubic-bezier(.2,.7,.3,1) both; 
  position: relative; 
  padding-bottom: 18px; 
  display: inline-block;
  font-size: 40px;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.section-segments h2::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400), var(--orange-500));
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.section-segments h2:hover::after { transform: scaleX(1); }
@keyframes underlineGrow { to { transform: scaleX(1); } }
.section-segments .section-eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange-600);
  background: var(--orange-100); padding: 5px 14px; border-radius: 999px;
  margin-bottom: 14px;
  animation: fadeUpIn .5s cubic-bezier(.2,.7,.3,1) both;
}
.section-segments .subtext { animation: fadeUpIn .6s cubic-bezier(.2,.7,.3,1) .1s both; }
.segment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.segment-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 34px 28px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
  display: block; text-decoration: none;
  animation: fadeUpIn .7s cubic-bezier(.2,.7,.3,1) both;
}
/* Gentle stagger so cards don't all land at once */
.segment-grid .segment-card:nth-child(1) { animation-delay: .15s; }
.segment-grid .segment-card:nth-child(2) { animation-delay: .25s; }
.segment-grid .segment-card:nth-child(3) { animation-delay: .35s; }
.segment-grid .segment-card:nth-child(4) { animation-delay: .45s; }
.segment-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--accent-fg, var(--orange-500)), var(--accent-fg, var(--orange-500)) 70%, transparent);
  transform: scaleY(0); transform-origin: top; transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.segment-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 52px color-mix(in srgb, var(--accent-fg, var(--orange-500)) 26%, transparent),
              0 12px 24px rgba(13,32,54,0.12);
  border-color: color-mix(in srgb, var(--accent-fg, var(--orange-500)) 50%, transparent);
}
.segment-card:hover::before { transform: scaleY(1); }
.segment-card .icon-badge {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 18px; font-size: 28px;
  background: linear-gradient(135deg, var(--accent-bg, var(--orange-100)), color-mix(in srgb, var(--accent-bg, var(--orange-100)) 70%, transparent));
  margin-bottom: 20px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
  animation: iconFloat 3.4s ease-in-out infinite;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-fg, var(--orange-500)) 15%, transparent);
}
.segment-grid .segment-card:nth-child(1) .icon-badge { animation-delay: 0s; }
.segment-grid .segment-card:nth-child(2) .icon-badge { animation-delay: .3s; }
.segment-grid .segment-card:nth-child(3) .icon-badge { animation-delay: .6s; }
.segment-grid .segment-card:nth-child(4) .icon-badge { animation-delay: .9s; }
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.segment-card:hover .icon-badge {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-fg, var(--orange-500)) 35%, transparent);
  animation-play-state: paused;
}
.segment-card h3 { font-size: 18px; color: var(--navy-900); margin: 0 0 8px; font-weight: 700; }
.segment-card .desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin: 0 0 18px; }
.segment-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-fg, var(--orange-600)); font-weight: 600; font-size: 13.5px;
}
.segment-card .arrow-icon { transition: transform .25s ease; display: inline-block; }
.segment-card:hover .arrow-icon { transform: translateX(5px); }

/* ---------- Process strip ---------- */
.process-strip { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; position: relative; }
.process-strip::before {
  content: ''; position: absolute; top: 18px; left: 5%; right: 5%; height: 2px;
  background-image: linear-gradient(90deg, var(--border) 50%, transparent 50%);
  background-size: 12px 2px; z-index: 0;
}
.process-step { flex: 1; min-width: 140px; text-align: center; position: relative; z-index: 1; }
.process-step .num {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin: 0 auto 12px; box-shadow: 0 4px 12px rgba(222,124,9,0.3);
}
.process-step div:last-child { font-size: 13.5px; font-weight: 500; color: var(--navy-900); }

/* ---------- Trust stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.stat-card {
  text-align: center; padding: 26px; background: var(--navy-900); border-radius: var(--radius);
  color: #fff;
}
.stat-card .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--orange-400); }
.stat-card .label { font-size: 13px; color: #cfd8e6; margin-top: 4px; }

/* ---------- Partner logo marquee ---------- */
.logo-marquee{
    width:100%;
    overflow:hidden;
    background:#fff;          /* Pure white background */
    padding:25px 0;
    margin-top:30px;
    border:none;
    box-shadow:none;
}
.logo-track{
    display:flex;
    align-items:center;
    gap:70px;                 /* More spacing */
    width:max-content;
    animation:scrollLogos 35s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }

.logo-track img{
    height:110px;              /* Increase logo size */
    width:auto;
    object-fit:contain;
    background:transparent;
    filter:none;              /* Keep original colors */
    opacity:1;
    transition:transform .3s ease;
}
.logo-track img:hover{
    transform:scale(1.1);
}

@keyframes scrollLogos{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
  .logo-marquee { overflow-x: auto; }
}

/* ---------- Itinerary See More gate ---------- */
.itinerary-locked {
  position: relative; max-height: 90px; overflow: hidden; margin-top: 4px;
}
.itinerary-locked .itinerary-locked-inner {
  filter: blur(4px); user-select: none; pointer-events: none;
}
.itinerary-locked .itinerary-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(to bottom, rgba(246,248,251,0), var(--bg) 80%);
}
.itinerary-locked.revealed { max-height: none; overflow: visible; }
.itinerary-locked.revealed .itinerary-locked-inner { filter: none; user-select: text; pointer-events: auto; }
.itinerary-locked.revealed .itinerary-fade { display: none; }
.itinerary-gate {
  margin-top: 18px; padding: 22px; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.itinerary-gate.hidden { display: none; }
.itinerary-unlocked-msg {
  margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--orange-100); color: var(--navy-900); font-weight: 600; font-size: 14px;
}

/* ---------- Forms / modal ---------- */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(13,32,54,0.6);
  align-items: center; justify-content: center; z-index: 1000; backdrop-filter: blur(2px);
}
.modal-overlay.active { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--surface); border-radius: var(--radius-lg); padding: 30px;
  width: 90%; max-width: 420px; position: relative;
  box-shadow: var(--shadow-lg);
  animation: scaleIn .22s ease;
}
@keyframes scaleIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-box h3 { color: var(--navy-900); margin-top: 0; font-size: 19px; }
.modal-box .close-btn {
  position: absolute; top: 14px; right: 16px; cursor: pointer; font-size: 20px;
  color: var(--text-muted); width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.modal-box .close-btn:hover { background: var(--bg); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select {
  width: 100%; padding: 11px 13px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  font-size: 14px; font-family: var(--font-body); transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--orange-500); }

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: #b9c3d4; padding: 48px 32px 28px; font-size: 14px; text-align: center;
  margin-top: 40px;
}
footer a { color: var(--orange-400); transition: opacity .2s; }
footer a:hover { opacity: 0.8; }
footer p { margin: 6px 0; }

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  .navbar { flex-wrap: wrap; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 6px;
  }
  .nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }
  .cta-buttons-desktop { display: none; }
  .navbar nav {
    flex-direction: column; align-items: flex-start; width: 100%;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .navbar nav.open { max-height: 480px; margin-top: 14px; }
  .navbar nav ul { flex-direction: column; gap: 0; width: 100%; }
  .navbar nav ul li { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cta-buttons-mobile { display: flex; margin-top: 14px; padding-bottom: 10px; }
  .hero h1 { font-size: 30px; }
  .hero .hero-segments { font-size: 15px; }
  .hero .hero-browse { font-size: 14px; }
}