/* ========================================
   POLARISE PTY LTD - Vermogensverwaltung
   Premium Wealth Management CSS
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --navy: #1B3A6B;
  --navy-dark: #0F2347;
  --navy-light: #2a5298;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --gray-100: #F4F2EE;
  --gray-200: #E8E4DC;
  --gray-400: #9B9585;
  --gray-600: #5A5348;
  --gray-800: #2E2A22;
  --text: #1A1714;
  --shadow-sm: 0 2px 8px rgba(27,58,107,0.08);
  --shadow-md: 0 8px 32px rgba(27,58,107,0.12);
  --shadow-lg: 0 20px 60px rgba(27,58,107,0.16);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;
  --container: 1200px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 96px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 70px; /* sticky footer offset */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; color: var(--navy-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--gray-600); }
strong { color: var(--text); font-weight: 600; }

/* ---- CONTAINER ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ---- BADGE ---- */
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201,168,76,0.15);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---- SECTIONS ---- */
.section { padding: var(--spacing-xl) 0; }
.section-sm { padding: var(--spacing-lg) 0; }
.section-bg { background: var(--off-white); }
.section-navy { background: var(--navy-dark); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.75); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto var(--spacing-lg); }
.section-header .badge { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 16px 0;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar.scrolled {
  background: rgba(15,35,71,0.98);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(201,168,76,0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-dark);
  border-radius: 2px;
  flex-shrink: 0;
}
.logo-text { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.1rem; color: var(--white); }
.logo-sub { font-size: 0.65rem; font-weight: 400; letter-spacing: 0.08em; opacity: 0.7; display: block; margin-top: -2px; color: rgba(255,255,255,0.7); }

/* ---- NAV LINKS ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  display: block;
  white-space: nowrap;
}
.nav-links li a:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}
.nav-links li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-cta { margin-left: 12px; }
.nav-cta a {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-radius: var(--radius) !important;
  padding: 9px 20px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all var(--transition) !important;
  display: inline-flex !important;
  align-items: center !important;
}
.nav-cta a:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all var(--transition); display: block; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: 90px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn {
  margin-top: 24px;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,71,0.95) 0%, rgba(27,58,107,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { color: var(--white); }
.hero-text h1 { color: var(--white); margin-bottom: 24px; }
.hero-text h1 span { color: var(--gold); }
.hero-text p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- SIMULATOR CARD ---- */
.simulator-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.simulator-card h3 {
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.simulator-card .sub {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.sim-field { margin-bottom: 20px; }
.sim-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.sim-field input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}
.sim-field .range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 4px;
}
.sim-field .value-display {
  text-align: right;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.sim-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
}
.sim-result {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}
.sim-result .label { font-size: 0.75rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; }
.sim-result .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin: 4px 0;
}
.sim-result .detail { font-size: 0.8rem; opacity: 0.6; }
.sim-cta { margin-top: 16px; width: 100%; display: block; text-align: center; padding: 14px; }

/* ---- SERVICES / FEATURE CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,58,107,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--navy); }
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.9rem; margin-bottom: 20px; }
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card:hover .card-link { gap: 10px; }

/* ---- SPLIT SECTION ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.split-img img { width: 100%; height: 420px; object-fit: cover; }
.split-img .img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
}
.split-text h2 { margin-bottom: 20px; }
.split-text p { margin-bottom: 20px; }
.feature-list { margin: 24px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---- NUMBERS BAND ---- */
.numbers-band { background: var(--navy); padding: 60px 0; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.number-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.number-item .desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ---- PROCESS / STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.875rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-role { font-size: 0.8rem; color: var(--gray-400); }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-dark);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- CITIES LISTING ---- */
.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.region-tab {
  padding: 8px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  color: var(--gray-600);
}
.region-tab:hover, .region-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.city-link {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--navy);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateX(4px);
}
.city-link::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- CITY / REGION PAGE ---- */
.city-hero {
  background: var(--navy-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.city-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.city-hero-content { position: relative; z-index: 2; color: var(--white); }
.city-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.city-hero-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }

.city-content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.city-sidebar { }
.sidebar-cta-card {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.sidebar-cta-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.sidebar-cta-card p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 24px; }
.sidebar-cta-card .btn { width: 100%; justify-content: center; }
.city-facts { margin-top: 24px; }
.city-fact {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}
.city-fact:last-child { border-bottom: none; }
.city-fact .label { color: rgba(255,255,255,0.55); }
.city-fact .value { font-weight: 600; color: var(--gold); }
.related-cities { margin-top: 32px; }
.related-cities h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.related-links { display: flex; flex-direction: column; gap: 8px; }
.related-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.related-link:hover { color: var(--gold); }

/* ---- TALLY FORM ---- */
.tally-section {
  background: var(--off-white);
  padding: var(--spacing-xl) 0;
}
.tally-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.tally-header {
  background: var(--navy-dark);
  padding: 40px;
  text-align: center;
  color: var(--white);
}
.tally-header h2 { color: var(--white); margin-bottom: 12px; }
.tally-header p { color: rgba(255,255,255,0.7); margin: 0; }
.tally-body { padding: 40px; }

/* ---- STICKY FOOTER BAR ---- */
.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 14px 0;
  transform: translateY(0);
  transition: transform var(--transition);
}
.sticky-footer-bar.hidden { transform: translateY(100%); }
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sticky-bar-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.sticky-bar-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.sticky-bar-text .msg {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.sticky-bar-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.sticky-bar-close:hover { color: var(--white); }

/* ---- EXIT POPUP ---- */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,35,71,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.exit-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.exit-modal {
  background: var(--white);
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.exit-overlay.visible .exit-modal { transform: scale(1); }
.exit-modal-header {
  background: var(--navy-dark);
  padding: 32px 40px;
  text-align: center;
  position: relative;
}
.exit-modal-header .exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--transition);
}
.exit-modal-header .exit-close:hover { color: var(--white); }
.exit-modal-header h3 { color: var(--white); margin-bottom: 8px; font-size: 1.5rem; }
.exit-modal-header p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.exit-modal-body { padding: 32px 40px; }
.exit-perks { margin-bottom: 24px; }
.exit-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.exit-perk:last-child { border-bottom: none; }
.exit-perk-icon { color: var(--gold); font-size: 1rem; }
.exit-modal-body .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.exit-skip {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  cursor: pointer;
}
.exit-skip:hover { color: var(--navy); text-decoration: underline; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.75);
}
.footer-col h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom p { color: rgba(255,255,255,0.6); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ---- REVEAL ON SCROLL ---- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BREADCRUMB NAV ---- */
.page-breadcrumb {
  background: var(--gray-100);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.page-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.page-breadcrumb a { color: var(--navy); }
.page-breadcrumb a:hover { color: var(--gold-dark); text-decoration: underline; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--navy);
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.page-btn.prev, .page-btn.next { width: auto; padding: 0 16px; }

/* ---- SEARCH / FILTER ---- */
.search-bar {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin-bottom: 32px;
}
.search-bar input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}
.search-bar input:focus {
  outline: none;
  border-color: var(--navy);
}
.search-bar .btn { flex-shrink: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .simulator-card { max-width: 480px; margin: 0 auto; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .city-content-grid { grid-template-columns: 1fr; }
  .sidebar-cta-card { position: static; }
}

@media (max-width: 768px) {
  :root { --spacing-xl: 64px; --spacing-lg: 48px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .split-section { grid-template-columns: 1fr; direction: ltr; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-bar-inner { flex-wrap: wrap; gap: 12px; }
  .sticky-bar-text .msg { font-size: 0.8rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stat-num { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .exit-modal-header { padding: 24px; }
  .exit-modal-body { padding: 24px; }
}