/* ==========================================================================
   POSADA SOLUCIONES - Fixed Compact Banner System & Mobile Responsive CSS
   Framework: Pure Vanilla CSS3 (Custom Design System)
   Theme: Premium Financial & Insurance Services (Dark Sapphire / Emerald / Gold)
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-900: #0f172a;
  --primary-800: #1e293b;
  --primary-700: #1e3a8a;
  --primary-600: #2563eb;
  --primary-500: #3b82f6;
  --primary-100: #eff6ff;

  --accent-emerald: #10b981;
  --accent-emerald-dark: #047857;
  --accent-gold: #f59e0b;
  --accent-gold-light: #fef3c7;

  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f8fafc;
  --white: #ffffff;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-backdrop: blur(12px);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background-color: #f4f7fb;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

[id] {
  scroll-margin-top: 85px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-900);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-700);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* Logo Styling */
.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
  border: 2px solid var(--white);
}

.top-bar-logo-img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
}

.card-logo-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin: 0 auto 0.6rem auto;
  box-shadow: var(--shadow-md);
  display: block;
}

.identity-logo-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  object-fit: cover;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, var(--primary-900), var(--primary-700));
  color: var(--white);
  padding: 0.4rem 0;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-badge {
  background-color: var(--accent-emerald);
  color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-900);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-sub {
  font-size: 0.675rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-600);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-600);
  border-radius: var(--radius-full);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  min-height: 42px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-800);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-block {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-900);
  cursor: pointer;
  padding: 0.3rem;
}

/* COMPACT TOP HERO BANNER SLIDER - STRICT ELEGANT HEIGHT CLAMP */
/* PROPORTIONED TOP HERO BANNER SLIDER - BALANCED 390px HEIGHT */
.top-hero-slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background-color: var(--primary-900);
  color: var(--white);
  max-height: 390px;
}

.top-slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  max-height: 390px;
}

.top-slider-wrapper {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.top-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  padding: 1.85rem 0 2.2rem 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  min-height: 320px;
  max-height: 390px;
}

.top-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 55%, rgba(15, 23, 42, 0.55) 100%);
  z-index: 1;
}

.top-slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.top-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.top-slider-arrow:hover {
  background: var(--primary-600);
  border-color: var(--primary-500);
}

.top-slider-arrow.prev { left: 1rem; }
.top-slider-arrow.next { right: 1rem; }

.top-slider-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 20;
}

.top-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
}

.top-slider-dot.active {
  background: var(--primary-500);
  width: 25px;
  border-radius: var(--radius-full);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(37, 99, 235, 0.25);
  color: #93c5fd;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.55rem;
  line-height: 1.22;
}

.hero-title span {
  color: #60a5fa;
}

.hero-description {
  font-size: 0.925rem;
  color: var(--gray-300);
  margin-bottom: 0.85rem;
  max-width: 650px;
  line-height: 1.4;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-pill {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--white);
}

.feature-pill-icon {
  color: var(--accent-emerald);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* MAIN CONVERSION FORM SECTION (DESKTOP 2-COL, MOBILE 1-COL) */
.conversion-section {
  padding: 3.5rem 0;
  background-color: #f8fafc;
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.lead-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
  color: var(--gray-800);
}

.lead-card-header {
  margin-bottom: 1rem;
  text-align: center;
}

.lead-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-900);
}

.lead-card-sub {
  font-size: 0.825rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

/* Form Controls & Habeas Data Compliance */
.form-group {
  margin-bottom: 0.85rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.form-control, .form-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background-color: var(--white);
  color: var(--gray-900);
  transition: var(--transition-fast);
  min-height: 42px;
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Ley 2300 Channel Selector Box */
.channel-selector-box {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  margin-bottom: 0.85rem;
}

.channel-title {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.channel-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}

.channel-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.775rem;
  color: var(--gray-700);
  cursor: pointer;
}

.legal-schedule-notice {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 0.4rem;
  line-height: 1.25;
}

/* Habeas Data Checkboxes */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-600);
  cursor: pointer;
}

.checkbox-text {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.3;
}

.checkbox-text a {
  color: var(--primary-600);
  text-decoration: underline;
  font-weight: 600;
}

/* Section Header Shared Component */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-600);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
}

/* Insurers Banner Section */
.insurers-section {
  padding: 2rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.insurers-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.insurers-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.insurer-badge {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-900);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

/* Interactive Simulator Section */
.simulator-section {
  padding: 3.5rem 0;
  background-color: #f8fafc;
  overflow: hidden;
}

.simulator-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.sim-steps-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 1.75rem;
}

.sim-steps-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gray-200);
  z-index: 1;
  transform: translateY(-50%);
}

.sim-step-item {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.825rem;
  color: var(--gray-400);
}

.sim-step-item.active {
  color: var(--primary-600);
}

.sim-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--gray-200);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.sim-step-item.active .sim-step-number {
  background-color: var(--primary-600);
  color: var(--white);
}

.sim-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sim-option-card {
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.25rem 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.sim-option-card:hover, .sim-option-card.selected {
  border-color: var(--primary-600);
  background-color: var(--primary-100);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sim-option-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.sim-option-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.25rem;
}

.sim-option-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Secondary Promo Slider Section */
.promo-slider-section {
  padding: 3.5rem 0;
  background-color: var(--primary-900);
  color: var(--white);
  overflow: hidden;
}

.slider-container {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--primary-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  will-change: transform;
}

.slide-item {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  min-height: 250px;
}

.slide-content {
  padding: 1.5rem 1.75rem;
  z-index: 2;
}

.slide-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slide-title {
  color: var(--white);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.slide-desc {
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.slide-image-wrapper {
  height: 100%;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 2.5rem;
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--primary-500);
  width: 26px;
  border-radius: var(--radius-full);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--primary-600);
}

.slider-arrow.prev { left: 0.85rem; }
.slider-arrow.next { right: 0.85rem; }

/* Services Grid Section */
.services-section {
  padding: 3.5rem 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--primary-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  margin-bottom: 1rem;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}

/* Identity & Transparency Section */
.identity-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  color: var(--white);
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.identity-title {
  color: var(--white);
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
}

.identity-text {
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.identity-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  backdrop-filter: blur(8px);
}

.identity-item {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.identity-item:last-child {
  border-bottom: none;
}

.identity-label {
  color: var(--gray-400);
  font-weight: 600;
}

.identity-value {
  color: var(--white);
  font-weight: 700;
  text-align: right;
}

/* Compliance Disclaimer Alert Box */
.compliance-disclaimer-box {
  background-color: var(--accent-gold-light);
  border-left: 4px solid var(--accent-gold);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.25rem 0;
  font-size: 0.825rem;
  color: #78350f;
  line-height: 1.4;
}

/* Accordion FAQ Section */
.faq-section {
  padding: 3.5rem 0;
  background-color: #f8fafc;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-header:hover {
  background-color: var(--gray-100);
}

.faq-content {
  padding: 0 1.15rem 1rem 1.15rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  display: none;
  line-height: 1.5;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .faq-header {
  color: var(--primary-600);
  border-bottom: 1px solid var(--gray-200);
}

/* Footer Section */
.footer {
  background-color: var(--primary-900);
  color: var(--gray-400);
  padding: 3rem 0 1.75rem 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

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

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-legal-notice {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 1rem;
  line-height: 1.45;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

/* Cookie Banner Popup */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  max-width: 400px;
  margin: 0 auto;
  background: var(--primary-900);
  color: var(--white);
  padding: 1.15rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: none;
}

.cookie-banner p {
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

/* Legal Document Pages Layout */
.legal-page {
  padding: 3rem 0;
  background-color: var(--white);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.65;
}

.legal-content h1 {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--primary-800);
}

/* ==========================================================================
   STRICT MOBILE RESPONSIVE SLIDER & FORM LAYOUT (320px - 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  .top-hero-slider, .top-slider-viewport, .top-slide {
    max-height: 380px;
  }
  
  .top-slide {
    padding: 1.75rem 0 2.5rem 0;
    min-height: 320px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }

  .conversion-grid, .identity-grid, .slide-item {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .slide-image-wrapper {
    min-height: 220px;
  }
  
  .services-grid, .sim-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 0.85rem;
  }
  
  .top-bar-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header {
    height: auto;
  }
  
  .navbar {
    height: 64px;
  }
  
  .brand-name {
    font-size: 1rem;
  }
  
  .brand-sub {
    font-size: 0.625rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  /* BALANCED PROPORTIONED MOBILE TOP SLIDER */
  .top-hero-slider, .top-slider-viewport, .top-slide {
    max-height: 270px;
  }
  
  .top-slide {
    padding: 1.1rem 0 1.6rem 0;
    min-height: 230px;
  }
  
  .hero-title {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
  }
  
  .hero-description {
    font-size: 0.8rem;
    margin-bottom: 0.55rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-features {
    display: none; /* Hide dense pills on mobile slides for maximum elegance */
  }
  
  .hero-badge {
    font-size: 0.675rem;
    padding: 0.12rem 0.5rem;
    margin-bottom: 0.3rem;
  }

  .top-slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  
  .top-slider-arrow.prev { left: 0.35rem; }
  .top-slider-arrow.next { right: 0.35rem; }

  .lead-card {
    padding: 1.25rem;
    border-radius: var(--radius-xl);
  }
  
  .lead-card-title {
    font-size: 1.15rem;
  }
  
  .services-grid, .sim-options-grid {
    grid-template-columns: 1fr;
  }
  
  .sim-steps-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .sim-steps-bar::before {
    display: none;
  }
  
  .sim-step-item {
    padding: 0;
  }
  
  .simulator-card {
    padding: 1.15rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14.5px;
  }

  .top-hero-slider, .top-slider-viewport, .top-slide {
    max-height: 250px;
  }
  
  .hero-title {
    font-size: 1.125rem;
  }
  
  .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.825rem;
    min-height: 38px;
  }
  
  .channel-options {
    grid-template-columns: 1fr;
  }
  
  .identity-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }
  
  .identity-value {
    text-align: left;
  }
}

/* RESPONSIVE CARDS GRID SYSTEM FOR SPECIALIZED PAGES */
.responsive-card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.responsive-card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.responsive-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.page-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.page-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-500);
}

@media (max-width: 992px) {
  .responsive-card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .responsive-card-grid-2,
  .responsive-card-grid-3,
  .responsive-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .page-card {
    padding: 1.25rem !important;
  }
}
