@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --navy: #0d0720;
  --navy2: #1a0f3c;
  --navy3: #2d1b69;
  --gold: #7c3aed;
  --gold2: #a855f7;
  --teal: #00d4ff;
  --cream: #f0ebff;
  --white: #ffffff;
  --gray: #8892a4;
  --light: #f3f0ff;
  --dark: #06030f;
  --accent-pink: #ff2d78;
  --accent-cyan: #00d4ff;
  --accent-purple: #7c3aed;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #1a1a2e; overflow-x: hidden; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* NAVBAR */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13, 7, 32, 0.95); backdrop-filter: blur(20px);
  padding: 0 5%; border-bottom: 1px solid rgba(124, 58, 237,0.2);
  display: flex; align-items: center; justify-content: space-between;
  height: 75px; transition: var(--transition);
}
nav.scrolled { background: rgba(13, 7, 32,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 45px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.nav-logo-text span { color: var(--gold); }

/* LOGO SVG */
.nav-logo-svg { width: 40px; height: 46px; transition: transform 0.4s ease; filter: drop-shadow(0 0 6px rgba(124, 58, 237,0.4)); }
.nav-logo:hover .nav-logo-svg { transform: rotate(8deg) scale(1.08); filter: drop-shadow(0 0 12px rgba(124, 58, 237,0.7)); }
.logo-path { stroke-dasharray: 300; stroke-dashoffset: 300; animation: drawLogo 1.8s ease forwards 0.3s; }
.logo-path-2 { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawLogo 1.8s ease forwards 0.6s; }
.logo-path-3 { stroke-dasharray: 150; stroke-dashoffset: 150; animation: drawLogo 1.8s ease forwards 0.9s; }
@keyframes drawLogo { to { stroke-dashoffset: 0; } }

/* FOOTER LOGO */
.footer-logo-svg { width: 36px; height: 42px; }

.nav-links { display: flex; list-style: none; gap: 8px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; padding: 8px 16px; border-radius: 6px;
  transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-cyan); background: rgba(0, 212, 255, 0.1); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)) !important;
  color: var(--white) !important; font-weight: 700 !important;
  border-radius: 8px !important; padding: 10px 24px !important;
}
.nav-cta:hover, .nav-cta.active { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 45, 120, 0.4); background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple)) !important; color: var(--white) !important; }
.nav-links a.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* HERO */
.hero {
  min-height: 100vh; background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 45%, var(--navy2) 100%);
  display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 5% 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(124, 58, 237,0.14) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255,0.08) 0%, transparent 55%);
}
/* Animated hero ring */
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(124, 58, 237,0.12);
  animation: ringExpand 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-ring:nth-child(1) { width: 600px; height: 600px; top: 50%; right: -150px; transform: translateY(-50%); animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 800px; height: 800px; top: 50%; right: -250px; transform: translateY(-50%); animation-delay: 1.5s; border-color: rgba(0, 212, 255,0.08); }
.hero-ring:nth-child(3) { width: 1000px; height: 1000px; top: 50%; right: -350px; transform: translateY(-50%); animation-delay: 3s; }
@keyframes ringExpand {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.03); }
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(124, 58, 237,0.15); border: 1px solid rgba(124, 58, 237,0.3); border-radius: 50px; padding: 8px 20px; margin-bottom: 24px; }
.hero-badge span { color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  color: var(--navy); font-weight: 700; padding: 14px 32px; border-radius: 10px;
  text-decoration: none; font-size: 0.95rem; transition: var(--transition);
  box-shadow: 0 8px 25px rgba(124, 58, 237,0.35);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmerBtn 3s ease-in-out infinite 2s;
}
@keyframes shimmerBtn { 0% { left: -100%; } 55%, 100% { left: 160%; } }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(124, 58, 237,0.55); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 14px 32px; border-radius: 10px; text-decoration: none;
  font-size: 0.95rem; transition: var(--transition); font-weight: 600;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(124, 58, 237,0.1); }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; }
.stat h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 4px; }

/* Hero Visual — Animation Frame */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-animation-frame {
  width: 100%;
  max-width: 544px;
  height: 337px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07), 0 0 80px rgba(124, 58, 237,0.18);
  animation: float 6s ease-in-out infinite;
}
.hero-animation-frame::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237,0.08), transparent);
  z-index: 1; pointer-events: none;
}
.hero-animation-frame iframe {
  width: 680px;
  height: 420px;
  border: none;
  display: block;
  transform: scale(0.8);
  transform-origin: top left;
  position: absolute;
  top: 0; left: 0;
}
/* Frame decorative glow orb */
.frame-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237,0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: -60px; right: -60px;
  pointer-events: none;
  animation: orbDrift 7s ease-in-out infinite alternate;
}
.frame-glow-2 {
  position: absolute;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(0, 212, 255,0.2) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -40px; left: -40px;
  pointer-events: none;
  animation: orbDrift 9s ease-in-out infinite alternate-reverse;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes orbDrift { 0%{transform:translate(0,0)} 100%{transform:translate(20px,15px)} }

/* Legacy hero-card (kept for compatibility) */
.hero-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px; }
.hero-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.hero-card-title { color: var(--white); font-weight: 600; font-size: 1.1rem; }
.hero-card-badge { background: rgba(124, 58, 237,0.2); color: var(--gold); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(255,255,255,0.05); border-radius: 10px; transition: var(--transition); }
.service-item:hover { background: rgba(124, 58, 237,0.1); }
.service-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.service-name { color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; }
.service-growth { margin-left: auto; color: #4ade80; font-size: 0.85rem; font-weight: 700; }

/* FLOATING ORBS */
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb1 { width: 420px; height: 420px; background: rgba(124, 58, 237,0.09); top: -100px; right: -100px; animation: orbDrift 10s ease-in-out infinite alternate; }
.orb2 { width: 320px; height: 320px; background: rgba(255, 45, 120,0.35); bottom: -80px; left: -80px; animation: orbDrift 12s ease-in-out infinite alternate-reverse; }

/* SECTIONS */
section { padding: 100px 5%; }
.section-label { color: var(--gold); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--gold); font-style: italic; }
.section-desc { color: var(--gray); font-size: 1rem; line-height: 1.8; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; }

/* SERVICES */
.services-section { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: 16px; padding: 36px 28px;
  border: 1px solid #e8edf3; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan)); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 25px 60px rgba(124, 58, 237,0.3); border-color: transparent; background: linear-gradient(135deg, var(--navy), var(--navy2)); }
.service-card:hover::before { transform: scaleX(1); }
.card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; transition: var(--transition); }
.service-card:hover .card-icon { background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; font-weight: 600; transition: var(--transition); }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; transition: var(--transition); }
.service-card:hover h3, .service-card:hover p { color: var(--white); }
.service-card:hover .card-link { color: var(--accent-cyan); }
.card-link { color: var(--gold); font-size: 0.85rem; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.card-link:hover { gap: 10px; }

/* ABOUT */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img-wrapper { position: relative; }
.about-img-main { width: 100%; border-radius: 20px; overflow: hidden; }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-badge-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--navy); border-radius: 16px; padding: 24px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); text-align: center;
}
.about-badge-card h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.about-badge-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 4px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.feature-item h4 { color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.feature-item p { color: var(--gray); font-size: 0.9rem; }

/* WHY US */
.whyus-section { background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%); }
.whyus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card { text-align: center; padding: 36px 20px; border-radius: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
.why-card:hover { background: rgba(124, 58, 237,0.1); border-color: rgba(124, 58, 237,0.3); transform: translateY(-6px); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; }

/* PROCESS */
.process-section { background: var(--light); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; margin: 0 auto 16px; border: 3px solid var(--gold); }
.step h4 { color: var(--navy); font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.step p { color: var(--gray); font-size: 0.82rem; line-height: 1.6; }

/* CASE STUDIES */
.cases-section { background: var(--white); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.case-card { border-radius: 16px; overflow: hidden; border: 1px solid #e8edf3; transition: var(--transition); }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.case-img { height: 200px; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.case-card:hover .case-img img { transform: scale(1.05); }
.case-content { padding: 28px; }
.case-tag { display: inline-block; background: rgba(124, 58, 237,0.1); color: var(--gold); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.case-content h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.15rem; margin-bottom: 10px; }
.case-content p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.case-stats { display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid #e8edf3; }
.case-stat strong { display: block; color: var(--navy); font-size: 1.2rem; font-family: 'Playfair Display', serif; }
.case-stat span { color: var(--gray); font-size: 0.78rem; }

/* TESTIMONIALS */
.testimonials-section { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid #e8edf3; transition: var(--transition); }
.testimonial-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: rgba(124, 58, 237,0.2); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--gold)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; }
.author-info h4 { color: var(--navy); font-weight: 600; font-size: 0.9rem; }
.author-info span { color: var(--gray); font-size: 0.8rem; }

/* CLIENTS */
.clients-section { background: var(--white); padding: 60px 5%; }
.clients-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; }
.client-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #9ca3af; transition: var(--transition); opacity: 0.6; padding: 16px 24px; border: 1px solid #e8edf3; border-radius: 10px; }
.client-logo:hover { opacity: 1; color: var(--navy); border-color: var(--gold); }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  text-align: center; padding: 100px 5%; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(124, 58, 237,0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3rem); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-section h2 span { color: var(--gold); font-style: italic; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 40px; position: relative; }

/* CONTACT */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; max-width: 1100px; margin: 0 auto; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p { color: var(--gray); font-size: 0.9rem; text-decoration: none; transition: var(--transition); }
.contact-info-item a:hover { color: var(--gold); }
.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--navy); font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e2e8f0;
  border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: var(--navy); background: var(--light); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(124, 58, 237,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)); color: var(--navy); font-weight: 700; font-size: 1rem; border: none; border-radius: 10px; cursor: pointer; transition: var(--transition); }
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(124, 58, 237,0.4); }

/* FOOTER */
footer { background: var(--dark); padding: 70px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1rem; transition: var(--transition); }
.social-link:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-weight: 600; margin-bottom: 20px; font-size: 0.95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.footer-logo-text span { color: var(--gold); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; top: 75px; left: 0; right: 0; background: var(--dark); padding: 20px 5%; z-index: 999; flex-direction: column; gap: 4px; border-bottom: 1px solid rgba(124, 58, 237,0.2); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; padding: 12px 16px; border-radius: 8px; font-weight: 500; transition: var(--transition); }
.mobile-menu a:hover { background: rgba(124, 58, 237,0.1); color: var(--gold); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* Nav animated underline */
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Teal accent dot in section labels */
.section-label { position: relative; }
.section-label::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; margin-right: 8px; vertical-align: middle; animation: pulse 2s infinite; }

/* Stat counter highlight */
.stat h3 { transition: color 0.3s ease; }

/* Service card stagger */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.35s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.45s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.55s; }

/* Why card accent line */
.why-card { position: relative; overflow: hidden; }
.why-card::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan)); transition: left 0.4s ease, right 0.4s ease; }
.why-card:hover::after { left: 0; right: 0; }

/* Clients scroll ticker */
.clients-ticker-wrapper { overflow: hidden; margin-bottom: 30px; }
.clients-ticker { display: flex; gap: 60px; width: max-content; align-items: center; }
.clients-ticker.left { animation: tickerScroll 25s linear infinite; }
.clients-ticker.right { animation: tickerScrollRight 25s linear infinite; }
.clients-ticker:hover { animation-play-state: paused; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes tickerScrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Step circle glow on hover */
.step-num { transition: box-shadow 0.3s ease, background 0.3s ease; }
.step:hover .step-num { box-shadow: 0 0 20px rgba(124, 58, 237,0.6); background: linear-gradient(135deg, var(--navy2), var(--navy3)); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid, .cases-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-card { position: static; margin-top: 16px; display: inline-block; }
  .services-grid, .cases-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  section { padding: 70px 4%; }
  .whyus-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
}
