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

:root {
  --purple: #7c3aed;
  --purple-light: #8b5cf6;
  --purple-dark: #5b21b6;
  --purple-bg: #f5f3ff;
  --pink: #ec4899;
  --text: #0a0a0f;
  --text-muted: #64748b;
  --bg: #ffffff;
  --border: #e2e8f0;
  --radius: 16px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-tap-highlight-color: transparent; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ══════════════════════ MOBILE BASE (default) ══════════════════════ */

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 0 16px; transition: all .3s; background: rgba(15,12,41,.85); backdrop-filter: blur(10px); }
.nav.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--border); }
.nav-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-size: 1.05rem; font-weight: 800; text-decoration: none; color: #fff; flex-shrink: 0; }
.nav-logo span { color: #a78bfa; }
.nav.scrolled .nav-logo { color: var(--text); }
.nav-links { display: none; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-track { display: inline-flex !important; align-items: center; gap: 6px; font-size: .85rem !important; }
.nav-cta { display: none; }
.nav-burger { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; font-size: 1.4rem; color: #fff; cursor: pointer; }
.nav.scrolled .nav-burger { color: var(--text); }
.nav-links.mobile-open { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: #fff; padding: 20px; gap: 4px; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.nav-links.mobile-open a { color: var(--text) !important; padding: 12px 4px; border-bottom: 1px solid var(--border); }
.nav-links.mobile-open a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero { min-height: 100svh; background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%); display: flex; flex-direction: column; justify-content: center; gap: 32px; padding: 96px 20px 56px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; }
.hero-orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, #7c3aed, transparent); top: -160px; left: -120px; }
.hero-orb-2 { width: 320px; height: 320px; background: radial-gradient(circle, #ec4899, transparent); bottom: -80px; right: -80px; }
.hero-grid { 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: 44px 44px; }
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 500; margin-bottom: 22px; background: rgba(255,255,255,.08); padding: 7px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,.12); }
.dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse-dot 2s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,.4); } 50% { opacity: .7; box-shadow: 0 0 0 6px rgba(74,222,128,0); } }
.hero-title { font-size: clamp(2rem, 8vw, 3.8rem); font-weight: 900; line-height: 1.1; color: #fff; letter-spacing: -.02em; margin-bottom: 18px; }
.hero-gradient { background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-highlight { position: relative; color: #fbbf24; -webkit-text-fill-color: #fbbf24; }
.hero-sub { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.btn-hero-main { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; padding: 16px 28px; border-radius: 100px; font-weight: 700; font-size: .98rem; text-decoration: none; transition: all .25s; box-shadow: 0 8px 32px rgba(124,58,237,.45); min-height: 52px; }
.btn-hero-main:active { transform: scale(.98); }
.btn-hero-ghost { display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); padding: 15px 26px; border-radius: 100px; font-weight: 600; font-size: .92rem; text-decoration: none; border: 1px solid rgba(255,255,255,.2); transition: all .25s; min-height: 50px; }
.hero-trust { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-avatars { display: flex; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-left: -10px; overflow: hidden; }
.avatar:first-child { margin-left: 0; }
.trust-text { color: rgba(255,255,255,.65); font-size: .85rem; }
.trust-text strong { color: #fff; }

/* Browser mockup — hidden on mobile, shown from tablet up */
.hero-mockup { display: none; }

.hero-scroll-hint { display: none; }
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ── CLIENTS BAR ── */
.clients-bar { background: #fafafa; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; }
.clients-inner { max-width: 1180px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 20px; }
.clients-label { color: var(--text-muted); font-size: .8rem; white-space: nowrap; flex-shrink: 0; }
.clients-list { display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; }
.clients-list::-webkit-scrollbar { display: none; }
.clients-list span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-size: .85rem; font-weight: 500; color: var(--text-muted); }

/* ── PROBLEM SECTION ── */
.problem-section { padding: 56px 0; background: #fff; }
.problem-grid { display: flex; flex-direction: column; gap: 16px; max-width: 860px; margin: 0 auto; }
.problem-vs { display: none; }
.problem-col { background: #f8fafc; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px 20px; }
.problem-col-good { background: #f5f3ff; border-color: var(--purple); }
.problem-col-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); width: 100%; }
.problem-col-label.bad { color: #94a3b8; }
.problem-col-label.good { color: var(--purple); }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.problem-list li { display: flex; align-items: center; gap: 9px; font-size: .9rem; }

/* ── SECTION COMMONS ── */
.section-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--purple-bg); color: var(--purple); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 6px 13px; border-radius: 100px; margin-bottom: 14px; }
.section-title { font-size: clamp(1.5rem, 6vw, 2.8rem); font-weight: 900; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px; }
.text-purple { color: var(--purple); }
.section-sub { color: var(--text-muted); font-size: .95rem; max-width: 560px; }

/* ── HOW ── */
.how-section { padding: 64px 0; background: #0a0a0f; color: #fff; }
.how-section .section-tag { background: rgba(124,58,237,.2); color: #a78bfa; }
.how-section .section-title { color: #fff; margin-bottom: 32px; }
.how-section .text-purple { color: #a78bfa; }
.process-illustration { display: block; max-width: 300px; width: 100%; margin: 0 auto 32px; filter: drop-shadow(0 20px 40px rgba(124,58,237,.25)); }
.how-steps { display: flex; flex-direction: column; gap: 16px; }
.how-step { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 30px 24px; text-align: center; position: relative; transition: all .3s; }
.how-step:hover { background: rgba(124,58,237,.15); border-color: rgba(124,58,237,.4); }
.how-step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--purple); color: #fff; font-size: .68rem; font-weight: 900; letter-spacing: 1px; padding: 4px 12px; border-radius: 100px; }
.how-step-icon { color: #a78bfa; margin-bottom: 14px; display: flex; justify-content: center; }
.how-step h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.how-step p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.6; }
.how-step-time { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); font-size: .78rem; padding: 5px 12px; border-radius: 100px; }
.how-connector { display: none; }

/* ── PORTFOLIO ── */
.portfolio-section { padding: 64px 0; background: #fff; }
.portfolio-section .section-title, .portfolio-section .section-sub { margin-bottom: 8px; }
.portfolio-section .section-sub { margin-bottom: 32px; }
.portfolio-grid { display: flex; flex-direction: column; gap: 20px; }
.portfolio-card { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); transition: all .3s; cursor: pointer; }
.portfolio-card:hover { border-color: var(--purple); }
.portfolio-preview { height: 180px; padding: 16px; }
.pp-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pp-logo { width: 48px; height: 8px; border-radius: 4px; }
.pp-links { display: flex; gap: 6px; }
.pp-links::before, .pp-links::after { content: ''; display: block; width: 20px; height: 4px; background: rgba(255,255,255,.25); border-radius: 2px; }
.pp-hero { margin-bottom: 16px; }
.pp-h1 { height: 12px; background: rgba(255,255,255,.85); border-radius: 3px; margin-bottom: 6px; }
.pp-h2 { height: 7px; background: rgba(255,255,255,.4); border-radius: 3px; margin-bottom: 12px; }
.pp-btn { height: 22px; width: 80px; border-radius: 100px; }
.pp-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.pp-item { height: 32px; border-radius: 6px; }
.portfolio-info { padding: 14px 18px; }
.portfolio-tag, .portfolio-time { display: flex; align-items: center; gap: 5px; }
.portfolio-tag { font-size: .74rem; color: var(--text-muted); margin-bottom: 4px; }
.portfolio-name { font-size: .98rem; font-weight: 700; margin-bottom: 4px; }
.portfolio-time { font-size: .78rem; color: var(--purple); font-weight: 600; }
.portfolio-card-cta { border-style: dashed; background: var(--purple-bg); display: flex; align-items: center; justify-content: center; min-height: 220px; }
.portfolio-cta-content { text-align: center; padding: 28px; }
.cta-icn { color: var(--purple); display: flex; justify-content: center; margin-bottom: 14px; }
.portfolio-cta-content h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: var(--purple); }
.portfolio-cta-content p { color: var(--text-muted); font-size: .88rem; margin-bottom: 18px; }
.btn-sm-cta { display: inline-block; background: var(--purple); color: #fff; padding: 10px 22px; border-radius: 100px; font-weight: 700; font-size: .88rem; text-decoration: none; transition: all .2s; }

/* ── TESTIMONIALS ── */
.testi-section { padding: 64px 0; background: #0a0a0f; }
.testi-section .section-tag { background: rgba(124,58,237,.2); color: #a78bfa; }
.testi-section .section-title { color: #fff; margin-bottom: 32px; }
.testi-section .text-purple { color: #a78bfa; }
.testi-grid { display: flex; flex-direction: column; gap: 16px; }
.testi-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 24px 22px; transition: all .3s; }
.testi-featured { background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(236,72,153,.1)); border-color: rgba(124,58,237,.4); }
.testi-stars { display: flex; gap: 3px; color: #fbbf24; font-size: .95rem; margin-bottom: 14px; }
.testi-text { color: rgba(255,255,255,.75); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-featured .testi-text { font-size: 1rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { font-size: .82rem; font-weight: 800; color: #fff; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--purple), var(--pink)); flex-shrink: 0; }
.testi-author div strong { display: block; color: #fff; font-size: .9rem; }
.testi-author div span { color: rgba(255,255,255,.4); font-size: .78rem; }

/* ── PRICING ── */
.pricing-section { padding: 64px 0; background: #fff; }
.pricing-section .section-sub { margin-bottom: 32px; }
.pricing-single { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.price-card { background: #fff; border: 2px solid var(--border); border-radius: 20px; padding: 28px 22px; position: relative; transition: all .3s; }
.price-card-popular { border-color: var(--purple); box-shadow: 0 12px 48px rgba(124,58,237,.15); }
.price-card-main .price-amount { font-size: 3.4rem; }
.price-popular-tag { display: inline-flex; align-items: center; gap: 6px; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; padding: 6px 18px; border-radius: 100px; font-size: .75rem; font-weight: 800; white-space: nowrap; }
.price-top { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.price-name { font-size: .85rem; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.price-amount { font-size: 2.6rem; font-weight: 900; line-height: 1; letter-spacing: -.03em; margin-bottom: 8px; }
.price-currency { font-size: 1.3rem; vertical-align: top; padding-top: 6px; display: inline-block; }
.price-desc { color: var(--text-muted); font-size: .84rem; }
.price-features { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 11px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.check, .cross { display: inline-flex; flex-shrink: 0; }
.check { color: #059669; }
.cross { color: #cbd5e1; }
.price-btn {
  display: flex; align-items: center; justify-content: center; width: 100%; padding: 15px;
  border: 2px solid var(--purple); background: transparent; color: var(--purple); border-radius: 12px;
  font-family: inherit; font-size: .93rem; font-weight: 700; cursor: pointer; transition: all .2s;
  text-decoration: none; min-height: 50px;
}
.price-btn-popular { background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; border-color: transparent; }
.price-options-card { background: #f8fafc; border: 1.5px solid var(--border); border-radius: 20px; padding: 24px 22px; }
.price-options-title { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: .95rem; margin-bottom: 16px; color: var(--text); }
.price-options-list { list-style: none; display: flex; flex-direction: column; }
.price-options-list li { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: .88rem; gap: 12px; }
.price-options-list li:last-child { border-bottom: none; }
.price-options-list strong { color: var(--purple); flex-shrink: 0; }
.price-options-note { margin-top: 14px; font-size: .78rem; color: var(--text-muted); background: #fff; border-radius: 10px; padding: 12px 14px; border: 1px dashed var(--border); }
.pricing-guarantee { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; background: #f0fdf4; border: 1.5px solid #bbf7d0; border-radius: var(--radius); padding: 24px 20px; }
.guarantee-illustration { width: 56px; height: 56px; flex-shrink: 0; }
.pricing-guarantee strong { display: block; font-size: .98rem; margin-bottom: 4px; color: #065f46; }
.pricing-guarantee p { color: #047857; font-size: .86rem; }

/* ── FAQ ── */
.faq-section { padding: 64px 0; background: #fff; }
.faq-section .section-title { margin-bottom: 32px; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item:has(.faq-a.open) { border-color: var(--purple); }
.faq-q { width: 100%; background: none; border: none; padding: 16px 18px; text-align: left; font-family: inherit; font-size: .9rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--text); min-height: 52px; }
.faq-arrow { color: var(--purple); transition: transform .3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; padding: 0 18px; color: var(--text-muted); font-size: .88rem; line-height: 1.7; }
.faq-a.open { max-height: 260px; padding: 0 18px 18px; }
.faq-arrow.open { transform: rotate(180deg); }

/* ── FINAL CTA ── */
.final-cta { background: linear-gradient(135deg, #0f0c29 0%, #302b63 100%); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.final-orb-1 { position: absolute; width: 360px; height: 360px; background: radial-gradient(circle, rgba(124,58,237,.4), transparent); top: -160px; left: -100px; border-radius: 50%; }
.final-orb-2 { position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(236,72,153,.3), transparent); bottom: -120px; right: -60px; border-radius: 50%; }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(1.7rem, 7vw, 3rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.final-cta h2 span { color: #fbbf24; }
.final-cta p { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 28px; }
.btn-final { display: inline-flex; align-items: center; background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; padding: 17px 34px; border-radius: 100px; font-weight: 800; font-size: .98rem; text-decoration: none; transition: all .25s; box-shadow: 0 8px 40px rgba(124,58,237,.5); min-height: 52px; }
.final-badges { display: flex; flex-direction: column; gap: 10px; align-items: center; margin-top: 24px; }
.final-badges span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.5); font-size: .8rem; }

/* ── FOOTER ── */
.footer { background: #05050a; padding: 28px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: .95rem; color: #fff; }
.footer-logo strong { color: #a78bfa; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-copy { color: rgba(255,255,255,.25); font-size: .76rem; }

/* ── ILLUSTRATIONS ── */
.hero-illustration { display: none; }

/* ── ICONS / LOGO ── */
.icn { vertical-align: -3px; flex-shrink: 0; }
i[data-icon] { display: inline-flex; align-items: center; font-style: normal; }
.logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; vertical-align: middle; flex-shrink: 0; }
.logo-mark img { width: 100%; height: 100%; display: block; }
.logo-mark-sm { width: 24px; height: 24px; }
.avatar.av-1, .avatar.av-2, .avatar.av-3, .avatar.av-4 { font-size: .7rem; font-weight: 800; color: #fff; }
.av-1 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.av-2 { background: linear-gradient(135deg, #ec4899, #f9a8d4); }
.av-3 { background: linear-gradient(135deg, #0ea5e9, #7dd3fc); }
.av-4 { background: linear-gradient(135deg, #f59e0b, #fcd34d); }
.li-x { color: #f87171; }
.li-c { color: #34d399; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 20px; left: 16px; right: 16px; background: #1f2937; color: #fff; padding: 14px 18px; border-radius: 12px; font-size: .88rem; opacity: 0; transform: translateY(16px); transition: all .3s; pointer-events: none; z-index: 999; text-align: center; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: #059669; }
.toast.error { background: #dc2626; }

/* ══════════════════════ TABLET (min-width: 640px) ══════════════════════ */
@media (min-width: 640px) {
  .container { padding: 0 32px; }
  .hero-actions { flex-direction: row; }
  .portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .testi-featured { grid-column: 1 / -1; }
  .final-badges { flex-direction: row; gap: 24px; }
}

/* ══════════════════════ DESKTOP (min-width: 900px) ══════════════════════ */
@media (min-width: 900px) {
  .container { padding: 0 24px; }

  /* Nav */
  .nav { padding: 0 32px; }
  .nav-inner { height: 68px; gap: 32px; }
  .nav-logo { font-size: 1.15rem; }
  .nav-links { display: flex; gap: 28px; flex: 1; }
  .nav-cta { display: inline-block; background: #fff; color: var(--purple) !important; padding: 9px 20px; border-radius: 100px; font-size: .88rem; font-weight: 700; text-decoration: none; transition: all .2s; flex-shrink: 0; white-space: nowrap; }
  .nav.scrolled .nav-cta { background: var(--purple); color: #fff !important; }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(124,58,237,.4); }
  .nav-burger { display: none; }

  /* Hero split layout with mockup */
  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; padding: 100px 80px 80px; text-align: left; }
  .hero-content { text-align: left; }
  .hero-eyebrow { margin-bottom: 28px; }
  .hero-title { margin-bottom: 24px; }
  .hero-sub { font-size: 1.15rem; margin-bottom: 40px; }
  .hero-actions { margin-bottom: 48px; }
  .btn-hero-main, .btn-hero-ghost { min-height: auto; }
  .hero-trust { flex-direction: row; justify-content: flex-start; }

  .hero-mockup { display: block; position: relative; z-index: 2; }
  .hero-illustration { display: block; position: absolute; top: -60px; left: -70px; width: 480px; max-width: none; opacity: .9; pointer-events: none; z-index: 0; }
  .browser { background: #1e1e2e; border-radius: 12px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.07); transform: perspective(1000px) rotateY(-6deg) rotateX(3deg); transition: transform .4s; position: relative; z-index: 1; }
  .browser:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
  .browser-bar { background: #2a2a3e; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
  .dot-r,.dot-y,.dot-g { width: 12px; height: 12px; border-radius: 50%; }
  .dot-r { background: #ff5f57; }
  .dot-y { background: #ffbd2e; }
  .dot-g { background: #28c840; }
  .browser-url { flex: 1; background: rgba(255,255,255,.07); border-radius: 6px; padding: 5px 12px; color: rgba(255,255,255,.4); font-size: .8rem; font-family: monospace; }
  .browser-screen { background: #fff; }
  .mock-hero-site { padding: 0; overflow: hidden; }
  .mock-nav-site { background: #0f0c29; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; }
  .mock-logo { width: 60px; height: 10px; background: linear-gradient(90deg, #7c3aed, #ec4899); border-radius: 5px; }
  .mock-links { display: flex; gap: 8px; }
  .mock-links span { width: 30px; height: 6px; background: rgba(255,255,255,.3); border-radius: 3px; }
  .mock-hero-content { background: linear-gradient(135deg, #0f0c29, #302b63); padding: 28px 16px 20px; }
  .mock-title { height: 14px; background: rgba(255,255,255,.9); border-radius: 4px; width: 75%; margin-bottom: 8px; }
  .mock-subtitle { height: 8px; background: rgba(255,255,255,.4); border-radius: 4px; width: 55%; margin-bottom: 16px; }
  .mock-btn { height: 28px; width: 120px; background: linear-gradient(135deg, #7c3aed, #ec4899); border-radius: 100px; }
  .mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 16px; background: #f8f9fa; }
  .mock-card { height: 60px; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
  .mockup-badge { display: inline-flex; align-items: center; gap: 6px; position: absolute; background: #fff; border-radius: 12px; padding: 10px 16px; font-size: .82rem; font-weight: 700; box-shadow: 0 8px 32px rgba(0,0,0,.2); white-space: nowrap; z-index: 2; }
  .mockup-badge-1 { bottom: 24px; left: -24px; color: #059669; }
  .mockup-badge-2 { top: 24px; right: -16px; color: var(--purple); }

  .hero-scroll-hint { display: flex; position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.4); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }
  .scroll-arrow { width: 24px; height: 24px; border-right: 2px solid rgba(255,255,255,.3); border-bottom: 2px solid rgba(255,255,255,.3); transform: rotate(45deg); animation: bounce 1.5s infinite; }

  /* Problem section */
  .problem-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
  .problem-vs { display: block; font-size: 2rem; font-weight: 900; color: var(--text-muted); padding: 0 16px; }
  .problem-section { padding: 80px 0; }
  .problem-col { padding: 32px; }

  .section-title { margin-bottom: 16px; }
  .section-sub { font-size: 1.05rem; }

  /* How it works */
  .how-section { padding: 100px 0; }
  .how-section .section-title { margin-bottom: 64px; }
  .process-illustration { max-width: 420px; margin-bottom: 48px; }
  .how-steps { flex-direction: row; align-items: flex-start; gap: 0; }
  .how-step { flex: 1; padding: 40px 28px; }
  .how-step:hover { transform: translateY(-4px); }
  .how-connector { display: block; font-size: 1.5rem; color: rgba(255,255,255,.2); padding: 20px 10px; flex-shrink: 0; align-self: center; padding-top: 40px; }

  /* Portfolio */
  .portfolio-section { padding: 100px 0; }
  .portfolio-section .section-sub { margin-bottom: 56px; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.12); }
  .portfolio-preview { height: 200px; }
  .portfolio-info { padding: 16px 20px; }
  .portfolio-card-cta { min-height: 280px; }

  /* Testimonials */
  .testi-section { padding: 100px 0; }
  .testi-section .section-title { margin-bottom: 48px; }
  .testi-card { padding: 32px; }
  .testi-stars { margin-bottom: 16px; }
  .testi-text { margin-bottom: 24px; }
  .testi-avatar { width: 48px; height: 48px; font-size: .85rem; }

  /* Pricing */
  .pricing-section { padding: 100px 0; }
  .pricing-section .section-sub { margin-bottom: 56px; }
  .pricing-single { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; max-width: 900px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }
  .price-card { padding: 40px 32px; }
  .price-card:hover { border-color: var(--purple); box-shadow: 0 20px 60px rgba(124,58,237,.12); transform: translateY(-4px); }
  .price-card-main .price-amount { font-size: 4.5rem; }
  .price-amount { font-size: 3.2rem; }
  .price-currency { font-size: 1.6rem; }
  .price-btn:hover { background: var(--purple-bg); }
  .price-btn-popular:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,.4); }
  .price-options-card { padding: 32px; }
  .pricing-guarantee { flex-direction: row; text-align: left; padding: 24px 28px; }

  /* FAQ */
  .faq-section { padding: 100px 0; }
  .faq-section .section-title { margin-bottom: 48px; }
  .faq-q { padding: 20px 24px; font-size: .95rem; }
  .faq-a { padding: 0 24px; font-size: .93rem; }
  .faq-a.open { padding: 0 24px 20px; }

  /* Final CTA */
  .final-cta { padding: 100px 0; }
  .final-cta p { font-size: 1.05rem; margin-bottom: 40px; }
  .final-orb-1 { width: 500px; height: 500px; top: -200px; left: -100px; }
  .final-orb-2 { width: 400px; height: 400px; bottom: -150px; right: -50px; }

  /* Footer */
  .footer { padding: 32px 0; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
