/* ================================================
   COMARCO Landing Page — Style Sheet
   Color Palette (matched to logo):
   - Primary:    #0d3158 (COMARCO blue)
   - Accent:     #f96c0f (COMARCO orange)
   - Dark:       #091e3a (deep navy)
   - Light:      #F7F9FC (off-white)
   - Gradient:   #0d3158 → #f96c0f
   - Success:    #25D366 (WhatsApp green)
   - Danger/Red: #E53E3E
   ================================================ */

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

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

body {
  font-family: 'Tajawal', sans-serif;
  background: #F7F9FC;
  color: #1a1a2e;
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }

/* ===== TYPOGRAPHY ===== */
.text-gradient {
  background: linear-gradient(135deg, #0d3158, #f96c0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-red {
  color: #E53E3E;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 10px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.25rem;
  border-radius: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #0d3158, #1a5a9e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13, 49, 88, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 49, 88, 0.4);
}

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

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: #0d3158;
  border: 2px solid #0d3158;
}

.btn-outline:hover {
  background: #0d3158;
  color: #fff;
  transform: translateY(-2px);
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 3px;
}

.navbar.scrolled .lang-switcher {
  background: rgba(13, 49, 88, 0.06);
  border-color: rgba(13, 49, 88, 0.12);
}

.lang-btn {
  padding: 6px 12px;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

.navbar.scrolled .lang-btn {
  color: rgba(13, 49, 88, 0.55);
}

.lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .lang-btn:hover {
  color: #0d3158;
  background: rgba(13, 49, 88, 0.08);
}

.lang-btn.active {
  color: #fff;
  background: #f96c0f;
  box-shadow: 0 2px 8px rgba(249, 108, 15, 0.35);
}

.navbar.scrolled .lang-btn.active {
  color: #fff;
  background: #f96c0f;
}

/* ===== LTR OVERRIDES ===== */
html[dir="ltr"] body {
  direction: ltr;
}

html[dir="ltr"] .form-group input,
html[dir="ltr"] .form-group select,
html[dir="ltr"] .form-group textarea {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .form-group label i {
  margin-left: 0;
  margin-right: 6px;
}

html[dir="ltr"] .form-group select {
  background-position: right 16px center;
  padding-left: 16px;
  padding-right: 40px;
}

html[dir="ltr"] .form-disclaimer i {
  margin-left: 0;
  margin-right: 4px;
}

html[dir="ltr"] .nav-links {
  right: auto;
  left: -100%;
}

html[dir="ltr"] .nav-links.active {
  right: auto;
  left: 0;
}

@media (max-width: 768px) {
  html[dir="ltr"] .nav-links {
    right: auto;
    left: -100%;
  }

  html[dir="ltr"] .nav-links.active {
    right: auto;
    left: 0;
  }
}

html[dir="ltr"] .footer-contact a i {
  margin-left: 0;
  margin-right: 8px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo img {
  height: 60px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo .logo-default {
  display: block;
}

.logo .logo-scrolled {
  display: none;
}

.navbar.scrolled .logo .logo-default {
  display: none;
}

.navbar.scrolled .logo .logo-scrolled {
  display: block;
}

.navbar.scrolled .logo img {
  height: 50px;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
  color: #1a1a2e;
}

.nav-links a:hover {
  color: #f96c0f;
}

.nav-cta {
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
  background: #1a1a2e;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #091e3a 0%, #0d3158 50%, #091e3a 100%);
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 108, 15, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 49, 88, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-40px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 24px;
  border-radius: 50px;
  color: #f96c0f;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #f96c0f, #fca56a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-ctas .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-ctas .btn-outline:hover {
  background: #fff;
  color: #0d3158;
  border-color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item i {
  color: #f96c0f;
  font-size: 1.1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.3rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTIONS GENERAL ===== */
.section {
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(13, 49, 88, 0.08), rgba(249, 108, 15, 0.08));
  color: #0d3158;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-align: center;
}

.section > .container > .section-badge {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
  color: #091e3a;
  line-height: 1.35;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #555;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ===== PAIN POINTS ===== */
.pain-section {
  background: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pain-card {
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.pain-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(229, 62, 62, 0.1);
}

.pain-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #C53030;
}

.pain-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
  background: linear-gradient(180deg, #F7F9FC 0%, #EDF2F7 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.solution-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(13, 49, 88, 0.06);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.solution-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13, 49, 88, 0.1);
  border-color: rgba(13, 49, 88, 0.15);
}

.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0d3158, #1a5a9e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #fff;
}

.solution-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #091e3a;
}

.solution-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ===== STEPS / HOW IT WORKS ===== */
.steps-section {
  background: #091e3a;
  position: relative;
}

.steps-section .section-badge {
  background: rgba(249, 108, 15, 0.15);
  color: #f96c0f;
}

.steps-section .section-title {
  color: #fff;
}

.steps-section .section-title .text-gradient {
  background: linear-gradient(135deg, #f96c0f, #fca56a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.step-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -18px;
  right: 50%;
  transform: translateX(50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f96c0f, #fca56a);
  color: #091e3a;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2.2rem;
  color: #f96c0f;
  margin-bottom: 16px;
  margin-top: 8px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: linear-gradient(135deg, #F7F9FC, #EDF2F7);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(13, 49, 88, 0.06);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.why-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13, 49, 88, 0.08);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d3158, #1a5a9e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: #fff;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #091e3a;
}

.why-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ===== AUDIENCE ===== */
.audience-section {
  background: linear-gradient(180deg, #F7F9FC 0%, #EDF2F7 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.audience-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.audience-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.audience-card:hover {
  border-color: #f96c0f;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(249, 108, 15, 0.12);
}

.audience-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #091e3a;
}

.audience-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ===== SOCIAL PROOF ===== */
.proof-section {
  background: #fff;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0d3158, #f96c0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
  margin-top: 4px;
}

/* Testimonials Slider */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin: 0 50px;
  padding: 0;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.testimonial-card {
  background: linear-gradient(135deg, #F7F9FC, #EDF2F7);
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid rgba(13, 49, 88, 0.06);
  min-width: calc(25% - 12px);
  flex-shrink: 0;
  box-sizing: border-box;
  opacity: 1;
  transform: none;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(13, 49, 88, 0.1);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(13, 49, 88, 0.12);
  color: #0d3158;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 2;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: #0d3158;
  color: #fff;
}

.slider-prev { left: -46px; }
.slider-next { right: -46px; }

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: #0d3158;
  width: 22px;
  border-radius: 4px;
}

.testimonial-stars {
  color: #f96c0f;
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d3158, #1a5a9e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: #091e3a;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: #888;
}

/* ===== FINAL CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #091e3a 0%, #0d3158 100%);
  padding: 100px 0;
}

.cta-box {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.urgency-badge {
  display: inline-block;
  background: rgba(229, 62, 62, 0.15);
  color: #FC8181;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 1rem;
  margin-bottom: 24px;
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-subtitle strong {
  color: #f96c0f;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-buttons .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline:hover {
  background: #fff;
  color: #0d3158;
}

.cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: #0A0F1A;
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 80px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-slogan {
  font-size: 1rem;
  color: #f96c0f;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f96c0f;
}

.footer-contact a i {
  margin-left: 8px;
  width: 18px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== FLOATING CTA BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f96c0f, #0d3158);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(249, 108, 15, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(249, 108, 15, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(249, 108, 15, 0.4); }
  50% { box-shadow: 0 6px 40px rgba(249, 108, 15, 0.6); }
}

/* ===== SCROLL REVEAL BASE ===== */
.pain-card,
.solution-card,
.step-card,
.why-card,
.audience-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pain-card.revealed,
.solution-card.revealed,
.step-card.revealed,
.why-card.revealed,
.audience-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for cards */
.pain-card:nth-child(2), .solution-card:nth-child(2), .why-card:nth-child(2),
.audience-card:nth-child(2) { transition-delay: 0.1s; }
.pain-card:nth-child(3), .solution-card:nth-child(3), .why-card:nth-child(3),
.audience-card:nth-child(3) { transition-delay: 0.2s; }
.pain-card:nth-child(4), .solution-card:nth-child(4), .why-card:nth-child(4),
.audience-card:nth-child(4) { transition-delay: 0.3s; }
.pain-card:nth-child(5), .solution-card:nth-child(5), .why-card:nth-child(5),
.audience-card:nth-child(5) { transition-delay: 0.4s; }
.pain-card:nth-child(6), .solution-card:nth-child(6), .why-card:nth-child(6),
.audience-card:nth-child(6) { transition-delay: 0.5s; }

.step-card:nth-child(2) { transition-delay: 0.15s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }
.step-card:nth-child(4) { transition-delay: 0.45s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }
  .cta-title { font-size: 2.2rem; }

  .pain-grid,
  .solution-grid,
  .why-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonial-card {
    min-width: calc(50% - 8px);
  }

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

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

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .section { padding: 70px 0; }
  .section-title { font-size: 1.75rem; }
  .cta-title { font-size: 1.8rem; }

  /* Mobile navbar layout: Logo | [spacer] | LangSwitcher | Hamburger */
  .navbar-inner {
    gap: 8px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #091e3a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.4s ease;
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: #fff !important;
    font-size: 1.1rem;
  }

  .nav-cta {
    display: none;
  }

  .lang-switcher {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    margin-inline-start: auto;
    order: 2;
    flex-shrink: 0;
  }

  .navbar.scrolled .lang-switcher {
    background: rgba(13, 49, 88, 0.06);
    border-color: rgba(13, 49, 88, 0.12);
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .logo {
    order: 1;
    flex-shrink: 0;
  }

  .logo img {
    height: 48px;
  }

  .hamburger {
    display: flex;
    z-index: 1002;
    order: 3;
    flex-shrink: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .pain-grid,
  .solution-grid,
  .why-grid,
  .audience-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    min-width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.9);
    z-index: 3;
  }

  .testimonials-slider {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .slider-prev { left: 6px; }
  .slider-next { right: 6px; }

  .stats-bar {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 340px;
  }

  .btn-xl {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 340px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
  }

  .footer-brand .footer-logo {
    height: 80px;
    margin-bottom: 10px;
  }

  .footer-brand .footer-slogan {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .footer-brand .footer-desc {
    font-size: 0.85rem;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .footer-links a,
  .footer-contact a {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .footer-bottom {
    padding: 16px 0 70px;
    font-size: 0.8rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 480px) {
  .hero { padding: 100px 16px 60px; }
  .hero-title { font-size: 1.55rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-badge { font-size: 0.82rem; padding: 8px 14px; }
  .hero-trust { gap: 8px; }
  .trust-item { font-size: 0.78rem; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.9rem; }
  .cta-title { font-size: 1.4rem; }
  .cta-subtitle { font-size: 0.95rem; }

  .logo img {
    height: 42px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .lang-switcher {
    padding: 2px;
    gap: 2px;
  }

  .pain-card, .solution-card, .why-card, .audience-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .pain-card h3, .solution-card h3, .why-card h3, .audience-card h3 {
    font-size: 1.05rem;
  }

  .pain-card p, .solution-card p, .why-card p, .audience-card p {
    font-size: 0.9rem;
  }

  .pain-icon, .audience-emoji {
    font-size: 2.2rem;
  }

  .solution-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .step-card {
    padding: 28px 18px;
  }

  .urgency-badge {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .testimonial-card {
    padding: 18px 14px;
    min-width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .stats-bar {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .testimonials-slider {
    margin: 0;
    padding: 0;
  }

  .slider-prev { left: 4px; }
  .slider-next { right: 4px; }

  .slider-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    opacity: 0.85;
    background: rgba(255,255,255,0.9);
  }
}

/* ===== LEAD FORM SECTION ===== */
.form-section {
  background: linear-gradient(180deg, #EDF2F7 0%, #F7F9FC 100%);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.form-info {
  padding-top: 20px;
}

.form-title {
  font-size: 2rem;
  font-weight: 900;
  color: #091e3a;
  margin-bottom: 14px;
  line-height: 1.4;
}

.form-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.form-desc strong {
  color: #0d3158;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.form-benefit i {
  color: #25D366;
  font-size: 1.1rem;
}

/* Form Card */
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(13, 49, 88, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.form-group label i {
  color: #0d3158;
  margin-left: 6px;
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a2e;
  background: #F7F9FC;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  direction: rtl;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A0AEC0;
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0d3158;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(13, 49, 88, 0.08);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  padding-left: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Validation errors */
.form-error {
  display: none;
  font-size: 0.8rem;
  color: #E53E3E;
  margin-top: 6px;
  font-weight: 600;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.form-group.has-error .form-error {
  display: block;
}

/* Submit button */
.form-submit-btn {
  width: 100%;
  margin-top: 8px;
  font-size: 1.15rem;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d3158, #1a5a9e);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 49, 88, 0.35);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 14px;
  font-weight: 500;
}

.form-disclaimer i {
  margin-left: 4px;
  color: #aaa;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.visible {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  font-size: 4rem;
  color: #25D366;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #091e3a;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

.form-success p strong {
  color: #0d3158;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form responsive */
@media (max-width: 1024px) {
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-info {
    text-align: center;
  }

  .form-benefits {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .form-submit-btn {
    font-size: 1rem;
    padding: 15px;
  }
}
