/* ===========================
   eFoil Kołobrzeg – style.css
   Theme: Deep ocean / electric
   =========================== */

:root {
  --ocean: #031d2e;
  --deep: rgba(2, 15, 26, 0.55);
  --surface: rgba(10, 30, 50, 0.65);
  --electric: #00d4ff;
  --electric-dim: rgba(0,212,255,0.15);
  --electric-glow: rgba(0,212,255,0.4);
  --white: #f4f8fa;
  --text: rgba(244,248,250,0.95);
  --muted: rgba(244,248,250,0.82);
  --soft: rgba(244,248,250,0.65);
  --card-bg: rgba(8, 28, 48, 0.67);
  --border: rgba(0,212,255,0.18);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  --card-shadow: 0 8px 32px -8px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  --card-shadow-hover: 0 16px 48px -10px rgba(0,0,0,0.6), 0 0 32px -8px var(--electric-glow);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ── ACCESSIBILITY / SEO ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── VOUCHER BUTTON ── */
.pricing-actions {
  display: flex; gap: 0.75rem; margin-top: 0;
}
.pricing-actions .btn {
  flex: 1; justify-content: center; text-align: center;
  padding: 0.75rem 0.5rem; font-size: 0.88rem; white-space: nowrap;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--electric); border-radius: 3px; }


/* ── GLOBAL FIXED BACKGROUND ── */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('beach-light.jpg');
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ── TYPOGRAPHY ── */
h1,h2,h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; line-height: 1; }
em { font-style: italic; color: var(--electric); font-family: 'DM Sans', sans-serif; font-weight: 300; }

/* ── CONTAINERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; padding-left: max(2rem, env(safe-area-inset-left)); padding-right: max(2rem, env(safe-area-inset-right)); }
.section { padding: 8rem 0; }
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; cursor: pointer;
  text-decoration: none; border: none; transition: var(--transition);
}
.btn-primary {
  background: var(--electric); color: var(--deep); font-weight: 600;
  box-shadow: 0 0 24px var(--electric-glow);
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 0 40px var(--electric-glow); }
.btn-ghost {
  background: transparent; color: var(--white); border: 1.5px solid rgba(244,248,250,0.3);
}
.btn-ghost:hover { border-color: var(--electric); color: var(--electric); }
.btn-white { background: var(--white); color: var(--deep); font-weight: 600; }
.btn-white:hover { background: #ffffff; color: var(--deep); transform: translateY(-2px); box-shadow: 0 0 40px var(--electric-glow); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  padding-left: max(3rem, env(safe-area-inset-left));
  padding-right: max(3rem, env(safe-area-inset-right));
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(2,15,26,0.92);
  backdrop-filter: blur(20px);
  padding: 0.9rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  letter-spacing: 0.05em; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 54px; width: 54px;
  max-height: 54px; max-width: 54px;
  object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.4));
}
.nav-logo span { color: var(--electric); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(244,248,250,0.92); text-decoration: none; font-size: 0.9rem;
  font-weight: 600; transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--electric); color: var(--deep) !important; font-weight: 600 !important;
  padding: 0.5rem 1.25rem; border-radius: 50px;
}
.nav-cta:hover { background: var(--white) !important; transform: translateY(-1px); }
.nav-cta--voucher {
  background: transparent !important; color: var(--electric) !important;
  border: 1.5px solid var(--electric);
}
.nav-cta--voucher:hover {
  background: var(--electric) !important; color: var(--deep) !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; position: relative; z-index: 101; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  min-height: 100svh; /* iOS fix: use small viewport height */
  display: flex; align-items: flex-start;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-water-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 768px) {
  .hero-water-img { object-position: center center; }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2,9,18,0.15) 0%,
    rgba(2,9,18,0.25) 40%,
    rgba(2,9,18,0.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 3rem; padding-top: 9rem;
  max-width: 800px;
}
.hero-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--electric); margin-bottom: 1.5rem;
  border: 1px solid var(--electric-dim); padding: 0.4rem 1rem; border-radius: 50px;
}
.hero-title {
  display: flex; flex-direction: column; gap: 0;
}
.hero-line1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem); letter-spacing: 0.05em; line-height: 1;
  color: var(--electric); display: block;
}
.hero-line2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 11rem); letter-spacing: 0.02em; line-height: 0.9;
  color: var(--white); display: block;
}
.hero-sub {
  margin-top: 2rem; font-size: 1.05rem; color: var(--muted); max-width: 520px;
  font-weight: 300; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: var(--muted); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--electric), transparent);
}
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── STATS BAND ── */
.stats-band {
  background: rgba(8, 22, 40, 0.50);
  display: flex; align-items: stretch; justify-content: center; gap: 0;
  padding: 2rem 0;
}
.stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1rem 3rem;
}
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--electric); line-height: 1; }
.stat-label {
  font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.5rem;
  min-height: 2.4em;
  display: flex; align-items: flex-start; justify-content: center; text-align: center;
  line-height: 1.2;
}
.stat-divider { width: 1px; align-self: center; height: 50px; background: var(--border); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-header--light { }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--electric); margin-bottom: 1.25rem;
}
.section-tag--light { color: var(--electric); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--white); }
.section-title em { font-style: normal; color: var(--electric); }
.section-title--light { color: var(--white); }
.section-sub { margin-top: 1.25rem; color: rgba(244,248,250,0.92); max-width: 600px; margin-left: auto; margin-right: auto; font-size: 0.98rem; line-height: 1.75; font-weight: 500; }
.section-sub--light { color: rgba(244,248,250,0.92); font-weight: 500; }

/* ── OFFER ── */
.offer {
  background: rgba(8, 22, 40, 0.50);
  position: relative;
}
.offer::before {
  content: none;
}
.offer .container { position: relative; z-index: 1; }
.offer .section-tag { color: var(--electric); }
.offer .section-title { color: var(--white); }
.offer .section-sub { color: rgba(244,248,250,0.92); max-width: 660px; font-size: 0.98rem; line-height: 1.75; font-weight: 500; }
.offer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin-bottom: 4rem;
  max-width: 880px; margin-left: auto; margin-right: auto;
}
.offer-card {
  background: rgba(8, 28, 48, 0.67); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.25rem 2rem; position: relative; overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}
.offer-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--electric-dim) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.offer-card:hover { border-color: var(--electric); transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.offer-card:hover::before { opacity: 1; }
.offer-card--main { }
.offer-card-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--electric-dim);
  position: absolute; top: -0.5rem; right: 1rem; line-height: 1; user-select: none;
  transition: var(--transition);
}
.offer-card:hover .offer-card-num { color: rgba(0,212,255,0.3); }
.offer-icon {
  width: 52px; height: 52px;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.offer-icon svg {
  width: 26px; height: 26px;
  stroke: var(--electric);
  transition: stroke 0.3s ease;
}
.offer-card:hover .offer-icon {
  background: rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-2px);
}
.offer-card--cta .offer-icon {
  background: rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.25);
}
.offer-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; margin-bottom: 0.85rem; color: var(--white); letter-spacing: 0.02em; }
.offer-card p { font-size: 0.88rem; color: var(--text); line-height: 1.75; font-weight: 500; }
.offer-card--cta { background: rgba(8, 28, 48, 0.67); }

/* PRICING */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1080px; margin: 0 auto; }
.rental-pricing { gap: 1.25rem; }
@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; max-width: 460px; }
  .rental-pricing { grid-template-columns: repeat(3, 1fr); max-width: 100%; gap: 1rem; }
  .rental-pricing .pricing-card { padding: 1.75rem 1.25rem; }
  .rental-pricing .pricing-duration { font-size: 1.4rem; }
  .rental-pricing .pricing-price strong { font-size: 1.7rem; }
  .rental-pricing .pricing-features li { font-size: 0.78rem; padding: 0.5rem 0; }
}
@media (max-width: 600px) {
  .rental-pricing { grid-template-columns: 1fr; max-width: 460px; gap: 1.25rem; }
  .rental-pricing .pricing-card { padding: 2.5rem 1.75rem; }
  .rental-pricing .pricing-duration { font-size: 1.7rem; }
  .rental-pricing .pricing-price strong { font-size: 2.1rem; }
  .rental-pricing .pricing-features li { font-size: 0.88rem; padding: 0.6rem 0; }
}
.pricing-card {
  background: rgba(8, 28, 48, 0.67); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem 1.75rem; text-align: center; position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
  box-shadow: var(--card-shadow);
}
.pricing-card:hover { border-color: var(--electric); transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.pricing-card--featured {
  background: rgba(8, 28, 48, 0.67);
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.15), 0 12px 40px -10px rgba(0,0,0,0.5), var(--card-shadow);
}
.pricing-card--featured:hover { border-color: var(--electric); transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(0,212,255,0.25), var(--card-shadow-hover); }
.pricing-badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--electric); margin-bottom: 1.25rem;
}
.pricing-duration { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; margin-bottom: 0.5rem; color: var(--white); letter-spacing: 0.02em; }
.pricing-price { font-size: 0.95rem; color: var(--soft); margin-bottom: 1.75rem; }
.pricing-price strong { font-size: 2.1rem; color: var(--white); font-family: 'Bebas Neue', sans-serif; display: block; line-height: 1.1; }
.pricing-features { list-style: none; margin-bottom: 2rem; text-align: left; flex: 1; }
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.pricing-features li:last-child { border-bottom: none; }
.check-icon {
  width: 16px;
  height: 16px;
  color: var(--electric);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0,212,255,0.3));
}

/* ── HOW ── */
.how {
  background: rgba(8, 22, 40, 0.50);
  position: relative; overflow: hidden;
}
.steps {
  display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 160px; max-width: 200px; text-align: center; padding: 1rem;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), #0080ff);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 0 20px var(--electric-glow);
  color: var(--deep);
}
.step h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.2; }
.step p { font-size: 0.82rem; color: var(--muted); }
.step-arrow {
  align-self: center; font-size: 1.5rem; color: var(--electric); padding: 0 0.5rem; margin-top: -1rem;
}

/* ── LOCATIONS ── */
.locations { background: rgba(8, 22, 40, 0.50); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.location-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition); display: flex; flex-direction: column;
  box-shadow: var(--card-shadow);
}
.location-card:hover { border-color: var(--electric); transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.location-img {
  height: 280px; position: relative; flex-shrink: 0;
  background-size: cover; background-position: center;
}
.location-img--baltic {
  background-image: url('baltic-beach.jpg');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.location-img--baltic::after {
  content: ''; display: block;
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(2,15,26,0.1) 30%, rgba(2,15,26,0.85) 100%);
}
.location-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--electric); color: var(--deep); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 50px;
}
.location-img--lake {
  background-image: url('lake.jpeg');
  background-size: cover; background-position: center 30%;
  position: relative; overflow: hidden;
}
.location-img--lake::after {
  content: ''; display: block;
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(2,15,26,0.1) 30%, rgba(2,15,26,0.85) 100%);
}
.location-body { padding: 2rem; background: rgba(8, 28, 48, 0.67); flex: 1; }
.location-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; margin-bottom: 0.85rem; color: var(--white); letter-spacing: 0.02em; }
.location-body p { font-size: 0.88rem; color: var(--text); line-height: 1.75; margin-bottom: 1rem; font-weight: 500; }
.location-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.location-tags span {
  font-size: 0.75rem; border: 1px solid var(--border); border-radius: 50px;
  padding: 0.25rem 0.75rem; color: var(--muted);
}

/* ── WEATHER WIDGET ── */
.weather-widget {
  margin-top: 3rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(8, 28, 48, 0.5);
  backdrop-filter: blur(10px);
}
.weather-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.weather-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--electric);
  text-transform: uppercase;
}
.weather-status {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.weather-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 8px var(--electric);
  animation: weatherPulse 2s ease-in-out infinite;
}
@keyframes weatherPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.weather-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.weather-card {
  padding: 1.25rem 1.5rem;
  background: rgba(4, 17, 31, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.25s;
}
.weather-card:hover { border-color: rgba(0, 212, 255, 0.4); }
.weather-loc {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.weather-icon-loc { font-size: 1.1rem; }
.weather-loc-name {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.weather-data {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.weather-temp {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--electric);
  flex-shrink: 0;
}
.weather-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  font-size: 0.78rem;
}
.weather-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.weather-meta-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}
.weather-meta-row span:last-child {
  color: var(--white);
  font-weight: 600;
}
@media (max-width: 700px) {
  .weather-widget { padding: 1.25rem; }
  .weather-grid { grid-template-columns: 1fr; }
  .weather-card { padding: 1rem 1.25rem; }
}

/* ── LOCATIONS MAP ── */
.locations-map {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(8, 28, 48, 0.67);
}
.locations-map-tabs {
  display: flex;
  gap: 0;
  background: rgba(4, 17, 31, 0.6);
  border-bottom: 1px solid var(--border);
}
.map-tab {
  flex: 1;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--soft);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.map-tab + .map-tab { border-left: 1px solid var(--border); }
.map-tab:hover { color: var(--white); background: rgba(0,212,255,0.05); }
.map-tab.active {
  color: var(--electric);
  background: rgba(0,212,255,0.08);
}
.map-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--electric);
  box-shadow: 0 0 12px rgba(0,212,255,0.6);
}
.map-tab-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.locations-map-frame {
  position: relative;
}
.locations-map iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}
.map-open-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--electric);
  color: var(--deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.map-open-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--deep);
  flex-shrink: 0;
}
.map-open-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.25), 0 0 24px var(--electric-glow);
}
@media (max-width: 700px) {
  .locations-map iframe { height: 360px; }
  .map-tab { font-size: 0.78rem; padding: 0.85rem 0.75rem; gap: 0.4rem; }
  .map-open-btn {
    top: 0.6rem;
    right: 0.6rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.74rem;
  }
  .map-open-btn svg { width: 14px; height: 14px; }
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: rgba(8, 22, 40, 0.50);
}
.testi-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.testi-stars {
  color: #ffc940;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px rgba(255, 201, 64, 0.4);
}
.testi-rating-text {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: rgba(8, 28, 48, 0.67);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--card-shadow);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--electric);
  opacity: 0.15;
}
.testi-card:hover {
  border-color: var(--electric);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.testi-card .testi-stars {
  font-size: 0.95rem;
}
.testi-text {
  font-size: 0.92rem;
  color: rgba(220, 230, 240, 0.88);
  line-height: 1.65;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
}
.testi-source {
  font-size: 0.72rem;
  color: var(--electric);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ── FLITEBOARD ── */
.fliteboard { background: rgba(8, 22, 40, 0.50); }
.fliteboard-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.flite-benefits { list-style: none; margin: 1.5rem 0 2rem; }
.flite-benefits li { padding: 0.6rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.flite-benefits li:last-child { border-bottom: none; }

.flite-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: rgba(8, 28, 48, 0.67);
  box-shadow: 0 0 60px rgba(0,212,255,0.1);
  transition: var(--transition);
}
.flite-card:hover { border-color: var(--electric); transform: translateY(-4px); }
.flite-card-top {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.1em;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--electric), #0080ff);
  color: var(--deep);
}
.flite-models { padding: 1.5rem 2rem; }
.flite-model {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.flite-model:last-child { border-bottom: none; }
.flite-model-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--white); letter-spacing: 0.05em; }
.flite-model-desc { font-size: 0.8rem; color: var(--muted); }
.flite-card-footer {
  padding: 1rem 2rem; background: rgba(2, 10, 20, 0.52);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; color: var(--muted);
}
.flite-dot { color: var(--electric); font-size: 0.5rem; }

/* ── FLITESCHOOL ── */
.fliteschool { background: rgba(8, 22, 40, 0.50); }
.fliteschool-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.fliteschool-desc {
  font-size: 0.95rem; color: var(--text); line-height: 1.8;
  margin: 1.5rem 0 1.75rem;
  font-weight: 500;
}
.fliteschool-perks {
  list-style: none; margin-bottom: 2rem;
}
.fliteschool-perks li {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.fliteschool-perks li::before {
  content: '✦'; color: var(--electric);
  margin-right: 0.6rem; font-size: 0.7rem;
}
.fliteschool-badge-wrap {
  display: flex; justify-content: center;
  align-items: center; position: relative;
}
.fs-glow {
  position: absolute; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  border-radius: 50%; z-index: 0;
}
.fliteschool-badge {
  position: relative; z-index: 1;
  border: 2px solid var(--electric);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  background: rgba(8, 28, 48, 0.67);
  box-shadow: 0 0 60px rgba(0,212,255,0.12), inset 0 0 40px rgba(0,212,255,0.03);
  min-width: 260px;
  transition: var(--transition);
}
.fliteschool-badge:hover { box-shadow: 0 0 80px rgba(0,212,255,0.28); transform: translateY(-4px); }
.fs-badge-top {
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--electric);
  margin-bottom: 0.75rem;
}
.fs-badge-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; line-height: 1; color: var(--text);
}
.fs-badge-brand span { color: var(--electric); }
.fs-badge-location {
  font-size: 0.8rem; color: var(--muted);
  margin-top: 0.4rem; letter-spacing: 0.05em;
}
.fs-badge-divider {
  width: 40px; height: 1px;
  background: var(--electric); opacity: 0.4;
  margin: 1.25rem auto;
}
.fs-badge-sub {
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 0.05em; text-transform: uppercase;
}

.rental {
  background: rgba(8, 22, 40, 0.50);
  position: relative;
}
.rental::before {
  content: none;
}
.rental .container { position: relative; z-index: 1; }
.rental .section-tag { color: var(--electric); }
.rental .section-title { color: var(--white); }
.rental .section-sub { color: rgba(244,248,250,0.92); max-width: 660px; font-size: 0.98rem; line-height: 1.75; font-weight: 500; }

/* ── FAQ ── */
.faq { background: rgba(8, 22, 40, 0.50); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); background: rgba(8, 28, 48, 0.67); border-radius: 8px; margin-bottom: 4px; transition: var(--transition); box-shadow: var(--card-shadow); }
.faq-item:hover { border-color: var(--electric); box-shadow: var(--card-shadow-hover); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 500; cursor: pointer;
  padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; color: var(--electric); font-size: 1.4rem; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 0.9rem; color: var(--text); line-height: 1.75; font-weight: 500;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.5rem; }

/* ── CONTACT ── */
.contact { background: rgba(8, 22, 40, 0.50); }
.contact-centered {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact-desc-text {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-info--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact-info--centered .contact-link {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; text-decoration: none;
  color: var(--white); font-size: 1rem;
  padding: 0.75rem 2rem; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(8, 28, 48, 0.67);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  width: 100%; max-width: 320px;
}
.contact-info--centered .contact-link:hover {
  background: rgba(8, 28, 48, 0.67);
  border-color: var(--electric);
  transform: translateY(-2px);
}
.contact-icon { font-size: 1.3rem; }

/* ── FOOTER ── */
.footer { background: rgba(2,15,26,0.92); backdrop-filter: blur(20px); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.05em; }
.footer-logo em { font-style: normal; color: var(--electric); }
.footer-brand p { font-size: 0.85rem; color: var(--muted); margin-top: 0.75rem; max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.15em; color: var(--electric); }
.footer-col a { text-decoration: none; color: var(--muted); font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); }
.footer-bottom a { color: var(--electric); text-decoration: none; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex; gap: 4px; align-items: center; margin-left: 1rem;
}
.lang-btn {
  background: transparent; border: 1px solid var(--border);
  padding: 0.2rem 0.3rem; border-radius: 6px; cursor: pointer;
  transition: var(--transition); font-size: 1.35rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.55;
}
.lang-btn:hover { border-color: var(--electric); opacity: 1; }
.lang-btn.active {
  border-color: var(--electric);
  opacity: 1;
  box-shadow: 0 0 8px rgba(0,212,255,0.4);
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
  .fliteboard-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fliteschool-inner { grid-template-columns: 1fr; gap: 3rem; }
  .fliteschool-badge-wrap { order: -1; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .steps { gap: 0.5rem; }
  .step-arrow { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-logo { font-size: 1.25rem; gap: 0.3rem; }
  .nav-logo-img { height: 40px; width: 40px; max-height: 40px; max-width: 40px; }
  .nav-toggle {
    display: flex;
    position: fixed;
    top: 1.1rem;
    right: 1.5rem;
    right: max(1.5rem, env(safe-area-inset-right));
    z-index: 102;
    padding: 8px;
  }
  .nav-links {
    display: none; position: fixed;
    left: 0; right: 0; bottom: 0;
    top: 0;
    padding: 90px 1.5rem 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    background: #020f1a;
    flex-direction: column; align-items: center; justify-content: flex-start; gap: 1.5rem;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .lang-switcher {
    margin-left: 0;
    position: fixed;
    top: 1.1rem;
    right: 4.5rem;
    right: calc(max(1.5rem, env(safe-area-inset-right)) + 3rem);
    z-index: 102;
  }
  .hero-content { padding: 0 1.5rem; padding-top: 7rem; }
  .hero-line2 { font-size: clamp(3.5rem, 15vw, 7rem); }
  .offer-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stats-band { flex-wrap: nowrap; gap: 0; padding: 1.5rem 0.5rem; background: rgba(8, 22, 40, 0.50); }
  .stat { padding: 0.5rem 0.25rem; flex: 1; min-width: 0; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.58rem; letter-spacing: 0.04em; min-height: 2.6em; margin-top: 0.4rem; }
  .stat-divider { height: 50px; align-self: center; }
  .section { padding: 4rem 0; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .pricing { grid-template-columns: 1fr; max-width: 360px; }
  .container { padding: 0 1.25rem; }
  .contact-info--centered .contact-link { font-size: 1rem; }
  .steps { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .step { flex-direction: row; align-items: flex-start; gap: 1rem; min-width: unset; width: 100%; }
  .step-num { flex-shrink: 0; }
  .steps-divider { margin: 2rem 0 1.5rem; }
  .location-img { height: 220px; }
  .faq-q { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .step { min-width: 130px; }
}

/* ── STICKY MOBILE BOOK CTA ── */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 5rem;
  z-index: 999;
  padding: 0.95rem 1.4rem;
  background: var(--electric);
  color: #000;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.15);
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  transform: translateY(120%);
  opacity: 0;
}
.sticky-book.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-book.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.sticky-book:active { transform: translateY(0) scale(0.97); }
.sticky-book-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #000;
  color: var(--electric);
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sticky-book { display: flex; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-bubble {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.wa-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}
.wa-btn svg { width: 32px; height: 32px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }
}
.wa-tooltip {
  background: #fff; color: #111; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wa-bubble:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@media (max-width: 768px) {
  .wa-bubble { bottom: 1.25rem; right: 1.25rem; }
  .wa-btn { width: 54px; height: 54px; }
}

/* ── CALENDLY WIDGET ── */
.calendly-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  background: #fff;
}
.calendly-inline-widget {
  border-radius: 16px;
}
@media (max-width: 768px) {
  .calendly-inline-widget { height: 580px !important; }
}

/* ── STEPS DIVIDER ── */
.steps-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 3rem 0 2rem;
}
.steps-divider::before,
.steps-divider::after {
  content: ''; flex: 1;
  height: 1px; background: rgba(0,212,255,0.2);
}
.steps-divider span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--electric); opacity: 0.7;
  white-space: nowrap;
}

/* ── SECTION SUB LIGHT ── */
.section-sub--light {
  color: rgba(220, 238, 250, 0.95);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ── CONTACT CENTERED ── */
.contact-left { padding-top: 0.5rem; }
.contact-left .section-tag { margin-bottom: 0.75rem; }
.contact-left .section-title { margin-bottom: 1rem; }
.contact-desc-text {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-info {
  display: flex; flex-direction: column; gap: 0.85rem;
}
.contact-info .contact-link {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(8, 28, 48, 0.67);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  display: inline-flex; align-items: center; gap: 0.75rem;
  width: fit-content;
}
.contact-info .contact-link:hover {
  background: rgba(8, 28, 48, 0.67);
  border-color: var(--electric);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   PRIVACY MODAL CLOSE BUTTON
══════════════════════════════════════════════ */
.btn-cookie-accept {
  padding: 0.55rem 1.4rem; border-radius: 50px;
  background: var(--electric); color: #000;
  border: none; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: #33ddff; transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   PRIVACY MODAL
══════════════════════════════════════════════ */
.privacy-modal {
  position: fixed; inset: 0; z-index: 4000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.privacy-modal.open { opacity: 1; pointer-events: all; }
.privacy-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.privacy-box {
  position: relative; z-index: 1;
  background: #07182A;
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 16px;
  width: min(720px, 94vw);
  max-height: 85vh;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.privacy-modal.open .privacy-box { transform: translateY(0); }
.privacy-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(0,212,255,0.15);
  flex-shrink: 0;
}
.privacy-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; color: #fff; margin: 0;
  letter-spacing: 0.05em;
}
.privacy-close {
  background: none; border: none; cursor: pointer;
  color: rgba(200,220,235,0.6); font-size: 1.1rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; flex-shrink: 0;
}
.privacy-close:hover { background: rgba(255,255,255,0.08); color: #fff; }
.privacy-body {
  overflow-y: auto; padding: 1.75rem 2rem;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,212,255,0.3) transparent;
}
.privacy-updated {
  font-size: 0.8rem; color: rgba(0,212,255,0.6);
  margin-bottom: 1.5rem; font-style: italic;
}
.privacy-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; color: var(--electric);
  margin: 1.75rem 0 0.6rem; letter-spacing: 0.05em;
}
.privacy-body h3:first-of-type { margin-top: 0; }
.privacy-body p {
  font-size: 0.875rem; color: rgba(190,215,230,0.85);
  line-height: 1.75; margin-bottom: 0.75rem;
}
.privacy-body ul {
  padding-left: 1.25rem; margin-bottom: 0.75rem;
}
.privacy-body ul li {
  font-size: 0.875rem; color: rgba(190,215,230,0.85);
  line-height: 1.7; margin-bottom: 0.35rem;
}
.privacy-body a {
  color: var(--electric); text-decoration: underline;
}
.privacy-body a:hover { color: #fff; }
.privacy-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(0,212,255,0.15);
  display: flex; justify-content: flex-end;
  flex-shrink: 0;
}

/* footer privacy links */
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom-links {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.footer-privacy-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 0.8rem;
  font-family: inherit; padding: 0;
  transition: color 0.2s;
}
.footer-privacy-btn:hover { color: var(--electric); }
.footer-divider { color: var(--border); font-size: 0.8rem; }

/* ── LANDSCAPE MOBILE — force hamburger menu ── */
@media (max-height: 500px) and (orientation: landscape) {
  .nav-toggle {
    display: flex;
    position: fixed;
    top: 0.7rem;
    right: 1.5rem;
    right: max(1.5rem, env(safe-area-inset-right));
    z-index: 102;
    padding: 8px;
  }
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 70px 4rem 1.5rem 1.5rem;
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(4rem, env(safe-area-inset-right));
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    background: #020f1a;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.95rem; }
  .nav-links li { width: 100%; max-width: 320px; text-align: center; }
  .nav-links .nav-cta { display: inline-block; width: auto; }
  .nav { padding: 0.6rem 1.5rem;
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }
  .nav-logo { font-size: 1.1rem; }
  .nav-logo-img { height: 32px; width: 32px; max-height: 32px; max-width: 32px; }
  .lang-switcher {
    margin-left: 0;
    position: fixed;
    top: 0.7rem;
    right: 4rem;
    right: calc(max(1.5rem, env(safe-area-inset-right)) + 2.75rem);
    bottom: auto;
    left: auto;
    transform: none;
    z-index: 102;
  }
}

@media (max-width: 600px) {
  .privacy-header { padding: 1.25rem 1.25rem 1rem; }
  .privacy-body { padding: 1.25rem; }
  .privacy-footer { padding: 1rem 1.25rem; }
}
