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

:root {
  --bg: #08080f;
  --bg-2: #0f0f1a;
  --bg-card: #13131f;
  --border: rgba(255,255,255,0.07);
  --accent: #4F46E5;
  --accent-2: #06B6D4;
  --accent-grd: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.55);
  --text-dim: rgba(255,255,255,0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 0 60px rgba(79,70,229,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
h3 { font-size: 1.25rem; line-height: 1.3; }
p { color: var(--text-muted); }

/* ===== GRADIENT TEXT ===== */
.grad { background: var(--accent-grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== CONTAINER ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION SPACING ===== */
section { position: relative; z-index: 1; scroll-margin-top: 90px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent-grd);
  border-radius: 1px;
}
.section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin-top: 16px; }

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  border: none;
  outline: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-grd);
  color: #fff;
  box-shadow: 0 0 30px rgba(79,70,229,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(79,70,229,0.6); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(8,8,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
}
.logo-cap { font-size: 1.15em; line-height: 1; }
.logo-grad { background: var(--accent-grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  bottom: 0; left: -80px;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite 2s;
}
@keyframes pulse-glow { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.1); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

/* Hero two-column layout */
.hero-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 48px;
  align-items: center;
  margin-bottom: 20px;
}
.hero-left { position: relative; z-index: 1; min-width: 0; }
.hero h1 { font-size: clamp(2.2rem, 3.8vw, 3.8rem); margin-bottom: 24px; }
.hero p.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ===== HERO DASHBOARD VISUAL ===== */
.hero-visual {
  position: relative;
  height: 380px;
  z-index: 1;
}
.dash-card {
  background: rgba(19,19,31,0.9);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dash-main {
  position: absolute;
  inset: 0;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(79,70,229,0.15);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50px;
  padding: 3px 10px;
}
.dash-dot-live {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e;
  animation: blink 1.5s infinite;
}
.dash-title { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.dash-revenue { margin-bottom: 24px; }
.dash-big {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.dash-up {
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
}
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  margin-bottom: 8px;
}
.dbar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(79,70,229,0.25);
  transition: background 0.3s;
}
.dbar-active { background: var(--accent-grd); box-shadow: 0 0 12px rgba(79,70,229,0.5); }
.dash-months {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* Floating cards */
.dash-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
.dash-roas  { top: -16px; right: -16px; animation-delay: 0s; }
.dash-orders { bottom: 60px; right: -24px; animation-delay: 1.3s; }
.dash-cro   { bottom: -12px; left: 24px; animation-delay: 2.6s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.dash-float-icon { font-size: 1.2rem; }
.dash-float-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.dash-float-lbl { font-size: 0.72rem; color: var(--text-dim); }

/* ===== STATS STRIP ===== */
.stats-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 60px 0 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--accent-grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }

/* ===== SERVICES ===== */
.services { padding: 120px 0; }
.services-header { margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-grd);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(79,70,229,0.4); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 0.04; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(79,70,229,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(79,70,229,0.25); }
.service-card h3 { color: var(--text); margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.05em;
}

/* ===== WHY US ===== */
.why { padding: 0 0 120px; }
.why-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.why-inner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
  right: -80px; bottom: -80px;
  pointer-events: none;
}
.why-left h2 { margin-bottom: 20px; }
.why-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.check {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(6,182,212,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 0.7rem;
  color: var(--accent-2);
}
.compare-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); position: relative; z-index: 1; }
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 20px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.header {
  background: rgba(79,70,229,0.1);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.compare-row:not(.header):hover { background: rgba(255,255,255,0.02); }
.compare-row span:last-child, .compare-row span:nth-child(2) { text-align: center; }
.yes { color: #22c55e; font-size: 1.1rem; }
.no { color: #ef4444; font-size: 1.1rem; }
.compare-col-us { color: var(--accent-2); font-weight: 700; }

/* ===== PROCESS ===== */
.process { padding: 0 0 120px; }
.process-header { margin-bottom: 64px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.3;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(79,70,229,0.3); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-grd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(79,70,229,0.4);
}
.step h3 { margin-bottom: 12px; font-size: 1.1rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 0 0 120px; }
.testimonials-header { margin-bottom: 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.tcard:hover { transform: translateY(-4px); border-color: rgba(79,70,229,0.3); }
.stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.tcard blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}
.tcard blockquote::before { content: '\201C'; font-size: 1.5rem; color: var(--accent); line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.tauthor { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(79,70,229,0.4);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tauthor-info strong { display: block; font-size: 0.9rem; color: var(--text); }
.tauthor-info span { font-size: 0.8rem; color: var(--text-dim); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 0 0 120px; }
.cta-inner {
  background: var(--accent-grd);
  border-radius: 24px;
  padding: 80px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  right: -80px; top: -80px;
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  left: 40%; bottom: -60px;
  pointer-events: none;
}
.cta-text h2 { color: #fff; margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.7;
}
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(79,70,229,0.2); border-color: rgba(79,70,229,0.4); color: var(--text); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

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

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-visual { height: 340px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { padding: 48px 40px; gap: 40px; }
  .cta-inner { padding: 56px 48px; flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { gap: 20px; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Typography */
  h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section-desc { font-size: 1rem; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero p.lead { font-size: 1rem; margin-bottom: 32px; }
  .hero-btns { gap: 12px; }
  .hero-badge { font-size: 0.75rem; }

  /* Stats */
  .stats-strip { padding: 24px 0; margin-top: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.78rem; }

  /* Services */
  .services { padding: 80px 0; }
  .services-header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 28px 24px; }

  /* Why Us */
  .why { padding: 0 0 80px; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; border-radius: 16px; }
  .compare-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-row { font-size: 0.82rem; padding: 12px 14px; }

  /* Process */
  .process { padding: 0 0 80px; }
  .process-header { margin-bottom: 40px; }
  .process-steps { grid-template-columns: 1fr; gap: 14px; }
  .process-steps::before { display: none; }
  .step { padding: 28px 24px; }

  /* Testimonials */
  .testimonials { padding: 0 0 80px; }
  .testimonials-header { margin-bottom: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .tcard { padding: 24px; }

  /* CTA */
  .cta-section { padding: 0 0 80px; }
  .cta-inner { padding: 40px 28px; border-radius: 16px; flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; flex-direction: column; width: 100%; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Footer */
  footer { padding: 48px 0 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; font-size: 0.78rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 90px 0 48px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .why-inner { padding: 28px 20px; }
  .cta-inner { padding: 32px 20px; }
  .service-card, .step, .tcard { padding: 24px 20px; }
  .compare-row { font-size: 0.78rem; padding: 10px 12px; }
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent-2); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--text); font-size: 1.5rem;
  cursor: pointer; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
