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

:root {
    --neon: #00ff88;
    --neon-dim: #00cc6a;
    --purple: #a855f7;
    --purple-lt: #c084fc;
    --bg: #0a0a0f;
    --surface: #15151e;
    --surface2: #1e1e2a;
    --text: #e4e4e7;
    --muted: #71717a;
    --border: rgba(113,113,122,.2);
    --glow: rgba(0,255,136,.1);
    --font-h: 'Manrope', sans-serif;
    --font-b: 'DM Sans', sans-serif;
    --max-w: 1080px;
    --r: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--bg); line-height: 1.75; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--neon); text-decoration: none; transition: .3s; }
a:hover { color: var(--neon-dim); }
ul, ol { list-style: none; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4, h5 { font-family: var(--font-h); color: var(--text); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }
h4 { font-size: .92rem; font-weight: 600; }
p { margin-bottom: 1rem; }

.tag { display: inline-block; font-family: var(--font-h); font-size: 11px; font-weight: 700; color: var(--neon); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--r); font-family: var(--font-h); font-weight: 700; font-size: 14px; border: none; cursor: pointer; transition: all .3s; text-decoration: none; }
.btn-neon { background: var(--neon); color: var(--bg); }
.btn-neon:hover { background: var(--neon-dim); color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--neon); color: var(--neon); }
.btn-white { background: #fff; color: var(--bg); }
.btn-white:hover { transform: translateY(-2px); }

/* NAV — floating centered pill */
.nav { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 200; background: rgba(10,10,15,.9); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 50px; padding: 6px 8px; display: flex; align-items: center; gap: 4px; max-width: 660px; }
.nav-logo { font-family: var(--font-h); font-size: 14px; font-weight: 800; color: var(--text); text-decoration: none; padding: 6px 16px; white-space: nowrap; }
.nav-logo span { color: var(--neon); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-family: var(--font-h); font-size: 12px; font-weight: 600; color: var(--muted); text-decoration: none; padding: 7px 14px; border-radius: 50px; transition: all .3s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); background: var(--surface2); }
.nav-links a.active { color: var(--bg); background: var(--neon); }
.nav-cta { padding: 8px 18px; background: var(--neon); color: var(--bg); border-radius: 50px; font-family: var(--font-h); font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.nav-cta:hover { box-shadow: 0 0 20px var(--glow); color: var(--bg); }
.nav-mob { display: none; background: none; border: 1px solid var(--border); padding: 6px 14px; border-radius: 50px; font-size: 12px; cursor: pointer; font-family: var(--font-h); color: var(--muted); }
@media(max-width:720px) {
    .nav { border-radius: var(--r); top: 8px; left: 8px; right: 8px; transform: none; max-width: none; flex-wrap: wrap; }
    .nav-links { display: none; width: 100%; padding-top: 6px; }
    .nav-links.open { display: flex; flex-wrap: wrap; }
    .nav-cta { display: none; }
    .nav-mob { display: block; }
}

/* HERO — centered, NO fade-in, always visible */
.hero { padding: 140px 0 50px; text-align: center; position: relative; }
.hero::before { content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, var(--glow), rgba(168,85,247,.05) 50%, transparent 70%); pointer-events: none; }
.hero h1 { position: relative; z-index: 1; margin-bottom: 16px; }
.hero > .wrap > p { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto 28px; position: relative; z-index: 1; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; margin-bottom: 30px; }
.hero-img { max-width: 600px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--surface); position: relative; z-index: 1; }
.hero-img img { width: 100%; height: 260px; object-fit: cover; }

/* SECTIONS */
.section { padding: 60px 0; }
.section-dark { background: var(--surface); }

/* CAPABILITY GRID */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cap-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; transition: all .3s; }
.cap-card:hover { border-color: var(--neon); box-shadow: 0 0 24px var(--glow); transform: translateY(-2px); }
.cap-card h4 { color: var(--neon); margin-bottom: 6px; font-size: 14px; }
.cap-card p { color: var(--muted); font-size: 13px; margin: 0; }
@media(max-width:600px) { .cap-grid { grid-template-columns: 1fr; } }

/* STATS */
.stats { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { text-align: center; }
.stat-val { font-family: var(--font-h); font-size: 1.8rem; font-weight: 800; color: var(--neon); line-height: 1; text-shadow: 0 0 20px var(--glow); }
.stat-label { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
@media(max-width:500px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* SERVICE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; transition: all .3s; position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--neon), var(--purple)); opacity: 0; transition: opacity .3s; }
.svc-card:hover { border-color: var(--neon); transform: translateY(-3px); box-shadow: 0 8px 28px var(--glow); }
.svc-card:hover::after { opacity: 1; }
.svc-card h3 { font-size: 15px; margin-bottom: 8px; }
.svc-card > p { color: var(--muted); font-size: 13px; flex: 1; margin-bottom: 16px; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.svc-price { font-family: var(--font-h); font-weight: 700; color: var(--neon); font-size: 13px; }
.svc-foot .btn { padding: 8px 16px; font-size: 11px; }
@media(max-width:700px) { .svc-grid { grid-template-columns: 1fr; } }

/* CASES */
.case-list { display: flex; flex-direction: column; gap: 14px; }
.case-card { display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; transition: all .3s; }
.case-card:hover { border-color: var(--neon); box-shadow: 0 0 20px var(--glow); }
.case-num { font-family: var(--font-h); font-size: 1.3rem; font-weight: 800; color: var(--neon); text-shadow: 0 0 16px var(--glow); text-align: center; }
.case-label { font-size: 10px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.case-card h3 { font-size: 15px; margin-bottom: 4px; }
.case-card p { color: var(--muted); font-size: 13px; margin: 0; }
@media(max-width:600px) { .case-card { grid-template-columns: 1fr; } .case-num { text-align: left; } }

/* PROCESS TIMELINE */
.tl-row { display: flex; gap: 0; overflow-x: auto; padding-bottom: 10px; }
.tl-step { flex: 0 0 180px; padding: 20px; border-right: 1px solid var(--border); }
.tl-step:last-child { border-right: none; }
.tl-n { font-family: var(--font-h); font-size: 1.5rem; font-weight: 800; color: var(--purple); margin-bottom: 6px; }
.tl-step h4 { font-size: 14px; color: var(--neon); margin-bottom: 4px; }
.tl-step p { color: var(--muted); font-size: 12px; margin: 0; }

/* TESTIMONIALS */
.testi-wrap { max-width: 600px; margin: 0 auto; text-align: center; }
.testi-card { display: none; }
.testi-card.active { display: block; }
.testi-text { font-family: var(--font-h); font-size: clamp(14px, 2vw, 17px); font-weight: 300; color: var(--text); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.testi-name { font-family: var(--font-h); font-weight: 700; font-size: 13px; color: var(--neon); }
.testi-role { font-size: 11px; color: var(--muted); }
.testi-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); cursor: pointer; transition: .3s; }
.testi-dot.active { background: var(--neon); border-color: var(--neon); box-shadow: 0 0 10px var(--glow); }

/* CTA BAND */
.cta-band { padding: 50px 32px; margin: 30px 32px; background: var(--surface); border: 1px solid var(--neon); border-radius: var(--r); text-align: center; box-shadow: 0 0 40px var(--glow); }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: var(--muted); max-width: 400px; margin: 0 auto 18px; }

/* PAGE HEAD */
.pg-head { padding: 100px 0 28px; border-bottom: 1px solid var(--border); }
.pg-head h1 { margin-bottom: 8px; }
.pg-head p { color: var(--muted); max-width: 500px; }

/* PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 22px; display: flex; flex-direction: column; transition: .3s; position: relative; }
.price-card.pop { border-color: var(--neon); box-shadow: 0 0 28px var(--glow); }
.price-card.pop::before { content: 'POPULAR'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--neon); color: var(--bg); font-family: var(--font-h); font-size: 10px; font-weight: 700; letter-spacing: 2px; padding: 4px 14px; border-radius: 50px; }
.price-card:hover { transform: translateY(-3px); }
.price-card h3 { font-size: 18px; margin-bottom: 6px; }
.pc-price { font-family: var(--font-h); font-size: 1.6rem; font-weight: 800; color: var(--neon); margin-bottom: 14px; }
.pc-price small { font-size: 12px; color: var(--muted); font-weight: 400; }
.pc-list { flex: 1; margin-bottom: 16px; }
.pc-list li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--muted); padding-left: 18px; position: relative; }
.pc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--neon); }
.price-card .btn { width: 100%; justify-content: center; }
@media(max-width:700px) { .price-grid { grid-template-columns: 1fr; } }

/* SERVICE PAGE */
.svc-hero { padding: 100px 0 28px; border-bottom: 1px solid var(--border); }
.svc-fprice { font-family: var(--font-h); font-weight: 700; color: var(--neon); font-size: 16px; margin: 6px 0 14px; }
.svc-hero .svc-img { margin-top: 16px; border-radius: var(--r); height: 220px; object-fit: cover; width: 100%; max-width: 560px; border: 1px solid var(--border); }
.svc-body { max-width: 640px; padding: 40px 0; }
.svc-body h3 { font-size: 1.1rem; margin: 28px 0 10px; padding-top: 18px; border-top: 1px solid var(--border); }
.svc-body h3:first-of-type { border-top: none; padding-top: 0; }
.svc-body h4 { color: var(--neon); margin: 18px 0 8px; }
.svc-body p { color: var(--muted); font-size: 15px; line-height: 1.9; }
.svc-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

/* BUILDER */
.builder-box { max-width: 500px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.addon-stack { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.addon-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); cursor: pointer; transition: .3s; }
.addon-row:hover { border-color: var(--neon); }
.addon-row label { display: flex; align-items: center; gap: 8px; cursor: pointer; flex: 1; font-size: 14px; }
.addon-row input[type="checkbox"] { accent-color: var(--neon); }
.addon-cost { font-family: var(--font-h); font-weight: 700; color: var(--neon); font-size: 13px; }
.build-total { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 2px solid var(--neon); }
.bt-val { font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; color: var(--neon); }
.sup-block { margin-bottom: 18px; }
.range-bar { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.range-bar input[type="range"] { flex: 1; accent-color: var(--neon); }

/* FORMS */
.co-wrap { max-width: 440px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); color: var(--text); font-family: var(--font-b); font-size: 14px; transition: .3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 8px var(--glow); }
@media(max-width:500px) { .form-grid { grid-template-columns: 1fr; } }
.cb-agree { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; font-size: 12px; color: var(--muted); }
.cb-agree input { accent-color: var(--neon); }
.cb-agree a { color: var(--neon); }

.order-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 18px; margin-bottom: 18px; }
.order-box h3 { margin-bottom: 8px; }
.ol { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted); }
.ol.tot { border-bottom: none; border-top: 2px solid var(--neon); margin-top: 6px; padding-top: 8px; font-weight: 700; color: var(--text); }
.ol.tot span:last-child { color: var(--neon); }

/* ABOUT */
.about-body { max-width: 600px; }
.about-body p { color: var(--muted); font-size: 15px; }
.about-img { border-radius: var(--r); margin-bottom: 20px; height: 250px; object-fit: cover; width: 100%; border: 1px solid var(--border); }
.vals-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--border); }
.val-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; transition: .3s; }
.val-card:hover { border-color: var(--neon); }
.val-card h3 { color: var(--neon); font-size: 14px; margin-bottom: 6px; }
.val-card p { color: var(--muted); font-size: 13px; margin: 0; }
@media(max-width:600px) { .vals-row { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 600px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; padding: 16px 0; background: none; border: none; color: var(--text); font-family: var(--font-h); font-weight: 600; font-size: 14px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q:hover { color: var(--neon); }
.faq-ic { color: var(--muted); transition: .3s; }
.faq-item.open .faq-ic { transform: rotate(45deg); color: var(--neon); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; }
.faq-a-inner { padding: 0 0 16px; color: var(--muted); font-size: 14px; line-height: 1.85; }

/* CONTACT */
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.ct-meta span { display: block; font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; margin-top: 14px; }
.ct-meta a { color: var(--neon); font-size: 14px; }
.ct-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; }
@media(max-width:700px) { .ct-grid { grid-template-columns: 1fr; } }

/* LEGAL */
.legal { max-width: 660px; margin: 0 auto; }
.legal h2 { font-size: 14px; font-weight: 700; margin: 22px 0 8px; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--muted); font-size: 14px; line-height: 1.85; }
.legal a { color: var(--neon); }

/* FOOTER */
.footer { padding: 44px 0 18px; border-top: 1px solid var(--border); }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.ft-brand { font-family: var(--font-h); font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.ft-brand span { color: var(--neon); }
.footer p { color: var(--muted); font-size: 12px; margin-bottom: 4px; }
.footer h4 { font-family: var(--font-h); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--neon); margin-bottom: 10px; }
.footer a { display: block; color: var(--muted); font-size: 12px; margin-bottom: 4px; text-decoration: none; }
.footer a:hover { color: var(--neon); }
.ft-bottom { border-top: 1px solid var(--border); padding-top: 14px; font-size: 11px; color: var(--muted); text-align: center; }
@media(max-width:700px) { .ft-grid { grid-template-columns: 1fr 1fr; } }

/* COOKIE */
.cookie-bar { position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 300; background: var(--surface); border: 1px solid var(--border); border-radius: 50px; padding: 10px 24px; display: none; align-items: center; gap: 14px; font-size: 13px; color: var(--muted); box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.cookie-bar.show { display: flex; }
.ck-btns { display: flex; gap: 6px; }
.ck-btn { padding: 6px 14px; border-radius: 50px; font-weight: 600; font-size: 11px; border: 1px solid var(--border); background: transparent; cursor: pointer; color: var(--muted); }
.ck-yes { background: var(--neon); color: var(--bg); border-color: var(--neon); }

/* CHAT */
.chat-fab { position: fixed; bottom: 18px; right: 18px; z-index: 250; width: 52px; height: 52px; border-radius: 50%; background: var(--neon); color: var(--bg); border: none; cursor: pointer; box-shadow: 0 4px 20px var(--glow); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; font-family: var(--font-h); transition: .3s; }
.chat-fab:hover { transform: scale(1.1); }
.chat-fab.hide { display: none; }
.chat-box { position: fixed; bottom: 18px; right: 18px; z-index: 250; width: 340px; max-width: calc(100vw - 24px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); box-shadow: 0 16px 50px rgba(0,0,0,.4); display: none; flex-direction: column; max-height: 500px; }
.chat-box.open { display: flex; }
.chat-hd { background: linear-gradient(135deg, var(--neon), var(--purple)); color: var(--bg); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; border-radius: var(--r) var(--r) 0 0; }
.chat-hd h4 { font-size: 14px; margin: 0; color: var(--bg); }
.chat-hd p { font-size: 10px; margin: 0; color: rgba(0,0,0,.4); }
.chat-close { background: none; border: none; color: rgba(0,0,0,.3); font-size: 16px; cursor: pointer; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; min-height: 160px; max-height: 280px; background: var(--bg); }
.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: var(--r); font-size: 13px; line-height: 1.5; }
.chat-msg.bot { background: var(--surface); align-self: flex-start; border: 1px solid var(--border); }
.chat-msg.user { background: linear-gradient(135deg, var(--neon), var(--purple)); color: var(--bg); align-self: flex-end; }
.chat-qr { display: flex; flex-wrap: wrap; gap: 5px; padding: 0 14px 10px; background: var(--bg); }
.qr-btn { padding: 4px 10px; border-radius: 50px; border: 1px solid var(--border); background: transparent; font-size: 11px; font-weight: 600; color: var(--neon); cursor: pointer; }
.qr-btn:hover { background: var(--neon); color: var(--bg); border-color: var(--neon); }
.chat-typing { align-self: flex-start; padding: 10px; background: var(--surface); border-radius: var(--r); border: 1px solid var(--border); font-size: 12px; color: var(--muted); display: none; }
.chat-typing.show { display: block; }
.chat-input-row { display: flex; gap: 6px; padding: 12px; border-top: 1px solid var(--border); }
.chat-input { flex: 1; padding: 10px; border: 1px solid var(--border); border-radius: var(--r); font-size: 13px; color: var(--text); background: var(--bg); outline: none; }
.chat-input:focus { border-color: var(--neon); }
.chat-send { padding: 10px 18px; background: var(--neon); color: var(--bg); border: none; border-radius: var(--r); font-weight: 600; font-size: 12px; cursor: pointer; }

/* RESULT */
.res-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 28px; }
.res-icon { font-size: 48px; margin-bottom: 14px; }
.res-page h1 { margin-bottom: 8px; }
.res-page p { color: var(--muted); max-width: 360px; margin: 0 auto 22px; }

/* ANIM */
.anim { opacity: 0; transform: translateY(12px); transition: opacity .6s, transform .6s; }
.anim.vis { opacity: 1; transform: translateY(0); }
.mt-4 { margin-top: 20px; }
