/* ==========================================================================
   Eiffel Tower Insider Guide - Design System & Stylesheet
   Tailored for US (.com), UK (.co.uk), and French (.fr) Markets
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #fcfbf9;
  --bg-secondary: #f4eee5;
  --bg-card: #ffffff;
  --bg-dark: #16181b;
  --bg-dark-surface: #20242a;
  
  --text-main: #1d2127;
  --text-muted: #5e6671;
  --text-light: #8e98a4;
  --text-inverse: #f8fafc;
  
  --accent-gold: #c68b2c;
  --accent-gold-hover: #b07820;
  --accent-gold-light: #fbf3e4;
  --accent-terracotta: #d35f37;
  --accent-terracotta-hover: #b94e2a;
  --accent-terracotta-light: #faeee9;
  --accent-navy: #183153;
  --accent-navy-light: #eef3f9;
  --accent-green: #1f8b54;
  --accent-green-light: #e8f7ee;

  --border-color: #e5dfd5;
  --border-light: #efebe4;
  --border-dark: #323842;
  
  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(22, 24, 27, 0.04);
  --shadow-md: 0 6px 18px rgba(22, 24, 27, 0.08);
  --shadow-lg: 0 16px 36px rgba(22, 24, 27, 0.12);
  --shadow-xl: 0 24px 60px rgba(22, 24, 27, 0.16);

  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-ui: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Layout */
  --container-max: 1200px;
  --header-height: 74px;
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography styles */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.15rem;
  color: var(--text-muted);
}

p.lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--text-main);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-terracotta);
  background: var(--accent-terracotta-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag.gold {
  color: var(--accent-gold);
  background: var(--accent-gold-light);
}

.section-tag.navy {
  color: var(--accent-navy);
  background: var(--accent-navy-light);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 251, 249, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  color: var(--accent-gold);
}

.brand-tagline {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  background: var(--accent-terracotta-light);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
  font-weight: 600;
}

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

.domain-switcher {
  position: relative;
  display: inline-block;
}

.domain-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.domain-btn:hover {
  background: #ede6dc;
}

.domain-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  padding: 8px;
  z-index: 1100;
}

.domain-dropdown.show {
  display: flex;
}

.domain-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 500;
}

.domain-dropdown a:hover {
  background: var(--bg-secondary);
}

.domain-dropdown a.current {
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--text-main);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-terracotta);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(211, 95, 55, 0.25);
}

.btn-primary:hover {
  background: var(--accent-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 95, 55, 0.35);
  color: #ffffff;
}

.btn-gold {
  background: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(198, 139, 44, 0.25);
}

.btn-gold:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 139, 44, 0.35);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--text-muted);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 56px 0 72px;
  background: radial-gradient(circle at 80% 20%, rgba(244, 238, 229, 0.8) 0%, rgba(252, 251, 249, 0) 60%);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(31, 139, 84, 0.7);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 139, 84, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(31, 139, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 139, 84, 0);
  }
}

.hero-title {
  margin-bottom: 18px;
  color: var(--text-main);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-terracotta);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-ui);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Quick Ticket Calculator Widget */
.booking-widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.widget-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--accent-navy);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.widget-title {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.widget-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.widget-form-group {
  margin-bottom: 16px;
}

.widget-form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.widget-select, .widget-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color 0.2s ease;
}

.widget-select:focus, .widget-input:focus {
  border-color: var(--accent-terracotta);
  background: #ffffff;
}

.guests-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.widget-price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-total {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-terracotta);
}

.widget-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.guarantee-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-green);
}

/* ==========================================================================
   Section Styling
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--text-inverse);
}

.section-dark p {
  color: #a0aec0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

/* ==========================================================================
   Card Grids & Product Cards
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.experience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-color);
}

.experience-card.featured {
  border: 2px solid var(--accent-gold);
}

.featured-ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: var(--accent-gold);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.card-media {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #2b303c;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-card:hover .card-media img {
  transform: scale(1.05);
}

.card-media-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(22, 24, 27, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--accent-gold);
}

.card-title {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-features {
  list-style: none;
  margin-bottom: 22px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.card-features li:last-child {
  margin-bottom: 0;
}

.card-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}

.card-price-box {
  display: flex;
  flex-direction: column;
}

.card-price-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-price-val {
  font-family: var(--font-ui);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
}

/* ==========================================================================
   Photoshoots Feature Section
   ========================================================================== */
.photoshoot-banner {
  background: linear-gradient(135deg, #2a2521 0%, #171513 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.photoshoot-banner::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(198, 139, 44, 0.2) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.photoshoot-spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.spot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.spot-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.spot-number {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-terracotta);
  margin-bottom: 6px;
}

.spot-title {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.spot-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.spot-tip {
  font-size: 0.8rem;
  background: var(--bg-secondary);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-weight: 500;
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */
.comparison-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 36px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  background: var(--bg-secondary);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.comparison-table th.highlight {
  background: var(--accent-terracotta-light);
  color: var(--accent-terracotta);
}

.comparison-table td {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background-color: #faf7f2;
}

.check-icon {
  color: var(--accent-green);
  font-weight: 700;
}

.cross-icon {
  color: #dc2626;
  font-weight: 700;
}

/* ==========================================================================
   Editorial Content & Blog Styling
   ========================================================================== */
.editorial-container {
  max-width: 840px;
  margin: 0 auto;
}

.editorial-content {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #333d47;
}

.editorial-content h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}

.editorial-content h3 {
  margin-top: 32px;
  margin-bottom: 14px;
}

.editorial-content ul, .editorial-content ol {
  margin: 18px 0 24px 28px;
}

.editorial-content li {
  margin-bottom: 10px;
}

.callout-box {
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px;
  margin: 32px 0;
}

.callout-box.tip {
  border-left-color: var(--accent-terracotta);
  background: var(--accent-terracotta-light);
}

.callout-box.alert {
  border-left-color: #dc2626;
  background: #fef2f2;
}

.callout-title {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   FAQ Accordions
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #d1c8bb;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-terracotta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Redirect Interstitial Page
   ========================================================================== */
.redirect-container {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.redirect-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 540px;
  width: 100%;
  padding: 44px 36px;
  text-align: center;
}

.redirect-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid var(--border-light);
  border-top-color: var(--accent-terracotta);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.redirect-title {
  font-family: var(--font-ui);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.partner-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.partner-logo-badge svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #a0aec0;
  padding: 72px 0 36px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #8c9ba5;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-col h5 {
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #8c9ba5;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #6b7785;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: #718096;
  line-height: 1.5;
  margin-top: 16px;
}

/* ==========================================================================
   Mobile Floating Action Bar
   ========================================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 12px 20px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

.mobile-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .card-grid-3, .card-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .mobile-sticky-cta {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
}
