/* ============================================================
   FIBER MA – Landing Page Styles
   RTL · Arabic · Mobile-First · Telecom Red/White/Dark
   ============================================================ */

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

:root {
  --red:        #e01f2d;
  --red-dark:   #b8111e;
  --red-light:  #ff3d4e;
  --dark:       #0f1117;
  --dark-2:     #1a1d27;
  --dark-3:     #252837;
  --grey:       #f4f5f8;
  --grey-mid:   #e2e5ee;
  --text:       #2a2d3a;
  --text-light: #6b7280;
  --white:      #ffffff;
  --gold:       #f59e0b;
  --green:      #10b981;

  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow:     0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --shadow-red: 0 8px 30px rgba(224,31,45,.35);

  --transition: .3s ease;
  --font:       'Cairo', 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(224,31,45,.1);
  color: var(--red);
  font-weight: 700;
  font-size: .85rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: .5px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(224,31,45,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Plan Buttons */
.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}
.btn-plan-starter {
  background: var(--grey);
  color: var(--dark);
  border: 2px solid var(--grey-mid);
}
.btn-plan-starter:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-plan-pro {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-plan-pro:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(224,31,45,.45);
}
.btn-plan-ultra {
  background: linear-gradient(135deg, #1a1d27, #2d3150);
  color: var(--white);
  border: 2px solid #3a3f5c;
}
.btn-plan-ultra:hover {
  background: linear-gradient(135deg, #0f1117, #1a1d27);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Pulse glow */
.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 30px rgba(224,31,45,.35); }
  50% { box-shadow: 0 8px 50px rgba(224,31,45,.65), 0 0 0 6px rgba(224,31,45,.12); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  padding: 10px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
.logo-accent {
  color: var(--red);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0610 40%, #2b0812 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 20px 100px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6b0011 0%, transparent 70%);
  bottom: -100px; right: 10%;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #e01f2d55 0%, transparent 70%);
  top: 40%; left: 45%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,31,45,.2);
  border: 1px solid rgba(224,31,45,.4);
  color: #ff8c94;
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--gold); }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--red);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0; left: 0;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  opacity: .5;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero-subtitle strong { color: var(--gold); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* Speed Ring Decoration */
.hero-visual {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: .25;
  pointer-events: none;
}
.speed-ring {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border: 2px solid rgba(224,31,45,.4);
  border-radius: 50%;
  animation: spinSlow linear infinite;
}
.ring-outer { width: 380px; height: 380px; animation-duration: 25s; border-style: dashed; }
.ring-middle { width: 270px; height: 270px; animation-duration: 18s; animation-direction: reverse; }
.ring-inner  { width: 175px; height: 175px; animation-duration: 12s; border-color: rgba(224,31,45,.7); }
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ring-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 2rem;
  gap: 6px;
}
.ring-center span { font-size: 1rem; font-weight: 800; }

/* Wave Divider */
.hero-wave {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--grey);
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-mid);
}
.trust-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
}
.trust-item i {
  color: var(--red);
  font-size: 1.25rem;
}

/* ============================================================
   PLANS
   ============================================================ */
.plans {
  padding: 100px 0;
  background: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--grey-mid);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Popular */
.plan-popular {
  border-color: var(--red);
  transform: scale(1.03);
  box-shadow: 0 12px 50px rgba(224,31,45,.25);
}
.plan-popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: 5px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

/* Plan Headers */
.plan-header {
  padding: 28px 28px 24px;
  text-align: center;
}
.plan-starter { background: linear-gradient(135deg, #f4f5f8, #e9eaf0); }
.plan-pro     { background: linear-gradient(135deg, var(--red), #b8111e); }
.plan-ultra   { background: linear-gradient(135deg, var(--dark-2), var(--dark-3)); }

.plan-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
}
.plan-starter .plan-icon { background: rgba(224,31,45,.1); color: var(--red); }
.plan-pro     .plan-icon { background: rgba(255,255,255,.2); color: var(--white); }
.plan-ultra   .plan-icon { background: rgba(255,255,255,.1); color: var(--gold); }

.plan-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.plan-starter .plan-name,
.plan-starter .plan-speed { color: var(--dark); }
.plan-pro .plan-name,
.plan-pro .plan-speed,
.plan-ultra .plan-name,
.plan-ultra .plan-speed { color: var(--white); }

.plan-speed {
  font-size: 1.6rem;
  font-weight: 900;
  opacity: .9;
}

/* Plan Body */
.plan-body {
  padding: 24px 28px 28px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: center;
}
.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.price-details {
  display: flex;
  flex-direction: column;
  padding-top: 6px;
}
.price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
}
.price-period {
  font-size: .85rem;
  color: var(--text-light);
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--grey-mid);
  font-size: .95rem;
  font-weight: 500;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i.fa-check-circle { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.plan-features li.feature-disabled { color: var(--text-light); }
.plan-features li.feature-disabled i.fa-times-circle { color: #d1d5db; font-size: 1rem; flex-shrink: 0; }

.plans-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
  font-size: .9rem;
}
.plans-note i { color: var(--red); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--grey) 0%, var(--white) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-mid);
  transition: transform .35s, box-shadow .35s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.benefit-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.icon-speed     { background: rgba(224,31,45,.1); color: var(--red); }
.icon-stable    { background: rgba(16,185,129,.1); color: var(--green); }
.icon-unlimited { background: rgba(245,158,11,.1); color: var(--gold); }
.icon-support   { background: rgba(99,102,241,.1); color: #6366f1; }
.icon-install   { background: rgba(224,31,45,.1); color: var(--red); }
.icon-secure    { background: rgba(16,185,129,.1); color: var(--green); }

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.benefit-card p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.benefit-card p strong { color: var(--text); }

.benefit-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.b-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
}
.b-stat-text {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Speed Compare */
.speed-compare {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-mid);
}
.compare-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.compare-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.compare-label {
  width: 90px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  flex-shrink: 0;
}
.compare-bar {
  flex: 1;
  height: 14px;
  background: var(--grey-mid);
  border-radius: 50px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 1.5s cubic-bezier(.25,.8,.25,1);
}
.bar-old { background: #d1d5db; }
.bar-new { background: linear-gradient(90deg, var(--red), #ff6b7a); }
.compare-speed {
  width: 100px;
  font-weight: 800;
  font-size: .9rem;
  text-align: left;
  flex-shrink: 0;
  color: var(--text);
}
.compare-new .compare-speed { color: var(--red); }
.compare-caption {
  text-align: center;
  font-weight: 700;
  color: var(--text-light);
  font-size: .95rem;
}
.compare-caption i { color: var(--gold); }
.compare-caption strong { color: var(--red); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}

.testimonials .section-tag {
  background: rgba(224,31,45,.2);
  color: #ff8c94;
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,.55); }

/* Overall Rating */
.stars-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.overall-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.overall-info .stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 6px; }
.overall-info p { color: rgba(255,255,255,.55); font-size: .85rem; }

/* Slider */
.testimonials-slider {
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding-bottom: 8px;
  transition: transform .5s ease;
}
.testimonials-slider.dragging { cursor: grabbing; }

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  flex-shrink: 0;
  transition: opacity .3s, transform .3s;
}

.t-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.avatar-1 { background: linear-gradient(135deg, #e01f2d, #ff6b7a); }
.avatar-2 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.avatar-3 { background: linear-gradient(135deg, #10b981, #059669); }
.avatar-4 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.avatar-5 { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.avatar-6 { background: linear-gradient(135deg, #ec4899, #db2777); }

.t-info {
  flex: 1;
}
.t-info strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}
.t-info span {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  display: block;
  margin-bottom: 4px;
}
.t-stars { color: var(--gold); font-size: .85rem; }

.t-badge {
  font-size: .75rem;
  color: var(--green);
  background: rgba(16,185,129,.15);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  align-self: flex-start;
}

.t-text {
  color: rgba(255,255,255,.7);
  font-size: .96rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.t-text::before { content: '"'; }
.t-text::after  { content: '"'; }

.t-plan {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(224,31,45,.9);
  background: rgba(224,31,45,.12);
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0610 60%, #2b0812 100%);
  position: relative;
  overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .3;
}
.cta-shape-1 { width: 500px; height: 500px; background: var(--red); top: -200px; right: -100px; }
.cta-shape-2 { width: 400px; height: 400px; background: #6b0011; bottom: -150px; left: -100px; }

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-icon-big {
  width: 80px; height: 80px;
  background: rgba(224,31,45,.2);
  border: 2px solid rgba(224,31,45,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--red);
  margin: 0 auto 28px;
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  margin-bottom: 44px;
  line-height: 1.8;
}
.cta-subtitle strong { color: var(--gold); }

/* Form */
.cta-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: right;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .9rem;
}
.required { color: var(--red); }

.input-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.35);
  font-size: .9rem;
  pointer-events: none;
}
.input-wrap input,
.input-wrap select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color .25s, background .25s;
  direction: rtl;
  text-align: right;
}
.input-wrap select option { background: var(--dark-2); color: var(--white); }
.input-wrap input::placeholder { color: rgba(255,255,255,.35); }
.input-wrap input:focus,
.input-wrap select:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,.12);
}
.input-wrap input.invalid,
.input-wrap select.invalid { border-color: #f87171; }

.btn-cta-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font);
  margin-top: 8px;
  transition: background .25s, transform .25s;
  box-shadow: 0 8px 30px rgba(224,31,45,.4);
}
.btn-cta-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-cta-submit:active { transform: translateY(0); }

.form-note {
  text-align: center;
  margin-top: 16px;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
}
.form-note i { margin-left: 4px; }

/* Success */
.form-success {
  padding: 48px 24px;
  text-align: center;
}
.success-icon {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 20px;
}
.form-success h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 12px; }
.form-success p  { color: rgba(255,255,255,.65); margin-bottom: 28px; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white) !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #070a10;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  transition: var(--transition);
}
.social-links a:hover { background: var(--red); color: var(--white); }

.footer-links-col h4,
.footer-contact h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 12px; }
.footer-links-col ul li a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: .9rem;
  transition: color .25s;
}
.footer-links-col ul li a:hover { color: var(--white); }

.footer-contact p {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact p i { color: var(--red); }
.footer-contact a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .25s;
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,.3);
  font-size: .85rem;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(224,31,45,.5);
  z-index: 999;
  transition: opacity .3s, transform .3s;
  transform: translateY(100px);
  opacity: 0;
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.floating-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) !important;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.animate-fade-up.in-view { opacity: 1; transform: translateY(0); }
.animate-slide-up { opacity: 0; transform: translateY(50px); transition: opacity .7s ease, transform .7s ease; }
.animate-slide-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .15s !important; }
.delay-2 { transition-delay: .3s !important; }
.delay-3 { transition-delay: .45s !important; }
.delay-4 { transition-delay: .6s !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: calc(50% - 12px); }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    font-size: 1.2rem;
    transform: translateX(-100%);
    transition: transform .35s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }

  /* Hero */
  .hero { padding: 100px 16px 80px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { font-size: .82rem; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; }
  .plan-popular { transform: scale(1); }
  .plan-popular:hover { transform: translateY(-8px); }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .speed-compare { padding: 24px 20px; }
  .compare-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .compare-bar { width: 100%; }
  .compare-label, .compare-speed { width: auto; }

  /* Testimonials */
  .testimonial-card { min-width: calc(90vw - 40px); }

  /* CTA Form */
  .form-row { grid-template-columns: 1fr; }
  .cta-form { padding: 24px 20px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Floating CTA */
  .floating-cta { bottom: 16px; left: 16px; padding: 12px 20px; font-size: .9rem; }

  /* Sections */
  .plans { padding: 70px 0; }
  .benefits { padding: 70px 0; }
  .testimonials { padding: 70px 0; }
  .cta-final { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; justify-content: center; }
  .stars-overall { flex-direction: column; text-align: center; }
}
