:root {
    --navy: #061f2a;
    --navy-2: #082e39;
    --navy-3: #0d3e48;
    --green: #13b98f;
    --green-strong: #08a37c;
    --lime: #9ee86f;
    --mint: #e7fbf3;
    --aqua: #dff7f5;
    --white: #ffffff;
    --paper: #f8faf9;
    --soft: #edf4f2;
    --ink: #10282d;
    --muted: #617378;
    --line: rgba(16, 40, 45, .12);
    --line-light: rgba(255, 255, 255, .12);
    --danger: #b33a48;
    --shadow: 0 28px 80px rgba(4, 34, 39, .14);
    --shadow-soft: 0 16px 44px rgba(4, 34, 39, .08);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shell: min(1200px, calc(100% - 40px));
    --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
.shell { width: var(--shell); margin-inline: auto; }
.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 12px 16px; background: var(--white); color: var(--navy); border-radius: 10px; transform: translateY(-180%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: var(--header-height); color: var(--white); background: linear-gradient(to bottom, rgba(3, 22, 28, .9), rgba(3, 22, 28, .52), transparent); transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease; }
.site-header.is-scrolled, .inner-page .site-header, .portal-page .site-header { background: rgba(5, 31, 39, .94); box-shadow: 0 1px 0 rgba(255, 255, 255, .08); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 230px; height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 23px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.nav-demo):not(.nav-login) { position: relative; color: rgba(255,255,255,.8); transition: color .2s ease; }
.main-nav > a:not(.nav-demo):not(.nav-login)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--lime); transition: right .25s ease; }
.main-nav > a:hover, .main-nav > a.is-active { color: var(--white); }
.main-nav > a:hover::after, .main-nav > a.is-active::after { right: 0; }
.nav-login { color: var(--white); border-left: 1px solid rgba(255,255,255,.18); padding-left: 22px; }
.nav-demo { padding: 12px 18px; color: var(--navy); background: var(--lime); border-radius: 999px; transition: transform .2s ease, background .2s ease; }
.nav-demo:hover { transform: translateY(-2px); background: var(--white); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); border-radius: 14px; cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--white); border-radius: 999px; transition: transform .25s ease, opacity .25s 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); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--green-strong); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--lime); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 800; line-height: 1.2; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--lime); box-shadow: 0 14px 32px rgba(158,232,111,.2); }
.button-primary:hover { background: var(--white); box-shadow: 0 16px 36px rgba(158,232,111,.28); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.button-outline { color: var(--navy); border-color: rgba(6,31,42,.2); background: transparent; }
.button-outline:hover { color: var(--white); border-color: var(--navy); background: var(--navy); }
.button-dark { color: var(--white); background: var(--navy); }
.button-dark:hover { background: var(--green-strong); }
.button-white { color: var(--navy); background: var(--white); }
.button-white:hover { background: var(--lime); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-strong); font-weight: 800; }
.text-link-light { color: var(--lime); }

.hero-home { position: relative; overflow: hidden; min-height: 790px; padding: 156px 0 0; color: var(--white); background: radial-gradient(circle at 83% 28%, rgba(19,185,143,.25), transparent 28%), radial-gradient(circle at 20% 85%, rgba(158,232,111,.11), transparent 30%), linear-gradient(135deg, #041a23 0%, #07313a 48%, #0b4b4b 100%); }
.hero-home::before { content: ""; position: absolute; inset: 0; 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: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.hero-noise { position: absolute; inset: 0; opacity: .14; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E"); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 44px; }
.hero-copy { padding-bottom: 72px; }
.hero-copy h1 { max-width: 690px; margin-bottom: 25px; font-size: clamp(48px, 5.15vw, 78px); line-height: .99; letter-spacing: -.055em; }
.hero-copy h1 span { color: var(--lime); }
.hero-copy > p { max-width: 670px; margin-bottom: 30px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 17px; color: rgba(255,255,255,.7); font-size: 13px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 7px; }
.hero-badges .icon { color: var(--lime); }
.hero-visual { position: relative; min-height: 530px; display: flex; align-items: center; justify-content: center; }
.hero-visual > img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 36px 52px rgba(0,0,0,.28)); }
.visual-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(62,221,177,.18); filter: blur(20px); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; min-width: 225px; padding: 14px 17px; color: var(--navy); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.62); border-radius: 16px; box-shadow: 0 18px 50px rgba(0,0,0,.22); backdrop-filter: blur(18px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { color: var(--muted); font-size: 11px; }
.floating-card-a { top: 55px; right: -18px; }
.floating-card-b { bottom: 72px; left: -26px; }
.floating-card-b .icon { width: 30px; height: 30px; color: var(--green-strong); }
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(19,185,143,.13); }
.hero-metrics { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 5px; background: rgba(5,29,36,.78); border: 1px solid rgba(255,255,255,.1); border-radius: 25px 25px 0 0; backdrop-filter: blur(18px); }
.hero-metrics div { padding: 24px 25px; border-right: 1px solid rgba(255,255,255,.1); }
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong, .hero-metrics span { display: block; }
.hero-metrics strong { color: var(--lime); font-size: 17px; }
.hero-metrics span { color: rgba(255,255,255,.64); font-size: 12px; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 13px; min-height: 112px; padding: 22px 25px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-grid .icon { width: 29px; height: 29px; color: var(--green-strong); }
.trust-grid p, .trust-grid strong, .trust-grid span { display: block; margin: 0; }
.trust-grid strong { font-size: 14px; }
.trust-grid span { color: var(--muted); font-size: 12px; }

.section { padding: 105px 0; }
.section-light { background: var(--white); }
.section-soft { background: var(--soft); }
.section-dark { color: var(--white); background: radial-gradient(circle at 80% 20%, rgba(19,185,143,.17), transparent 28%), linear-gradient(135deg, var(--navy), var(--navy-2)); }
.section-heading { max-width: 770px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { margin-bottom: 17px; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 17px; }
.section-dark .section-heading p, .section-plans .section-heading p { color: rgba(255,255,255,.68); }

.module-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.module-card { position: relative; min-height: 330px; padding: 28px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.module-card:hover { transform: translateY(-7px); border-color: rgba(19,185,143,.35); box-shadow: var(--shadow-soft); }
.module-card > span { position: absolute; top: 28px; right: 28px; color: #a2b1b1; font-size: 12px; font-weight: 850; }
.module-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 36px; color: var(--green-strong); background: var(--mint); border-radius: 17px; }
.module-icon .icon { width: 27px; height: 27px; }
.module-card h3 { margin-bottom: 12px; font-size: 21px; letter-spacing: -.02em; }
.module-card p { color: var(--muted); font-size: 14px; }
.module-card a { position: absolute; left: 28px; bottom: 25px; display: inline-flex; align-items: center; gap: 7px; color: var(--green-strong); font-size: 13px; font-weight: 800; }
.module-card-accent { color: var(--white); background: linear-gradient(145deg, var(--green-strong), #087b70); border-color: transparent; }
.module-card-accent .module-icon { color: var(--navy); background: var(--lime); }
.module-card-accent > span, .module-card-accent p { color: rgba(255,255,255,.72); }
.module-card-accent a { color: var(--white); }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.split-copy h2 { margin-bottom: 21px; font-size: clamp(38px, 4.3vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.split-copy > p { color: rgba(255,255,255,.68); font-size: 17px; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 26px 0 30px; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); }
.check-list .icon { margin-top: 4px; color: var(--green-strong); }
.check-list-light li { color: rgba(255,255,255,.82); }
.check-list-light .icon { color: var(--lime); }
.risk-board { padding: 23px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-xl); box-shadow: 0 35px 90px rgba(0,0,0,.2); backdrop-filter: blur(16px); }
.risk-board-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 8px 20px; color: rgba(255,255,255,.58); font-size: 12px; }
.risk-board-head strong { color: var(--white); }
.risk-row { display: grid; grid-template-columns: 13px 1fr auto; align-items: center; gap: 14px; padding: 15px 16px; margin-top: 8px; background: rgba(3,24,30,.46); border: 1px solid rgba(255,255,255,.08); border-radius: 15px; }
.risk-row strong, .risk-row small { display: block; }
.risk-row strong { font-size: 14px; }
.risk-row small { color: rgba(255,255,255,.52); font-size: 11px; }
.risk-row b { color: var(--lime); font-size: 11px; text-transform: uppercase; }
.risk-color { width: 10px; height: 38px; border-radius: 999px; }
.physical { background: #56a8ff; } .chemical { background: #ff6674; } .biological { background: #9f70ff; } .ergonomic { background: #ffb84c; } .accident { background: #f4df4b; } .psychosocial { background: #37d6ad; }

.experience-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.experience-visual img { width: 100%; filter: drop-shadow(0 28px 45px rgba(7,43,44,.12)); }
.experience-copy h2 { margin-bottom: 20px; font-size: clamp(37px, 4.2vw, 55px); line-height: 1.07; letter-spacing: -.043em; }
.experience-copy > p { color: var(--muted); font-size: 17px; }
.mini-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.mini-features > div { display: flex; align-items: flex-start; gap: 12px; padding: 17px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.mini-features .icon { margin-top: 3px; color: var(--green-strong); }
.mini-features p, .mini-features strong, .mini-features span { display: block; margin: 0; }
.mini-features strong { font-size: 13px; }
.mini-features span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.step-card { position: relative; padding: 34px 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step-card::after { content: ""; position: absolute; top: 52px; left: calc(100% + 2px); width: 16px; height: 1px; background: var(--green); }
.step-card:last-child::after { display: none; }
.step-card > span { display: grid; place-items: center; width: 39px; height: 39px; margin-bottom: 24px; color: var(--navy); background: var(--lime); border-radius: 50%; font-weight: 900; }
.step-card h3 { font-size: 19px; }
.step-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.section-plans { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #06212b, #0b4547); }
.section-plans::before { content: ""; position: absolute; width: 520px; height: 520px; left: -220px; top: -220px; border-radius: 50%; background: rgba(158,232,111,.12); filter: blur(4px); }
.pricing-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); align-items: stretch; gap: 17px; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 29px 25px; color: var(--ink); background: var(--white); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); box-shadow: 0 18px 48px rgba(0,0,0,.08); }
.price-card.price-featured { transform: translateY(-12px); border: 2px solid var(--lime); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.popular-badge { position: absolute; top: -14px; right: 22px; padding: 7px 13px; color: var(--navy); background: var(--lime); border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-top span, .price-top strong, .price-top small { display: block; }
.price-top span { color: var(--green-strong); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.price-top strong { margin-top: 9px; font-size: 24px; line-height: 1.1; }
.price-top small { color: var(--muted); }
.price { margin: 23px 0; font-size: 39px; font-weight: 900; letter-spacing: -.05em; }
.price sup { margin-right: 3px; font-size: 15px; vertical-align: top; letter-spacing: 0; }
.price small { margin-left: 5px; color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 0; }
.price-card > p { color: var(--muted); font-size: 13px; }
.price-card ul { display: grid; gap: 11px; padding: 0; margin: 0 0 26px; list-style: none; }
.price-card li { display: flex; align-items: flex-start; gap: 8px; color: #42565a; font-size: 12.5px; }
.price-card li .icon { margin-top: 2px; color: var(--green-strong); }
.price-card .button { margin-top: auto; }
.pricing-note { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; margin-top: 28px; padding: 18px 22px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; }
.pricing-note strong { color: var(--white); }
.pricing-note a { display: inline-flex; align-items: center; gap: 7px; color: var(--lime); font-weight: 800; }
.pricing-page { color: var(--ink); }
.pricing-page .price-card { border-color: var(--line); }
.pricing-page .price-featured { border-color: var(--green); }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; }
.faq-heading h2 { margin-bottom: 18px; font-size: clamp(36px,4vw,52px); line-height: 1.08; letter-spacing: -.04em; }
.faq-heading p { color: var(--muted); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; color: var(--ink); background: transparent; border: 0; text-align: left; font-weight: 800; cursor: pointer; }
.faq-item button b { display: grid; place-items: center; width: 29px; height: 29px; color: var(--green-strong); background: var(--mint); border-radius: 50%; transition: transform .2s ease; }
.faq-item.is-open button b, .faq-item button[aria-expanded="true"] b { transform: rotate(45deg); }
.faq-answer { padding: 0 45px 22px 0; }
.faq-answer p { color: var(--muted); }

.cta-band { padding: 74px 0; color: var(--white); background: linear-gradient(105deg, var(--green-strong), #0a7a73); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.cta-band-inner > div:first-child { max-width: 740px; }
.cta-band-inner span { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.cta-band h2 { margin: 8px 0 0; font-size: clamp(30px,3.6vw,46px); line-height: 1.09; letter-spacing: -.04em; }
.cta-actions { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
.cta-phone { display: flex; align-items: center; gap: 10px; }
.cta-phone .icon { width: 25px; height: 25px; }
.cta-phone span, .cta-phone small { display: block; }
.cta-phone small { opacity: .72; font-size: 10px; }

.page-hero { padding: 160px 0 80px; color: var(--white); background: radial-gradient(circle at 80% 30%, rgba(19,185,143,.25), transparent 29%), linear-gradient(135deg, #041a23, #0a4447); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 60px; }
.page-hero h1 { max-width: 850px; margin-bottom: 22px; font-size: clamp(45px,5vw,70px); line-height: 1.02; letter-spacing: -.052em; }
.page-hero p { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.7); font-size: 18px; }
.page-hero img { max-height: 420px; margin-inline: auto; filter: drop-shadow(0 32px 60px rgba(0,0,0,.24)); }
.page-hero-centered { text-align: center; }
.page-hero-centered h1, .page-hero-centered p { margin-inline: auto; }
.page-hero-small { padding-bottom: 62px; }
.page-hero-small h1 { font-size: clamp(42px,5vw,62px); }

.solution-detail { scroll-margin-top: 85px; }
.solution-row { display: grid; grid-template-columns: 110px 1fr; gap: 45px; }
.solution-row.reverse { grid-template-columns: 1fr 110px; }
.solution-row.reverse .solution-number { order: 2; }
.solution-number { display: grid; place-items: center; align-self: start; width: 85px; height: 85px; color: var(--navy); background: var(--lime); border-radius: 25px; font-size: 23px; font-weight: 900; }
.solution-content { max-width: 950px; }
.solution-content h2 { margin-bottom: 18px; font-size: clamp(36px,4.3vw,56px); line-height: 1.06; letter-spacing: -.045em; }
.solution-content > p { color: var(--muted); font-size: 17px; }
.section-dark .solution-content > p { color: rgba(255,255,255,.68); }
.solution-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.info-callout { display: flex; align-items: flex-start; gap: 14px; margin: 25px 0; padding: 20px; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: 15px; }
.info-callout .icon { margin-top: 3px; color: var(--green-strong); }
.info-callout p, .info-callout strong, .info-callout span { display: block; margin: 0; }
.info-callout span { color: var(--muted); font-size: 14px; }
.chat-demo { max-width: 760px; display: grid; gap: 14px; margin-top: 30px; }
.chat-line { max-width: 82%; padding: 17px 20px; border-radius: 18px; }
.chat-line span { display: block; margin-bottom: 6px; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.chat-line p { margin: 0; font-size: 14px; }
.chat-line.user { justify-self: end; color: var(--navy); background: var(--lime); border-bottom-right-radius: 5px; }
.chat-line.bot { color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.13); border-bottom-left-radius: 5px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag-list span { padding: 10px 15px; color: var(--green-strong); background: var(--mint); border: 1px solid rgba(19,185,143,.2); border-radius: 999px; font-size: 12px; font-weight: 800; }
.security-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 30px; }
.security-cards > div { padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 17px; }
.security-cards .icon { margin-bottom: 14px; color: var(--green-strong); }
.security-cards strong, .security-cards span { display: block; }
.security-cards span { color: var(--muted); font-size: 12px; }

.comparison-table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.comparison-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 18px; border-bottom: 1px solid var(--line); text-align: center; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table thead th { color: var(--white); background: var(--navy); font-size: 13px; }
.comparison-table tbody td { color: var(--muted); font-size: 13px; }
.comparison-table tbody td:not(:first-child) { color: var(--green-strong); font-weight: 800; }
.table-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.custom-plan { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.custom-plan > div { max-width: 700px; }
.custom-plan h2 { font-size: clamp(36px,4vw,52px); letter-spacing: -.04em; }
.custom-plan p { color: rgba(255,255,255,.68); }

.story-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 75px; align-items: start; }
.story-grid h2 { font-size: clamp(38px,4.2vw,56px); line-height: 1.07; letter-spacing: -.045em; }
.story-grid p { color: var(--muted); font-size: 17px; }
.values-card { display: grid; gap: 12px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-xl); }
.values-card > div { display: flex; gap: 14px; padding: 19px; background: var(--white); border: 1px solid var(--line); border-radius: 17px; }
.values-card .icon { margin-top: 3px; color: var(--green-strong); }
.values-card p, .values-card strong, .values-card span { display: block; margin: 0; }
.values-card span { color: var(--muted); font-size: 13px; }
.brand-symbol-large { display: grid; place-items: center; }
.brand-symbol-large img { max-height: 320px; }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.audience-grid article { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.audience-grid article > div { display: grid; place-items: center; width: 55px; height: 55px; margin-bottom: 30px; color: var(--green-strong); background: var(--mint); border-radius: 17px; }
.audience-grid article > div .icon { width: 26px; height: 26px; }
.audience-grid h3 { font-size: 20px; }
.audience-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.manifesto { max-width: 900px; text-align: center; }
.manifesto .eyebrow { justify-content: center; }
.manifesto blockquote { margin: 20px 0; font-size: clamp(34px,4.8vw,62px); line-height: 1.12; letter-spacing: -.045em; font-weight: 800; }
.manifesto p { color: rgba(255,255,255,.65); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-info h2 { font-size: clamp(36px,4vw,52px); line-height: 1.08; letter-spacing: -.04em; }
.contact-info > p { color: var(--muted); }
.contact-link { display: flex; align-items: center; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-link .icon { width: 25px; height: 25px; color: var(--green-strong); }
.contact-link span, .contact-link small { display: block; }
.contact-link span { font-weight: 800; }
.contact-link small { color: var(--muted); font-size: 11px; font-weight: 600; }
.contact-note { display: flex; align-items: flex-start; gap: 13px; margin-top: 28px; padding: 18px; background: var(--mint); border-radius: 16px; }
.contact-note .icon { color: var(--green-strong); }
.contact-note p, .contact-note strong, .contact-note span { display: block; margin: 0; }
.contact-note span { color: var(--muted); font-size: 13px; }
.lead-form { padding: 35px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.form-heading { margin-bottom: 25px; }
.form-heading span { color: var(--green-strong); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form-heading h2 { margin: 4px 0 0; font-size: 30px; line-height: 1.15; letter-spacing: -.03em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.lead-form label { display: block; margin-bottom: 16px; color: #2d4448; font-size: 12px; font-weight: 800; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; margin-top: 7px; padding: 14px 15px; color: var(--ink); background: var(--white); border: 1px solid #cfdad8; border-radius: 12px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(19,185,143,.1); }
.lead-form textarea { resize: vertical; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; }
.consent input { width: 17px; height: 17px; margin: 3px 0 0; flex: 0 0 auto; }
.consent a { color: var(--green-strong); text-decoration: underline; }
.honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.was-validated :invalid { border-color: var(--danger) !important; }
.form-status { min-height: 22px; margin: 12px 0 0; color: var(--green-strong); font-size: 12px; text-align: center; }
.form-status.is-error { color: var(--danger); }
.demo-hero { min-height: 100vh; padding: 145px 0 85px; color: var(--white); background: radial-gradient(circle at 15% 85%, rgba(158,232,111,.12), transparent 30%), radial-gradient(circle at 80% 20%, rgba(19,185,143,.24), transparent 28%), linear-gradient(135deg, #041a23, #0a4447); }
.demo-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.demo-copy h1 { font-size: clamp(45px,5vw,67px); line-height: 1.02; letter-spacing: -.052em; }
.demo-copy > p { color: rgba(255,255,255,.68); font-size: 17px; }
.demo-contact { display: flex; flex-wrap: wrap; gap: 18px; }
.demo-contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); font-weight: 800; }
.lead-form-dark { color: var(--ink); background: rgba(255,255,255,.97); border-color: rgba(255,255,255,.6); }

.portal-main { min-height: 100vh; padding: 145px 20px 80px; background: radial-gradient(circle at 80% 20%, rgba(19,185,143,.22), transparent 25%), linear-gradient(135deg, #041a23, #0a4447); }
.portal-shell { display: grid; place-items: center; }
.portal-card { width: min(480px,100%); padding: 38px; background: var(--white); border-radius: var(--radius-xl); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.portal-card > img { margin-bottom: 25px; }
.portal-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; color: var(--green-strong); background: var(--mint); border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.portal-card h1 { margin: 17px 0 8px; font-size: 38px; letter-spacing: -.04em; }
.portal-card > p { color: var(--muted); }
.portal-card label { display: block; margin: 16px 0; font-size: 12px; font-weight: 800; }
.portal-card input { width: 100%; margin-top: 6px; padding: 14px; border: 1px solid #cfdad8; border-radius: 12px; }
.portal-links { display: flex; justify-content: space-between; gap: 15px; margin-top: 20px; font-size: 12px; font-weight: 800; }
.portal-links a { color: var(--green-strong); }
.portal-note { margin: 25px 0 0 !important; padding-top: 18px; border-top: 1px solid var(--line); font-size: 11px; }
.success-main { min-height: 76vh; display: grid; place-items: center; padding: 150px 20px 80px; background: var(--soft); }
.success-card { width: min(680px,100%); padding: 50px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.success-card .eyebrow { justify-content: center; }
.success-icon { display: grid; place-items: center; width: 80px; height: 80px; margin: 0 auto 24px; color: var(--navy); background: var(--lime); border-radius: 50%; }
.success-icon .icon { width: 40px; height: 40px; }
.success-card h1 { font-size: clamp(40px,5vw,58px); letter-spacing: -.045em; }
.success-card p { color: var(--muted); }
.success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.error-code { color: var(--green-strong); font-size: 70px; font-weight: 950; }

.legal-content { max-width: 900px; padding-top: 70px; padding-bottom: 90px; }
.legal-content h2 { margin-top: 36px; font-size: 23px; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--green-strong); text-decoration: underline; }

.site-footer { padding: 75px 0 24px; color: rgba(255,255,255,.7); background: #04181f; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1.1fr; gap: 48px; }
.footer-brand img { width: 230px; margin-bottom: 18px; }
.footer-brand > p { max-width: 360px; }
.footer-social-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.footer-social-proof span { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border-radius: 999px; font-size: 10px; }
.footer-grid h2 { margin-bottom: 18px; color: var(--white); font-size: 14px; }
.footer-grid > div:not(.footer-brand) a { display: flex; align-items: center; gap: 8px; margin: 10px 0; font-size: 13px; transition: color .2s ease; }
.footer-grid a:hover { color: var(--lime); }
.footer-grid p { font-size: 13px; }
.footer-legal { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); font-size: 11px; }
.footer-legal div { display: flex; gap: 20px; }
.footer-disclaimer { padding-top: 18px; color: rgba(255,255,255,.42); font-size: 10px; }
.footer-disclaimer p { margin: 0; }
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 13px 17px; color: var(--white); background: #16a968; border-radius: 999px; box-shadow: 0 16px 36px rgba(0,0,0,.22); font-size: 12px; font-weight: 900; }
.whatsapp-float .icon { width: 22px; height: 22px; }
.cookie-banner { position: fixed; z-index: 1100; left: 20px; right: 20px; bottom: 20px; max-width: 760px; margin-inline: auto; display: flex; align-items: center; gap: 20px; padding: 16px 18px; color: var(--white); background: rgba(4,24,31,.96); border: 1px solid rgba(255,255,255,.12); border-radius: 15px; box-shadow: 0 18px 48px rgba(0,0,0,.24); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 12px; }
.cookie-banner a { color: var(--lime); text-decoration: underline; }
.cookie-banner button { flex: 0 0 auto; padding: 9px 14px; color: var(--navy); background: var(--lime); border: 0; border-radius: 999px; font-size: 11px; font-weight: 900; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@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: 1120px) {
    :root { --header-height: 78px; }
    .menu-toggle { display: block; }
    .main-nav { position: fixed; top: var(--header-height); left: 18px; right: 18px; display: grid; gap: 0; padding: 18px; visibility: hidden; opacity: 0; transform: translateY(-12px); color: var(--white); background: rgba(4,28,35,.98); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; box-shadow: 0 26px 70px rgba(0,0,0,.28); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
    .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
    .main-nav > a { padding: 13px 12px; }
    .main-nav > a::after { display: none; }
    .nav-login { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-left: 12px; }
    .nav-demo { margin-top: 8px; text-align: center; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .module-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: repeat(2,1fr); }
    .price-card.price-featured { transform: none; }
    .audience-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
    .hero-home { padding-top: 135px; }
    .hero-grid, .split-grid, .experience-grid, .faq-grid, .page-hero-grid, .story-grid, .contact-grid, .demo-grid { grid-template-columns: 1fr; }
    .hero-copy { padding-bottom: 0; }
    .hero-copy h1 { max-width: 760px; }
    .hero-visual { min-height: 430px; }
    .hero-metrics { grid-template-columns: repeat(2,1fr); }
    .hero-metrics div:nth-child(2) { border-right: 0; }
    .hero-metrics div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
    .trust-grid { grid-template-columns: repeat(2,1fr); }
    .trust-grid > div:nth-child(2) { border-right: 0; }
    .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .risk-board { max-width: 720px; }
    .experience-visual { order: 2; }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .step-card::after { display: none; }
    .cta-band-inner, .custom-plan { align-items: flex-start; flex-direction: column; }
    .cta-actions { flex-wrap: wrap; }
    .solution-row, .solution-row.reverse { grid-template-columns: 80px 1fr; gap: 25px; }
    .solution-row.reverse .solution-number { order: initial; }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
    .demo-copy { max-width: 760px; }
}

@media (max-width: 650px) {
    :root { --shell: min(100% - 28px, 1200px); }
    .brand img { width: 198px; }
    .section { padding: 76px 0; }
    .hero-home { min-height: auto; padding-top: 120px; }
    .hero-copy h1 { font-size: 46px; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions .button { width: 100%; }
    .hero-visual { min-height: 330px; margin-top: 10px; }
    .floating-card { display: none; }
    .hero-metrics { width: 100%; border-radius: 0; }
    .hero-metrics div { padding: 18px; }
    .trust-grid { width: 100%; }
    .trust-grid > div { padding: 16px; min-height: 96px; }
    .module-grid, .pricing-grid, .steps-grid, .mini-features, .audience-grid, .security-cards { grid-template-columns: 1fr; }
    .module-card { min-height: 300px; }
    .split-grid { gap: 45px; }
    .risk-row { grid-template-columns: 10px 1fr; }
    .risk-row b { display: none; }
    .pricing-note { grid-template-columns: 1fr; }
    .page-hero { padding: 130px 0 65px; }
    .page-hero h1 { font-size: 43px; }
    .page-hero-grid img { display: none; }
    .solution-row, .solution-row.reverse { grid-template-columns: 1fr; }
    .solution-number { width: 60px; height: 60px; border-radius: 18px; }
    .solution-columns { grid-template-columns: 1fr; gap: 0; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .lead-form { padding: 25px 18px; }
    .cta-actions { width: 100%; }
    .cta-actions .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1/-1; }
    .footer-grid > div:last-child { grid-column: 1/-1; }
    .footer-legal { flex-direction: column; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; justify-content: center; padding: 0; border-radius: 50%; }
    .whatsapp-float span { display: none; }
    .cookie-banner { flex-direction: column; align-items: stretch; left: 12px; right: 12px; bottom: 12px; }
    .portal-card, .success-card { padding: 30px 20px; }
}
