:root {
    --bg: #030d1d;
    --bg-2: #061a35;
    --panel: rgba(8, 31, 62, .76);
    --panel-solid: #082348;
    --line: rgba(105, 189, 255, .24);
    --line-strong: rgba(39, 174, 255, .68);
    --text: #f5f9ff;
    --muted: #a9c3df;
    --blue: #129dff;
    --blue-light: #6fd0ff;
    --orange: #ff9800;
    --orange-light: #ffc15c;
    --green: #38d49f;
    --danger: #ff6b6b;
    --radius: 24px;
    --radius-sm: 15px;
    --shadow: 0 25px 80px rgba(0, 0, 0, .34);
    --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 10%, rgba(10, 109, 213, .18), transparent 34%),
        radial-gradient(circle at 88% 24%, rgba(255, 139, 0, .08), transparent 28%),
        var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
    z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section-pad { padding: 145px 0 70px; }
.section-dark { background: linear-gradient(180deg, rgba(4, 20, 41, .72), rgba(2, 13, 29, .94)); border-block: 1px solid rgba(92, 179, 255, .11); }

.skip-link { position: fixed; top: -100px; left: 20px; z-index: 9999; background: white; color: #00152f; padding: 12px 18px; border-radius: 10px; }
.skip-link:focus { top: 20px; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(2, 12, 28, .9); backdrop-filter: blur(18px); border-color: rgba(98, 188, 255, .18); box-shadow: 0 10px 40px rgba(0, 0, 0, .22); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: baseline; font-weight: 900; letter-spacing: -1.5px; font-size: clamp(1.55rem, 2.3vw, 2.15rem); line-height: 1; white-space: nowrap; }
.brand-safety { color: white; }
.brand-gest { color: var(--orange); }
.brand-360 { color: var(--blue); }
.brand-arrow { color: var(--orange); font-size: .8em; margin-left: -2px; transform: translateY(-2px); }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .95rem; font-weight: 650; }
.main-nav > a:not(.button) { color: #dcecff; transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--blue-light); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: rgba(7, 30, 58, .85); }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; transition: .2s ease; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-light); text-transform: uppercase; letter-spacing: .13em; font-size: .77rem; font-weight: 800; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.gradient-text { background: linear-gradient(90deg, #fff 0%, #fff 10%, var(--orange) 42%, var(--blue) 88%); -webkit-background-clip: text; background-clip: text; color: transparent; }

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin: 22px 0 24px; font-size: clamp(2.7rem, 5.3vw, 5.25rem); line-height: .98; letter-spacing: -.055em; }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1.08; letter-spacing: -.04em; }
h3 { margin-bottom: 10px; font-size: 1.22rem; line-height: 1.25; }
p { color: var(--muted); }

.hero { min-height: 860px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 13, 29, .12), rgba(4, 30, 61, .04)); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
.hero-copy { position: relative; z-index: 2; }
.hero-lead { max-width: 700px; margin-bottom: 32px; font-size: clamp(1.05rem, 1.7vw, 1.26rem); color: #c8ddf2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 24px; border-radius: 14px; border: 1px solid transparent; cursor: pointer; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, #ffb21e, #ff7a00); border-color: rgba(255, 207, 111, .7); box-shadow: 0 12px 35px rgba(255, 132, 0, .25), inset 0 1px rgba(255,255,255,.28); }
.button-primary:hover { box-shadow: 0 16px 44px rgba(255, 132, 0, .36), 0 0 22px rgba(255, 152, 0, .18); }
.button-secondary { background: rgba(10, 40, 75, .58); border-color: rgba(117, 203, 255, .53); box-shadow: inset 0 0 20px rgba(30, 167, 255, .07); }
.button-secondary:hover { border-color: var(--blue-light); background: rgba(14, 55, 101, .78); }
.button-small { min-height: 44px; padding-inline: 18px; border-radius: 12px; font-size: .9rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 23px; color: #c5d9ed; font-size: .9rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { color: var(--green); }

.hero-visual { position: relative; min-height: 645px; }
.visual-frame { position: absolute; inset: 0; overflow: hidden; border: 1px solid rgba(101, 194, 255, .34); border-radius: 36px; background: linear-gradient(145deg, rgba(16, 64, 110, .62), rgba(2, 15, 32, .78)); box-shadow: var(--shadow), inset 0 0 50px rgba(30, 167, 255, .06); }
.visual-frame::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 62%, rgba(3, 16, 34, .68)); pointer-events: none; }
.visual-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.hero-glow-blue { width: 360px; height: 360px; right: -130px; top: -60px; background: rgba(0, 135, 255, .42); }
.hero-glow-orange { width: 260px; height: 260px; left: -100px; bottom: -40px; background: rgba(255, 123, 0, .18); }
.floating-card { position: absolute; z-index: 3; border: 1px solid rgba(105, 200, 255, .55); background: rgba(3, 20, 43, .78); backdrop-filter: blur(15px); border-radius: 17px; box-shadow: 0 14px 40px rgba(0, 0, 0, .28), inset 0 0 24px rgba(30, 167, 255, .08); }
.floating-dashboard { right: 18px; top: 18px; width: 180px; padding: 15px; }
.floating-dashboard .float-label { display: block; font-size: .73rem; color: var(--blue-light); }
.floating-dashboard strong { display: block; margin: 4px 0; font-size: 2rem; }
.floating-dashboard small { color: var(--muted); }
.mini-progress { height: 6px; margin: 7px 0; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.09); }
.mini-progress span { display: block; width: 92%; height: 100%; background: linear-gradient(90deg, var(--blue), #68dcff); box-shadow: 0 0 10px var(--blue); }
.floating-alert { left: 18px; bottom: 20px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.float-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #06152b; background: var(--green); font-weight: 900; }
.floating-alert span:last-child { display: flex; flex-direction: column; }
.floating-alert strong { font-size: .85rem; }
.floating-alert small { font-size: .7rem; color: var(--muted); }

.metrics { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(6, 29, 58, .66); backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.metrics article { padding: 24px 28px; text-align: center; border-right: 1px solid var(--line); }
.metrics article:last-child { border-right: 0; }
.metrics strong { display: block; color: var(--blue-light); font-size: 1.72rem; }
.metrics article:nth-child(3) strong { color: var(--orange-light); }
.metrics span { color: var(--muted); font-size: .86rem; }

.section-heading { max-width: 780px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { font-size: 1.05rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(8, 37, 73, .72), rgba(4, 18, 38, .84)); box-shadow: inset 0 0 30px rgba(30, 167, 255, .035); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.benefit-card:hover { transform: translateY(-7px); border-color: rgba(79, 186, 255, .56); box-shadow: 0 22px 50px rgba(0, 0, 0, .24), inset 0 0 35px rgba(30, 167, 255, .06); }
.icon-box { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 25px; color: var(--blue-light); border: 1px solid rgba(77, 190, 255, .55); border-radius: 17px; background: rgba(15, 78, 133, .25); box-shadow: 0 0 25px rgba(18, 157, 255, .12); }
.icon-box svg { width: 29px; height: 29px; }
.icon-orange { color: var(--orange-light); border-color: rgba(255, 156, 26, .6); background: rgba(133, 69, 8, .22); }
.benefit-card p { margin-bottom: 0; }

.modules-section { overflow: hidden; }
.modules-section::before { content: ""; position: absolute; width: 720px; height: 720px; right: -260px; top: 60px; border-radius: 50%; background: rgba(0, 128, 255, .09); filter: blur(120px); }
.modules-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 60px; }
.modules-copy > p { font-size: 1.03rem; }
.module-list { display: grid; gap: 10px; margin-top: 32px; }
.module-tab { width: 100%; display: grid; grid-template-columns: 45px 1fr; gap: 14px; align-items: center; padding: 14px; text-align: left; border: 1px solid transparent; border-radius: 16px; background: transparent; cursor: pointer; transition: .2s ease; }
.module-tab:hover, .module-tab.active { border-color: rgba(75, 184, 255, .35); background: rgba(10, 45, 85, .64); }
.module-tab.active { box-shadow: inset 3px 0 var(--orange); }
.module-number { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; color: var(--blue-light); font-weight: 800; }
.module-tab strong, .module-tab small { display: block; }
.module-tab small { color: var(--muted); }

.dashboard-shell { position: relative; overflow: hidden; border: 1px solid rgba(89, 190, 255, .52); border-radius: 24px; background: #06172e; box-shadow: 0 35px 90px rgba(0, 0, 0, .38), 0 0 60px rgba(19, 146, 255, .08); transform: perspective(1400px) rotateY(-2deg); }
.dashboard-shell::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.045), transparent 60%); transform: translateX(-100%); animation: dashboardShine 7s infinite; }
@keyframes dashboardShine { 0%, 64% { transform: translateX(-100%); } 84%, 100% { transform: translateX(100%); } }
.dashboard-topbar { min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line); background: rgba(6, 31, 60, .94); }
.dashboard-brand { font-weight: 900; }
.dashboard-brand span { color: var(--orange); }
.dashboard-brand b { color: var(--blue); }
.dashboard-user { color: var(--muted); font-size: .78rem; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-left: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.dashboard-body { display: grid; grid-template-columns: 145px 1fr; min-height: 480px; }
.dashboard-sidebar { padding: 16px 10px; border-right: 1px solid var(--line); background: rgba(4, 20, 42, .8); }
.side-item { display: flex; align-items: center; gap: 8px; padding: 9px 10px; margin-bottom: 3px; border-radius: 9px; color: #8db4d9; font-size: .72rem; }
.side-item.active { color: white; background: rgba(25, 123, 209, .27); }
.dashboard-content { padding: 19px; }
.dashboard-greeting { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 14px; }
.dashboard-greeting small, .dashboard-greeting strong { display: block; }
.dashboard-greeting small { color: #6ea2d0; }
.dashboard-greeting strong { font-size: 1.05rem; }
.date-pill { padding: 5px 10px; color: var(--blue-light); border: 1px solid var(--line); border-radius: 999px; font-size: .7rem; }
.dashboard-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dashboard-kpis article { padding: 14px; border: 1px solid rgba(84, 176, 246, .18); border-radius: 13px; background: rgba(9, 39, 75, .78); }
.dashboard-kpis small, .dashboard-kpis span { display: block; color: #79a4cc; font-size: .67rem; }
.dashboard-kpis strong { display: block; margin: 5px 0 1px; color: var(--blue-light); font-size: 1.6rem; }
.dashboard-kpis article:nth-child(3) strong { color: var(--orange-light); }
.dashboard-panels { display: grid; grid-template-columns: 1.35fr .75fr; gap: 10px; margin-top: 10px; }
.chart-card, .activity-card { min-height: 225px; padding: 14px; border: 1px solid rgba(84, 176, 246, .18); border-radius: 13px; background: rgba(8, 35, 68, .8); }
.panel-head { display: flex; justify-content: space-between; gap: 10px; font-size: .77rem; }
.panel-head small { color: #6e9bc4; }
.line-chart { width: 100%; height: 155px; }
.chart-grid { fill: none; stroke: rgba(129, 194, 244, .1); stroke-width: 1; }
.chart-fill { fill: url(#chartGradient); stroke: none; }
.chart-line { fill: none; stroke: var(--blue-light); stroke-width: 4; filter: drop-shadow(0 0 5px rgba(30,167,255,.55)); }
.chart-months { display: flex; justify-content: space-between; color: #6d99c1; font-size: .62rem; }
.activity-card ul { list-style: none; padding: 0; margin: 14px 0 0; }
.activity-card li { display: flex; align-items: center; gap: 9px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.activity-card li:last-child { border-bottom: 0; }
.activity-card li > span:first-child { display: grid; place-items: center; flex: 0 0 25px; height: 25px; border-radius: 50%; font-size: .7rem; font-weight: 900; }
.activity-ok { color: #061a30; background: var(--green); }
.activity-warn { color: #261500; background: var(--orange-light); }
.activity-card strong, .activity-card small { display: block; }
.activity-card strong { font-size: .7rem; }
.activity-card small { color: #6e9bc4; font-size: .6rem; }

.ai-section { background: linear-gradient(180deg, rgba(3, 13, 29, .2), rgba(5, 28, 55, .75)); border-block: 1px solid rgba(87, 177, 247, .1); overflow: hidden; }
.ai-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.ai-orbit { position: relative; min-height: 470px; display: grid; place-items: center; }
.ai-core { position: relative; z-index: 3; display: grid; place-items: center; width: 190px; height: 190px; border: 1px solid rgba(80, 197, 255, .72); border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(44, 157, 255, .42), rgba(4, 23, 49, .92) 65%); box-shadow: 0 0 60px rgba(30, 167, 255, .24), inset 0 0 45px rgba(30, 167, 255, .18); }
.ai-core span { font-size: 4rem; font-weight: 900; color: var(--blue-light); text-shadow: 0 0 20px rgba(78, 196, 255, .7); }
.ai-core small { margin-top: -58px; color: var(--muted); }
.orbit { position: absolute; border: 1px dashed rgba(100, 192, 255, .28); border-radius: 50%; }
.orbit-one { width: 330px; height: 330px; animation: spin 24s linear infinite; }
.orbit-two { width: 460px; height: 460px; animation: spinReverse 35s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
.orbit-node { position: absolute; z-index: 4; padding: 8px 13px; border: 1px solid var(--line-strong); border-radius: 999px; background: #061d3b; color: var(--blue-light); font-size: .75rem; box-shadow: 0 0 22px rgba(30, 167, 255, .12); }
.node-one { top: 45px; left: 80px; }
.node-two { right: 65px; top: 100px; }
.node-three { right: 10px; bottom: 120px; }
.node-four { left: 25px; bottom: 80px; }
.ai-copy p { font-size: 1.08rem; }
.ai-prompts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.ai-prompts span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(8, 42, 79, .6); color: #d4eaff; font-size: .85rem; }

.process-section { overflow: hidden; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-grid::before { content: ""; position: absolute; left: 16%; right: 16%; top: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent); opacity: .5; }
.process-card { position: relative; z-index: 2; padding: 34px 28px 26px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(7, 31, 62, .72); }
.process-card > span { display: grid; place-items: center; width: 66px; height: 66px; margin: -68px auto 24px; border: 1px solid rgba(104, 202, 255, .75); border-radius: 50%; background: #061b39; color: var(--blue-light); font-size: 1.35rem; font-weight: 900; box-shadow: 0 0 25px rgba(30, 167, 255, .14); }
.process-card:nth-child(2) > span { color: var(--orange-light); border-color: rgba(255, 171, 55, .8); box-shadow: 0 0 25px rgba(255, 141, 0, .12); }
.process-card p { margin-bottom: 0; }

.faq-section { background: rgba(2, 13, 29, .54); border-top: 1px solid rgba(91, 180, 247, .1); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.text-link { color: var(--blue-light); font-weight: 800; }
.text-link span { color: var(--orange); }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: rgba(7, 31, 61, .72); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 22px; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 800; }
.faq-plus { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; color: var(--blue-light); background: rgba(32, 132, 214, .18); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { overflow: hidden; margin: 0; padding: 0 22px; transition: padding .25s ease; }
.faq-item.open { border-color: rgba(77, 184, 255, .42); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding: 0 22px 22px; }

.contact-section { padding-top: 90px; }
.contact-shell { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; padding: 45px; overflow: hidden; border: 1px solid rgba(91, 191, 255, .42); border-radius: 30px; background: linear-gradient(135deg, rgba(8, 41, 79, .88), rgba(4, 21, 43, .94)); box-shadow: var(--shadow), inset 0 0 60px rgba(30, 167, 255, .04); }
.contact-shell::before { content: ""; position: absolute; width: 420px; height: 420px; left: -190px; bottom: -210px; border-radius: 50%; background: rgba(255, 133, 0, .13); filter: blur(80px); }
.contact-copy { position: relative; z-index: 1; }
.contact-benefits { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 10px; }
.contact-benefits li { display: flex; align-items: center; gap: 10px; color: #d8eaff; }
.contact-benefits span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: #04172d; background: var(--green); font-weight: 900; }
.contact-domain { display: inline-flex; flex-direction: column; padding: 13px 17px; border: 1px solid var(--line); border-radius: 14px; background: rgba(5, 25, 51, .6); }
.contact-domain small { color: var(--muted); }
.contact-domain strong { color: var(--blue-light); }
.contact-form { position: relative; z-index: 1; padding: 26px; border: 1px solid rgba(102, 192, 255, .2); border-radius: 22px; background: rgba(2, 17, 36, .72); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { margin-bottom: 7px; color: #dbeeff; font-size: .83rem; font-weight: 750; }
.field input, .field textarea { width: 100%; border: 1px solid rgba(106, 185, 242, .3); border-radius: 11px; outline: none; color: white; background: rgba(4, 25, 51, .9); transition: border-color .2s ease, box-shadow .2s ease; }
.field input { height: 50px; padding: 0 14px; }
.field textarea { padding: 13px 14px; resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #6789aa; }
.field input:focus, .field textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 4px rgba(30, 167, 255, .11); }
.field.invalid input, .field.invalid textarea { border-color: var(--danger); }
.field-error { min-height: 18px; color: #ff9a9a; font-size: .72rem; }
.consent-row { display: flex; gap: 10px; margin: 17px 0 2px; color: #a9c3df; font-size: .8rem; cursor: pointer; }
.consent-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.consent-row a { color: var(--blue-light); text-decoration: underline; }
.button-submit { width: 100%; margin-top: 12px; }
.button-submit.loading { pointer-events: none; opacity: .78; }
.button-loader { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: white; border-radius: 50%; animation: spinLoader .8s linear infinite; }
.button-submit.loading .button-loader { display: inline-block; }
@keyframes spinLoader { to { transform: rotate(360deg); } }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 11px; font-size: .88rem; }
.form-status.success { display: block; color: #c8ffe8; border: 1px solid rgba(56, 212, 159, .45); background: rgba(20, 97, 73, .34); }
.form-status.error { display: block; color: #ffd3d3; border: 1px solid rgba(255, 107, 107, .45); background: rgba(111, 31, 39, .35); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 60px 0 20px; border-top: 1px solid rgba(100, 186, 249, .14); background: #020a16; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 45px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid strong { margin-bottom: 7px; }
.footer-grid a:not(.brand) { color: #91afcb; font-size: .9rem; }
.footer-grid a:not(.brand):hover { color: var(--blue-light); }
.footer-brand { margin-bottom: 10px; }
.footer-grid p { max-width: 260px; margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); color: #718ba4; font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

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

@media (max-width: 1080px) {
    .main-nav { gap: 17px; }
    .hero-grid { gap: 30px; }
    .hero-visual { min-height: 580px; }
    .modules-grid { grid-template-columns: 1fr; }
    .modules-copy { max-width: 850px; }
    .dashboard-shell { transform: none; }
    .contact-shell { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .section { padding: 85px 0; }
    .section-pad { padding-top: 120px; }
    .menu-toggle { display: block; }
    .main-nav { position: absolute; top: 72px; left: 20px; right: 20px; display: grid; gap: 0; padding: 14px; opacity: 0; pointer-events: none; transform: translateY(-8px); border: 1px solid var(--line); border-radius: 17px; background: rgba(3, 17, 36, .98); box-shadow: var(--shadow); transition: .2s ease; }
    .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .main-nav > a { padding: 12px; }
    .main-nav .button { margin-top: 8px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow { justify-content: center; }
    .hero-lead { margin-inline: auto; }
    .hero-actions, .trust-row { justify-content: center; }
    .hero-visual { min-height: 680px; width: min(100%, 650px); margin-inline: auto; }
    .metrics { grid-template-columns: repeat(2, 1fr); }
    .metrics article:nth-child(2) { border-right: 0; }
    .metrics article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-grid, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
    .faq-intro { position: static; }
    .process-grid { grid-template-columns: 1fr; gap: 54px; }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 72px; }
    .brand { font-size: 1.6rem; }
    h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
    h2 { font-size: clamp(2rem, 10vw, 3rem); }
    .hero { min-height: auto; }
    .hero-visual { min-height: 530px; }
    .visual-frame { border-radius: 25px; }
    .floating-dashboard { width: 150px; right: 10px; top: 10px; }
    .floating-dashboard strong { font-size: 1.55rem; }
    .floating-alert { left: 10px; bottom: 10px; max-width: calc(100% - 20px); }
    .metrics { grid-template-columns: 1fr; }
    .metrics article { border-right: 0; border-bottom: 1px solid var(--line); }
    .metrics article:last-child { border-bottom: 0; }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-card { min-height: auto; }
    .dashboard-body { grid-template-columns: 1fr; }
    .dashboard-sidebar { display: none; }
    .dashboard-kpis { grid-template-columns: 1fr; }
    .dashboard-panels { grid-template-columns: 1fr; }
    .dashboard-shell { overflow: auto; }
    .ai-orbit { min-height: 390px; transform: scale(.82); margin: -35px 0; }
    .contact-shell { padding: 26px 18px; }
    .contact-form { padding: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}
