/* ===== RESET & BASE ===== */
:root {
  --purple-deep: #4C1D95;
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --purple-pale: #EDE9FE;
  --purple-faint: #F5F3FF;
  --coral: #F97316;
  --coral-light: #FB923C;
  --coral-pale: #FFF7ED;
  --dark: #1A0536;
  --light: #FAFAF9;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-400: #A1A1AA;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --font-en: 'Plus Jakarta Sans', sans-serif;
  --font-ar: 'Readex Pro', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-en);
  color: var(--gray-800);
  background: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,249,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,0.08);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 12px 40px;
  box-shadow: 0 4px 30px rgba(76,29,149,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
}

.footer-brand .logo-img {
  height: 32px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}

.nav-links a {
  text-decoration: none; color: var(--gray-600);
  font-size: 15px; font-weight: 500; transition: color 0.2s;
}

.nav-links a:hover { color: var(--purple); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--purple);
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  font-family: var(--font-en);
  cursor: pointer; text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}

.btn-primary:hover {
  background: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124,58,237,0.4);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 12px;
  font-size: 15px; font-weight: 600;
  font-family: var(--font-en);
  cursor: pointer; text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--purple-pale);
  transform: translateY(-2px);
}

.lang-toggle {
  padding: 8px 16px;
  background: var(--purple-pale);
  color: var(--purple-deep);
  border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  font-family: var(--font-ar);
  cursor: pointer; transition: all 0.2s;
}

.lang-toggle:hover { background: var(--purple-light); color: var(--white); }

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 40px 100px;
  position: relative; overflow: hidden;
}

.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
}

#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(124,58,237,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(249,115,22,0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid rgba(124,58,237,0.12);
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  animation: fadeInUp 0.8s ease;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: 72px; font-weight: 800;
  line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero p.hero-desc {
  font-size: 20px; line-height: 1.6;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
  display: flex; gap: 16px; justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 64px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stat { text-align: center; }

.hero-stat .number {
  font-size: 36px; font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-stat .label {
  font-size: 14px; color: var(--gray-500); margin-top: 4px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION COMMON ===== */
section { padding: 120px 40px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px; font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.15;
  margin-bottom: 20px; color: var(--dark);
}

.section-subtitle {
  font-size: 18px; line-height: 1.7;
  color: var(--gray-500); max-width: 560px;
}

/* ===== FEATURES — BENTO GRID ===== */
.features { background: var(--white); }

.features-header { text-align: center; margin-bottom: 80px; }
.features-header .section-subtitle { margin: 0 auto; }

.bento-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}

.bento-card {
  padding: 36px 32px;
  border-radius: 24px;
  background: var(--light);
  border: 1px solid var(--gray-200);
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(76,29,149,0.08);
  border-color: rgba(124,58,237,0.2);
}

/* Featured card spans 2 columns */
.bento-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 44px;
  background: linear-gradient(135deg, var(--purple-faint), var(--white));
  border-color: rgba(124,58,237,0.15);
}

.bento-card.featured .bento-visual {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
  border: 1px solid var(--gray-200);
}

.bento-card .bento-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.bento-card .bento-icon svg {
  width: 24px; height: 24px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bento-card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px; color: var(--dark);
}

.bento-card p {
  font-size: 15px; line-height: 1.7;
  color: var(--gray-500);
}

.bento-card .bento-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--purple-pale);
  color: var(--purple-deep);
  font-size: 12px; font-weight: 600;
  border-radius: 6px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Visual placeholder bars */
.visual-bars {
  display: flex; flex-direction: column; gap: 10px; width: 100%;
}

.visual-bar {
  height: 12px; border-radius: 6px;
  background: var(--purple-pale);
  position: relative; overflow: hidden;
}

.visual-bar::after {
  content: '';
  position: absolute; top: 0; left: 0;
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  animation: barGrow 2s ease-in-out infinite alternate;
}

.visual-bar:nth-child(1)::after { width: 85%; animation-delay: 0s; }
.visual-bar:nth-child(2)::after { width: 62%; animation-delay: 0.2s; }
.visual-bar:nth-child(3)::after { width: 78%; animation-delay: 0.4s; }
.visual-bar:nth-child(4)::after { width: 45%; animation-delay: 0.6s; }

@keyframes barGrow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ===== HOW IT WORKS — TIMELINE ===== */
.how-it-works {
  background: var(--light);
  position: relative; overflow: hidden;
}

.how-header { text-align: center; margin-bottom: 80px; }
.how-header .section-subtitle { margin: 0 auto; }

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--coral));
  border-radius: 2px;
}

.timeline-step {
  display: flex;
  gap: 36px;
  margin-bottom: 56px;
  position: relative;
  align-items: flex-start;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 80px; height: 80px;
  min-width: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(124,58,237,0.2);
}

.timeline-step:nth-child(1) .timeline-dot { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.timeline-step:nth-child(2) .timeline-dot { background: linear-gradient(135deg, var(--purple-deep), var(--purple)); }
.timeline-step:nth-child(3) .timeline-dot { background: linear-gradient(135deg, var(--coral), var(--coral-light)); }

.timeline-content {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 36px;
  border: 1px solid var(--gray-200);
  flex: 1;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(76,29,149,0.06);
  border-color: rgba(124,58,237,0.15);
}

.timeline-content h3 {
  font-size: 22px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}

.timeline-content p {
  font-size: 16px; line-height: 1.7;
  color: var(--gray-500);
}

/* ===== PRICING ===== */
.pricing { background: var(--white); }

.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-subtitle { margin: 0 auto; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto; align-items: start;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--purple);
  background: var(--purple-faint);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(124,58,237,0.15);
}

.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--purple), var(--coral));
  color: var(--white);
  font-size: 12px; font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px;
}

.pricing-card h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }

.pricing-card .price {
  font-size: 48px; font-weight: 800; color: var(--dark); margin-bottom: 4px;
}

.pricing-card .price span { font-size: 16px; font-weight: 500; color: var(--gray-500); }

.pricing-card .price-note { font-size: 14px; color: var(--gray-400); margin-bottom: 32px; }

.pricing-features { list-style: none; margin-bottom: 32px; }

.pricing-features li {
  padding: 10px 0;
  font-size: 15px; color: var(--gray-600);
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border-bottom: none; }

.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.check svg { width: 12px; height: 12px; stroke: var(--purple); }

.pricing-card .btn-primary,
.pricing-card .btn-secondary { width: 100%; justify-content: center; }

/* ===== CONTACT ===== */
.contact-section { background: var(--light); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; max-width: 1000px; margin: 0 auto; align-items: start;
}

.contact-info { padding-top: 12px; }

.contact-info h3 {
  font-size: 28px; font-weight: 700;
  color: var(--dark); margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px; line-height: 1.7;
  color: var(--gray-500); margin-bottom: 32px;
}

.contact-detail {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}

.contact-detail .cd-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-detail .cd-icon svg {
  width: 20px; height: 20px;
  stroke: var(--purple); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.contact-detail .cd-text { font-size: 15px; color: var(--gray-600); }
.contact-detail .cd-label { font-size: 13px; color: var(--gray-400); margin-bottom: 2px; }

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-en);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--light);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-form .btn-primary { width: 100%; justify-content: center; padding: 14px; }

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-header { text-align: center; margin-bottom: 64px; }
.faq-header .section-subtitle { margin: 0 auto; }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--gray-200); }

.faq-question {
  width: 100%; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none;
  font-size: 18px; font-weight: 600;
  color: var(--dark);
  cursor: pointer; font-family: var(--font-en);
  text-align: left; transition: color 0.2s;
}

.faq-question:hover { color: var(--purple); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 18px; color: var(--purple);
}

.faq-item.active .faq-icon {
  background: var(--purple);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 24px; }

.faq-answer p { font-size: 16px; line-height: 1.7; color: var(--gray-500); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 40px; text-align: center;
  background: var(--dark);
  position: relative; overflow: hidden;
}

.cta-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(124,58,237,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(249,115,22,0.15) 0%, transparent 50%);
}

.cta-content { position: relative; z-index: 1; }

.cta-section .section-title { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.5); margin: 0 auto 40px; }

.btn-coral {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: var(--coral); color: var(--white);
  border: none; border-radius: 14px;
  font-size: 17px; font-weight: 700;
  font-family: var(--font-en);
  cursor: pointer; text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.5);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 40px 32px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1100px; margin: 0 auto 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }

.footer-brand p {
  font-size: 15px; color: rgba(255,255,255,0.4);
  line-height: 1.7; max-width: 300px;
}

.footer-col h4 {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}

.footer-col a {
  display: block; font-size: 15px;
  color: rgba(255,255,255,0.6);
  text-decoration: none; margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--coral); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}

.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.3); }

.footer-social { display: flex; gap: 16px; }

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none; font-size: 18px;
  transition: all 0.2s;
}

.footer-social a:hover { background: var(--purple); color: var(--white); }

/* ===== ROADMAP ===== */
.roadmap-section { background: var(--light); }

.roadmap-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 1000px; margin: 0 auto;
}

.roadmap-phase {
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.roadmap-phase:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(76,29,149,0.06);
  border-color: rgba(124,58,237,0.15);
}

.phase-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}

.phase-badge {
  padding: 4px 14px;
  border-radius: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.phase-q3 { background: var(--purple-pale); color: var(--purple-deep); }
.phase-q4 { background: #DBEAFE; color: #1E40AF; }
.phase-q1 { background: var(--coral-pale); color: #9A3412; }
.phase-q2 { background: #D1FAE5; color: #065F46; }

.phase-header h3 {
  font-size: 18px; font-weight: 700; color: var(--dark);
}

.phase-list {
  list-style: none; padding: 0;
}

.phase-list li {
  padding: 8px 0;
  font-size: 14px; line-height: 1.6;
  color: var(--gray-500);
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.phase-list li:last-child { border-bottom: none; }

.phase-list li::before {
  content: '→';
  color: var(--purple-light);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== SAVINGS COMPARISON ===== */
.savings-section { background: var(--purple-faint); }

/* Big savings hero callout */
.savings-hero {
  max-width: 800px; margin: 0 auto 48px;
  display: flex; align-items: center; gap: 32px;
  padding: 36px 44px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  box-shadow: 0 12px 40px rgba(76,29,149,0.25);
}

.savings-hero-number {
  font-size: 72px; font-weight: 800;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.savings-hero-text h3 {
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}

.savings-hero-text p {
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* Table */
.savings-table {
  max-width: 1000px; margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.savings-row {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr 1.1fr;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}

.savings-row:not(.savings-header-row):not(.savings-total-row):hover {
  background: var(--gray-50);
}

.savings-row:last-child { border-bottom: none; }

.savings-header-row { background: var(--dark); }

.savings-header-row .savings-cell {
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 24px;
}

.savings-cell {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--gray-600);
  display: flex; align-items: center; gap: 10px;
}

.savings-icon {
  width: 18px; height: 18px;
  stroke: var(--purple-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.label-cell { font-weight: 600; color: var(--dark); font-size: 14px; }

/* Agency price — red strikethrough */
.agency-price {
  color: #DC2626;
  text-decoration: line-through;
  text-decoration-color: rgba(220,38,38,0.4);
  font-size: 14px;
}

/* Tarweej included — green badge */
.tarweej-included {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 14px;
  background: #D1FAE5;
  color: #065F46;
  font-size: 13px; font-weight: 700;
  border-radius: 8px;
}

.tarweej-soon {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 14px;
  background: var(--purple-pale);
  color: var(--purple-deep);
  font-size: 13px; font-weight: 600;
  border-radius: 8px;
}

/* Savings bar */
.save-cell {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.save-bar-wrap {
  width: 100%;
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.save-bar {
  height: 100%;
  width: var(--bar-width);
  background: linear-gradient(90deg, #10B981, #34D399);
  border-radius: 4px;
  animation: barFill 1.5s ease-out both;
}

.save-bar.soon {
  background: linear-gradient(90deg, var(--purple-light), var(--purple));
  opacity: 0.5;
}

@keyframes barFill {
  from { width: 0; }
  to { width: var(--bar-width); }
}

.save-pct {
  font-size: 13px; font-weight: 800;
  color: #059669;
}

/* Total row */
.savings-total-row {
  background: linear-gradient(135deg, var(--purple-faint), #D1FAE5);
  border-top: 2px solid var(--purple);
  border-bottom: none;
}

.savings-total-row .label-cell {
  font-size: 15px;
}

.agency-total {
  font-size: 15px; font-weight: 700;
  color: #DC2626;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(220,38,38,0.5);
}

.tarweej-total {
  font-size: 18px; font-weight: 800;
  color: var(--purple);
  -webkit-text-fill-color: var(--purple);
}

.save-mega {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #059669, #10B981);
  color: var(--white);
  font-size: 14px; font-weight: 800;
  border-radius: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(5,150,105,0.3);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(5,150,105,0.3); }
  50% { box-shadow: 0 4px 25px rgba(5,150,105,0.5); }
}

.savings-source {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  nav { padding: 14px 28px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }

  .hero h1 { font-size: 56px; }
  .section-title { font-size: 40px; }

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.featured { grid-column: span 2; }

  .pricing-grid { gap: 16px; }
  .pricing-card { padding: 32px 24px; }

  .contact-layout { gap: 40px; }

  .footer-grid { gap: 32px; }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* NAV */
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    animation: slideDown 0.3s ease;
  }

  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 8px 0; font-size: 16px; }
  .nav-links.open .btn-primary { width: 100%; justify-content: center; text-align: center; }

  .mobile-menu-btn { display: flex !important; }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* HERO */
  .hero { padding: 110px 20px 60px; min-height: auto; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero p.hero-desc { font-size: 16px; margin-bottom: 32px; }
  .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; margin-top: 48px; }
  .hero-stat .number { font-size: 28px; }
  .hero-stat .label { font-size: 12px; }

  /* SECTIONS */
  section { padding: 64px 20px; }
  .section-title { font-size: 30px; letter-spacing: -1px; }
  .section-subtitle { font-size: 16px; }
  .section-label { font-size: 12px; }

  /* FEATURES */
  .features-header { margin-bottom: 48px; }
  .bento-grid { grid-template-columns: 1fr; gap: 16px; }
  .bento-card { padding: 28px 24px; }
  .bento-card.featured { grid-column: span 1; grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .bento-card h3 { font-size: 18px; }
  .bento-card p { font-size: 14px; }

  /* ROADMAP */
  .roadmap-grid { grid-template-columns: 1fr; gap: 16px; }
  .roadmap-phase { padding: 24px 20px; }
  .phase-header h3 { font-size: 16px; }
  .phase-list li { font-size: 13px; }

  /* SAVINGS */
  .savings-hero { flex-direction: column; text-align: center; gap: 16px; padding: 28px 20px; }
  .savings-hero-number { font-size: 52px; }
  .savings-hero-text h3 { font-size: 18px; }
  .savings-hero-text p { font-size: 14px; }
  .savings-table { border-radius: 16px; }
  .savings-row { grid-template-columns: 1fr; gap: 2px; }
  .savings-header-row { display: none; }
  .savings-cell { padding: 6px 20px; font-size: 13px; }
  .savings-cell:first-child { padding-top: 14px; font-size: 14px; }
  .savings-row:not(.savings-total-row) .save-cell { padding-bottom: 14px; }
  .savings-row { border-bottom: 1px solid var(--gray-100); }
  .label-cell::before { content: none; }
  .agency-cell::before { content: 'Agency: '; font-weight: 600; color: var(--dark); margin-right: 4px; text-decoration: none; }
  .tarweej-cell::before { content: 'Tarweej: '; font-weight: 600; margin-right: 4px; }
  .save-cell { flex-direction: row; align-items: center; }
  .savings-total-row .savings-cell { padding: 14px 20px; }

  /* TIMELINE */
  .timeline::before { left: 24px; }
  .timeline-step { gap: 20px; }
  .timeline-dot { width: 48px; height: 48px; min-width: 48px; font-size: 18px; }
  .timeline-content { padding: 24px 20px; }
  .timeline-content h3 { font-size: 18px; }
  .timeline-content p { font-size: 14px; }

  /* PRICING */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card { padding: 32px 24px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: none; }
  .pricing-card .price { font-size: 40px; }

  /* FAQ */
  .faq-header { margin-bottom: 40px; }
  .faq-question { font-size: 16px; padding: 20px 0; }

  /* CONTACT */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info h3 { font-size: 24px; }

  /* CTA */
  .cta-section { padding: 80px 20px; }
  .cta-section .section-title { font-size: 30px; }
  .btn-coral { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* LOGO */
  .logo-img { height: 30px; }
  .footer-brand .logo-img { height: 26px; }
}

/* ===== SMALL PHONES (max-width: 420px) ===== */
@media (max-width: 420px) {
  .hero h1 { font-size: 30px; }
  .hero-stats { justify-content: space-between; gap: 12px; }
  .hero-stat { flex: 1; }
  .section-title { font-size: 26px; }
  .savings-hero-number { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .pricing-grid { max-width: 100%; }
  .timeline-step { gap: 14px; }
  .timeline-content { padding: 20px 16px; }
}