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

:root {
  --navy: #0D0F1C;
  --purple: #7B2FBE;
  --purple-light: #9B4FDE;
  --purple-pale: #F3EEFF;
  --purple-mid: #B794DC;
  --purple-glow: rgba(123,47,190,0.15);
  --white: #ffffff;
  --off-white: #F8F7FC;
  --gray: #6B7280;
  --gray-light: #E8EAED;
  --gray-mid: #9CA3AF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--navy); background: var(--white); overflow-x: hidden; line-height: 1.6; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(123,47,190,0.1);
  transition: box-shadow 0.3s, background 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(123,47,190,0.08); background: rgba(255,255,255,0.96); }

.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; height: 200px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 220px; width: auto; object-fit: contain; max-width: 500px; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--navy); text-decoration: none; opacity: 0.6; transition: opacity 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--purple); transform: scaleX(0); transition: transform 0.2s; border-radius: 2px; }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { opacity: 1; }

.nav-cta {
  background: var(--purple) !important; color: white !important; opacity: 1 !important;
  padding: 10px 22px; border-radius: 100px; font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 20px rgba(123,47,190,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--purple-light) !important; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(123,47,190,0.4) !important; }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-mobile { display: none; flex-direction: column; padding: 16px 5% 20px; gap: 4px; border-top: 1px solid rgba(123,47,190,0.1); background: white; }
.nav-mobile a { padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gray-light); opacity: 0.7; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-cta-mobile { color: var(--purple) !important; opacity: 1 !important; font-weight: 600 !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; align-items: center;
  padding: 260px 5% 100px;
  position: relative; overflow: hidden;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,47,190,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,190,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow-1 { position: absolute; top: -200px; right: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(123,47,190,0.12) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.hero-glow-2 { position: absolute; bottom: -100px; left: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(123,47,190,0.07) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }

.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.hero-text {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-pale); border: 1px solid rgba(123,47,190,0.2);
  color: var(--purple); font-size: 12px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 32px; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-dot { width: 6px; height: 6px; background: var(--purple); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.hero h1 { font-size: clamp(40px, 5vw, 68px); font-weight: 800; color: var(--navy); line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px; }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--purple), var(--purple-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero p { font-size: 17px; color: var(--gray); line-height: 1.75; margin-bottom: 40px; font-weight: 300; max-width: 460px; }

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; align-items: center; gap: 12px; }
.hero-trust-text { font-size: 13px; color: var(--gray-mid); font-weight: 400; }
.hero-trust-dots { display: flex; gap: 4px; }
.trust-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid white; background: var(--purple-pale); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--purple); margin-left: -8px; }
.trust-dot:first-child { margin-left: 0; }

.hero-visual { position: relative; }

.hero-card-main {
  background: white; border: 1px solid var(--gray-light); border-radius: 24px;
  padding: 32px; box-shadow: 0 24px 80px rgba(123,47,190,0.12);
  position: relative; overflow: hidden;
}
.hero-card-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}

.hcard-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hcard-icon { width: 44px; height: 44px; background: var(--purple-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hcard-title { font-size: 15px; font-weight: 700; color: var(--navy); }
.hcard-sub { font-size: 12px; color: var(--gray-mid); }

.hcard-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.hcard-stat { background: var(--off-white); border-radius: 12px; padding: 16px; text-align: center; }
.hcard-stat-num { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.hcard-stat-num span { color: var(--purple); }
.hcard-stat-label { font-size: 11px; color: var(--gray-mid); margin-top: 3px; }

.hcard-activity { display: flex; flex-direction: column; gap: 10px; }
.activity-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--off-white); border-radius: 10px; }
.activity-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.activity-dot.green { background: #22C55E; }
.activity-dot.purple { background: var(--purple); }
.activity-dot.blue { background: #3B82F6; }
.activity-text { font-size: 13px; color: var(--navy); font-weight: 400; flex: 1; }
.activity-time { font-size: 11px; color: var(--gray-mid); }



/* ── TOOLS STRIP ── */
.tools-strip {
  background: var(--off-white);
  padding: 20px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}

.tools-strip-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
  flex-shrink: 0;
  border-right: 1px solid var(--gray-light);
}

.tools-marquee-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.tools-marquee {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.tools-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tool-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  padding: 8px 20px 8px 10px;
  white-space: nowrap;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.tool-pill img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.tool-pill:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(123,47,190,0.12);
  transform: translateY(-2px);
}

.tool-pill span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.2px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--purple); color: white; padding: 14px 28px;
  border-radius: 100px; font-size: 15px; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(123,47,190,0.3); border: none; cursor: pointer; font-family: var(--font);
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(123,47,190,0.4); }
.btn-primary.btn-large { padding: 16px 36px; font-size: 16px; }

.btn-ghost { color: var(--navy); font-size: 15px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; border: 1.5px solid var(--gray-light); padding: 13px 24px; border-radius: 100px; }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }

.btn-outline { border: 1.5px solid var(--purple); color: var(--purple); padding: 12px 28px; border-radius: 100px; font-size: 15px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, color 0.2s; }
.btn-outline:hover { background: var(--purple); color: white; }

/* ── SECTIONS ── */
section { padding: 110px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 16px; }
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--purple); border-radius: 2px; }
.section-title { font-size: clamp(30px, 4vw, 52px); font-weight: 800; color: var(--navy); line-height: 1.08; margin-bottom: 18px; letter-spacing: -1.5px; }
.section-subtitle { font-size: 17px; color: var(--gray); max-width: 500px; line-height: 1.75; font-weight: 300; }

/* ── SERVICES ── */
.services-preview { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: white; border: 1px solid var(--gray-light); border-radius: 20px; padding: 32px 28px;
  text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 16px;
  transition: all 0.3s; position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--purple-pale), transparent); opacity: 0; transition: opacity 0.3s; border-radius: 20px; }
.service-card:hover { border-color: rgba(123,47,190,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(123,47,190,0.1); }
.service-card:hover::before { opacity: 1; }

.service-icon-wrap { width: 48px; height: 48px; background: var(--purple-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--purple); position: relative; z-index: 1; transition: background 0.3s; }
.service-card:hover .service-icon-wrap { background: var(--purple); color: white; }

.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); position: relative; z-index: 1; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; font-weight: 300; flex: 1; position: relative; z-index: 1; }
.card-link { font-size: 13px; font-weight: 600; color: var(--purple); display: flex; align-items: center; gap: 4px; position: relative; z-index: 1; }
.section-cta { margin-top: 52px; text-align: center; }

/* ── PROCESS ── */
.process { background: var(--navy); position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(123,47,190,0.2) 0%, transparent 65%); border-radius: 50%; }
.process::after { content: ''; position: absolute; bottom: -200px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(123,47,190,0.1) 0%, transparent 65%); border-radius: 50%; }
.process .section-tag { color: var(--purple-mid); }
.process .section-tag::before { background: var(--purple-mid); }
.process .section-title { color: white; }
.process .section-subtitle { color: rgba(255,255,255,0.4); }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; position: relative; z-index: 1; }
.process-step {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 36px 28px; position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.process-step:hover { background: rgba(123,47,190,0.1); border-color: rgba(123,47,190,0.3); }
.process-step::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple), var(--purple-light)); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; border-radius: 2px 2px 0 0; }
.process-step:hover::after { transform: scaleX(1); }

.step-number { font-size: 56px; font-weight: 900; color: rgba(123,47,190,0.15); line-height: 1; margin-bottom: 24px; letter-spacing: -3px; }
.step-content h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 12px; }
.step-content p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; }

/* ── CASES ── */
.cases { background: var(--off-white); }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case-card { background: white; border: 1px solid var(--gray-light); border-radius: 24px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(123,47,190,0.1); }
.case-header { background: var(--navy); padding: 40px; position: relative; overflow: hidden; }
.case-header::before { content: ''; position: absolute; top: -80px; right: -80px; width: 200px; height: 200px; background: rgba(123,47,190,0.2); border-radius: 50%; }
.case-header::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 120px; height: 120px; background: rgba(123,47,190,0.1); border-radius: 50%; }
.case-client { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 12px; }
.case-header h3 { font-size: 22px; font-weight: 700; color: white; position: relative; z-index: 1; line-height: 1.3; }
.case-body { padding: 36px; }
.case-results { display: flex; gap: 32px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-light); flex-wrap: wrap; }
.result-number { font-size: 36px; font-weight: 800; color: var(--purple); letter-spacing: -1px; line-height: 1; }
.result-label { font-size: 12px; color: var(--gray-mid); margin-top: 4px; font-weight: 400; }
.case-body p { font-size: 14px; color: var(--gray); line-height: 1.75; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testimonials { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 20px; padding: 32px; transition: transform 0.3s, box-shadow 0.3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(123,47,190,0.08); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: #F59E0B; font-size: 16px; }
.testimonial-text { font-size: 15px; color: var(--navy); line-height: 1.7; font-weight: 300; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--purple); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.author-title { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }

/* ── FAQ ── */
.faq { background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border: 1px solid var(--gray-light); border-radius: 16px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open, .faq-item:hover { border-color: rgba(123,47,190,0.25); }
.faq-question { width: 100%; background: none; border: none; padding: 22px 24px; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--font); font-size: 15px; font-weight: 500; color: var(--navy); }
.faq-icon { width: 28px; height: 28px; background: var(--purple-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--purple); transition: transform 0.3s, background 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--purple); color: white; }
.faq-answer { display: none; padding: 0 24px 22px; font-size: 14px; color: var(--gray); line-height: 1.75; font-weight: 300; }
.faq-item.open .faq-answer { display: block; }
.faq-cta { background: var(--navy); border-radius: 24px; padding: 44px; position: sticky; top: 90px; overflow: hidden; }
.faq-cta::before { content: ''; position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; background: rgba(123,47,190,0.2); border-radius: 50%; }
.faq-cta h3 { font-size: 26px; font-weight: 700; color: white; margin-bottom: 14px; line-height: 1.2; position: relative; z-index: 1; }
.faq-cta p { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 28px; line-height: 1.7; font-weight: 300; position: relative; z-index: 1; }
.faq-cta .btn-primary { position: relative; z-index: 1; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--purple), var(--purple-light)); padding: 100px 5%; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -100px; left: -50px; width: 300px; height: 300px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner-text h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: white; margin-bottom: 12px; letter-spacing: -1px; }
.cta-banner-text p { font-size: 17px; color: rgba(255,255,255,0.65); font-weight: 300; }
.cta-banner .btn-primary { background: white; color: var(--purple); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.cta-banner .btn-primary:hover { background: var(--off-white); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 80px 5% 36px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 64px; }
.footer-logo-img { height: 220px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); max-width: 500px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.6; font-weight: 300; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); text-decoration: none; transition: all 0.2s; }
.footer-socials a:hover { background: var(--purple); border-color: var(--purple); color: white; }
.footer-links-group { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 6px; }
.footer-links-group a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-links-group a:hover { color: white; }
.footer-location { font-size: 13px; color: rgba(255,255,255,0.25); line-height: 1.6; font-weight: 300; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); font-weight: 300; }

/* ── PAGE HERO ── */
.page-hero { background: var(--white); padding: 240px 5% 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(123,47,190,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(123,47,190,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%); }
.page-hero::after { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(123,47,190,0.1) 0%, transparent 65%); border-radius: 50%; }
.page-hero .section-inner { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: var(--navy); line-height: 1.08; margin-bottom: 20px; letter-spacing: -2px; margin-top: 16px; }
.page-hero-title em { font-style: normal; background: linear-gradient(135deg, var(--purple), var(--purple-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero-sub { font-size: 18px; color: var(--gray); max-width: 520px; line-height: 1.75; font-weight: 300; }

/* ── SERVICES PAGE ── */
.service-detail { background: white; padding: 100px 5%; }
.service-detail.alt-bg { background: var(--off-white); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-text .section-tag { margin-bottom: 12px; }
.service-detail-text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--navy); margin-bottom: 20px; letter-spacing: -1px; margin-top: 12px; }
.service-detail-text p { font-size: 16px; color: var(--gray); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }
.service-features { list-style: none; margin: 24px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.service-features li { font-size: 15px; color: var(--navy); font-weight: 400; display: flex; align-items: center; gap: 12px; }
.service-features li::before { content: ''; width: 20px; height: 20px; background: var(--purple-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%237B2FBE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

.service-visual-card { background: var(--navy); border-radius: 24px; padding: 48px 40px; border: 1px solid rgba(123,47,190,0.2); position: relative; overflow: hidden; }
.service-visual-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 200px; height: 200px; background: rgba(123,47,190,0.15); border-radius: 50%; }
.visual-icon { font-size: 44px; margin-bottom: 28px; position: relative; z-index: 1; }
.visual-stats { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.visual-stat-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); }
.visual-stat-num { font-size: 28px; font-weight: 800; color: white; letter-spacing: -1px; }
.visual-stat-label { font-size: 13px; color: rgba(255,255,255,0.4); }
.visual-stat-badge { background: rgba(123,47,190,0.3); color: var(--purple-mid); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }

/* ── ABOUT PAGE ── */
.about-story { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: var(--navy); margin-bottom: 24px; letter-spacing: -1px; margin-top: 12px; }
.about-text p { font-size: 16px; color: var(--gray); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.about-values { display: flex; flex-direction: column; gap: 24px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 16px; transition: border-color 0.2s; }
.value-item:hover { border-color: rgba(123,47,190,0.25); }
.value-icon { font-size: 24px; flex-shrink: 0; width: 48px; height: 48px; background: var(--purple-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.value-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: 14px; color: var(--gray); line-height: 1.65; font-weight: 300; }

.about-founder { background: var(--off-white); }
.founder-card { background: white; border: 1px solid var(--gray-light); border-radius: 24px; padding: 52px; display: flex; gap: 48px; align-items: flex-start; }
.founder-photo-wrap { flex-shrink: 0; }
.founder-photo { width: 160px; height: 160px; border-radius: 20px; object-fit: cover; object-position: center top; box-shadow: 0 8px 32px rgba(123,47,190,0.15); border: 3px solid var(--purple-pale); }
.founder-info h3 { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.founder-title { font-size: 14px; color: var(--purple); font-weight: 600; margin-bottom: 20px; }
.founder-info > p { font-size: 15px; color: var(--gray); line-height: 1.8; font-weight: 300; margin-bottom: 16px; }
.founder-tools { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.founder-tools span { background: var(--purple-pale); color: var(--purple); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(123,47,190,0.15); }

.about-numbers { background: var(--navy); position: relative; overflow: hidden; }
.about-numbers::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(123,47,190,0.2) 0%, transparent 65%); border-radius: 50%; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; position: relative; z-index: 1; }
.number-item { padding: 48px 32px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; }
.number-big { font-size: 60px; font-weight: 900; color: white; letter-spacing: -3px; line-height: 1; }
.number-big span { color: var(--purple-mid); }
.number-label { font-size: 14px; color: rgba(255,255,255,0.35); margin-top: 12px; font-weight: 300; line-height: 1.5; }

/* ── CONTACT PAGE ── */
.contact-page { background: var(--white); padding: 250px 5% 100px; position: relative; overflow: hidden; min-height: 100vh; }
.contact-page::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(123,47,190,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(123,47,190,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.contact-page::after { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(123,47,190,0.08) 0%, transparent 65%); border-radius: 50%; }
.contact-page .section-inner { position: relative; z-index: 1; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-page-info h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--navy); line-height: 1.08; margin-bottom: 20px; letter-spacing: -2px; margin-top: 16px; }
.contact-page-info h1 em { font-style: normal; background: linear-gradient(135deg, var(--purple), var(--purple-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contact-page-info > p { font-size: 17px; color: var(--gray); line-height: 1.75; font-weight: 300; margin-bottom: 48px; }
.contact-points { display: flex; flex-direction: column; gap: 20px; }
.contact-point { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 16px; transition: border-color 0.2s; }
.contact-point:hover { border-color: rgba(123,47,190,0.25); }
.contact-point-icon { width: 40px; height: 40px; background: var(--purple-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-point h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.contact-point p, .contact-point a { font-size: 13px; color: var(--gray); font-weight: 300; text-decoration: none; }
.contact-point a:hover { color: var(--purple); }

.contact-form-card { background: white; border-radius: 24px; padding: 48px; border: 1px solid var(--gray-light); box-shadow: 0 24px 80px rgba(123,47,190,0.08); }
.contact-form-card h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-note { font-size: 14px; color: var(--gray-mid); margin-bottom: 32px; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 12px; padding: 13px 16px; font-size: 14px; color: var(--navy); font-family: var(--font); outline: none; transition: border-color 0.2s, background 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--purple); background: white; box-shadow: 0 0 0 3px rgba(123,47,190,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; background: var(--purple); color: white; border: none; padding: 15px; border-radius: 100px; font-size: 15px; font-weight: 500; font-family: var(--font); cursor: pointer; transition: all 0.2s; margin-top: 8px; box-shadow: 0 4px 20px rgba(123,47,190,0.3); }
.btn-submit:hover { background: var(--purple-light); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(123,47,190,0.4); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.animate {
  opacity: 0;
  transform: translateY(32px);
}

.fade-up.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid.reverse { direction: ltr; }
  .founder-card { flex-direction: column; gap: 24px; padding: 32px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 80px 5%; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ── FAQ SMOOTH ANIMATION OVERRIDE ── */
.faq-answer {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding-bottom 0.35s ease;
}
.faq-item.open .faq-answer {
  opacity: 1;
}

/* ── MOBILE CASES GRID FIX ── */
@media (max-width: 1024px) {
  .cases-grid { grid-template-columns: 1fr !important; }
}

/* ── FOUNDER SOCIAL BUTTONS HOVER FIX ── */
.founder-socials a:hover {
  background: var(--purple) !important;
  color: white !important;
}
