@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #040710;
    --bg2: #070b18;
    --accent: #00e5ff;
    --accent2: #7b61ff;
    --white: #eef2ff;
    --muted: #5e6e91;
    --card: #0b1020;
    --border: rgba(0,229,255,0.1);
    --glow: 0 0 50px rgba(0,229,255,0.12);
    --font-head: 'ClashDisplay-Variable', 'Clash Display', 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--white); overflow-x: hidden; cursor: default; }

.grid-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; background-image: linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px); background-size: 60px 60px; }

/* NAV */
nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 18px 60px; display: flex; justify-content: space-between; align-items: center; background: rgba(4,7,16,0.75); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-family: 'Orbitron', sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: 3px; background: linear-gradient(90deg, #00e5ff 0%, #a0f0ff 50%, #00e5ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 1rem; font-weight: 500; transition: color 0.3s; letter-spacing: 0.1px; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--accent); color: var(--bg); padding: 10px 22px; border-radius: 6px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.3s; letter-spacing: 0.3px; }
.nav-cta:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,229,255,0.3); }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-logo span { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: 3px; background: linear-gradient(90deg, #00e5ff 0%, #a0f0ff 50%, #00e5ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 40px 80px; position: relative; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; animation: drift 9s ease-in-out infinite alternate; }
.orb1 { width: 550px; height: 550px; background: rgba(0,229,255,0.065); top: -120px; left: -120px; }
.orb2 { width: 420px; height: 420px; background: rgba(123,97,255,0.075); bottom: -60px; right: -60px; animation-delay: -4s; }
.orb3 { width: 300px; height: 300px; background: rgba(0,229,255,0.04); bottom: 20%; left: 10%; animation-delay: -7s; }
@keyframes drift { from{transform:translate(0,0) scale(1)} to{transform:translate(28px,18px) scale(1.04)} }
.hero-content { position: relative; z-index: 2; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,229,255,0.07); border: 1px solid rgba(0,229,255,0.18); padding: 8px 18px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: var(--accent); margin-bottom: 28px; opacity: 0; animation: fadeDown 0.8s ease 0.2s forwards; letter-spacing: 0.6px; text-transform: uppercase; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.7)} }
.hero h1 { font-family: var(--font-head); font-size: clamp(3.2rem, 7.5vw, 6.5rem); font-weight: 700; line-height: 1.02; letter-spacing: -2.5px; opacity: 0; animation: fadeUp 1s ease 0.4s forwards; }
.hero h1 em { font-style: normal; background: linear-gradient(100deg, var(--accent) 20%, var(--accent2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { max-width: 560px; margin: 26px auto 42px; font-size: 1.05rem; line-height: 1.75; color: var(--muted); font-weight: 400; opacity: 0; animation: fadeUp 1s ease 0.6s forwards; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s ease 0.8s forwards; }
.btn-primary { background: var(--accent); color: var(--bg); padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: all 0.3s; box-shadow: 0 0 30px rgba(0,229,255,0.25); font-family: var(--font-body); letter-spacing: 0.2px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(0,229,255,0.5); }
.btn-ghost { border: 1px solid rgba(0,229,255,0.25); color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 500; font-size: 0.92rem; text-decoration: none; transition: all 0.3s; background: rgba(0,229,255,0.03); font-family: var(--font-body); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,229,255,0.07); }
.scroll-line { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-line span { font-size: 0.65rem; color: var(--muted); letter-spacing: 2.5px; text-transform: uppercase; }
.scroll-line .line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollDown 1.6s ease-in-out infinite; }
@keyframes scrollDown { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1} 100%{opacity:0;transform:scaleY(1)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:translateY(0)} }

/* STATS */
.stats { display: flex; justify-content: center; flex-wrap: wrap; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); position: relative; z-index: 1; }
.stat-item { flex: 1; min-width: 180px; padding: 38px 20px; text-align: center; border-right: 1px solid var(--border); transition: background 0.3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,229,255,0.03); }
.stat-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { color: var(--muted); font-size: 0.82rem; margin-top: 7px; letter-spacing: 0.2px; }

/* SECTIONS */
section { padding: 100px 60px; position: relative; z-index: 1; }
.section-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.3px; margin-bottom: 16px; word-spacing: 2px; }
.section-sub { color: var(--muted); font-size: 0.98rem; line-height: 1.75; max-width: 500px; }

/* SERVICES */
.services { background: var(--bg); }
.services-header { margin-bottom: 56px; text-align: center; }
.services-header .section-sub { margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }

.service-card { background: var(--card); padding: 36px 32px; position: relative; overflow: hidden; display: flex; flex-direction: column; cursor: default; }

/* Terminal animation overlay on hover */
.service-card .s-hover-terminal { position: absolute; inset: 0; background: rgba(4,7,16,0.96); padding: 24px; display: flex; flex-direction: column; gap: 0; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; border-radius: 0; }
.service-card:hover .s-hover-terminal { opacity: 1; }
.service-card .s-hover-terminal .tbar { display: flex; gap: 5px; margin-bottom: 14px; }
.service-card .s-hover-terminal .tdot { width: 8px; height: 8px; border-radius: 50%; }
.tdot.r{background:#ff5f57} .tdot.y{background:#febc2e} .tdot.g{background:#28c840}
.service-card .s-hover-terminal .tline { font-family: 'Courier New', monospace; font-size: 0.75rem; color: #50fa7b; margin: 4px 0; opacity: 0; white-space: nowrap; overflow: hidden; }
.service-card:hover .s-hover-terminal .tline:nth-child(2) { animation: lineIn 0.3s ease 0.1s forwards; }
.service-card:hover .s-hover-terminal .tline:nth-child(3) { animation: lineIn 0.3s ease 0.35s forwards; }
.service-card:hover .s-hover-terminal .tline:nth-child(4) { animation: lineIn 0.3s ease 0.6s forwards; }
.service-card:hover .s-hover-terminal .tline:nth-child(5) { animation: lineIn 0.3s ease 0.85s forwards; }
.service-card:hover .s-hover-terminal .tline:nth-child(6) { animation: lineIn 0.3s ease 1.1s forwards; }
.service-card:hover .s-hover-terminal .tline.tcmd { color: var(--accent); }
.service-card:hover .s-hover-terminal .tline.tcom { color: var(--muted); }
@keyframes lineIn { from{opacity:0;transform:translateX(-8px)} to{opacity:1;transform:translateX(0)} }

.service-icon { width: 50px; height: 50px; flex-shrink: 0; background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.18); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 20px; transition: transform 0.3s, background 0.3s; }
.service-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; flex: 1; }
.service-tag { display: inline-block; margin-top: 16px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.2px; color: var(--accent); opacity: 0.7; }

/* HOW IT WORKS */
.how { background: var(--bg2); }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--border); transition: all 0.3s; cursor: default; }
.step:last-child { border-bottom: none; }
.step:hover .step-num { background: var(--accent); color: var(--bg); transform: scale(1.08); }
.step-num { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--accent); transition: all 0.3s; }
.step-content h4 { font-family: var(--font-head); font-weight: 600; margin-bottom: 6px; font-size: 0.98rem; }
.step-content p { color: var(--muted); font-size: 0.86rem; line-height: 1.6; }
.how-visual { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; position: relative; overflow: hidden; }
.how-visual::before { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(0,229,255,0.05); top: -70px; right: -70px; filter: blur(40px); }
.terminal { background: #020509; border: 1px solid rgba(0,229,255,0.12); border-radius: 12px; padding: 20px; font-family: 'Courier New', monospace; font-size: 0.78rem; }
.terminal-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.d1{background:#ff5f57} .d2{background:#febc2e} .d3{background:#28c840}
.t-line { margin: 7px 0; opacity: 0; animation: lineIn 0.4s ease forwards; }
.t-line:nth-child(2){animation-delay:0.4s}.t-line:nth-child(3){animation-delay:0.9s}.t-line:nth-child(4){animation-delay:1.4s}.t-line:nth-child(5){animation-delay:1.9s}.t-line:nth-child(6){animation-delay:2.4s}.t-line:nth-child(7){animation-delay:2.9s}.t-line:nth-child(8){animation-delay:3.4s}
.t-line .prompt { color: var(--accent); }
.t-line .cmd { color: #a8b4d0; }
.t-line .out { color: #50fa7b; }
.t-line .com { color: var(--muted); }
.typing { display: inline-block; overflow: hidden; white-space: nowrap; animation: typing 3s steps(30) infinite; border-right: 1px solid var(--accent); }
@keyframes typing { 0%,100%{width:0} 50%,90%{width:120px} }

/* WHY US */
.why { background: var(--bg); }
.why-header { text-align: center; margin-bottom: 56px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { border: 1px solid var(--border); border-radius: 14px; padding: 30px; transition: all 0.35s; background: transparent; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.why-card:hover { border-color: rgba(0,229,255,0.35); background: rgba(0,229,255,0.035); transform: translateY(-5px); box-shadow: var(--glow); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 1.7rem; margin-bottom: 16px; display: block; transition: transform 0.3s; }
.why-card:hover .why-icon { transform: scale(1.12); }
.why-card h4 { font-family: var(--font-head); font-weight: 600; margin-bottom: 9px; font-size: 0.98rem; }
.why-card p { color: var(--muted); font-size: 0.86rem; line-height: 1.65; }

/* PRICING — redesigned */
.pricing { background: var(--bg2); }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.price-card {
    border: 1px solid var(--border); border-radius: 20px; padding: 40px 36px;
    background: var(--card); transition: all 0.3s; position: relative;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.price-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.15), transparent);
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(0,229,255,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, #0e1a2e 0%, #081020 100%);
    box-shadow: 0 0 60px rgba(0,229,255,0.1), inset 0 0 60px rgba(0,229,255,0.03);
}
.price-card.featured::before { background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0.6; }
.price-card.featured:hover { box-shadow: 0 20px 80px rgba(0,229,255,0.2); }
.featured-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--bg);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
    padding: 5px 18px; border-radius: 0 0 10px 10px; text-transform: uppercase;
    white-space: nowrap; font-family: var(--font-body);
}
.price-header { margin-bottom: 28px; }
.price-tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-family: var(--font-body); }
.price-amount { font-family: var(--font-head); font-size: 3.2rem; font-weight: 700; line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.price-card.featured .price-amount { color: var(--accent); }
.price-amount sup { font-size: 1.2rem; vertical-align: super; font-weight: 600; }
.price-amount sub { font-size: 0.9rem; color: var(--muted); font-weight: 400; font-family: var(--font-body); letter-spacing: 0; }
.price-desc { color: var(--muted); font-size: 0.84rem; line-height: 1.6; margin-bottom: 0; }
.price-divider { height: 1px; background: var(--border); margin: 24px 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: #9aa8c4; }
.price-features li .check { width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--accent); margin-top: 1px; }
.price-card.featured .price-features li { color: #b8c8e0; }
.price-btn-wrap { margin-top: 28px; }
.price-btn {
    display: block; text-align: center; padding: 14px;
    border-radius: 10px; font-weight: 600; font-size: 0.88rem;
    text-decoration: none; transition: all 0.3s; letter-spacing: 0.2px;
    border: 1px solid var(--border); color: var(--white); background: rgba(255,255,255,0.04);
    font-family: var(--font-body);
}
.price-btn:hover { border-color: rgba(0,229,255,0.4); color: var(--accent); background: rgba(0,229,255,0.06); transform: translateY(-2px); }
.price-card.featured .price-btn { background: var(--accent); color: var(--bg); border-color: var(--accent); box-shadow: 0 0 30px rgba(0,229,255,0.3); font-weight: 700; }
.price-card.featured .price-btn:hover { background: #fff; box-shadow: 0 0 50px rgba(0,229,255,0.5); }

/* FAQ */
.faq { background: var(--bg); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: var(--font-body); font-size: 0.98rem; font-weight: 500; text-align: left; padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: color 0.3s; }
.faq-q:hover, .faq-q.open { color: var(--accent); }
.faq-icon { width: 26px; height: 26px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.35s; color: var(--accent); line-height: 1; }
.faq-q.open .faq-icon { transform: rotate(45deg); background: rgba(0,229,255,0.1); border-color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: var(--muted); font-size: 0.9rem; line-height: 1.8; }
.faq-a.open { max-height: 300px; padding-bottom: 22px; }

/* CTA FINAL */
.cta-final { background: var(--bg2); padding: 120px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(0,229,255,0.055), transparent); pointer-events: none; }
.cta-final h2 { font-family: var(--font-head); font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 700; letter-spacing: -2px; margin-bottom: 44px; position: relative; }
.cta-final h2 span { color: var(--accent); }
.cta-final-btn { display: inline-block; background: var(--accent); color: var(--bg); padding: 18px 52px; border-radius: 10px; font-family: var(--font-body); font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.3s; box-shadow: 0 0 40px rgba(0,229,255,0.3); animation: ctaPulse 3s ease-in-out infinite; letter-spacing: 0.2px; }
.cta-final-btn:hover { transform: translateY(-4px); background: #fff; box-shadow: 0 0 80px rgba(0,229,255,0.6); }
@keyframes ctaPulse { 0%,100%{box-shadow:0 0 40px rgba(0,229,255,0.3)} 50%{box-shadow:0 0 70px rgba(0,229,255,0.55)} }

/* FOOTER — mzmedia style */
footer {
    background: #020509;
    border-top: 1px solid var(--border);
    position: relative; z-index: 1;
    overflow: hidden;
}
footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3), transparent);
}

.footer-top {
    padding: 70px 60px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-brand .footer-logo span { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: 3px; background: linear-gradient(90deg, #00e5ff 0%, #a0f0ff 50%, #00e5ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand p { color: var(--muted); font-size: 0.87rem; line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px; border-radius: 8px;
    border: 1px solid var(--border); background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--muted); text-decoration: none;
    transition: all 0.3s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,229,255,0.08); transform: translateY(-2px); }

.footer-col h5 { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.87rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--white); }

.footer-newsletter h5 { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-newsletter p { color: var(--muted); font-size: 0.84rem; line-height: 1.6; margin-bottom: 18px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
    flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 14px; color: var(--white);
    font-family: var(--font-body); font-size: 0.84rem; outline: none;
    transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn {
    background: var(--accent); color: var(--bg); border: none;
    border-radius: 8px; padding: 10px 18px; font-family: var(--font-body);
    font-weight: 700; font-size: 0.82rem; cursor: pointer; transition: all 0.3s;
    white-space: nowrap;
}
.newsletter-btn:hover { background: #fff; transform: translateY(-1px); }

.footer-bottom {
    padding: 22px 60px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-copy { color: var(--muted); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--muted); text-decoration: none; font-size: 0.78rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--white); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1{transition-delay:0.1s} .reveal-delay-2{transition-delay:0.2s} .reveal-delay-3{transition-delay:0.3s} .reveal-delay-4{transition-delay:0.4s} .reveal-delay-5{transition-delay:0.5s}

/* Floating particles */
.particle { position: absolute; border-radius: 50%; pointer-events: none; }

@media (max-width: 1200px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-newsletter { grid-column: span 2; }
}
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 70px 24px; }
    .how-inner { grid-template-columns: 1fr; gap: 40px; }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-top { padding: 50px 24px 40px; grid-template-columns: 1fr; }
    .footer-newsletter { grid-column: span 1; }
    .footer-bottom { padding: 18px 24px; flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .cta-final { padding: 80px 24px; }
    .footer-brand p { max-width: 100%; }
}
