/* ===== ELITE LANDING PAGE — CSS =====
   وكالة النخبة للتسويق الرقمي
   ================================ */

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

:root {
  --background: #fdfcf9;
  --foreground: #1a1d3b;
  --navy: #1a1d3b;
  --navy-deep: #111428;
  --gold: #c9a227;
  --gold-deep: #a07d12;
  --gold-soft: #e8ce7a;
  --muted: #6b7280;
  --border: #e5e7f0;
  --white: #ffffff;
  --whatsapp: #25d366;
  --destructive: #dc2626;
  --secondary-bg: #f5f4f0;

  --gradient-hero: linear-gradient(135deg, #111428 0%, #1a1d3b 50%, #222a4a 100%);
  --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e8ce7a 100%);
  --shadow-elegant: 0 20px 60px -20px rgba(26,29,59,0.35);
  --shadow-gold: 0 12px 40px -10px rgba(201,162,39,0.5);

  --radius: 16px;
  --font: 'Tajawal', system-ui, sans-serif;
}

html { direction: rtl; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--alt { background: var(--secondary-bg); }
.section--dark { background: var(--gradient-hero); color: #fff; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-gradient-gold { background: var(--gradient-gold); }
.bg-gradient-hero { background: var(--gradient-hero); }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold-soft); }

/* Section Title */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.section-title--light { color: #fff; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: scale(1.02); }
.btn--gold {
  background: var(--gradient-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 16px 50px -10px rgba(201,162,39,0.65); }
.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-elegant);
}
.btn--navy:hover { background: var(--navy-deep); }
.btn--outline {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn--outline:hover { background: rgba(255,255,255,0.15); }
.btn--wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5);
}
.btn--lg { padding: 18px 36px; font-size: 17px; border-radius: 16px; }
.btn--full { width: 100%; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,252,249,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 10px;
}
.logo-text {
  font-weight: 900;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.25;
}
.logo-text span { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(201,162,39,0.15) 0, transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(201,162,39,0.1) 0, transparent 40%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,162,39,0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- LEAD FORM ---- */
.form-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border);
  position: relative;
}
.form-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-gold);
}
.form-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-card .form-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--foreground);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input::placeholder { color: #b0b4c4; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-error { font-size: 12px; color: var(--destructive); margin-top: 4px; }
.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.btn-submit {
  width: 100%;
  padding: 17px;
  border-radius: 14px;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 900;
  font-size: 16px;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}
.btn-submit:hover { transform: scale(1.01); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Submit success */
.form-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
  animation: float 3s ease-in-out infinite;
}
.success-icon svg { width: 40px; height: 40px; }
.form-success h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ---- PAIN POINTS ---- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.pain-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  border-color: rgba(220,38,38,0.4);
  box-shadow: var(--shadow-elegant);
}
.pain-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(220,38,38,0.1);
  color: var(--destructive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}
.pain-card p { font-weight: 700; color: var(--navy); font-size: 14px; line-height: 1.5; }
.pain-cta { margin-top: 44px; text-align: center; }
.pain-cta p {
  font-size: 17px;
  color: rgba(26,29,59,0.75);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ---- STATS ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin: 40px 0 56px;
}
.stat-card {
  background: var(--gradient-hero);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(201,162,39,0.2);
  box-shadow: var(--shadow-elegant);
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,162,39,0.12);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 17px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(201,162,39,0.08);
  transition: background 0.2s;
}
.service-card:hover { border-color: rgba(201,162,39,0.5); box-shadow: var(--shadow-gold); }
.service-card:hover::before { background: rgba(201,162,39,0.18); }
.service-emoji { font-size: 32px; margin-bottom: 14px; position: relative; }
.service-card h3 { font-size: 17px; font-weight: 900; color: var(--navy); margin-bottom: 8px; position: relative; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; position: relative; }

/* ---- PROCESS ---- */
.process-list {
  position: relative;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-list::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,162,39,0.1));
}
.process-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.process-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}
.process-content {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-elegant);
}
.process-content h3 { font-size: 16px; font-weight: 900; color: var(--navy); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(201,162,39,0.4); }
.stars { color: var(--gold); font-size: 20px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 16px;
}
.testimonial-name { font-weight: 800; color: #fff; font-size: 15px; }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ---- LEAD MAGNET SECTION ---- */
.lead-magnet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lead-magnet-benefits { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.benefit-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  box-shadow: var(--shadow-gold);
}
.benefit-item span { font-weight: 700; color: var(--navy); font-size: 15px; }

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: right;
  font-weight: 800;
  color: var(--navy);
  font-size: 15px;
  font-family: var(--font);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--secondary-bg); }
.faq-toggle {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ---- FINAL CTA ---- */
.final-cta {
  padding: 100px 0;
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.2) 0, transparent 70%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.2);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 28px;
}
.final-cta h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.15;
}
.final-cta .subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
}
.final-form-wrap { max-width: 620px; margin: 0 auto; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 100px;
}
@media (min-width: 768px) { .site-footer { padding-bottom: 40px; } }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo img { width: 52px; height: 52px; border-radius: 12px; object-fit: contain; }
.footer-logo-text { font-weight: 900; color: #fff; font-size: 17px; line-height: 1.3; }
.footer-logo-text span { display: block; color: var(--gold); font-size: 13px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 { font-weight: 800; color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer-col a { display: block; font-size: 13px; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-services li { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  text-align: center;
}
.footer-moc {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 14px 24px;
  margin-bottom: 20px;
}
.footer-moc img { width: 52px; height: 52px; object-fit: contain; }
.footer-moc-text { text-align: right; }
.footer-moc-text .label { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: .1em; }
.footer-moc-text .name { font-size: 14px; font-weight: 800; color: #fff; }
.footer-moc-text .country { font-size: 11px; color: rgba(255,255,255,0.4); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ---- FLOATING BUTTONS ---- */
.floating-wa {
  position: fixed;
  bottom: 92px;
  left: 20px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elegant);
  animation: pulseRing 2s infinite;
  transition: transform 0.2s;
}
.floating-wa:hover { transform: scale(1.1); }

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(253,252,249,0.97);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.3s;
}
.sticky-mobile-cta.visible { transform: translateY(0); }

/* Exit Intent Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(17,20,40,0.8);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 28px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-elegant);
  position: relative;
  animation: scaleIn 0.25s ease;
}
.modal-close {
  position: absolute;
  top: 14px; left: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--secondary-bg);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  cursor: pointer;
  border: none;
}
.modal-emoji { font-size: 52px; margin-bottom: 16px; display: block; animation: float 3s ease-in-out infinite; }
.modal-box h3 { font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.modal-box p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.modal-no { margin-top: 12px; font-size: 12px; color: var(--muted); cursor: pointer; display: block; }
.modal-no:hover { color: var(--navy); }

/* ---- ANIMATIONS ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes scaleIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.5s, transform 0.5s; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 100px 0 60px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-checklist { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .lead-magnet-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: block; }
  .process-list::before { right: 22px; }
}
