/* ==========================================================================
   EzySolution — Design System & Stylesheet (Pack Chef de Projet Opérationnel)
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-900: #050C26;
  --primary-800: #0A1128;
  --primary-700: #111C44;
  --primary-600: #1E295A;
  
  --accent-600: #E50914;
  --accent-500: #FF1E27;
  --accent-400: #FF4D55;

  --success-600: #059669;
  --success-500: #10B981;
  --success-100: #ECFDF5;

  --warning-600: #D97706;
  --warning-500: #F59E0B;
  --warning-100: #FEF3C7;

  --info-600: #0284C7;
  --info-500: #0EA5E9;
  --info-100: #E0F2FE;

  --danger-600: #DC2626;
  --danger-100: #FEE2E2;

  --neutral-900: #0F172A;
  --neutral-800: #1E293B;
  --neutral-700: #334155;
  --neutral-600: #475569;
  --neutral-500: #64748B;
  --neutral-400: #94A3B8;
  --neutral-300: #CBD5E1;
  --neutral-200: #E2E8F0;
  --neutral-100: #F1F5F9;
  --neutral-50:  #F8FAFC;
  --white:       #FFFFFF;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-cockpit: 0 25px 50px -12px rgba(5, 12, 38, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.strikethrough {
  text-decoration: line-through;
  opacity: 0.65;
}

/* Utilities Icon */
.icon-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.text-success { color: var(--success-600) !important; }
.text-primary { color: var(--info-600) !important; }
.text-danger  { color: var(--danger-600) !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(229, 9, 20, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(229, 9, 20, 0.45);
  background: var(--accent-500);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13.5px;
}

.btn-xl {
  padding: 18px 32px;
  font-size: 17px;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  font-size: 14.5px;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: var(--white);
  border-color: var(--neutral-300);
  color: var(--neutral-800);
  padding: 12px 24px;
  font-size: 14.5px;
}

.btn-outline-dark:hover {
  border-color: var(--neutral-800);
  background: var(--neutral-50);
}

/* Badges */
.section-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--info-600);
  background: var(--info-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-900);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--neutral-600);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background: var(--primary-900);
  color: var(--white);
  padding: 10px 0;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-600);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-bar-text {
  color: #E2E8F0;
}

.top-bar-link {
  color: #F87171;
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--neutral-700);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-600);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background: radial-gradient(100% 100% at 50% 0%, #0C1947 0%, var(--primary-900) 100%);
  color: var(--white);
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #93C5FD;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 16.5px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-guarantee {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94A3B8;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Cockpit Visual Mockup
   ========================================================================== */
.hero-visual {
  position: relative;
}

.cockpit-mockup {
  background: var(--white);
  color: var(--neutral-800);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-cockpit);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cockpit-window-bar {
  background: #050C26;
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1E295A;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.window-title {
  font-size: 11.5px;
  font-weight: 600;
  color: #94A3B8;
  font-family: var(--font-display);
}

.window-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  padding: 2px 8px;
  border-radius: 4px;
}

.cockpit-body {
  padding: 20px;
  background: #F8FAFC;
}

.cockpit-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  padding: 12px;
}

.metric-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--neutral-500);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.progress-bar {
  height: 6px;
  background: var(--neutral-200);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--info-600);
  border-radius: 100px;
}

.progress-success { background: var(--success-500); }
.progress-info    { background: #6366F1; }

.gantt-preview {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.gantt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
}

.gantt-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--neutral-800);
}

.gantt-tag {
  font-size: 10.5px;
  background: var(--neutral-100);
  color: var(--neutral-600);
  padding: 2px 6px;
  border-radius: 4px;
}

.gantt-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gantt-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.gantt-task {
  color: var(--neutral-700);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gantt-track {
  height: 10px;
  background: var(--neutral-100);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.gantt-bar {
  height: 100%;
  border-radius: 4px;
}

.bar-1 { width: 75%; background: var(--info-500); }
.bar-2 { width: 60%; margin-left: 20%; background: #8B5CF6; }
.bar-3 { width: 50%; margin-left: 45%; background: var(--success-500); }
.bar-4 { width: 30%; margin-left: 70%; background: var(--accent-500); }

.cockpit-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--neutral-600);
  padding-top: 8px;
}

.cockpit-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--success-500);
  border-radius: 50%;
}

.cockpit-export {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--info-600);
}

/* ==========================================================================
   Trust Ticker
   ========================================================================== */
.trust-ticker {
  background: var(--neutral-100);
  border-bottom: 1px solid var(--neutral-200);
  padding: 16px 0;
}

.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-label {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-700);
}

.trust-icon {
  background: var(--neutral-200);
  color: var(--neutral-800);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ==========================================================================
   Comparison Section (Avant vs Après)
   ========================================================================== */
.comparison-section {
  padding: 90px 0;
  background: var(--white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}

.comparison-card {
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--neutral-200);
  background: var(--neutral-50);
}

.card-before {
  border-color: #FECACA;
  background: #FFFBFB;
}

.card-after {
  border-color: #A7F3D0;
  background: #F4FDF8;
  box-shadow: var(--shadow-md);
}

.card-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.badge-danger {
  background: var(--danger-100);
  color: var(--danger-600);
}

.badge-success {
  background: var(--success-100);
  color: var(--success-600);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
}

.icon-danger {
  color: var(--danger-600);
  margin-top: 2px;
}

.icon-success {
  color: var(--success-600);
  margin-top: 2px;
}

/* ==========================================================================
   5 Pillars Section
   ========================================================================== */
.pillars-section {
  padding: 90px 0;
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pillar-featured {
  border-color: var(--info-500);
  background: #F8FBFF;
}

.featured-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--info-600);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  background: var(--neutral-100);
  color: var(--primary-900);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-featured .pillar-icon-box {
  background: var(--info-100);
  color: var(--info-600);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--neutral-400);
  letter-spacing: 0.5px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 10px;
}

.pillar-text {
  font-size: 14px;
  color: var(--neutral-600);
  line-height: 1.5;
  margin-bottom: 20px;
}

.pillar-features {
  margin-top: auto;
  border-top: 1px solid var(--neutral-100);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-700);
}

/* ==========================================================================
   Super-Bonus Section
   ========================================================================== */
.bonus-section {
  padding: 90px 0;
  background: var(--white);
}

.bonus-card {
  background: linear-gradient(135deg, #07102E 0%, #0A1128 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid #1E295A;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F59E0B;
  color: #050C26;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.bonus-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.bonus-subtitle {
  font-size: 15.5px;
  color: #CBD5E1;
  max-width: 780px;
  margin-bottom: 36px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.bonus-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 22px;
}

.bonus-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #FCD34D;
}

.bonus-item-header h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.bonus-item p {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.45;
}

/* ==========================================================================
   Pricing Section (Stack Value)
   ========================================================================== */
.pricing-section {
  padding: 90px 0;
  background: var(--neutral-50);
}

.pricing-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.pricing-header {
  background: var(--primary-900);
  color: var(--white);
  padding: 36px;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
  color: #93C5FD;
  margin-bottom: 12px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14.5px;
  color: #94A3B8;
}

.pricing-table {
  padding: 30px;
  border-bottom: 1px solid var(--neutral-200);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--neutral-100);
  gap: 16px;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row.highlight {
  background: #FEFCE8;
  margin: 8px -16px;
  padding: 16px;
  border-radius: 8px;
  border-bottom: none;
}

.row-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.row-sub {
  font-size: 12.5px;
  color: var(--neutral-500);
  margin-top: 2px;
}

.row-val {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--neutral-700);
  white-space: nowrap;
}

.pricing-summary {
  padding: 36px;
  background: var(--white);
  text-align: center;
}

.price-comparison {
  margin-bottom: 24px;
}

.valeur-totale {
  font-size: 14px;
  color: var(--neutral-500);
  margin-bottom: 6px;
}

.prix-actuel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.prix-montant {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--accent-600);
  letter-spacing: -1px;
}

.prix-detail {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--neutral-600);
}

.payment-methods {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-200);
}

.payment-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-500);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.payment-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-pay {
  font-size: 12px;
  font-weight: 600;
  background: var(--neutral-100);
  color: var(--neutral-700);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--neutral-200);
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
}

.accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--info-500);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-800);
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--neutral-400);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--info-600);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

.accordion-body p {
  font-size: 14.5px;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ==========================================================================
   Support Section
   ========================================================================== */
.support-section {
  padding: 0 0 90px 0;
  background: var(--white);
}

.support-card {
  background: #F8FAFC;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.support-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--info-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.support-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 6px;
}

.support-desc {
  font-size: 14.5px;
  color: var(--neutral-600);
}

.support-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--primary-900);
  color: var(--neutral-400);
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 12px;
  border-radius: 4px;
  background: white;
  padding: 2px 6px;
}

.footer-tagline {
  max-width: 420px;
  color: #94A3B8;
  font-size: 13px;
}

.footer-copyright {
  color: #64748B;
}

/* ==========================================================================
   Sticky Mobile CTA Bar & Floating WhatsApp Widget
   ========================================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--neutral-200);
  padding: 12px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.sticky-title {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-900);
}

.sticky-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-600);
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--primary-900);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-pill {
    margin: 0 auto 20px auto;
  }

  .hero-guarantee {
    justify-content: center;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 50px 0 70px 0;
  }

  .hero-title {
    font-size: 26px;
  }

  .btn-xl {
    font-size: 15px;
    padding: 16px 20px;
  }

  .cockpit-metrics {
    grid-template-columns: 1fr;
  }

  .sticky-cta-bar {
    display: flex;
  }

  .floating-whatsapp {
    bottom: 74px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .support-card {
    padding: 24px;
  }
}
