/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
  /* Colors */
  --bg-dark: #0a0b0e;
  --bg-dark-card: #121620;
  --bg-dark-card-hover: #161b27;
  --border-dark: #1f2736;
  --border-dark-hover: #2d384d;
  
  --brand-white: #ffffff;
  --brand-offwhite: #f8fafc;
  --brand-black: #0f172a;
  
  --accent-blue: #1877f2;
  --accent-blue-hover: #1565c0;
  --accent-blue-dim: rgba(24, 119, 242, 0.08);
  
  --accent-red: #e31b23;
  --accent-red-hover: #c6161c;
  --accent-red-dim: rgba(227, 27, 35, 0.08);
  
  --accent-orange: #f37021;
  --accent-orange-dim: rgba(243, 112, 33, 0.08);
  
  --accent-yellow: #ffc72c;
  --accent-yellow-dim: rgba(255, 199, 44, 0.08);
  
  --accent-green: #38ef7d;
  --accent-green-dim: rgba(56, 239, 125, 0.08);

  --text-dark-primary: #0f172a;
  --text-dark-secondary: #475569;
  --text-dark-muted: #64748b;
  
  --text-light-primary: #f8fafc;
  --text-light-secondary: #cbd5e1;
  --text-light-muted: #64748b;

  /* Typography */
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container-width: 1200px;
  
  /* Shadows & Blur */
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  --glass-blur: blur(16px);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================
   BASE STYLES & RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--text-light-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

/* Sections Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text-light-primary);
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light-secondary);
}

/* Color Tags styling */
.color-red { color: var(--accent-red); background-color: var(--accent-red-dim); }
.color-blue { color: var(--accent-blue); background-color: var(--accent-blue-dim); }
.color-orange { color: var(--accent-orange); background-color: var(--accent-orange-dim); }
.color-yellow { color: var(--accent-yellow); background-color: var(--accent-yellow-dim); }
.color-green { color: var(--accent-green); background-color: var(--accent-green-dim); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: var(--brand-white);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.4);
}

.btn-nav {
  background-color: var(--brand-black);
  color: var(--brand-white);
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-nav:hover {
  background-color: var(--accent-blue);
  color: var(--brand-white);
}

/* ==========================================
   HERO CONTAINER - THE WHITE OVERLAY
   ========================================== */
.hero-container-outer {
  background-color: var(--brand-white);
  border-radius: 0 0 48px 48px;
  box-shadow: var(--shadow-light);
  color: var(--text-dark-primary);
  position: relative;
  z-index: 10;
  padding-bottom: 48px;
}

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

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 48px;
}

.logo {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0;
}

.footer-left .logo-img {
  height: 60px;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--brand-black);
}

.dot-brand {
  color: var(--accent-blue);
}

.logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dark-muted);
  margin-top: -4px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.nav-cta-mini {
  display: none; /* Only visible on mobile/responsive */
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 0 64px 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-left .pre-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-blue);
  background-color: var(--accent-blue-dim);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-blue);
}

.hero-left h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--brand-black);
}

.hero-left .subtitle {
  font-size: 1.125rem;
  color: var(--text-dark-secondary);
  margin-bottom: 36px;
  max-width: 750px;
  line-height: 1.5;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.social-proof-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-proof-icons .icon-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}

.social-proof-icons .icons-list {
  display: flex;
  gap: 8px;
}

.social-icon {
  color: var(--text-dark-secondary);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  color: var(--accent-blue);
  transform: translateY(-2px);
}

/* Hero Right Visual (SVG mockup card) */
.hero-right-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  background: var(--bg-dark);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.visual-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
}

.flow-svg-embed {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.5fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0 20px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

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

.stat-number {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.plus-sign {
  font-size: 1.5rem;
  vertical-align: super;
  margin-left: 2px;
}

.stat-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark-secondary);
}

.stat-ticker-text {
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
  border-left: 3px solid var(--accent-blue);
  padding-left: 20px;
  line-height: 1.5;
}

/* ==========================================
   INFINITE TICKER
   ========================================== */
.ticker-wrapper {
  overflow: hidden;
  background-color: var(--brand-black);
  color: var(--brand-white);
  padding: 16px 0;
  margin: 32px -24px -48px -24px; /* Extends outside container padding */
  border-radius: 0 0 48px 48px;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-animation 25s linear infinite;
}

.ticker span {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  display: inline-block;
}

@keyframes ticker-animation {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================
   DARK SECTION WRAPPER
   ========================================== */
.dark-section-wrapper {
  padding-top: 120px;
  background-color: var(--bg-dark);
}

.dark-section-wrapper section {
  padding-bottom: 120px;
}

/* ==========================================
   BLOQUE 2 - FUGAS DE CAPITAL
   ========================================== */
.section-fugas h2 {
  color: var(--brand-white);
}

.fugas-grid {
  margin-top: 40px;
}

.leak-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  padding: 40px 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.leak-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-red);
  background-color: var(--bg-dark-card-hover);
  box-shadow: 0 20px 40px -15px rgba(227, 27, 35, 0.15);
}

.leak-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bg-red-dim {
  background-color: rgba(227, 27, 35, 0.12);
}

.leak-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--brand-white);
}

.leak-card p {
  color: var(--text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.leak-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ==========================================
   BLOQUE 3 - ECOSISTEMA DE CONVERSIÓN
   ========================================== */
.ecosistema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.eco-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  transition: var(--transition-smooth);
}

.eco-card:hover {
  transform: translateY(-8px);
  background-color: var(--bg-dark-card-hover);
  box-shadow: var(--shadow-premium);
}

.eco-card-blue:hover { border-color: var(--accent-blue); }
.eco-card-red:hover { border-color: var(--accent-red); }
.eco-card-yellow:hover { border-color: var(--accent-yellow); }

.eco-card-content {
  position: relative;
  z-index: 2;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
}

.eco-num {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  margin-bottom: 24px;
  display: block;
}

.eco-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--brand-white);
}

.eco-card p {
  color: var(--text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.eco-bullets {
  list-style: none;
  margin-top: auto;
}

.eco-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  margin-bottom: 10px;
}

.eco-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.eco-card-blue .eco-bullets li::before { background-color: var(--accent-blue); }
.eco-card-red .eco-bullets li::before { background-color: var(--accent-red); }
.eco-card-yellow .eco-bullets li::before { background-color: var(--accent-yellow); }

/* Accent background glow */
.eco-accent-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.08;
  z-index: 1;
  transition: var(--transition-smooth);
}

.eco-card:hover .eco-accent-glow {
  opacity: 0.18;
  transform: scale(1.3);
}

.bg-blue { background-color: var(--accent-blue); }
.bg-red { background-color: var(--accent-red); }
.bg-yellow { background-color: var(--accent-yellow); }

/* ==========================================
   BLOQUE 4 - METODOLOGÍA (PROCESO)
   ========================================== */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.process-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: scale(1.01);
  border-color: var(--accent-orange);
  background-color: var(--bg-dark-card-hover);
  box-shadow: 0 15px 30px -10px rgba(243, 112, 33, 0.15);
}

.process-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--border-dark-hover);
  transition: var(--transition-smooth);
}

.process-card:hover .process-number {
  color: var(--accent-orange);
}

.process-body {
  flex-grow: 1;
}

.process-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-orange);
  margin-bottom: 8px;
  display: inline-block;
}

.process-body h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--brand-white);
}

.process-body p {
  color: var(--text-light-secondary);
  font-size: 0.95rem;
  max-width: 700px;
}

.process-icon {
  color: var(--text-light-muted);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card:hover .process-icon {
  color: var(--accent-orange);
  transform: rotate(5deg) scale(1.1);
}

/* ==========================================
   CLIENT LOGOS & SECURITY TAG
   ========================================== */
.client-logos-section {
  padding: 48px 24px;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 120px;
}

.logos-headline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  width: 100%;
}

.logo-box {
  color: var(--text-light-muted);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.logo-box:hover {
  opacity: 1;
  color: var(--brand-white);
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-green);
  font-size: 0.9rem;
  font-weight: 600;
}

.secure-badge svg {
  stroke: var(--accent-green);
}

/* ==========================================
   BLOQUE 5 - APPOINTMENT BOOKING SECTION
   ========================================== */
.booking-card-wrapper {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  padding: 64px;
}

.booking-gradient-bg {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.15) 0%, rgba(24, 119, 242, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.booking-text-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.booking-alert-pill {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-yellow);
  background-color: var(--accent-yellow-dim);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.booking-text-panel h2 {
  font-size: 2.25rem;
  color: var(--brand-white);
  margin-bottom: 20px;
}

.persuasive-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light-secondary);
  border-left: 3px solid var(--accent-yellow);
  padding-left: 20px;
  margin-bottom: 32px;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
}

.feat-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light-secondary);
}

.direct-link-fallback {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.direct-link-fallback a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}

.direct-link-fallback a:hover {
  text-decoration: underline;
  color: var(--accent-blue-hover);
}

/* Calendar Iframe container */
.booking-iframe-panel {
  width: 100%;
}

.iframe-container {
  width: 100%;
  background-color: var(--bg-dark);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  height: 600px;
}

.calendar-iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  border-top: 1px solid var(--border-dark);
  background-color: var(--bg-dark);
  padding-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-left .logo {
  margin-bottom: 20px;
}

.footer-left .logo-text {
  color: var(--brand-white);
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  max-width: 400px;
}

.footer-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-white);
  margin-bottom: 8px;
}

.footer-links-column a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  transition: var(--transition-smooth);
}

.footer-links-column a:hover {
  color: var(--accent-blue);
}

.footer-links-column a.inactive-link {
  cursor: default;
}

.footer-links-column a.inactive-link:hover {
  color: var(--text-light-secondary);
}

.domain-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 32px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  text-align: center;
  line-height: 1.5;
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE-FIRST / MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
  /* Tablet layout styling */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-left .subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-wrapper {
    align-items: center;
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
  }
  
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .stat-ticker-text {
    grid-column: span 3;
    border-left: none;
    border-top: 3px solid var(--accent-blue);
    padding-left: 0;
    padding-top: 16px;
    text-align: center;
  }

  .ecosistema-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-card-wrapper {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  /* Small tablet & Mobile styling */
  html {
    font-size: 15px;
  }
  
  .hero-container-outer {
    border-radius: 0 0 32px 32px;
  }
  
  .navbar {
    padding: 16px 0;
    margin-bottom: 24px;
  }
  
  .nav-links {
    display: none; /* Hide standard nav */
  }

  .nav-cta-mini {
    display: inline-block;
  }

  .nav-actions {
    display: block;
  }
  
  .hero-left h1 {
    font-size: 2.25rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .process-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .process-number {
    font-size: 2.5rem;
  }

  .process-icon {
    align-self: flex-end;
  }

  .logos-grid {
    gap: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  /* Mobile styling */
  .hero-left h1 {
    font-size: 1.85rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .stat-ticker-text {
    grid-column: span 1;
  }

  .booking-card-wrapper {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .booking-text-panel h2 {
    font-size: 1.75rem;
  }

  .persuasive-text {
    font-size: 0.95rem;
    padding-left: 12px;
  }

  .iframe-container {
    height: 500px;
  }
}

/* ==========================================
   MODAL WINDOWS & PRIVACY POPUPS
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  z-index: 1001;
  display: none;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.modal-dialog.active, .modal-overlay.active {
  display: flex;
}

.modal-dialog.show, .modal-overlay.show {
  opacity: 1;
}

.modal-dialog.show {
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--brand-white);
  font-family: var(--font-title);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-light-muted);
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--accent-red);
}

.modal-body {
  padding: 32px;
  overflow-y: auto;
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  text-align: left;
}

.modal-body p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.modal-body h4 {
  font-size: 1.2rem;
  color: var(--brand-white);
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: var(--font-title);
  border-left: 3px solid var(--accent-blue);
  padding-left: 12px;
}

.modal-body ul, .modal-body ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

.modal-body li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.modal-body strong {
  color: var(--brand-white);
}

@media (max-width: 480px) {
  .modal-dialog {
    max-height: 90vh;
    border-radius: 16px;
  }
  .modal-header {
    padding: 16px 20px;
  }
  .modal-body {
    padding: 20px;
  }
}

