/* ===== Tokens ===== */
:root {
  --bg: #07070d;
  --bg-2: #0c0c16;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #f4f2fb;
  --muted: #a3a0b8;
  --magenta: #ff2e9a;
  --pink: #ff4db8;
  --purple: #a12df0;
  --blue: #4361ff;
  --grad: linear-gradient(120deg, #ff2e9a 0%, #a12df0 52%, #4361ff 100%);
  --grad-soft: linear-gradient(120deg, rgba(255,46,154,.15), rgba(67,97,255,.15));
  --radius: 20px;
  --maxw: 1180px;
  --shadow: 0 30px 80px -30px rgba(161, 45, 240, 0.5);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.12; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ===== Background FX ===== */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5; }
.glow-1 { width: 600px; height: 600px; background: #ff2e9a; top: -180px; left: -120px; }
.glow-2 { width: 620px; height: 620px; background: #4361ff; top: 20%; right: -200px; opacity: .4; }
.glow-3 { width: 520px; height: 520px; background: #a12df0; bottom: -200px; left: 30%; opacity: .38; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black, transparent 75%);
}

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(7, 7, 13, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--card-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 116px; gap: 20px; }
.brand-logo { height: 92px; width: auto; display: block; }
.nav { display: flex; gap: 30px; }
.nav a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; position: relative; }
.nav a:hover { color: var(--text); }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad); transition: width .25s; }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  background: var(--card); border: 1px solid var(--card-border); color: var(--muted);
  border-radius: 100px; padding: 7px 14px; font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; gap: 6px; align-items: center; transition: border-color .2s;
}
.lang-switch:hover { border-color: var(--pink); }
.lang-opt { transition: color .2s; cursor: pointer; }
.lang-opt:hover { color: var(--text); }
.lang-opt.active { color: var(--text); }
.lang-sep { opacity: .4; pointer-events: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-family: 'Manrope', sans-serif; border-radius: 100px;
  padding: 13px 26px; font-size: 15px; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s, box-shadow .3s, background .2s; white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 34px -10px rgba(255, 46, 154, .6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px rgba(161, 45, 240, .75); }
.btn-ghost { background: var(--card); border-color: var(--card-border); color: var(--text); }
.btn-ghost:hover { border-color: var(--pink); transform: translateY(-2px); }
.btn .ic { font-size: 18px; }

/* ===== Hero ===== */
.hero { padding: 150px 0 90px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-copy { animation: fadeUp .9s ease both; }
.badge {
  display: inline-block; background: var(--card); border: 1px solid var(--card-border);
  border-radius: 100px; padding: 8px 18px; font-size: 13.5px; color: var(--muted);
  margin-bottom: 28px; letter-spacing: .01em;
}
.hero-title { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 800; margin-bottom: 22px; }
.hero-title span { display: block; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 540px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-num { font-family: 'Sora', sans-serif; font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; }
.stat-label { color: var(--muted); font-size: 14px; margin-top: 2px; }

/* Shimmer on gradient headline */
.shimmer {
  background: linear-gradient(100deg, #ff2e9a, #a12df0, #4361ff, #ff2e9a);
  background-size: 250% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 250% center; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Hero visual: phone mockups ===== */
.hero-visual { position: relative; height: 520px; animation: fadeUp 1.1s ease both; }
.phone {
  position: absolute; border-radius: 34px; background: #0e0e18;
  border: 1px solid rgba(255,255,255,.12); box-shadow: 0 40px 90px -30px rgba(161,45,240,.6);
  padding: 12px;
}
.phone-front { width: 250px; height: 500px; right: 30px; top: 10px; z-index: 3; animation: floatY 6s ease-in-out infinite; }
.phone-back { width: 220px; height: 440px; left: 10px; top: 50px; z-index: 2; transform: rotate(-8deg);
  opacity: .92; animation: floatY 6s ease-in-out infinite reverse; }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px;
  background: #000; border-radius: 0 0 14px 14px; z-index: 5; }
.phone-screen {
  width: 100%; height: 100%; border-radius: 24px; overflow: hidden;
  background: linear-gradient(180deg, #14101f, #0b0b14); padding: 20px 16px; display: flex; flex-direction: column; gap: 14px;
}
.ph-topbar { display: flex; align-items: center; gap: 8px; }
.ph-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--grad); flex: none; }
.ph-line { height: 9px; border-radius: 6px; background: rgba(255,255,255,.14); flex: 1; }
.ph-line.w60 { width: 60%; flex: none; } .ph-line.w40 { width: 40%; flex: none; }
.ph-reel { flex: 1; border-radius: 16px; background: var(--grad); position: relative; display: flex;
  align-items: center; justify-content: center; overflow: hidden; cursor: pointer; }
.ph-reel::after { content: ''; position: absolute; inset: 0; pointer-events: none; transition: opacity .3s;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 55%); }
.ph-reel.playing::after { opacity: 0; }
.ph-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.ph-sound { position: absolute; bottom: 12px; right: 12px; z-index: 3; width: 34px; height: 34px;
  border-radius: 50%; border: none; cursor: pointer; background: rgba(0,0,0,.45); backdrop-filter: blur(4px);
  color: #fff; font-size: 15px; display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s; }
.ph-sound:hover { transform: scale(1.1); background: rgba(0,0,0,.65); }
.ph-reel-badge { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.35); color: #fff; font-size: 11px;
  font-weight: 700; padding: 4px 10px; border-radius: 100px; z-index: 3; pointer-events: none; }
.ph-caption { height: 10px; border-radius: 6px; background: rgba(255,255,255,.16); }
.ph-caption.short { width: 55%; }
.ph-profile { display: flex; align-items: center; gap: 12px; }
.ph-ava { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); flex: none; overflow: hidden; }
.ph-ava img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.ph-meta { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.ph-stats-row { display: flex; justify-content: space-between; text-align: center; }
.ph-stats-row b { display: block; font-family: 'Sora',sans-serif; font-size: 15px; color: #fff; }
.ph-stats-row small { color: var(--muted); font-size: 9px; }
.ph-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 1fr; gap: 6px; flex: 1; }
.ph-grid span { border-radius: 8px; background: var(--grad-soft); border: 1px solid rgba(255,255,255,.06); overflow: hidden; position: relative; }
.ph-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-grid span:nth-child(2) { background: linear-gradient(135deg, rgba(255,46,154,.4), rgba(67,97,255,.3)); }
.ph-grid span:nth-child(4) { background: linear-gradient(135deg, rgba(67,97,255,.35), rgba(161,45,240,.3)); }
.ph-grid span:nth-child(5) { background: linear-gradient(135deg, rgba(161,45,240,.4), rgba(255,46,154,.3)); }

.float-card {
  position: absolute; background: rgba(14,14,24,.85); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border); border-radius: 14px; padding: 12px 18px; font-weight: 700;
  font-size: 15px; color: #fff; display: flex; gap: 8px; align-items: center; z-index: 4; white-space: nowrap;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
}
.fc-1 { top: 60px; right: -10px; animation: floatY 5s ease-in-out infinite; }
.fc-2 { bottom: 40px; left: -10px; animation: floatY 5.5s ease-in-out infinite reverse; }
@keyframes floatY { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-16px) rotate(var(--r,0deg)); } }
.phone-back { --r: -8deg; }

/* ===== Marquee ===== */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Trust ===== */
.trust { padding: 20px 0 40px; text-align: center; }
.trust-label { color: var(--muted); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 24px; }
.trust-logos { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.trust-chip {
  border: 1px solid var(--card-border); background: var(--card); color: var(--text);
  padding: 9px 20px; border-radius: 100px; font-size: 14px; font-weight: 500;
}
.trust-hint { color: var(--muted); opacity: .6; font-size: 12.5px; margin-top: 18px; font-style: italic; }
.trust-hint.center { text-align: center; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em; font-size: 13px;
  font-weight: 700; margin-bottom: 16px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-bottom: 18px; }
.section-desc { color: var(--muted); font-size: 1.1rem; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .3s, border-color .3s, background .3s; position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px;
  background: var(--grad); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 34px; margin-bottom: 18px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card > p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-list li { position: relative; padding-left: 26px; font-size: 14.5px; color: #cfccdf; }
.service-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--pink); font-weight: 700;
}
.service-card--cta {
  background: var(--grad-soft); display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; gap: 6px;
}
.service-card--cta h3 { font-size: 1.45rem; }
.service-card--cta .btn { margin-top: 16px; }

/* ===== Cases ===== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 30px; transition: transform .3s, border-color .3s;
}
.case-card:hover { transform: translateY(-6px); border-color: var(--purple); }
.case-tag {
  display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--pink);
  background: rgba(255,46,154,.1); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.case-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.case-desc { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.case-metrics { display: flex; gap: 16px; border-top: 1px solid var(--card-border); padding-top: 20px; }
.case-metrics > div { display: flex; flex-direction: column; }
.case-metrics span { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.5rem; }
.case-metrics small { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.case-proof-wrap { margin-top: 22px; }
.case-proof-cap { display: block; font-size: 12px; color: var(--muted); margin-bottom: 9px; letter-spacing: .02em; }
.case-proof { display: block; border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; transition: border-color .25s, transform .25s; }
.case-proof:hover { border-color: var(--pink); transform: translateY(-2px); }
.case-proof img { width: 100%; display: block; }

/* ===== Process ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-step {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
}
.process-num {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.4rem; margin-bottom: 14px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 14.5px; }

/* ===== About ===== */
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-media {
  background: var(--grad-soft); border: 1px solid var(--card-border); border-radius: 28px;
  padding: 50px; display: flex; align-items: center; justify-content: center; aspect-ratio: 1/1;
}
.about-logo { width: 100%; max-width: 320px; filter: drop-shadow(0 0 40px rgba(255,46,154,.4)); }
.about-content .section-title { text-align: left; }
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

/* ===== Founder ===== */
.founder-card {
  display: grid; grid-template-columns: 400px 1fr; gap: 46px; align-items: center;
  background: var(--grad-soft); border: 1px solid var(--card-border); border-radius: 28px;
  padding: 44px; max-width: 940px; margin: 0 auto; box-shadow: var(--shadow);
}
.founder-photo {
  position: relative; aspect-ratio: 3/4; border-radius: 24px; background: var(--grad);
  box-shadow: 0 24px 60px -20px rgba(255,46,154,.6); overflow: hidden;
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block;
}
.founder-badge {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.4); backdrop-filter: blur(6px); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; z-index: 2; white-space: nowrap;
}
.founder-info h3 { font-size: 1.9rem; margin-bottom: 6px; }
.founder-role {
  display: inline-block; font-size: 15px; font-weight: 600; margin-bottom: 16px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.founder-info > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }
.founder-facts { display: flex; gap: 34px; flex-wrap: wrap; }
.founder-facts > div { display: flex; flex-direction: column; }
.founder-facts span { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.7rem; }
.founder-facts small { color: var(--muted); font-size: 13px; margin-top: 2px; }

/* ===== Pricing band ===== */
.price-band {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  background: var(--grad-soft); border: 1px solid var(--card-border); border-radius: 28px;
  padding: 50px; box-shadow: var(--shadow);
}
.price-band .section-title { text-align: left; margin-bottom: 14px; }
.price-band-text p { color: var(--muted); font-size: 1.05rem; }
.price-band-figure { text-align: center; border-left: 1px solid var(--card-border); padding-left: 40px; }
.price-from { color: var(--muted); font-size: 15px; }
.price-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(3rem, 6vw, 4.2rem); line-height: 1; margin: 4px 0 22px; }

/* ===== Testimonials ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; gap: 18px;
}
.testi-card p { font-size: 1.05rem; color: var(--text); line-height: 1.5; }
.testi-card footer { color: var(--muted); font-size: 14px; }
.testi-card footer strong { color: var(--text); }

/* ===== FAQ ===== */
.faq-inner { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 16px;
  padding: 4px 26px; transition: border-color .2s;
}
.faq-item[open] { border-color: var(--purple); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0; font-weight: 600; font-size: 1.1rem;
  font-family: 'Sora', sans-serif; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--pink); font-size: 1.6rem; font-weight: 300; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 22px; font-size: 1rem; }

/* ===== Contact / CTA ===== */
.cta-section { text-align: center; }
.cta-inner {
  max-width: 820px; margin: 0 auto; background: var(--grad-soft);
  border: 1px solid var(--card-border); border-radius: 32px; padding: 70px 40px;
  box-shadow: var(--shadow);
}
.contact-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 34px 0 22px; }
.contact-note { color: var(--muted); font-size: 14px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--card-border); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { height: 40px; }
.footer-copy { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* ===== Floating WhatsApp ===== */
.fab-wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 58px; height: 58px;
  border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 26px; box-shadow: 0 14px 40px -8px rgba(255,46,154,.7);
  transition: transform .25s; animation: pulse 2.4s infinite;
}
.fab-wa:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,46,154,.5); }
  70% { box-shadow: 0 0 0 18px rgba(255,46,154,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,46,154,0); }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Burger ===== */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--text); transition: .3s; border-radius: 2px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Responsive ===== */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; height: 460px; margin: 0 auto; max-width: 460px; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .founder-card { grid-template-columns: 1fr; text-align: center; gap: 30px; padding: 36px 28px; }
  .founder-photo { max-width: 320px; margin: 0 auto; }
  .founder-facts { justify-content: center; }
  .price-band { grid-template-columns: 1fr; gap: 28px; text-align: center; padding: 40px 30px; }
  .price-band .section-title { text-align: center; }
  .price-band-figure { border-left: none; border-top: 1px solid var(--card-border); padding-left: 0; padding-top: 28px; }
}
@media (max-width: 980px) {
  .services-grid, .cases-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-media { aspect-ratio: auto; padding: 40px; }
  .about-content .section-title { text-align: center; }
  .about-content { text-align: center; }
  .about-tags { justify-content: center; }
}
@media (max-width: 720px) {
  .nav { position: fixed; top: 74px; left: 0; right: 0; flex-direction: column; background: rgba(7,7,13,.97);
    backdrop-filter: blur(18px); padding: 24px; gap: 20px; border-bottom: 1px solid var(--card-border);
    transform: translateY(-140%); transition: transform .35s; }
  .nav.open { transform: translateY(0); }
  .burger { display: flex; }
  .header-actions .btn-sm { display: none; }
  .services-grid, .cases-grid, .testi-grid, .process-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; justify-content: center; }
  .section { padding: 70px 0; }
  .hero { padding: 120px 0 50px; }
  .hero-visual { height: 420px; transform: scale(.92); }
  .cta-inner { padding: 50px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
