:root {
  --ink: #101827; --muted: #5d6a7c; --line: #d9e1ea; --paper: #fff; --soft: #f4f7fa;
  --night: #07111d; --night-2: #0c1a29; --cyan: #0aa9c7; --green: #24b57a;
  --violet: #7352d6; --container: min(1180px, calc(100% - 40px)); --radius: 6px;
  --shadow: 0 18px 50px rgba(7,17,29,.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Segoe UI", Arial, sans-serif; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.65rem, 5.8vw, 5.55rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.45rem); }
h3 { font-size: 1.22rem; }
p { color: var(--muted); }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 2000; padding: 10px 14px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); }
.header-inner { width: var(--container); height: 82px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }
.nav { display: flex; align-items: center; gap: 6px; font-weight: 720; font-size: .91rem; }
.nav a { padding: 10px 13px; border-radius: 5px; }
.nav a:hover, .nav a.active { color: #5332b8; background: #f0ebff; }
.nav .nav-cta { margin-left: 8px; color: #fff; background: var(--ink); }
.nav .nav-cta:hover { color: #fff; background: #283548; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); border-radius: 5px; background: #fff; position: relative; }
.menu-toggle::before, .menu-toggle::after, .menu-toggle span { content: ""; position: absolute; left: 12px; width: 22px; height: 2px; background: var(--ink); transition: .2s ease; }
.menu-toggle::before { top: 15px; } .menu-toggle span { top: 22px; } .menu-toggle::after { top: 29px; }
.menu-toggle[aria-expanded="true"]::before { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }
.home-hero { position: relative; min-height: min(720px, calc(100vh - 82px)); display: grid; align-items: center; color: #fff; background: #06101a url("hero-cybersecurity.png") center/cover no-repeat; overflow: hidden; }
.home-hero::before { content: ""; position: absolute; inset: 0; background: rgba(2,9,16,.32); }
.hero-inner { position: relative; z-index: 1; width: var(--container); margin: 0 auto; padding: 86px 0 96px; }
.hero-copy { max-width: 740px; }
.eyebrow { margin-bottom: 18px; color: var(--cyan); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; }
.home-hero h1 { max-width: 760px; margin-bottom: 25px; color: #fff; text-shadow: 0 3px 22px rgba(0,0,0,.45); }
.home-hero h1 span, .page-hero h1 span { color: #76d8e4; }
.home-hero .lead { max-width: 680px; color: #e6edf5; font-size: 1.2rem; text-shadow: 0 2px 12px rgba(0,0,0,.55); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { min-height: 48px; padding: 12px 18px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 5px; font-weight: 800; line-height: 1.2; }
.btn.primary { color: #06101a; background: #69e0d0; } .btn.primary:hover { background: #8de9dd; }
.btn.secondary { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(4,12,21,.56); }
.btn.secondary:hover { background: rgba(255,255,255,.12); }
.btn.dark { color: #fff; background: var(--ink); } .btn.dark:hover { background: #283548; }
.btn.outline { color: var(--ink); border-color: var(--line); background: #fff; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 52px; padding: 0; list-style: none; color: #dce5ee; font-size: .88rem; font-weight: 700; }
.hero-trust li::before { content: ""; width: 8px; height: 8px; margin-right: 10px; display: inline-block; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(36,181,122,.18); }
.proof-bar { color: #fff; background: var(--night); border-top: 1px solid rgba(255,255,255,.1); }
.proof-inner { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.45fr repeat(3,1fr); }
.proof-intro, .proof-item { min-height: 142px; padding: 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.11); }
.proof-intro { padding-left: 0; } .proof-item:last-child { border-right: 0; }
.proof-intro strong, .proof-item strong { color: #fff; font-size: 1.12rem; }
.proof-intro span, .proof-item span { margin-top: 6px; color: #9fb0c1; font-size: .85rem; }
.section { padding: 92px 0; } .section.soft { background: var(--soft); } .section.dark { color: #fff; background: var(--night); }
.section-inner { width: var(--container); margin: 0 auto; }
.section-head { max-width: 820px; margin-bottom: 44px; }
.section-head h2 { margin-bottom: 18px; } .section-head p { font-size: 1.05rem; }
.section.dark h2, .section.dark h3 { color: #fff; } .section.dark p { color: #acb9c8; }
.section.dark .card h3 { color: var(--ink); }
.section.dark .card p { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.card { min-height: 100%; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 30px rgba(7,17,29,.05); }
.card h3 { margin-bottom: 13px; } .card p:last-child { margin-bottom: 0; }
.card-kicker { margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.card-kicker i { width: 10px; height: 10px; display: block; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(10,169,199,.12); }
.card:nth-child(2) .card-kicker i { background: var(--green); box-shadow: 0 0 0 5px rgba(36,181,122,.12); }
.card:nth-child(3) .card-kicker i { background: var(--violet); box-shadow: 0 0 0 5px rgba(115,82,214,.12); }
.card-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 7px; color: #5134aa; font-weight: 800; } .card-link::after { content: "→"; }
.outcome-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.outcome-list { border-top: 1px solid var(--line); }
.outcome { padding: 24px 0; display: grid; grid-template-columns: 54px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.outcome-number { color: var(--cyan); font-weight: 900; font-size: .82rem; }
.outcome h3 { margin-bottom: 7px; } .outcome p { margin-bottom: 0; }
.brief-panel { padding: 0; border: 1px solid #26384a; border-radius: var(--radius); background: var(--night-2); box-shadow: 0 30px 80px rgba(0,0,0,.25); overflow: hidden; }
.brief-top { padding: 18px 22px; display: flex; justify-content: space-between; border-bottom: 1px solid #26384a; color: #d9e6f1; font-size: .84rem; font-weight: 800; }
.status-live { color: #69e0d0; } .brief-body { padding: 24px; }
.signal-row { padding: 18px 0; display: grid; grid-template-columns: 12px 1fr auto; gap: 14px; align-items: start; border-bottom: 1px solid #26384a; }
.signal-row:last-child { border-bottom: 0; } .signal-row i { width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; background: var(--green); }
.signal-row strong { display: block; color: #fff; } .signal-row small { color: #8fa2b5; }
.signal-row b { padding: 4px 7px; color: #d9f6ef; background: #143b35; border-radius: 4px; font-size: .7rem; }
.process { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #314152; border-left: 1px solid #314152; }
.process article { padding: 28px; border-right: 1px solid #314152; border-bottom: 1px solid #314152; }
.process span { color: #63d4e4; font-weight: 900; font-size: .78rem; } .process h3 { margin: 16px 0 10px; }
.cta-band { padding: 48px 0; color: #fff; background: #17253a; }
.cta-inner { width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner h2 { max-width: 720px; margin: 0; font-size: clamp(1.8rem,3vw,2.7rem); }
.page-hero { padding: 88px 0 74px; color: #fff; background: var(--night); border-bottom: 1px solid #223347; }
.page-hero-inner { width: var(--container); margin: 0 auto; }
.page-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(2.7rem,5vw,4.8rem); }
.page-hero p { max-width: 760px; color: #b7c5d3; font-size: 1.15rem; }
.sector-band { padding: 68px 0; border-bottom: 1px solid var(--line); }
.sector-band.soft { background: var(--soft); }
.sector-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.benefit-list { display: grid; gap: 12px; }
.benefit { padding: 20px; display: grid; grid-template-columns: 12px 1fr; gap: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.benefit i { width: 10px; height: 10px; margin-top: 7px; border-radius: 50%; background: var(--green); }
.benefit strong { display: block; margin-bottom: 4px; } .benefit p { margin: 0; }
.callout { padding: 30px; border-left: 4px solid var(--cyan); background: #edf8fa; }
.callout strong { display: block; margin-bottom: 8px; font-size: 1.2rem; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.contact-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; } .field.full { grid-column: 1/-1; } .field label { font-size: .84rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 13px; color: var(--ink); border: 1px solid #cbd5df; border-radius: 4px; background: #fff; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(10,169,199,.13); }
.field textarea { min-height: 130px; resize: vertical; }
.form-actions { margin-top: 20px; display: flex; align-items: center; gap: 16px; } .form-status { color: var(--muted); font-size: .86rem; }
.contact-points { margin-top: 32px; display: grid; gap: 18px; } .contact-points strong { display: block; }
.legal-copy { max-width: 860px; } .legal-copy h2 { margin-top: 42px; font-size: 1.5rem; } .legal-copy li { margin-bottom: 8px; color: var(--muted); }
.site-footer { padding: 54px 0 30px; color: #dce5ee; background: #050c14; }
.footer-inner { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: start; }
.footer-logo { display: inline-block; } .footer-logo img { width: 205px; height: auto; }
.footer-small { margin-top: 18px; color: #93a3b4; font-size: .84rem; line-height: 1.8; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; font-weight: 760; } .footer-links a:hover { color: #70dae4; }
.footer-bottom { width: var(--container); margin: 36px auto 0; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #75879a; border-top: 1px solid #1d2b3a; font-size: .78rem; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 900; width: 58px; height: 58px; padding: 7px; display: grid; place-items: center; background: #25d366; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 18px 42px rgba(18,140,126,.34); }
.whatsapp-float img { width: 100%; height: 100%; display: block; object-fit: contain; } .whatsapp-float:hover { transform: translateY(-2px); }
.cookie-banner { position: fixed; left: 18px; bottom: 18px; z-index: 850; width: min(690px,calc(100% - 112px)); padding: 15px 16px; display: none; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.cookie-banner.show { display: flex; } .cookie-banner p { margin: 0; font-size: .84rem; } .cookie-banner .btn { min-height: 40px; padding: 9px 14px; flex: 0 0 auto; }
@media (max-width: 980px) {
  .menu-toggle { display: block; } .nav { position: absolute; top: 100%; left: 0; right: 0; height: calc(100svh - 82px); padding: 24px 20px 34px; display: none; align-items: stretch; flex-direction: column; gap: 5px; overflow-y: auto; background: #fff; box-shadow: 0 24px 46px rgba(7,17,29,.12); }
  .nav.open { display: flex; } .nav a { width: 100%; padding: 15px 16px; border-bottom: 1px solid #eef1f4; border-radius: 4px; } .nav .nav-cta { margin: 10px 0 0; text-align: center; }
  .proof-inner { grid-template-columns: 1fr 1fr; } .proof-intro { padding-left: 24px; } .proof-item:nth-child(2) { border-right: 0; }
  .grid-4 { grid-template-columns: 1fr 1fr; } .outcome-grid, .sector-grid, .contact-layout { grid-template-columns: 1fr; gap: 42px; } .process { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  :root { --container: min(100% - 28px,1180px); } .header-inner { height: 72px; } .brand img { width: 170px; } .nav { height: calc(100svh - 72px); }
  .home-hero { min-height: calc(100svh - 72px); background-position: 63% center; } .home-hero::before { background: rgba(2,9,16,.68); } .hero-inner { padding: 58px 0 72px; }
  .home-hero h1 { font-size: clamp(2.5rem,13vw,4.1rem); overflow-wrap: anywhere; } .home-hero .lead { font-size: 1.02rem; }
  .hero-actions .btn { width: 100%; } .hero-trust { margin-top: 34px; display: grid; gap: 13px; }
  .proof-inner, .grid-3, .grid-4, .process { grid-template-columns: 1fr; } .proof-intro, .proof-item { min-height: auto; padding: 24px 14px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .section { padding: 68px 0; } .section-head { margin-bottom: 32px; } .card { padding: 23px; } .brief-body { padding: 18px; }
  .sector-band { padding: 58px 0; }
  .signal-row { grid-template-columns: 10px 1fr; } .signal-row b { grid-column: 2; justify-self: start; }
  .cta-inner { align-items: stretch; flex-direction: column; } .cta-inner .btn { width: 100%; }
  .page-hero { padding: 64px 0 56px; } .page-hero h1 { font-size: clamp(2.45rem,12vw,3.7rem); overflow-wrap: anywhere; } .page-hero p { font-size: 1rem; }
  .form-grid { grid-template-columns: 1fr; } .field.full { grid-column: auto; } .form-actions { align-items: stretch; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; } .footer-links { justify-content: flex-start; flex-direction: column; } .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); width: 54px; height: 54px; }
  .cookie-banner { left: 14px; bottom: 78px; width: calc(100% - 28px); align-items: stretch; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
