:root {
    --bg-dark: #020208;
    --bg-deep: #030715;
    --bg-card: rgba(7, 9, 19, 0.78);
    --bg-card-solid: #070913;
    --border-color: rgba(86, 108, 162, 0.22);
    --border-strong: rgba(96, 165, 250, 0.42);
    --primary-blue: #2563eb;
    --neon-blue: #00d2ff;
    --neon-purple: #9d4edd;
    --text-white: #ffffff;
    --text-gray: #a8b3c7;
    --text-muted: #64748b;
    --wp-green: #25d366;
    --shadow-blue: 0 24px 90px rgba(37, 99, 235, 0.22);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --max: 1220px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
    min-height: 100vh;
    background: var(--bg-dark);
    color: var(--text-gray);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }
::selection { background: rgba(0, 210, 255, 0.28); color: #fff; }

.site-bg { position: fixed; inset: 0; z-index: -5; overflow: hidden; background:
    radial-gradient(circle at 20% 10%, rgba(37,99,235,.18), transparent 33%),
    radial-gradient(circle at 82% 22%, rgba(157,78,221,.16), transparent 30%),
    linear-gradient(180deg, #020208 0%, #030715 47%, #020208 100%);
}
.site-bg::after { content: ""; position: absolute; inset: 0; background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
    background-size: 52px 52px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%); opacity: .65;
}
.orb { position: absolute; width: 360px; height: 360px; border-radius: 999px; filter: blur(48px); opacity: .38; animation: floatOrb 12s ease-in-out infinite; }
.orb-a { left: -80px; top: 120px; background: #2563eb; }
.orb-b { right: -110px; top: 390px; background: #9d4edd; animation-delay: -5s; }
.grid-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0,210,255,.08), transparent 45%); }

.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.section-pad { padding: 104px 0; }
.text-center { text-align: center; }
.gradient-text-blue { background: linear-gradient(90deg, #60a5fa, #00d2ff 45%, #a5f3fc); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text-purple { background: linear-gradient(90deg, #a855f7, #ec4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.icon-blue { color: #60a5fa; }
.icon-purple { color: #a855f7; }

.whatsapp-float {
    position: fixed; right: 26px; bottom: 26px; z-index: 10000; width: 62px; height: 62px; border-radius: 50%;
    display: grid; place-items: center; background: var(--wp-green); color: #fff;
    box-shadow: 0 0 0 9px rgba(37,211,102,.09), 0 18px 42px rgba(37,211,102,.34);
    transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 0 0 12px rgba(37,211,102,.12), 0 22px 56px rgba(37,211,102,.42); }
.whatsapp-float svg { width: 29px; height: 29px; }

.navbar { position: sticky; top: 0; z-index: 9000; border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: background .25s ease, border-color .25s ease, padding .25s ease; }
.navbar.is-scrolled { background: rgba(2,2,8,.78); border-color: var(--border-color); box-shadow: 0 14px 36px rgba(0,0,0,.28); }
.nav-container { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--text-white); font-size: 1.15rem; letter-spacing: -.02em; font-weight: 700; white-space: nowrap; }
.logo em { color: var(--text-muted); font-style: normal; font-weight: 600; }
.logo-mark { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, rgba(37,99,235,.9), rgba(0,210,255,.68)); box-shadow: 0 10px 30px rgba(37,99,235,.3); }
.logo-mark svg { width: 23px; height: 23px; }
.nav-menu { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 7px; border: 1px solid rgba(255,255,255,.06); border-radius: 999px; background: rgba(255,255,255,.03); }
.nav-menu a { padding: 10px 14px; border-radius: 999px; color: var(--text-gray); font-size: .87rem; font-weight: 600; transition: color .2s ease, background .2s ease; }
.nav-menu a:hover, .nav-menu a.active { color: #fff; background: rgba(96,165,250,.11); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border: 1px solid var(--border-color); border-radius: 999px; color: #fff; font-weight: 700; font-size: .86rem; background: rgba(255,255,255,.04); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.btn-nav:hover { transform: translateY(-2px); border-color: var(--border-strong); background: rgba(96,165,250,.12); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border-color); background: rgba(255,255,255,.04); border-radius: 13px; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 2px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { padding-top: 82px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: 58px; align-items: center; }
.badge-tech, .badge-section { display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px; border-radius: 999px; color: #8bdcff; border: 1px solid rgba(0,210,255,.2); background: rgba(0,210,255,.075); font-size: .78rem; font-weight: 800; letter-spacing: .02em; }
.badge-tech span { width: 8px; height: 8px; border-radius: 50%; background: #00d2ff; box-shadow: 0 0 20px #00d2ff; }
.hero h1 { max-width: 770px; margin: 22px 0 22px; color: var(--text-white); font-size: clamp(2.55rem, 5vw, 5.15rem); line-height: .98; letter-spacing: -.065em; font-weight: 900; }
.hero-description { max-width: 680px; color: #b7c4d8; font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.75; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; align-items: stretch; flex-wrap: wrap; margin-bottom: 34px; }
.btn-primary, .btn-secondary { border: 0; min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border-radius: 16px; padding: 14px 22px; font-weight: 800; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease; }
.btn-primary { color: #fff; background: linear-gradient(135deg, #4f46e5, #2563eb 52%, #00a6ff); box-shadow: 0 18px 48px rgba(37,99,235,.36); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 70px rgba(37,99,235,.48); }
.btn-primary small { display: block; margin-top: 2px; opacity: .78; font-size: .76rem; font-weight: 600; }
.btn-secondary { color: #fff; border: 1px solid var(--border-color); background: rgba(255,255,255,.035); }
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--border-strong); background: rgba(96,165,250,.1); }
.micro-features { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-bottom: 24px; }
.feat-item { padding: 14px; border: 1px solid rgba(255,255,255,.06); border-radius: 18px; background: rgba(255,255,255,.026); display: flex; gap: 11px; }
.feat-item svg { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 2px; }
.feat-item strong { display: block; color: #fff; font-size: .9rem; margin-bottom: 3px; }
.feat-item p { color: var(--text-muted); font-size: .78rem; line-height: 1.45; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--text-muted); font-size: .84rem; font-weight: 600; }
.trust-badges span { display: inline-flex; align-items: center; gap: 7px; }
.trust-badges svg { width: 17px; height: 17px; color: var(--neon-blue); }

.hero-right { position: relative; }
.dashboard-card, .showcase-panel, .quote-form { border: 1px solid var(--border-color); background: linear-gradient(180deg, rgba(15,23,42,.82), rgba(7,9,19,.76)); box-shadow: var(--shadow-blue); backdrop-filter: blur(18px); }
.hero-dashboard { position: relative; padding: 22px; border-radius: var(--radius-xl); overflow: hidden; }
.hero-dashboard::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(circle at 30% 0%, rgba(0,210,255,.16), transparent 38%), radial-gradient(circle at 100% 25%, rgba(157,78,221,.16), transparent 32%); pointer-events: none; }
.dashboard-top { position: relative; display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-bottom: 20px; }
.eyebrow { color: var(--neon-blue); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.dashboard-top h2 { color: #fff; font-size: 1.45rem; line-height: 1.15; margin-top: 5px; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border-radius: 999px; color: #b9ffcf; background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.18); font-size: .75rem; font-weight: 900; }
.live-pill svg { width: 15px; height: 15px; }
.pilar-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pilar-card { position: relative; min-height: 174px; padding: 18px; border: 1px solid rgba(255,255,255,.07); border-radius: 19px; background: rgba(2,6,23,.54); overflow: hidden; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.pilar-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -74px; top: -74px; border-radius: 50%; background: rgba(0,210,255,.12); filter: blur(8px); }
.pilar-card:hover { transform: translateY(-5px); border-color: var(--border-strong); background: rgba(15,23,42,.7); }
.pilar-icon { width: 31px; height: 31px; margin-bottom: 14px; }
.pilar-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.pilar-card p { color: #8ea0bb; font-size: .8rem; line-height: 1.55; }
.code-window { position: relative; margin-top: 14px; border: 1px solid rgba(255,255,255,.075); border-radius: 18px; background: rgba(0,0,0,.28); overflow: hidden; }
.window-dots { display: flex; gap: 7px; padding: 13px 15px; border-bottom: 1px solid rgba(255,255,255,.06); }
.window-dots span, .panel-header span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.22); }
.code-window pre { padding: 16px; overflow-x: auto; color: #bceaff; font-size: .82rem; line-height: 1.55; }

.metrics { padding: 30px 0; border-block: 1px solid var(--border-color); background: linear-gradient(90deg, rgba(37,99,235,.08), rgba(157,78,221,.05), rgba(0,210,255,.07)); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metric-item { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid rgba(255,255,255,.055); border-radius: 18px; background: rgba(255,255,255,.026); }
.metric-icon { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 15px; display: grid; place-items: center; color: #60a5fa; background: rgba(96,165,250,.1); }
.metric-icon.red-heart { color: #fb7185; background: rgba(244,63,94,.1); }
.metric-icon.green-wp { color: var(--wp-green); background: rgba(37,211,102,.1); }
.metric-item h3 { color: #fff; font-size: 1.45rem; line-height: 1; margin-bottom: 5px; }
.metric-item p { color: var(--text-muted); font-size: .84rem; }

.tech-bar { padding: 52px 0; border-bottom: 1px solid var(--border-color); overflow: hidden; }
.tech-title { text-align: center; margin-bottom: 24px; color: var(--text-muted); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.tech-marquee { max-width: 100%; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.tech-track { width: max-content; display: flex; gap: 12px; animation: marquee 34s linear infinite; }
.tech-track span { padding: 10px 18px; border: 1px solid var(--border-color); border-radius: 999px; color: #dce7ff; background: rgba(15,23,42,.62); font-weight: 800; font-size: .88rem; }

.section-head { max-width: 840px; margin: 0 auto 56px; }
.section-title { color: #fff; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.05; letter-spacing: -.045em; font-weight: 900; margin: 18px 0 15px; }
.section-subtitle { color: #aebbd0; font-size: 1.05rem; line-height: 1.72; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 270px; padding: 24px; border: 1px solid var(--border-color); border-radius: 22px; background: var(--bg-card); overflow: hidden; transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 25% 0%, rgba(0,210,255,.11), transparent 34%); opacity: 0; transition: opacity .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: var(--border-strong); box-shadow: 0 20px 52px rgba(0,0,0,.28); background: rgba(15,23,42,.72); }
.service-card:hover::before { opacity: 1; }
.srv-icon { position: relative; width: 36px; height: 36px; color: #60a5fa; margin-bottom: 22px; }
.service-card h3 { position: relative; color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { position: relative; color: #93a4bd; font-size: .88rem; line-height: 1.62; margin-bottom: 22px; }
.service-card a { position: absolute; left: 24px; bottom: 22px; display: inline-flex; align-items: center; gap: 7px; color: #8bdcff; font-size: .85rem; font-weight: 900; }
.service-card a svg { width: 16px; height: 16px; transition: transform .2s ease; }
.service-card:hover a svg { transform: translateX(4px); }

.showcase-section { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); background: linear-gradient(180deg, rgba(4,6,18,.7), rgba(2,2,8,.9)); }
.showcase-grid, .contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.showcase-copy p, .contact-copy p { color: #aebbd0; line-height: 1.75; font-size: 1.02rem; }
.check-list { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; color: #d5def0; line-height: 1.45; }
.check-list svg { width: 20px; height: 20px; color: var(--neon-blue); flex: 0 0 auto; }
.showcase-panel { padding: 22px; border-radius: var(--radius-xl); }
.panel-header { display: flex; gap: 7px; padding-bottom: 18px; }
.conversion-card { display: grid; grid-template-columns: .75fr 1fr; gap: 24px; align-items: center; padding: 24px; border: 1px solid rgba(255,255,255,.07); border-radius: 22px; background: rgba(255,255,255,.035); }
.conversion-main { display: grid; gap: 8px; }
.conversion-main svg { color: var(--neon-blue); width: 38px; height: 38px; }
.conversion-main strong { color: #fff; font-size: 1.25rem; }
.conversion-main small { color: var(--text-muted); font-weight: 700; }
.funnel-bars { display: grid; gap: 12px; }
.funnel-bars span { width: var(--w); height: 15px; border-radius: 999px; background: linear-gradient(90deg, #2563eb, #00d2ff); box-shadow: 0 0 24px rgba(0,210,255,.25); }
.automation-list { display: grid; gap: 12px; margin-top: 16px; }
.automation-list div { display: grid; grid-template-columns: 32px 1fr auto; gap: 12px; align-items: center; padding: 15px; border: 1px solid rgba(255,255,255,.065); border-radius: 16px; background: rgba(2,6,23,.42); }
.automation-list svg { color: #60a5fa; }
.automation-list span { color: #d4def1; font-weight: 700; font-size: .9rem; }
.automation-list b { color: #96f6ff; font-size: .72rem; padding: 5px 9px; border-radius: 999px; background: rgba(0,210,255,.1); }

.process-section { background: rgba(4,6,18,.74); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { position: relative; padding: 26px; min-height: 240px; border: 1px solid var(--border-color); border-radius: 24px; background: rgba(7,9,19,.76); overflow: hidden; }
.step-card::before { content: ""; position: absolute; top: 52px; right: -40px; width: 110px; height: 110px; border-radius: 50%; background: rgba(37,99,235,.12); filter: blur(12px); }
.step-card span { position: absolute; top: 22px; right: 24px; color: rgba(255,255,255,.12); font-size: 2rem; font-weight: 900; }
.step-card svg { color: var(--neon-blue); width: 34px; height: 34px; margin-bottom: 40px; }
.step-card h3 { color: #fff; margin-bottom: 10px; }
.step-card p { color: #91a1ba; font-size: .9rem; line-height: 1.62; }

.contact-section { background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.14), transparent 40%); }
.contact-card { display: inline-flex; gap: 14px; align-items: center; margin-top: 28px; padding: 16px 18px; border: 1px solid var(--border-color); border-radius: 18px; background: rgba(255,255,255,.04); }
.contact-card svg { color: var(--wp-green); width: 30px; height: 30px; }
.contact-card strong { color: #fff; display: block; margin-bottom: 2px; }
.contact-card a { color: #8bdcff; font-weight: 900; }
.quote-form { display: grid; gap: 16px; padding: 26px; border-radius: var(--radius-xl); }
.quote-form label { display: grid; gap: 8px; color: #d8e2f3; font-weight: 800; font-size: .9rem; }
.quote-form input, .quote-form textarea, .quote-form select { width: 100%; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(2,6,23,.72); color: #fff; padding: 14px 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form textarea { resize: vertical; min-height: 132px; }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--border-strong); box-shadow: 0 0 0 4px rgba(0,210,255,.08); }
.form-button { width: 100%; margin-top: 4px; }

.footer-cta { padding: 52px 0; border-top: 1px solid var(--border-color); background: #020208; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 34px; align-items: center; }
.footer-logo { margin-bottom: 16px; }
.footer-grid p { max-width: 520px; color: var(--text-muted); line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.footer-links a { color: var(--text-gray); font-weight: 800; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.btn-footer-wp { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; padding: 16px 24px; border-radius: 22px; color: #fff; background: linear-gradient(135deg, #25d366, #128c7e); font-weight: 900; box-shadow: 0 18px 42px rgba(37,211,102,.22); }
.btn-footer-wp svg { width: 22px; height: 22px; }
.btn-footer-wp span { font-size: .82rem; opacity: .86; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.tilt-card { transform-style: preserve-3d; will-change: transform; }

:focus-visible { outline: 3px solid rgba(0,210,255,.72); outline-offset: 3px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatOrb { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(24px,-28px,0) scale(1.07); } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
    .nav-menu { position: fixed; top: 84px; left: 20px; right: 20px; display: grid; gap: 8px; padding: 16px; border-radius: 22px; background: rgba(2,2,8,.96); border: 1px solid var(--border-color); box-shadow: 0 30px 80px rgba(0,0,0,.55); transform: translateY(-16px); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
    .nav-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .nav-menu a { width: 100%; padding: 14px 16px; }
    .menu-toggle { display: block; }
    .hero-grid, .showcase-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-right { max-width: 720px; width: 100%; margin-inline: auto; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .container { width: min(100% - 28px, var(--max)); }
    .section-pad { padding: 76px 0; }
    .hero { padding-top: 56px; }
    .hero h1 { letter-spacing: -.045em; }
    .micro-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pilar-grid { grid-template-columns: 1fr; }
    .conversion-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: left; }
    .footer-links { grid-template-columns: repeat(2, max-content); }
}

@media (max-width: 600px) {
    .nav-container { min-height: 74px; }
    .btn-nav { display: none; }
    .nav-menu { top: 74px; }
    .logo { font-size: 1.02rem; }
    .logo-mark { width: 38px; height: 38px; border-radius: 13px; }
    .hero-actions, .btn-primary, .btn-secondary { width: 100%; }
    .hero-actions { gap: 12px; }
    .trust-badges { display: grid; }
    .services-grid, .process-steps, .metrics-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 245px; }
    .hero-dashboard, .showcase-panel, .quote-form { border-radius: 22px; padding: 18px; }
    .whatsapp-float { width: 56px; height: 56px; right: 18px; bottom: 18px; }
    .footer-links { grid-template-columns: 1fr; }
}
