:root {
  --navy: #061827;
  --navy-2: #0c2a3c;
  --cyan: #59bfd4;
  --cyan-soft: #d9f3f7;
  --lime: #b6db43;
  --paper: #f3f5f1;
  --ink: #0a1d2a;
  --muted: #607079;
  --line: rgba(6, 24, 39, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; padding: 12px 18px; border-radius: 9px; background: white; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 86px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(22px, 4vw, 68px); color: white; border-bottom: 1px solid rgba(255,255,255,.12); transition: .35s ease; }
.site-header.scrolled { height: 72px; background: rgba(6,24,39,.88); backdrop-filter: blur(22px); }
.logo { display: inline-flex; width: clamp(150px, 13vw, 190px); padding: 7px 10px; border-radius: 9px; background: rgba(255,255,255,.96); box-shadow: 0 16px 34px rgba(0,0,0,.08); }
.logo img { display: block; width: 100%; height: auto; }
.desktop-nav { display: flex; gap: 28px; align-items: center; font-size: 13px; font-weight: 600; }
.desktop-nav a { position: relative; opacity: .78; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--lime); transition: .25s; }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { right: 0; }

.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 22px; padding: 0 25px; border: 0; border-radius: 999px; background: var(--lime); color: var(--navy); font-weight: 700; cursor: pointer; box-shadow: 0 16px 40px rgba(182,219,67,.17); transition: transform .25s, box-shadow .25s, background .25s; }
.button:hover { transform: translateY(-2px); background: #c4e759; box-shadow: 0 20px 46px rgba(182,219,67,.28); }
.button-small { min-height: 42px; padding: 0 19px; font-size: 12px; gap: 8px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 5px; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; padding: 124px clamp(22px, 8vw, 130px) 72px; background: var(--navy); color: white; }
.hero-image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,24,39,1) 0%, rgba(6,24,39,.96) 26%, rgba(6,24,39,.28) 69%, rgba(6,24,39,.12) 100%), url("assets/hero-tecnici.jpg") center / cover no-repeat; }
.survey-field { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; opacity: .78; pointer-events: none; mix-blend-mode: screen; mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 28%, #000 53%, #000 100%); }
.hero-grid { position: absolute; z-index: 1; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: min(100%, 1180px); }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(182,219,67,.13); }
.hero h1 { max-width: 950px; margin: 25px 0 24px; font: 600 clamp(48px, 6.2vw, 92px)/.98 "Manrope", sans-serif; letter-spacing: -.06em; }
.hero h1 em { color: var(--cyan-soft); font-style: normal; }
.hero-copy { max-width: 750px; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.6vw, 22px); line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 34px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(100%, 850px); margin-top: 62px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.12); }
.hero-proof div { display: grid; grid-template-columns: auto 1fr; gap: 18px; min-height: 92px; align-items: center; padding: 20px; background: rgba(6,24,39,.57); backdrop-filter: blur(16px); }
.hero-proof strong { color: var(--lime); font: 700 11px "Manrope"; }
.hero-proof span { font: 600 14px/1.45 "Manrope"; color: rgba(255,255,255,.8); }
.scroll-cue { position: absolute; z-index: 3; right: 36px; bottom: 39px; display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue span { display: block; width: 1px; height: 42px; background: linear-gradient(var(--lime), transparent); }

.section-pad { padding: clamp(88px, 10vw, 150px) clamp(22px, 8vw, 130px); }
.intro-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 9vw; margin-top: 30px; }
.intro h2, .coverage h2, .professions h2, .fit h2, .contact h2 { margin: 0; font: 600 clamp(42px, 5vw, 74px)/1.03 "Manrope"; letter-spacing: -.055em; }
.intro-copy { padding-top: 8px; }
.intro-copy p { margin: 0 0 22px; color: var(--muted); font-size: 18px; line-height: 1.72; }

.risk-story { position: relative; height: 310vh; background: var(--navy); color: white; }
.risk-sticky { position: sticky; top: 0; height: 100vh; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 7vw; overflow: hidden; padding: 100px clamp(22px, 8vw, 130px) 60px; }
.section-kicker.light { color: var(--lime); }
.risk-copy h2 { max-width: 650px; margin: 24px 0 42px; font: 600 clamp(42px, 5vw, 72px)/1.02 "Manrope"; letter-spacing: -.055em; }
.risk-steps { display: grid; gap: 5px; }
.risk-step { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.13); opacity: .3; transition: opacity .4s, transform .4s; }
.risk-step.active { opacity: 1; transform: translateX(8px); }
.risk-step > span { color: var(--lime); font: 700 11px "Manrope"; padding-top: 5px; }
.risk-step h3 { margin: 0 0 7px; font: 700 20px "Manrope"; }
.risk-step p { max-width: 500px; margin: 0; color: rgba(255,255,255,.63); font-size: 14px; line-height: 1.55; }
.risk-visual { position: relative; min-height: 580px; display: grid; place-items: center; }
.plan-card { position: relative; width: min(100%, 610px); aspect-ratio: 1.04; overflow: hidden; border: 1px solid rgba(89,191,212,.26); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035)); box-shadow: 0 48px 120px rgba(0,0,0,.28); transform: perspective(900px) rotateY(-7deg) rotateX(4deg); transition: transform .8s; backdrop-filter: blur(18px); }
.plan-top { height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.6); font: 700 10px "Manrope"; letter-spacing: .16em; }
.plan-top i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.plan-lines { position: absolute; inset: 62px 0 0; background-image: linear-gradient(rgba(89,191,212,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(89,191,212,.1) 1px, transparent 1px), repeating-radial-gradient(ellipse at 55% 55%, transparent 0 38px, rgba(217,243,247,.22) 39px 40px); background-size: 32px 32px, 32px 32px, auto; }
.measure { position: absolute; padding: 8px 11px; border: 1px solid rgba(255,255,255,.25); border-radius: 7px; background: rgba(6,24,39,.74); color: var(--cyan-soft); font: 700 10px "Manrope"; text-transform: uppercase; letter-spacing: .08em; }
.measure-a { top: 34%; left: 18%; }.measure-b { right: 18%; bottom: 24%; }
.fault-line { position: absolute; left: 51%; top: 22%; width: 2px; height: 58%; background: var(--lime); box-shadow: 0 0 24px rgba(182,219,67,.6); transform: rotate(18deg) scaleY(0); transform-origin: top; transition: transform .7s; }
.risk-label { position: absolute; padding: 10px 13px; border-radius: 999px; background: white; color: var(--navy); font: 800 10px "Manrope"; letter-spacing: .1em; box-shadow: 0 15px 40px rgba(0,0,0,.2); opacity: 0; transform: translateY(12px); transition: .45s; }
.risk-label small { color: var(--cyan); margin-left: 7px; }
.label-error { left: 3%; top: 22%; }.label-impact { right: 0; top: 46%; }.label-claim { left: 12%; bottom: 12%; background: var(--lime); }
.risk-story[data-stage="0"] .label-error, .risk-story[data-stage="1"] .label-error, .risk-story[data-stage="2"] .label-error,
.risk-story[data-stage="1"] .label-impact, .risk-story[data-stage="2"] .label-impact,
.risk-story[data-stage="2"] .label-claim { opacity: 1; transform: none; }
.risk-story[data-stage="1"] .fault-line, .risk-story[data-stage="2"] .fault-line { transform: rotate(18deg) scaleY(1); }
.risk-story[data-stage="2"] .plan-card { transform: perspective(900px) rotateY(-4deg) rotateX(2deg) scale(.96); }

.coverage { background: white; }
.coverage-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.coverage-heading h2 { max-width: 800px; margin-top: 24px; }
.coverage-heading > p { margin: 0; color: var(--muted); line-height: 1.7; }
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 70px; }
.coverage-card { --spotlight: rgba(89,191,212,.3); --mouse-x: 50%; --mouse-y: 42%; position: relative; isolation: isolate; min-height: 330px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); display: flex; flex-direction: column; transition: translate .4s cubic-bezier(.2,.75,.2,1), border-color .35s, box-shadow .4s; }
.coverage-card::before { content: ""; position: absolute; z-index: -1; inset: -1px; border-radius: inherit; background: radial-gradient(390px circle at var(--mouse-x) var(--mouse-y), var(--spotlight), transparent 62%); opacity: 0; transition: opacity .35s; pointer-events: none; }
.coverage-card::after { content: ""; position: absolute; z-index: -1; inset: 0; border-radius: inherit; background: linear-gradient(125deg, rgba(255,255,255,.34), transparent 34%, transparent 70%, rgba(89,191,212,.08)); opacity: 0; transition: opacity .4s; pointer-events: none; }
.coverage-card:hover, .coverage-card.is-pointer-active { translate: 0 -7px; border-color: rgba(89,191,212,.46); box-shadow: 0 28px 70px rgba(6,24,39,.14); }
.coverage-card:hover::before, .coverage-card:hover::after, .coverage-card.is-pointer-active::before, .coverage-card.is-pointer-active::after { opacity: 1; }
.coverage-card.feature { grid-row: span 2; min-height: 674px; background: linear-gradient(160deg, #dff4f7, #f6f8f4 58%); }
.coverage-card.feature { --spotlight: rgba(255,255,255,.72); }
.coverage-card.dark { --spotlight: rgba(89,191,212,.28); background: var(--navy); color: white; }
.coverage-card.lime { --spotlight: rgba(255,255,255,.48); background: var(--lime); }
.card-index { color: var(--muted); font: 700 10px "Manrope"; letter-spacing: .14em; }
.dark .card-index { color: rgba(255,255,255,.55); }
.card-icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 37px 0 27px; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); font: 600 25px "Manrope"; }
.dark .card-icon { border-color: rgba(255,255,255,.2); }.lime .card-icon { color: var(--navy); }
.coverage-card h3 { margin: auto 0 12px; font: 700 clamp(23px, 2.1vw, 34px)/1.08 "Manrope"; letter-spacing: -.04em; }
.coverage-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.dark p { color: rgba(255,255,255,.67); }
.coverage-legal-note, .legal-focus small { display: block; margin-top: 15px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.5; }
.coverage-card ul { margin: 30px 0 0; padding: 0; list-style: none; }
.coverage-card li { padding: 14px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }

.high-risk { padding: clamp(92px, 10vw, 150px) clamp(22px, 8vw, 130px); overflow: hidden; background: #0a2233; color: white; }
.high-risk-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; }
.high-risk-head h2 { max-width: 850px; margin: 24px 0 0; font: 600 clamp(44px, 5.2vw, 78px)/1.01 "Manrope"; letter-spacing: -.058em; }
.high-risk-intro p { margin: 0 0 27px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.7; }
.high-risk-intro strong { color: white; }
.high-risk-intro a { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 6px; border-bottom: 1px solid var(--cyan); color: var(--cyan-soft); font-weight: 700; }
.high-risk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 74px; }
.high-risk-card, .high-risk-callout { min-height: 330px; padding: 27px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); }
.high-risk-card > span { color: var(--lime); font: 700 10px "Manrope"; letter-spacing: .14em; }
.risk-glyph { position: relative; width: 78px; height: 78px; margin: 42px 0 32px; overflow: hidden; border: 1px solid rgba(89,191,212,.32); border-radius: 50%; background-color: rgba(89,191,212,.06); }
.risk-glyph::before, .risk-glyph::after { content: ""; position: absolute; }
.glyph-rail::before { inset: 15px 25px; border-inline: 2px solid var(--cyan); transform: perspective(50px) rotateX(18deg); }
.glyph-rail::after { inset: 18px 18px; background: repeating-linear-gradient(to bottom, transparent 0 8px, var(--lime) 9px 11px); }
.glyph-cable::before { width: 86px; height: 42px; left: -5px; top: 7px; border-bottom: 2px solid var(--cyan); border-radius: 50%; transform: rotate(-10deg); }
.glyph-cable::after { width: 24px; height: 18px; left: 29px; top: 37px; border: 2px solid var(--lime); border-radius: 4px 4px 9px 9px; }
.glyph-tunnel::before { inset: 20px 15px 11px; border: 2px solid var(--cyan); border-bottom: 0; border-radius: 32px 32px 0 0; }
.glyph-tunnel::after { width: 2px; height: 42px; left: 38px; bottom: 11px; background: var(--lime); box-shadow: -12px 8px 0 -1px var(--lime), 12px 8px 0 -1px var(--lime); }
.glyph-dam::before { width: 42px; height: 48px; left: 18px; top: 15px; border-left: 3px solid var(--cyan); border-right: 14px solid transparent; border-radius: 50%; transform: skewX(-9deg); }
.glyph-dam::after { width: 37px; height: 16px; right: 9px; bottom: 15px; border-block: 2px solid var(--lime); border-radius: 50%; }
.glyph-port::before { width: 44px; height: 44px; left: 17px; top: 9px; border: 2px solid var(--cyan); border-top: 0; border-radius: 0 0 50% 50%; }
.glyph-port::after { width: 58px; height: 16px; left: 10px; bottom: 11px; background: repeating-radial-gradient(ellipse at center, transparent 0 5px, var(--lime) 6px 7px); }
.glyph-water::before { width: 58px; height: 48px; left: 10px; top: 11px; background: repeating-radial-gradient(ellipse at center, transparent 0 9px, rgba(89,191,212,.75) 10px 11px); transform: rotate(-8deg); }
.glyph-water::after { width: 30px; height: 3px; left: 24px; bottom: 17px; background: var(--lime); box-shadow: 0 7px 0 rgba(182,219,67,.55); }
.glyph-park::before { width: 48px; height: 48px; left: 14px; top: 12px; border: 2px dashed var(--cyan); border-radius: 50%; }
.glyph-park::after { width: 12px; height: 12px; left: 33px; top: 30px; border: 2px solid var(--lime); border-radius: 50%; box-shadow: 0 -20px 0 -4px var(--lime), 0 20px 0 -4px var(--lime), 20px 0 0 -4px var(--lime), -20px 0 0 -4px var(--lime); }
.high-risk-card h3 { margin: 0 0 12px; font: 700 clamp(23px, 2vw, 31px)/1.08 "Manrope"; letter-spacing: -.04em; }
.high-risk-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.6; }
.high-risk-callout { grid-column: span 1; display: flex; flex-direction: column; background: var(--lime); color: var(--navy); }
.high-risk-callout > span { font: 800 10px "Manrope"; letter-spacing: .14em; }
.high-risk-callout h3 { margin: 48px 0 14px; font: 700 30px/1.06 "Manrope"; letter-spacing: -.045em; }
.high-risk-callout p { margin: 0; color: rgba(6,24,39,.72); font-size: 14px; line-height: 1.58; }
.high-risk-callout strong { margin-top: auto; padding-top: 30px; border-top: 1px solid rgba(6,24,39,.19); font: 700 15px/1.45 "Manrope"; }
.high-risk-note { max-width: 980px; margin: 32px 0 0; color: rgba(255,255,255,.44); font-size: 12px; line-height: 1.65; }

.professions { display: grid; grid-template-columns: .95fr 1.05fr; gap: 8vw; background: #e9eeeb; align-items: center; }
.profession-media { min-height: 760px; border-radius: 30px; background: url("assets/texture-topografia.jpg") center / cover no-repeat; box-shadow: 0 35px 80px rgba(6,24,39,.14); }
.profession-copy h2 { margin-top: 24px; }
.profession-list { margin-top: 52px; }
.profession-list article { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid var(--line); }
.profession-list article > span { color: var(--cyan); font: 700 11px "Manrope"; padding-top: 5px; }
.profession-list h3 { margin: 0 0 7px; font: 700 22px "Manrope"; letter-spacing: -.025em; }
.profession-list p { margin: 0; color: var(--muted); line-height: 1.58; }

.fit { overflow: hidden; }
.fit-copy { display: flex; justify-content: space-between; gap: 50px; align-items: end; }
.fit-copy h2 { max-width: 800px; }
.ticker-wrap { width: calc(100% + 2 * clamp(22px, 8vw, 130px)); margin: 85px calc(-1 * clamp(22px, 8vw, 130px)) 70px; overflow: hidden; border-block: 1px solid var(--line); background: white; }
.ticker { display: flex; width: max-content; align-items: center; gap: 29px; padding: 20px 0; animation: ticker 28s linear infinite; }
.ticker span { font: 700 17px "Manrope"; letter-spacing: .05em; }
.ticker i { color: var(--lime); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }
.fit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.fit-item { min-height: 300px; padding: 28px; background: var(--paper); }
.fit-item > span { color: var(--cyan); font: 700 11px "Manrope"; }
.fit-item h3 { margin: 80px 0 15px; font: 700 24px "Manrope"; letter-spacing: -.035em; }
.fit-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }

.method { padding: clamp(90px, 10vw, 150px) clamp(22px, 8vw, 130px); background: var(--navy); color: white; }
.broker-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; margin-top: 27px; align-items: end; }
.broker-copy h2 { margin: 0 0 28px; font: 600 clamp(45px, 5.2vw, 78px)/1.01 "Manrope"; letter-spacing: -.058em; }
.method-lead { max-width: 730px; color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.7; }
.broker-panel { padding: 28px; border: 1px solid rgba(89,191,212,.28); border-radius: 24px; background: rgba(255,255,255,.055); }
.broker-panel div { display: grid; gap: 8px; }
.broker-panel span { color: var(--lime); font: 700 10px "Manrope"; letter-spacing: .15em; }
.broker-panel strong { font: 600 16px/1.45 "Manrope"; }
.broker-panel i { display: block; width: 1px; height: 27px; margin: 9px 0 9px 5px; background: linear-gradient(var(--cyan), transparent); }
.broker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 80px; }
.broker-card { min-height: 280px; padding: 27px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); }
.broker-card span { color: var(--lime); font: 700 11px "Manrope"; }
.broker-card h3 { margin: 84px 0 13px; font: 700 23px/1.12 "Manrope"; letter-spacing: -.035em; }
.broker-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.62; }

.guide-strip { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 8vw, 118px); background: #e9eeeb; border-bottom: 1px solid var(--line); }
.guide-strip h2 { margin: 24px 0; font: 600 clamp(40px, 4.8vw, 70px)/1.02 "Manrope"; letter-spacing: -.055em; }
.guide-strip-intro { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.68; }
.guide-strip-links { display: grid; align-content: center; border-top: 1px solid var(--line); }
.guide-strip-links a { display: flex; justify-content: space-between; gap: 24px; padding: 21px 0; border-bottom: 1px solid var(--line); color: var(--ink); font: 700 clamp(18px, 1.7vw, 25px)/1.18 "Manrope"; letter-spacing: -.03em; transition: color .25s, padding-left .25s; }
.guide-strip-links a:hover { padding-left: 8px; color: #268aa4; }
.guide-strip-links a span { color: var(--cyan); }
.guide-strip-links .guide-all { color: #268aa4; font-size: 15px; letter-spacing: 0; }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; background: white; }
.contact h2 { margin: 24px 0; }
.contact-intro > p { max-width: 490px; color: var(--muted); line-height: 1.65; }
.contact-direct { display: grid; gap: 9px; margin-top: 42px; font-size: 14px; }
.contact-direct a { width: max-content; border-bottom: 1px solid var(--cyan); }
.lead-form { position: relative; display: grid; gap: 22px; overflow: hidden; padding: clamp(28px, 4vw, 52px); border: 1px solid rgba(89,191,212,.3); border-radius: 26px; background: var(--navy); color: white; box-shadow: 0 30px 80px rgba(6,24,39,.14); }
.lead-form::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(#000, transparent 58%); pointer-events: none; }
.lead-form > * { position: relative; z-index: 1; }
.bot-field { position: absolute; left: -9999px; }
.form-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
.form-head span { color: var(--lime); font: 700 10px "Manrope"; letter-spacing: .16em; text-transform: uppercase; }
.form-head strong { font: 700 21px "Manrope"; letter-spacing: -.03em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lead-form label { display: grid; gap: 9px; color: rgba(255,255,255,.68); font-size: 11px; letter-spacing: .04em; }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; padding: 14px 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; outline: 0; background: rgba(255,255,255,.075); color: white; font-size: 15px; transition: .2s; }
.lead-form select { color-scheme: dark; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--lime) 50%), linear-gradient(135deg, var(--lime) 50%, transparent 50%); background-position: calc(100% - 20px) 52%, calc(100% - 14px) 52%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 42px; }
.lead-form select option { background: #0c2a3c; }
.lead-form textarea { resize: vertical; min-height: 94px; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { border-color: var(--cyan); background-color: rgba(89,191,212,.12); }
.lead-form .check { grid-template-columns: 18px 1fr; gap: 10px; line-height: 1.45; letter-spacing: 0; }
.check input { width: 16px; height: 16px; accent-color: var(--lime); }
.check a { color: var(--cyan); text-decoration: underline; }
.submit-button { justify-self: start; }
.form-status { min-height: 18px; margin: -8px 0 0; color: var(--cyan-soft); font-size: 13px; }
.form-note { margin: -8px 0 0; color: rgba(255,255,255,.45); font-size: 11px; line-height: 1.5; }

.site-footer { padding: 76px clamp(22px, 8vw, 130px) 28px; background: #102e43; color: white; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-logo { width: clamp(190px, 18vw, 250px); }
.footer-top > p { max-width: 560px; margin: 0; color: rgba(255,255,255,.7); text-align: right; font: 500 21px/1.35 "Manrope"; }
.footer-main { display: grid; grid-template-columns: 1fr .75fr 1.1fr; gap: 55px; padding: 58px 0; }
.footer-company h2 { margin: 0 0 22px; font: 500 clamp(36px, 4.4vw, 62px)/1.05 "Manrope"; letter-spacing: -.04em; }
.footer-company p { margin: 0 0 10px; color: rgba(255,255,255,.72); line-height: 1.5; }
.footer-address, .footer-contact { display: grid; align-content: start; gap: 13px; font-style: normal; }
.footer-address strong { margin-bottom: 17px; font: 500 20px/1.4 "Manrope"; }
.footer-contact a { color: rgba(255,255,255,.82); overflow-wrap: anywhere; }
.footer-compliance { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; padding: 28px 0; border-block: 1px solid rgba(255,255,255,.12); }
.footer-compliance p { margin: 0; color: rgba(255,255,255,.67); line-height: 1.65; }
.footer-compliance nav { display: flex; justify-content: flex-end; align-items: start; flex-wrap: wrap; gap: 18px; }
.footer-compliance a, .footer-compliance button { border: 0; padding: 0; background: transparent; color: rgba(255,255,255,.55); font: inherit; font-size: 12px; cursor: pointer; }
.footer-bottom { padding-top: 24px; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-bottom p { margin: 0; }

.cookie-banner { position: fixed; z-index: 200; left: clamp(16px, 3vw, 34px); right: clamp(16px, 3vw, 34px); bottom: clamp(16px, 3vw, 34px); display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(6,24,39,.96); color: white; box-shadow: 0 28px 90px rgba(0,0,0,.35); backdrop-filter: blur(18px); }
.cookie-banner[hidden], .cookie-preferences[hidden] { display: none; }
.cookie-copy span { color: var(--lime); font: 700 10px "Manrope"; letter-spacing: .16em; text-transform: uppercase; }
.cookie-copy h2 { margin: 8px 0; font: 700 25px "Manrope"; letter-spacing: -.035em; }
.cookie-copy p { max-width: 760px; margin: 0; color: rgba(255,255,255,.67); font-size: 14px; line-height: 1.55; }
.cookie-copy a { display: inline-flex; margin-top: 10px; color: var(--cyan); font-size: 13px; text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 9px; min-width: 330px; }
.button-cookie { min-height: 44px; padding: 0 17px; font-size: 13px; }
.button-secondary { min-height: 44px; padding: 0 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: transparent; color: white; font-weight: 700; cursor: pointer; }
.button-secondary.is-hidden { display: none; }
.cookie-preferences { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.cookie-preferences label { display: grid; grid-template-columns: 18px 1fr; gap: 10px; padding: 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; background: rgba(255,255,255,.055); font-weight: 700; }
.cookie-preferences small { display: block; grid-column: 2; color: rgba(255,255,255,.52); font-weight: 400; }

.thanks-page { min-height: 100svh; background: var(--navy); color: white; }
.thanks-header { background: rgba(6,24,39,.45); backdrop-filter: blur(16px); }
.thanks-hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 130px clamp(22px, 8vw, 130px) 70px; }
.thanks-hero .hero-image { opacity: .72; }
.thanks-content { position: relative; z-index: 2; width: min(100%, 1100px); }
.thanks-content h1 { max-width: 1020px; margin: 23px 0; font: 600 clamp(48px, 6.1vw, 87px)/.99 "Manrope"; letter-spacing: -.06em; }
.thanks-content h1 em { color: var(--cyan-soft); font-style: normal; }
.thanks-content > p { max-width: 760px; margin: 0; color: rgba(255,255,255,.7); font-size: clamp(17px, 1.6vw, 22px); line-height: 1.6; }
.next-grid { display: grid; grid-template-columns: repeat(3, 1fr); width: min(100%, 980px); margin-top: 42px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.12); }
.next-grid article { min-height: 220px; padding: 24px; background: rgba(6,24,39,.66); backdrop-filter: blur(16px); }
.next-grid span { color: var(--lime); font: 700 11px "Manrope"; }
.next-grid h2 { margin: 48px 0 10px; font: 700 23px "Manrope"; letter-spacing: -.035em; }
.next-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.55; }
.document-downloads { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; width: min(100%, 980px); margin-top: 14px; }
.document-downloads article { display: flex; min-height: 260px; flex-direction: column; align-items: flex-start; padding: 25px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.04)); backdrop-filter: blur(16px); }
.document-downloads article > span { color: var(--lime); font: 700 10px "Manrope"; letter-spacing: .15em; }
.document-downloads h2 { margin: 29px 0 10px; font: 700 clamp(24px, 2.4vw, 34px)/1.08 "Manrope"; letter-spacing: -.04em; }
.document-downloads p { margin: 0 0 25px; color: rgba(255,255,255,.61); font-size: 14px; line-height: 1.55; }
.document-downloads .button { min-height: 48px; margin-top: auto; font-size: 13px; }
.button-ghost { border: 1px solid rgba(255,255,255,.24); background: transparent; color: white; box-shadow: none; }
.button-ghost:hover { border-color: var(--cyan); background: rgba(89,191,212,.1); color: white; box-shadow: none; }
.thanks-actions { display: flex; gap: 28px; align-items: center; margin-top: 34px; }

.legal-page { background: var(--paper); color: var(--ink); }
.legal-header { position: static; height: auto; min-height: 86px; color: white; background: var(--navy); }
.legal-main { padding: clamp(90px, 10vw, 140px) clamp(22px, 8vw, 130px); }
.legal-hero { max-width: 980px; margin-bottom: 60px; }
.legal-hero .section-kicker { margin-bottom: 22px; }
.legal-hero h1 { margin: 0 0 22px; font: 600 clamp(48px, 7vw, 92px)/.98 "Manrope"; letter-spacing: -.06em; }
.legal-hero p { max-width: 760px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.legal-content { display: grid; gap: 26px; max-width: 980px; }
.legal-card { padding: clamp(24px, 4vw, 44px); border: 1px solid var(--line); border-radius: 18px; background: white; }
.legal-card h2 { margin: 0 0 16px; font: 700 clamp(25px, 3vw, 38px)/1.1 "Manrope"; letter-spacing: -.04em; }
.legal-card h3 { margin: 24px 0 10px; font: 700 19px "Manrope"; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 15px; line-height: 1.7; }
.legal-card a { color: #268aa4; text-decoration: underline; }
.legal-note { border-color: rgba(182,219,67,.45); background: #f7faed; }
.legal-table-wrap { overflow-x: auto; }
.legal-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.legal-table th, .legal-table td { padding: 15px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 14px; line-height: 1.55; }
.legal-table th { background: var(--navy); color: white; font: 700 12px "Manrope"; text-transform: uppercase; }

.guide-page, .article-page { background: var(--paper); color: var(--ink); }
.guide-main, .article-main { padding: clamp(76px, 9vw, 132px) clamp(22px, 8vw, 130px); }
.guide-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 7vw; align-items: end; margin-bottom: 58px; }
.guide-hero h1, .article-hero h1 { margin: 24px 0; font: 600 clamp(46px, 6.5vw, 92px)/.98 "Manrope"; letter-spacing: -.06em; }
.guide-hero p, .article-hero > p { color: var(--muted); font-size: clamp(18px, 1.65vw, 22px); line-height: 1.65; }
.guide-proof { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); background: white; }
.guide-proof div { min-height: 138px; padding: 22px; border: 1px solid var(--line); }
.guide-proof span { display: block; color: var(--cyan); font: 800 10px "Manrope"; letter-spacing: .14em; }
.guide-proof strong { display: block; margin-top: 28px; font: 700 17px/1.38 "Manrope"; }
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.guide-card { position: relative; min-height: 360px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s, border-color .3s; }
.guide-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -110px; top: -110px; border-radius: 50%; background: radial-gradient(circle, rgba(89,191,212,.24), transparent 68%); transition: transform .5s; }
.guide-card:hover { transform: translateY(-6px); border-color: rgba(89,191,212,.45); box-shadow: 0 30px 70px rgba(6,24,39,.1); }
.guide-card:hover::after { transform: scale(1.3); }
.guide-card > span { color: var(--cyan); font: 700 10px "Manrope"; letter-spacing: .16em; text-transform: uppercase; }
.guide-card h2 { position: relative; z-index: 1; margin: auto 0 16px; font: 700 clamp(27px, 2.7vw, 42px)/1.03 "Manrope"; letter-spacing: -.05em; }
.guide-card h2 a:hover { color: #268aa4; }
.guide-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }
.guide-card.featured { grid-column: 1 / -1; min-height: 420px; background: linear-gradient(135deg, var(--navy), #123b53); color: white; }
.guide-card.featured > span { color: var(--lime); }
.guide-card.featured h2 { max-width: 930px; font-size: clamp(36px, 4.7vw, 68px); }
.guide-card.featured p { max-width: 740px; color: rgba(255,255,255,.65); font-size: 17px; }
.guide-cta, .article-cta { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; overflow: hidden; margin-top: 54px; padding: clamp(28px, 4vw, 48px); border-radius: 24px; background: var(--navy); color: white; }
.guide-cta::before, .article-cta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.guide-cta > *, .article-cta > * { position: relative; z-index: 1; }
.guide-cta span { color: var(--lime); font: 700 10px "Manrope"; letter-spacing: .15em; text-transform: uppercase; }
.guide-cta h2, .article-cta h2 { margin: 9px 0; max-width: 820px; font: 700 clamp(28px, 3.3vw, 48px)/1.05 "Manrope"; letter-spacing: -.05em; }
.guide-cta p, .article-cta p { margin: 0; max-width: 720px; color: rgba(255,255,255,.66); line-height: 1.65; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; max-width: 1200px; margin: 0 auto 34px; color: var(--muted); font-size: 13px; }
.breadcrumb a:hover { color: #268aa4; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(48px, 7vw, 96px); max-width: 1200px; margin: 0 auto; align-items: start; }
.article-content { min-width: 0; }
.article-hero { margin-bottom: 48px; }
.article-hero h1 { font-size: clamp(43px, 5.8vw, 78px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; color: var(--muted); font-size: 13px; }
.article-content > p, .article-content li { color: #40515d; font-size: 18px; line-height: 1.8; }
.article-content h2 { margin: 56px 0 17px; font: 700 clamp(29px, 3vw, 44px)/1.08 "Manrope"; letter-spacing: -.045em; scroll-margin-top: 100px; }
.article-content h3 { margin: 32px 0 12px; font: 700 23px/1.2 "Manrope"; letter-spacing: -.025em; }
.article-content ul, .article-content ol { padding-left: 24px; }
.article-content li { margin-bottom: 9px; }
.article-content a:not(.button) { color: #1d7e97; text-decoration: underline; text-underline-offset: 3px; }
.article-note { margin: 42px 0; padding: 26px; border-left: 4px solid var(--lime); background: white; box-shadow: 0 24px 70px rgba(6,24,39,.07); }
.article-note strong { color: var(--navy); font: 800 12px "Manrope"; letter-spacing: .12em; text-transform: uppercase; }
.article-note p { margin: 10px 0 0; color: var(--muted); line-height: 1.72; }
.article-table-wrap { margin: 30px 0; overflow-x: auto; border-radius: 15px; border: 1px solid var(--line); }
.article-table { width: 100%; min-width: 680px; border-collapse: collapse; background: white; }
.article-table th, .article-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 1.55; }
.article-table th { background: var(--navy); color: white; font: 700 12px "Manrope"; letter-spacing: .04em; text-transform: uppercase; }
.article-table td { color: #40515d; font-size: 15px; }
.article-toc { position: sticky; top: 94px; padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.article-toc > span { color: var(--cyan); font: 800 10px "Manrope"; letter-spacing: .14em; text-transform: uppercase; }
.article-toc nav { display: grid; gap: 11px; margin-top: 18px; }
.article-toc a { color: var(--muted); font-size: 13px; line-height: 1.4; }
.article-toc a:hover { color: #268aa4; }
.author-box { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; margin-top: 44px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #e9eeeb; }
.author-mark { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--lime); font: 800 15px "Manrope"; }
.author-box h2 { margin: 0 0 8px; font-size: 21px; }
.author-box p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.source-list { margin-top: 44px; padding-top: 25px; border-top: 1px solid var(--line); }
.source-list h2 { margin-top: 0; font-size: 25px; }
.source-list li { font-size: 14px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .risk-sticky { grid-template-columns: 1fr 1fr; gap: 35px; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .coverage-card.feature { grid-row: span 1; min-height: 420px; }
  .high-risk-grid { grid-template-columns: repeat(2, 1fr); }
  .professions { grid-template-columns: 1fr; }
  .profession-media { min-height: 580px; }
  .fit-grid, .broker-grid { grid-template-columns: 1fr 1fr; }
  .contact, .guide-strip { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; order: -1; }
}

@media (max-width: 760px) {
  .site-header { height: 72px; padding-inline: 18px; }
  .site-header .button-small { min-height: 38px; padding-inline: 13px; font-size: 11px; }
  .logo { width: 137px; }
  .hero { min-height: 920px; align-items: flex-start; padding: 118px 20px 54px; }
  .hero-image { background: linear-gradient(180deg, rgba(6,24,39,.72), rgba(6,24,39,.92) 50%, rgba(6,24,39,1) 75%), url("assets/hero-tecnici.jpg") 64% top / auto 55% no-repeat; }
  .survey-field { opacity: .52; mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,.65) 52%, transparent 78%); }
  .hero h1 { font-size: clamp(45px, 12.3vw, 65px); }
  .hero-copy { font-size: 17px; }
  .hero-actions, .thanks-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 42px; }
  .hero-proof div { min-height: 75px; }
  .scroll-cue { display: none; }
  .section-pad { padding: 82px 20px; }
  .intro-layout, .coverage-heading, .broker-layout { grid-template-columns: 1fr; gap: 38px; }
  .intro h2, .coverage h2, .professions h2, .fit h2, .contact h2 { font-size: clamp(40px, 11vw, 56px); }
  .risk-story { height: auto; }
  .risk-sticky { position: relative; height: auto; grid-template-columns: 1fr; padding: 92px 20px; }
  .risk-visual { min-height: 420px; }
  .risk-step { opacity: 1; }
  .risk-label { opacity: 1; transform: none; }
  .fault-line { transform: rotate(18deg) scaleY(1); }
  .coverage-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .coverage-card, .coverage-card.feature { min-height: 340px; }
  .high-risk { padding: 84px 20px; }
  .high-risk-head { grid-template-columns: 1fr; gap: 35px; }
  .high-risk-head h2 { font-size: clamp(41px, 11vw, 58px); }
  .high-risk-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .high-risk-card, .high-risk-callout { min-height: 300px; }
  .professions { padding-inline: 20px; }
  .profession-media { min-height: 430px; border-radius: 22px; }
  .fit-copy { align-items: flex-start; flex-direction: column; }
  .ticker-wrap { margin-top: 55px; margin-bottom: 48px; }
  .fit-grid, .broker-grid { grid-template-columns: 1fr; }
  .fit-item, .broker-card { min-height: 240px; }
  .fit-item h3, .broker-card h3 { margin-top: 58px; }
  .method { padding: 85px 20px; }
  .broker-grid { margin-top: 52px; }
  .form-row { grid-template-columns: 1fr; }
  .form-head { align-items: flex-start; flex-direction: column; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 34px; }
  .footer-top > p { text-align: left; }
  .footer-main, .footer-compliance { grid-template-columns: 1fr; }
  .footer-compliance nav { justify-content: flex-start; }
  .cookie-banner { grid-template-columns: 1fr; max-height: calc(100vh - 24px); overflow-y: auto; }
  .cookie-actions { justify-content: flex-start; min-width: 0; }
  .cookie-preferences { grid-template-columns: 1fr; }
  .thanks-hero { align-items: flex-start; padding: 118px 20px 60px; }
  .thanks-content h1 { font-size: clamp(44px, 12vw, 62px); }
  .next-grid { grid-template-columns: 1fr; }
  .next-grid article { min-height: 190px; }
  .document-downloads { grid-template-columns: 1fr; }
  .guide-main, .article-main { padding: 72px 20px; }
  .guide-hero { grid-template-columns: 1fr; }
  .guide-proof { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card.featured { grid-column: auto; min-height: 460px; }
  .guide-card { min-height: 315px; }
  .guide-cta, .article-cta { grid-template-columns: 1fr; }
  .article-content > p, .article-content li { font-size: 16px; }
  .article-hero h1 { font-size: clamp(41px, 11.5vw, 60px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker { animation: none; }
  .coverage-card { transition: none; }
  .coverage-card:hover, .coverage-card.is-pointer-active { translate: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
