/* ═══════════════════════════════════════════════════════
   DIGIWOLF — Shared Design System  (Light Theme)
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colours */
  --coral:   #ff4f6d;
  --pink:    #e8388a;
  --violet:  #7b2ff7;
  --purple:  #9b4dff;
  --gold:    #ff8c00;
  --teal:    #0ea5e9;

  /* Light theme surfaces */
  --bg:       #ffffff;
  --bg-alt:   #f7f5ff;
  --bg-alt2:  #fff5f8;
  --bg-dark:  #0a0615;

  /* Text */
  --text:       #160a28;
  --text-muted: #6b5f7a;
  --text-light: rgba(255,255,255,0.85);

  /* Gradients */
  --grad-main: linear-gradient(135deg, #ff4f6d 0%, #c62faa 35%, #7b2ff7 70%, #4a1fcc 100%);
  --grad-warm: linear-gradient(135deg, #ff8c00, #ff4f6d, #c62faa);
  --grad-cool: linear-gradient(135deg, #3b82f6, #7b2ff7, #9b4dff);
  --grad-soft: linear-gradient(135deg, #ffeef5 0%, #f0ebff 50%, #e8f4ff 100%);

  /* Cards */
  --card-bg:     #ffffff;
  --card-border: rgba(123,47,247,0.12);
  --card-shadow: 0 4px 24px rgba(123,47,247,0.08);
  --card-hover:  0 12px 48px rgba(123,47,247,0.16);

  /* Nav */
  --nav-bg:     rgba(255,255,255,0.95);
  --nav-border: rgba(123,47,247,0.1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }
.grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.warm-text {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 2px 20px rgba(123,47,247,0.06);
  transition: all 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(123,47,247,0.12); }

.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.nav-logo-text {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem;
  letter-spacing: 0.18em;
  background: var(--grad-warm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Centre nav links */
.nav-center {
  display: flex; align-items: center; gap: 0.25rem;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.9rem; border-radius: 8px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.88rem;
  color: var(--text); text-decoration: none; letter-spacing: 0.03em;
  transition: all 0.2s; position: relative;
}
.nav-link:hover { color: var(--violet); background: rgba(123,47,247,0.06); }
.nav-link.active { color: var(--violet); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-link:hover svg { transform: rotate(180deg); }

/* MEGA MENU */
.has-mega { position: relative; }
.mega-menu {
  position: absolute; top: 100%; left: 50%;
  width: 640px;
  padding: 12px 0 0 0; /* top padding bridges the gap so hover isn't lost */
  background: transparent;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  transition-delay: 0.08s; /* small delay before hiding — prevents accidental close */
  transform: translateX(-50%) translateY(6px);
}
.mega-menu-inner {
  background: white; border-radius: 20px;
  border: 1px solid rgba(123,47,247,0.12);
  box-shadow: 0 20px 60px rgba(123,47,247,0.18);
  padding: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.has-mega:hover .mega-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s; /* show instantly on hover */
}
.mega-col-head {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; padding: 0.4rem 0.8rem;
  grid-column: span 1;
}
.mega-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 0.8rem; border-radius: 12px;
  text-decoration: none; color: var(--text);
  transition: all 0.18s;
}
.mega-item:hover { background: var(--bg-alt); color: var(--violet); }
.mega-item-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  background: var(--bg-alt);
}
.mega-item:hover .mega-item-icon { background: rgba(123,47,247,0.1); }
.mega-item-text strong {
  display: block; font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: inherit; margin-bottom: 0.1rem;
}
.mega-item-text span { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.mega-divider { grid-column: 1 / -1; height: 1px; background: rgba(123,47,247,0.08); margin: 0.25rem 0; }
.mega-footer {
  grid-column: 1 / -1;
  background: var(--grad-soft); border-radius: 12px; padding: 1rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; margin-top: 0.25rem;
}
.mega-footer-text strong { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--text); display: block; }
.mega-footer-text span { font-size: 0.75rem; color: var(--text-muted); }
.mega-footer-btn {
  padding: 0.55rem 1.2rem; border-radius: 50px;
  background: var(--grad-main); color: white;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.78rem;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(123,47,247,0.35);
  transition: all 0.2s;
}
.mega-footer-btn:hover { transform: translateY(-2px); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-call {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem; border-radius: 50px;
  border: 1.5px solid rgba(255,79,109,0.4);
  color: var(--coral); text-decoration: none;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem;
  transition: all 0.2s;
}
.nav-call:hover { background: var(--coral); color: white; border-color: var(--coral); }
.nav-cta {
  padding: 0.55rem 1.3rem; border-radius: 50px;
  background: var(--grad-main); color: white; text-decoration: none;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem;
  box-shadow: 0 4px 16px rgba(123,47,247,0.35);
  transition: all 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123,47,247,0.5); }

/* Mobile hamburger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 490;
  background: white; overflow-y: auto; padding: 1.5rem;
  flex-direction: column; gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mob-link {
  display: block; padding: 0.85rem 1rem; border-radius: 12px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1rem;
  color: var(--text); text-decoration: none; transition: all 0.2s;
  border: 1px solid transparent;
}
.mob-link:hover { background: var(--bg-alt); color: var(--violet); border-color: rgba(123,47,247,0.1); }
.mob-section-head {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; padding: 1rem 1rem 0.3rem;
}
.mob-cta-wrap { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

@media(max-width:1000px){
  .nav-center { display: none; }
  .nav-burger { display: flex; }
  .nav-call { display: none; }
}
@media(max-width:600px){
  .nav { padding: 0 1.2rem; }
  .nav-cta { font-size: 0.78rem; padding: 0.5rem 1rem; }
}

/* ── HERO (GRADIENT) ────────────────────────────────── */
.page-hero {
  position: relative; padding: 10rem 2rem 6rem;
  background: var(--grad-main); overflow: hidden; text-align: center;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px; background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  animation: drift 8s ease-in-out infinite alternate;
}
@keyframes drift { from{transform:translate(0,0)} to{transform:translate(20px,15px)} }
.hero-o1 { width: 500px; height: 500px; background: #ff8c00; opacity: 0.3; top: -200px; right: -150px; }
.hero-o2 { width: 400px; height: 400px; background: #3b82f6; opacity: 0.2; bottom: -100px; left: -100px; animation-delay: -4s; }

.page-hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1.1rem; border-radius: 50px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: white; margin-bottom: 1.4rem;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.08;
  color: white; margin-bottom: 1.2rem; max-width: 800px; margin-left: auto; margin-right: auto;
}
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 600px;
  margin: 0 auto 2.5rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SHARED BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.2rem; border-radius: 50px;
  background: var(--grad-main); color: white;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(123,47,247,0.4);
  transition: all 0.25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(123,47,247,0.55); }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.2rem; border-radius: 50px;
  background: white; color: var(--violet);
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(0,0,0,0.15);
  transition: all 0.25s;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,0.2); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.2rem; border-radius: 50px;
  background: transparent; color: white;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.25s;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px); }

.btn-violet {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.2rem; border-radius: 50px;
  background: var(--violet); color: white;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(123,47,247,0.35);
  transition: all 0.25s;
}
.btn-violet:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(123,47,247,0.5); }

/* ── SECTION SHARED ─────────────────────────────────── */
section { position: relative; }
.section-inner { max-width: 1120px; margin: 0 auto; padding: 6rem 2rem; }
.section-inner.narrow { max-width: 800px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 0.8rem; font-weight: 700;
}
.section-tag::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--grad-main); border-radius: 2px; }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; line-height: 1.12;
  margin-bottom: 1rem; color: var(--text);
}
.section-body { font-size: 1.05rem; color: var(--text-muted); line-height: 1.78; max-width: 560px; }

/* ── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--card-bg); border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  padding: 2rem 1.8rem;
  transition: all 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--card-hover); border-color: rgba(123,47,247,0.22); }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.icon-warm { background: linear-gradient(135deg, rgba(255,140,0,0.15), rgba(255,79,109,0.12)); }
.icon-cool { background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(123,47,247,0.12)); }
.icon-violet { background: linear-gradient(135deg, rgba(123,47,247,0.15), rgba(155,77,255,0.12)); }
.icon-pink { background: linear-gradient(135deg, rgba(232,56,138,0.15), rgba(255,79,109,0.12)); }
.icon-teal { background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(59,130,246,0.12)); }

.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── GRID LAYOUTS ───────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }

@media(max-width:900px){
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-2-1 { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media(max-width:600px){
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .section-inner { padding: 4rem 1.2rem; }
}

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  display: flex; gap: 0;
  background: white; border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow); overflow: hidden;
  margin-top: 3rem;
}
.stat-item {
  padding: 1.5rem 2.2rem; text-align: center; flex: 1;
  border-right: 1px solid rgba(123,47,247,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
  background: var(--grad-warm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem; }

/* ── PROCESS STEPS ──────────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(123,47,247,0.2), rgba(123,47,247,0.2), transparent);
}
.process-step { text-align: center; padding: 0 0.5rem; }
.step-bubble {
  width: 56px; height: 56px; border-radius: 50%; background: var(--grad-main);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
  font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: white;
  box-shadow: 0 6px 24px rgba(123,47,247,0.4); position: relative; z-index: 1;
}
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
@media(max-width:900px){
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
}

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-band {
  background: var(--grad-main); padding: 5rem 2rem;
  position: relative; overflow: hidden; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.25), transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: white;
  margin-bottom: 0.8rem; position: relative;
}
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2.2rem; position: relative; }
.cta-band .hero-actions { position: relative; }

/* ── CONTACT FORM ───────────────────────────────────── */
.contact-section { background: var(--bg-alt); }
.contact-inner {
  max-width: 1120px; margin: 0 auto; padding: 6rem 2rem;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 1rem; }
.contact-info p { font-size: 1rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 2rem; }

.contact-tiles { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-tile {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 1.5rem; border-radius: 16px;
  text-decoration: none; color: var(--text);
  border: 1.5px solid; transition: all 0.25s;
}
.contact-tile.tile-call { background: rgba(255,79,109,0.05); border-color: rgba(255,79,109,0.25); }
.contact-tile.tile-call:hover { background: rgba(255,79,109,0.1); border-color: var(--coral); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,79,109,0.2); }
.contact-tile.tile-email { background: rgba(123,47,247,0.05); border-color: rgba(123,47,247,0.2); }
.contact-tile.tile-email:hover { background: rgba(123,47,247,0.08); border-color: var(--violet); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123,47,247,0.18); }
.tile-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.tile-call .tile-icon { background: linear-gradient(135deg,#ff4f6d,#c62faa); }
.tile-email .tile-icon { background: linear-gradient(135deg,#7b2ff7,#9b4dff); }
.tile-body span { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.15rem; }
.tile-body strong { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); }
.tile-arrow { margin-left: auto; color: var(--text-muted); transition: transform 0.2s; }
.contact-tile:hover .tile-arrow { transform: translateX(4px); color: var(--violet); }

.form-box {
  background: white; border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 40px rgba(123,47,247,0.08);
  padding: 2.8rem;
}
.form-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 0.3rem; }
.form-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.45rem; font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  background: var(--bg-alt); border: 1.5px solid rgba(123,47,247,0.12);
  border-radius: 12px; color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  outline: none; appearance: none; transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--violet); background: white;
  box-shadow: 0 0 0 3px rgba(123,47,247,0.08);
}
.field select option { background: white; color: var(--text); }
.field textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%; padding: 1.1rem; border-radius: 14px;
  background: var(--grad-main); color: white; border: none; cursor: pointer;
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: 0.04em;
  transition: all 0.25s; margin-top: 0.5rem;
  box-shadow: 0 6px 28px rgba(123,47,247,0.4);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(123,47,247,0.55); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }

@media(max-width:900px){ .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } .form-box { padding: 1.8rem 1.4rem; } }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #0a0615; padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; margin-bottom: 1rem;
}
.footer-logo-img { width: 38px; height: 38px; border-radius: 9px; }
.footer-logo-text {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.2em;
  background: var(--grad-warm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5);
  font-size: 0.85rem; text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { background: var(--violet); color: white; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: white; margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-col a { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
@media(max-width:900px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .footer-top { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ── FAB ─────────────────────────────────────────────── */
.fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 50px;
  background: linear-gradient(135deg, #ff4f6d, #c62faa);
  color: white; text-decoration: none;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.88rem;
  box-shadow: 0 6px 28px rgba(255,79,109,0.5);
  animation: fabPulse 3s ease infinite;
  transition: transform 0.2s;
}
.fab:hover { transform: translateY(-3px) scale(1.04); }
@keyframes fabPulse { 0%,100%{box-shadow:0 6px 28px rgba(255,79,109,0.5)} 50%{box-shadow:0 6px 48px rgba(255,79,109,0.75),0 0 0 12px rgba(255,79,109,0.07)} }
@media(max-width:600px){ .fab span { display: none; } .fab { padding: 1rem; border-radius: 50%; width: 54px; height: 54px; justify-content: center; } }

/* ── REVEAL ANIMATION ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:0.1s} .d2{transition-delay:0.2s} .d3{transition-delay:0.3s} .d4{transition-delay:0.4s} .d5{transition-delay:0.5s}

/* ── BLOG CARDS ─────────────────────────────────────── */
.blog-card {
  background: white; border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  overflow: hidden; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--card-hover); }
.blog-card-img {
  height: 180px; background: var(--grad-main); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-emoji { font-size: 3rem; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 0.8rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--bg-alt); color: var(--violet);
}
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(123,47,247,0.08); }
.blog-read { font-size: 0.75rem; color: var(--text-muted); }
.blog-cta { font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--violet); display: flex; align-items: center; gap: 0.3rem; }
.blog-cta:hover { gap: 0.5rem; }

/* ── SERVICE PAGE SPECIFIC ──────────────────────────── */
.benefits-list { display: flex; flex-direction: column; gap: 0.85rem; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.4rem; border-radius: 16px;
  background: white; border: 1px solid var(--card-border);
  box-shadow: 0 2px 12px rgba(123,47,247,0.05);
  transition: all 0.2s;
}
.benefit-item:hover { border-color: rgba(123,47,247,0.25); box-shadow: 0 6px 24px rgba(123,47,247,0.1); transform: translateX(4px); }
.benefit-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-main); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: white; box-shadow: 0 3px 12px rgba(123,47,247,0.35);
}
.benefit-item h4 { font-family: 'Syne', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.benefit-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* ── TESTIMONIAL ────────────────────────────────────── */
.testimonial-card {
  background: white; border-radius: 20px; padding: 2rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.testimonial-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-main); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; flex-shrink: 0; }
.author-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--text); }
.author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ── PILL TAG ───────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.08em;
}
.pill-violet { background: rgba(123,47,247,0.1); color: var(--violet); border: 1px solid rgba(123,47,247,0.2); }
.pill-coral { background: rgba(255,79,109,0.1); color: var(--coral); border: 1px solid rgba(255,79,109,0.2); }
.pill-gold { background: rgba(255,140,0,0.1); color: var(--gold); border: 1px solid rgba(255,140,0,0.2); }

/* ── BLOG ARTICLE ───────────────────────────────────── */
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { font-size: 1.7rem; font-weight: 800; color: var(--text); margin: 2.5rem 0 0.9rem; }
.article-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 2rem 0 0.7rem; }
.article-body p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.82; margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.article-body li { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.5rem; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-callout {
  background: var(--grad-soft); border-left: 4px solid var(--violet);
  border-radius: 0 16px 16px 0; padding: 1.4rem 1.8rem; margin: 2rem 0;
}
.article-callout p { margin: 0; color: var(--text); font-size: 1rem; }

/* ── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-bottom: 1.2rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-strip {
  background: var(--bg-alt); border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 0.85rem 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: scrollLeft 22s linear infinite; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollLeft { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad-main); flex-shrink: 0; }

/* ── FEATURE ROW ─────────────────────────────────────── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-row.flip { direction: rtl; }
.feature-row.flip > * { direction: ltr; }
.feature-visual {
  border-radius: 24px; background: var(--grad-main); min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; font-size: 6rem;
}
.feature-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,140,0,0.25), transparent 60%);
}
@media(max-width:900px){ .feature-row { grid-template-columns: 1fr; gap: 2.5rem; } .feature-row.flip { direction: ltr; } }

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════ */

/* ── TABLET (≤ 768px) ─────────────────────────────────── */
@media (max-width: 768px) {

  /* Stats bar — 2×2 grid instead of single row */
  .stats-bar {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(123,47,247,0.08);
    padding: 1.2rem 1rem;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(123,47,247,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .stat-num { font-size: 1.6rem; }

  /* Page hero interior pages */
  .page-hero { padding: 8rem 1.2rem 5rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .page-hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-white,
  .hero-actions .btn-outline,
  .hero-actions .btn-violet { width: 100%; max-width: 340px; justify-content: center; }

  /* Breadcrumb */
  .breadcrumb { flex-wrap: wrap; justify-content: center; font-size: 0.75rem; }

  /* Section inner padding */
  .section-inner { padding: 3.5rem 1.2rem; }

  /* Process grid — stack to 1 col on small tablet */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Feature row visuals — reduce height */
  .feature-visual { min-height: 260px; font-size: 4rem; }

  /* Grid overrides */
  .grid-2-1 { grid-template-columns: 1fr; gap: 2rem; }

  /* Blog featured card */
  .blog-featured { grid-column: span 1 !important; grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 180px; font-size: 4rem; }
  .blog-featured-body { padding: 1.5rem; }
  .blog-featured h2 { font-size: 1.25rem; }

  /* CTA band */
  .cta-band { padding: 3.5rem 1.2rem; }
  .cta-band h2 { font-size: 1.7rem; }

  /* Contact section */
  .contact-inner { padding: 3.5rem 1.2rem; gap: 2rem; }
  .contact-tiles { gap: 0.75rem; }
  .contact-tile { padding: 1rem 1.2rem; }

  /* Form box */
  .form-box { padding: 1.8rem 1.3rem; }

  /* Article body */
  .article-body h2 { font-size: 1.4rem; }
  .article-body h3 { font-size: 1.1rem; }
  .article-body p, .article-body li { font-size: 0.97rem; }
  .article-callout { padding: 1.1rem 1.3rem; }

  /* Testimonial grid */
  .grid-3 .testimonial-card { break-inside: avoid; }

  /* Benefit items */
  .benefit-item { padding: 1rem 1.1rem; }

  /* Footer */
  .footer { padding: 3rem 1.2rem 1.5rem; }
  .footer-top { gap: 1.5rem; }
}

/* ── MOBILE (≤ 480px) ─────────────────────────────────── */
@media (max-width: 480px) {

  /* Nav */
  .nav { padding: 0 1rem; height: 64px; }
  .nav-logo-text { font-size: 1rem; letter-spacing: 0.12em; }
  .nav-cta { padding: 0.45rem 0.9rem; font-size: 0.76rem; }

  /* Mobile menu */
  .mobile-menu { top: 64px; padding: 1.2rem; }

  /* Hero (homepage) */
  .hero { padding: 6.5rem 1.2rem 3.5rem; }
  .hero-logo { width: 70px; height: 70px; border-radius: 16px; margin-bottom: 1.5rem; }
  .hero-badge { font-size: 0.68rem; padding: 0.35rem 0.9rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-stats { margin-top: 2.5rem; border-radius: 16px; }
  .hero-stats .stat-num { font-size: 1.4rem; }

  /* Interior page heroes */
  .page-hero { padding: 7rem 1rem 4rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .page-hero-tag { font-size: 0.68rem; }

  /* Section */
  .section-inner { padding: 2.8rem 1rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-body { font-size: 0.95rem; }

  /* Cards */
  .card { padding: 1.5rem 1.3rem; }
  .card h3 { font-size: 1rem; }

  /* Stats bar — stack fully */
  .stat-item { flex: 1 1 100%; border-right: none !important; }
  .stat-item:not(:last-child) { border-bottom: 1px solid rgba(123,47,247,0.08); }

  /* Process — single column */
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-bubble { width: 48px; height: 48px; font-size: 1rem; }

  /* Why items */
  .why-n { font-size: 1.2rem; min-width: 24px; }
  .why-item { padding: 1rem 1.1rem; }

  /* Svc card wide on homepage */
  .svc-card > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .svc-card > div[style*="grid-template-columns"] .svc-link {
    display: none;
  }

  /* Benefit items */
  .benefit-check { width: 24px; height: 24px; font-size: 0.72rem; flex-shrink: 0; }
  .benefit-item h4 { font-size: 0.88rem; }
  .benefit-item p { font-size: 0.8rem; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr !important; }
  .blog-featured { grid-column: span 1 !important; }
  .blog-card-img { height: 150px; }
  .blog-card-body { padding: 1.2rem; }
  .blog-card h3 { font-size: 0.95rem; }

  /* Blog filters */
  .blog-filters { gap: 0.4rem; }
  .filter-btn { font-size: 0.73rem; padding: 0.35rem 0.85rem; }

  /* Contact */
  .contact-inner { padding: 2.8rem 1rem; grid-template-columns: 1fr; }
  .contact-info h2 { font-size: 1.6rem; }
  .tile-body strong { font-size: 0.92rem; }
  .form-box { padding: 1.5rem 1.1rem; }
  .form-box h3 { font-size: 1.2rem; }
  .btn-submit { font-size: 0.92rem; padding: 1rem; }

  /* CTA band */
  .cta-band { padding: 3rem 1rem; }
  .cta-band h2 { font-size: 1.4rem; }
  .cta-band p { font-size: 0.95rem; }

  /* Footer */
  .footer { padding: 2.5rem 1rem 1.5rem; }
  .footer-logo-text { font-size: 1rem; }
  .footer-col h4 { font-size: 0.82rem; }
  .footer-col a { font-size: 0.8rem; }
  .footer-bottom { font-size: 0.72rem; }

  /* Article */
  .article-body h2 { font-size: 1.25rem; margin-top: 2rem; }
  .article-body h3 { font-size: 1.05rem; }
  .article-body p, .article-body li { font-size: 0.93rem; line-height: 1.75; }
  .article-callout { padding: 1rem 1.1rem; border-radius: 0 12px 12px 0; }

  /* Testimonials */
  .testimonial-card { padding: 1.4rem; }
  .testimonial-card p { font-size: 0.9rem; }

  /* Marquee */
  .marquee-item { font-size: 0.72rem; }

  /* Buttons standalone */
  .btn-primary, .btn-white, .btn-violet, .btn-outline {
    font-size: 0.88rem; padding: 0.85rem 1.6rem;
  }

  /* Pills */
  .pill { font-size: 0.72rem; }

  /* AI features grid */
  .ai-grid { grid-template-columns: 1fr; }
  .ai-feat { padding: 1rem; }

  /* Feature visuals */
  .feature-visual { min-height: 200px; font-size: 3.5rem; border-radius: 18px; }

  /* Why visual */
  .why-visual { min-height: auto; padding: 2.5rem 1.5rem; border-radius: 18px; }
  .why-vis-logo { width: 70px; height: 70px; }
  .why-vis-stat { font-size: 3rem; }

  /* Trust badges wrap */
  .trust-badges { gap: 0.5rem; }
  .trust-badge { font-size: 0.7rem; padding: 0.35rem 0.8rem; }

  /* FAB */
  .fab { bottom: 1.2rem; right: 1.2rem; }
}

/* ── VERY SMALL (≤ 360px) ─────────────────────────────── */
@media (max-width: 360px) {
  .nav-logo-text { display: none; }
  .nav-cta { display: none; }
  .hero h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.4rem; }
  .contact-tile { flex-direction: column; gap: 0.6rem; text-align: center; }
  .tile-arrow { display: none; }
}

/* ═══════════════════════════════════════════════════════
   NAV FIX — burger X animation + mobile menu polish
   ═══════════════════════════════════════════════════════ */

/* Burger → X when open */
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-burger span { transition: transform 0.25s ease, opacity 0.2s ease; }

/* Mobile menu — ensure it sits below nav and scrolls */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  height: calc(100vh - 72px);
  background: #ffffff;
  overflow-y: auto;
  padding: 1.2rem 1.2rem 3rem;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 490;
  display: none; /* hidden by default */
  border-top: 1px solid rgba(123,47,247,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.mobile-menu.open { display: flex !important; }

/* Mobile menu link style */
.mob-link {
  display: flex; align-items: center;
  padding: 0.9rem 1rem; border-radius: 12px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.97rem;
  color: var(--text); text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.18s;
}
.mob-link:hover,
.mob-link:active {
  background: var(--bg-alt);
  color: var(--violet);
  border-color: rgba(123,47,247,0.15);
}

/* Section headers inside mobile menu */
.mob-section-head {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  padding: 1rem 1rem 0.25rem;
  margin-top: 0.25rem;
}

/* CTA buttons at bottom of mobile menu */
.mob-cta-wrap {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0.25rem;
}

/* Ensure nav stays above everything */
.nav { z-index: 500; }

/* Fix mega-menu-inner grid on desktop */
.mega-menu-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Full-width rows inside mega-menu-inner grid */
.mega-divider,
.mega-footer {
  grid-column: 1 / -1;
}
