@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root{
  --ink:#0b1830;
  --ink-2:#243047;
  --blue-950:#0a285a;
  --blue-900:#0f336d;
  --blue-800:#154487;
  --blue-700:#1b4e9b;
  --blue-600:#2868bd;
  --blue-500:#3d7fd5;
  --sky:#eaf3ff;
  --ice:#f5f8fc;
  --line:#dfe7f2;
  --white:#fff;
  --muted:#68758a;
  --success:#25d366;
  --shadow:0 22px 70px rgba(9,42,91,.12);
  --shadow-sm:0 12px 30px rgba(9,42,91,.09);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:18px;
  --max:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Manrope,system-ui,-apple-system,Segoe UI,sans-serif;color:var(--ink);background:#fff;line-height:1.65;-webkit-font-smoothing:antialiased}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea,select{font:inherit}
.container{width:min(calc(100% - 40px),var(--max));margin-inline:auto}
.section{padding:96px 0;position:relative}
.section-sm{padding:68px 0}
.eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:.78rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--blue-700);margin-bottom:16px}
.eyebrow:before{content:"";width:26px;height:2px;border-radius:2px;background:linear-gradient(90deg,var(--blue-900),var(--blue-500))}
h1,h2,h3{font-family:"Space Grotesk",Manrope,sans-serif;line-height:1.08;margin:0;color:var(--ink)}
h1{font-size:clamp(2.7rem,6vw,5.8rem);letter-spacing:-.055em}
h2{font-size:clamp(2rem,4vw,3.55rem);letter-spacing:-.045em}
h3{font-size:1.25rem;letter-spacing:-.025em}
p{margin:0;color:var(--ink-2)}
.lead{font-size:clamp(1.03rem,1.5vw,1.25rem);color:#4e5b70;max-width:760px}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:42px}
.section-head .lead{max-width:560px}

/* header */
.site-header{position:sticky;top:0;z-index:80;background:rgba(255,255,255,.88);backdrop-filter:blur(18px);border-bottom:1px solid rgba(223,231,242,.82)}
.nav{height:84px;display:flex;align-items:center;justify-content:space-between;gap:30px}
.brand{display:flex;align-items:center;min-width:190px}
.brand img{width:225px;height:auto;max-height:62px}
.nav-links{display:flex;align-items:center;gap:7px}
.nav-links a{font-size:.94rem;font-weight:700;padding:10px 13px;border-radius:999px;color:#2b3850;transition:.25s ease}
.nav-links a:hover,.nav-links a.active{background:var(--sky);color:var(--blue-900)}
.nav-actions{display:flex;align-items:center;gap:10px}
.nav-toggle{display:none;width:48px;height:48px;border:1px solid var(--line);border-radius:14px;background:#fff;align-items:center;justify-content:center;cursor:pointer}
.nav-toggle span,.nav-toggle span:before,.nav-toggle span:after{display:block;width:21px;height:2px;background:var(--ink);border-radius:2px;position:relative;transition:.25s}
.nav-toggle span:before,.nav-toggle span:after{content:"";position:absolute;left:0}
.nav-toggle span:before{top:-7px}.nav-toggle span:after{top:7px}
.menu-open .nav-toggle span{background:transparent}.menu-open .nav-toggle span:before{transform:translateY(7px) rotate(45deg)}.menu-open .nav-toggle span:after{transform:translateY(-7px) rotate(-45deg)}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;border:0;border-radius:999px;padding:14px 20px;font-weight:800;font-size:.93rem;cursor:pointer;transition:transform .25s ease,box-shadow .25s ease,background .25s ease}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:linear-gradient(135deg,var(--blue-900),var(--blue-600));color:#fff;box-shadow:0 12px 30px rgba(27,78,155,.25)}
.btn-primary:hover{box-shadow:0 18px 38px rgba(27,78,155,.34)}
.btn-light{background:#fff;color:var(--blue-900);box-shadow:var(--shadow-sm)}
.btn-ghost{background:transparent;border:1px solid var(--line);color:var(--ink)}
.btn svg{width:18px;height:18px}

/* homepage hero */
.hero{padding:52px 0 66px;overflow:hidden;background:
  radial-gradient(circle at 86% 12%,rgba(61,127,213,.20),transparent 27%),
  linear-gradient(180deg,#fff 0%,#f5f9ff 100%)}
.hero:before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.32;background-image:repeating-linear-gradient(90deg,rgba(15,51,109,.025) 0 1px,transparent 1px 7px),repeating-linear-gradient(0deg,rgba(15,51,109,.025) 0 1px,transparent 1px 7px)}
.hero-grid{position:relative;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);gap:56px;align-items:center;min-height:640px}
.hero-copy{z-index:2}
.hero h1 span{display:block;color:var(--blue-700)}
.hero-copy .lead{margin-top:24px;max-width:650px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:32px}
.hero-badge{display:flex;align-items:center;gap:8px;background:#fff;border:1px solid var(--line);border-radius:999px;padding:9px 13px;font-weight:700;font-size:.84rem;color:#344159;box-shadow:0 8px 25px rgba(12,42,86,.06)}
.hero-badge i{color:var(--blue-600)}
.hero-visual{position:relative;height:590px}
.hero-main-card{position:absolute;right:0;top:0;width:86%;height:78%;border-radius:42px;overflow:hidden;box-shadow:0 35px 90px rgba(7,41,88,.22);background:var(--blue-900)}
.hero-main-card img{width:100%;height:100%;object-fit:cover}
.hero-main-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 48%,rgba(7,30,65,.58));pointer-events:none}
.hero-float{position:absolute;left:0;bottom:28px;width:50%;padding:22px;border-radius:26px;background:rgba(255,255,255,.95);backdrop-filter:blur(12px);box-shadow:var(--shadow);z-index:4}
.hero-float strong{font-family:"Space Grotesk";font-size:1.15rem;display:block;margin-bottom:4px}.hero-float span{font-size:.86rem;color:var(--muted)}
.hero-product{position:absolute;right:-2px;bottom:0;width:43%;height:215px;border-radius:28px;overflow:hidden;border:8px solid #f5f9ff;box-shadow:var(--shadow-sm);z-index:3}
.hero-product img{width:100%;height:100%;object-fit:cover}

/* stats ribbon */
.trust-strip{margin-top:-1px;background:var(--blue-950);color:#fff;position:relative;overflow:hidden}
.trust-strip:after{content:"";position:absolute;inset:0;opacity:.12;background:repeating-linear-gradient(135deg,#fff 0 1px,transparent 1px 10px)}
.trust-grid{position:relative;z-index:1;display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{padding:28px 26px;border-right:1px solid rgba(255,255,255,.13);display:flex;gap:14px;align-items:center}
.trust-item:last-child{border-right:0}.trust-item i{font-size:1.5rem;color:#8ec1ff}.trust-item strong{display:block;font-size:.98rem}.trust-item span{display:block;color:#b8cae3;font-size:.8rem;margin-top:2px}

/* bento */
.bento{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-rows:minmax(120px,auto);gap:18px}
.bento-card{border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;position:relative;background:#fff;box-shadow:0 10px 34px rgba(11,46,95,.06);transition:.3s ease}
.bento-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-sm);border-color:#c8d8ee}
.bento-card.large{grid-column:span 6;grid-row:span 2}.bento-card.medium{grid-column:span 3}.bento-card.wide{grid-column:span 6}.bento-card.tall{grid-column:span 3;grid-row:span 2}
.bento-image{height:245px;overflow:hidden;background:#0f4f96}.bento-image img{width:100%;height:100%;object-fit:cover;transition:.5s ease}.bento-card:hover .bento-image img{transform:scale(1.035)}
.bento-body{padding:24px}.bento-body p{margin-top:10px;font-size:.93rem;color:var(--muted)}
.card-link{display:inline-flex;gap:8px;align-items:center;margin-top:18px;font-weight:800;font-size:.9rem;color:var(--blue-700)}
.card-link i{transition:.25s}.bento-card:hover .card-link i{transform:translateX(4px)}

/* product cards */
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.product-card{position:relative;border:1px solid var(--line);border-radius:28px;overflow:hidden;background:#fff;box-shadow:0 12px 34px rgba(12,49,101,.07);transition:.3s ease}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.product-photo{height:280px;background:linear-gradient(160deg,#0f4b90,#2868bd);overflow:hidden}.product-photo img{width:100%;height:100%;object-fit:cover;transition:.5s ease}.product-card:hover img{transform:scale(1.035)}
.product-content{padding:25px}.product-num{position:absolute;right:20px;top:20px;width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.9);backdrop-filter:blur(10px);font-family:"Space Grotesk";font-size:.8rem;font-weight:800;color:var(--blue-900)}
.product-content ul{list-style:none;margin:15px 0 0;padding:0}.product-content li{position:relative;padding-left:20px;margin:7px 0;color:#5b687b;font-size:.9rem}.product-content li:before{content:"";position:absolute;left:0;top:.66em;width:7px;height:7px;border-radius:50%;background:var(--blue-600)}

/* dark feature */
.dark-feature{background:linear-gradient(135deg,#071c40 0%,#0f336d 58%,#154b96 100%);color:#fff;overflow:hidden}
.dark-feature:before{content:"";position:absolute;width:520px;height:520px;border-radius:50%;right:-160px;top:-180px;border:1px solid rgba(255,255,255,.12);box-shadow:0 0 0 70px rgba(255,255,255,.035),0 0 0 140px rgba(255,255,255,.025)}
.dark-feature h2,.dark-feature h3{color:#fff}.dark-feature p{color:#c9d6e9}.dark-grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.feature-image{border-radius:32px;overflow:hidden;min-height:430px;box-shadow:0 30px 90px rgba(0,0,0,.28)}.feature-image img{width:100%;height:100%;min-height:430px;object-fit:cover}
.feature-points{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:28px}.feature-point{padding:17px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.055);border-radius:17px;display:flex;gap:11px;align-items:flex-start}.feature-point i{margin-top:3px;color:#8ec1ff}.feature-point strong{font-size:.9rem;color:#fff}.feature-point span{display:block;color:#abc0dc;font-size:.78rem;margin-top:3px}

/* segments */
.segment-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.segment-card{min-height:190px;padding:24px;border-radius:22px;background:#fff;border:1px solid var(--line);position:relative;overflow:hidden;transition:.25s ease}.segment-card:before{content:"";position:absolute;width:80px;height:80px;right:-20px;bottom:-20px;border-radius:50%;background:var(--sky);transition:.3s ease}.segment-card:hover{border-color:#b8cce6;transform:translateY(-4px)}.segment-card:hover:before{transform:scale(1.45);background:#dbeaff}.segment-icon{width:46px;height:46px;border-radius:14px;background:var(--sky);color:var(--blue-800);display:grid;place-items:center;font-size:1.3rem;margin-bottom:24px}.segment-card p{font-size:.84rem;color:var(--muted);margin-top:7px;position:relative;z-index:1}.segment-card h3{position:relative;z-index:1}

/* chips */
.chips{display:flex;flex-wrap:wrap;gap:10px}.chip{padding:11px 15px;border-radius:999px;border:1px solid var(--line);background:#fff;font-weight:700;font-size:.86rem;color:#3f4e65;box-shadow:0 7px 20px rgba(12,49,101,.04)}

/* gallery */
.gallery{display:grid;grid-template-columns:repeat(12,1fr);gap:14px}.gallery a{display:block;overflow:hidden;border-radius:20px;position:relative;background:#eaf0f8}.gallery a:nth-child(1),.gallery a:nth-child(6){grid-column:span 6}.gallery a:nth-child(2),.gallery a:nth-child(3),.gallery a:nth-child(4),.gallery a:nth-child(5),.gallery a:nth-child(7),.gallery a:nth-child(8),.gallery a:nth-child(9){grid-column:span 3}.gallery img{width:100%;height:245px;object-fit:cover;transition:.4s}.gallery a:nth-child(1) img,.gallery a:nth-child(6) img{height:340px}.gallery a:hover img{transform:scale(1.04)}.gallery a:after{content:"↗";position:absolute;right:14px;top:14px;width:38px;height:38px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.9);font-weight:800;color:var(--blue-900);opacity:0;transform:translateY(-8px);transition:.25s}.gallery a:hover:after{opacity:1;transform:none}

/* lightbox */
.lightbox{position:fixed;inset:0;background:rgba(5,14,31,.92);z-index:100;display:none;align-items:center;justify-content:center;padding:30px}.lightbox.open{display:flex}.lightbox img{max-width:min(1100px,92vw);max-height:84vh;border-radius:20px;box-shadow:0 30px 100px #000}.lightbox-close{position:absolute;right:24px;top:24px;width:48px;height:48px;border:1px solid rgba(255,255,255,.25);border-radius:50%;background:rgba(255,255,255,.08);color:#fff;font-size:1.35rem;cursor:pointer}

/* inner hero */
.page-hero{padding:80px 0 64px;background:linear-gradient(135deg,#f8fbff,#eaf3ff);position:relative;overflow:hidden}.page-hero:after{content:"";position:absolute;right:-120px;top:-180px;width:520px;height:520px;border-radius:50%;border:1px solid rgba(27,78,155,.11);box-shadow:0 0 0 75px rgba(27,78,155,.035),0 0 0 150px rgba(27,78,155,.025)}.page-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:center}.page-hero .lead{margin-top:20px}.page-hero-media{height:360px;border-radius:32px;overflow:hidden;box-shadow:var(--shadow)}.page-hero-media img{width:100%;height:100%;object-fit:cover}

/* content blocks */
.split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}.split-media{border-radius:30px;overflow:hidden;box-shadow:var(--shadow-sm)}.split-media img{width:100%;height:100%;min-height:420px;object-fit:cover}.check-list{list-style:none;padding:0;margin:24px 0 0}.check-list li{display:flex;gap:12px;align-items:flex-start;margin:12px 0;color:#48566b}.check-list i{margin-top:4px;color:var(--blue-600)}
.mission-card{padding:40px;border-radius:28px;background:linear-gradient(145deg,var(--blue-950),var(--blue-700));color:#fff;position:relative;overflow:hidden}.mission-card h3{font-size:2rem;color:#fff}.mission-card p{color:#d4e1f1;margin-top:14px}.mission-card:after{content:"";position:absolute;width:190px;height:190px;right:-65px;bottom:-65px;border-radius:50%;border:1px solid rgba(255,255,255,.18);box-shadow:0 0 0 35px rgba(255,255,255,.04)}

/* contact */
.contact-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:30px;align-items:start}.contact-panel{padding:32px;border:1px solid var(--line);border-radius:28px;background:#fff;box-shadow:var(--shadow-sm)}.contact-list{display:grid;gap:14px;margin-top:25px}.contact-item{display:flex;gap:14px;padding:16px;border-radius:16px;background:var(--ice)}.contact-item i{width:36px;height:36px;display:grid;place-items:center;border-radius:11px;background:#fff;color:var(--blue-700);flex:0 0 auto}.contact-item strong{display:block;font-size:.85rem}.contact-item span,.contact-item a{font-size:.86rem;color:#59677c}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.field{display:flex;flex-direction:column;gap:7px}.field.full{grid-column:1/-1}.field label{font-size:.8rem;font-weight:800;color:#435169}.field input,.field textarea,.field select{width:100%;border:1px solid #dce5f0;background:#fbfdff;border-radius:14px;padding:13px 14px;outline:none;transition:.2s;color:var(--ink)}.field textarea{min-height:145px;resize:vertical}.field input:focus,.field textarea:focus,.field select:focus{border-color:#8eb5e9;box-shadow:0 0 0 4px rgba(40,104,189,.09)}
.map-wrap{margin-top:28px;border-radius:28px;overflow:hidden;border:1px solid var(--line);height:430px}.map-wrap iframe{width:100%;height:100%;border:0}

/* FAQ */
.faq{display:grid;gap:12px;max-width:900px;margin:0 auto}.faq-item{border:1px solid var(--line);border-radius:18px;background:#fff;overflow:hidden}.faq-q{width:100%;border:0;background:none;text-align:left;padding:20px 22px;display:flex;justify-content:space-between;gap:20px;align-items:center;font-weight:800;color:var(--ink);cursor:pointer}.faq-q i{transition:.25s}.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}.faq-a p{padding:0 22px 22px;color:#5b687c;font-size:.92rem}.faq-item.open .faq-a{max-height:220px}.faq-item.open .faq-q i{transform:rotate(45deg)}

/* CTA */
.cta-box{padding:48px;border-radius:32px;background:linear-gradient(135deg,#0b2a5e,#1b4e9b 65%,#2868bd);color:#fff;display:flex;justify-content:space-between;align-items:center;gap:35px;position:relative;overflow:hidden}.cta-box:after{content:"";position:absolute;right:-80px;top:-80px;width:260px;height:260px;border-radius:50%;border:1px solid rgba(255,255,255,.15);box-shadow:0 0 0 42px rgba(255,255,255,.035)}.cta-box h2{color:#fff;font-size:clamp(2rem,3.8vw,3.2rem)}.cta-box p{color:#c8d8ec;margin-top:10px;max-width:680px}.cta-actions{display:flex;gap:10px;position:relative;z-index:1;flex:0 0 auto}

/* footer */
.footer{background:#07172f;color:#fff;padding:70px 0 24px}.footer-grid{display:grid;grid-template-columns:1.4fr .7fr .8fr 1fr;gap:50px}.footer .brand img{filter:brightness(0) invert(1);opacity:.95}.footer p,.footer a{color:#aebbd0;font-size:.86rem}.footer h4{font-family:"Space Grotesk";margin:0 0 16px;font-size:.95rem}.footer-links{display:grid;gap:8px}.footer-links a:hover{color:#fff}.footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:44px;padding-top:20px;display:flex;justify-content:space-between;gap:20px;align-items:center;color:#8293ad;font-size:.78rem}

/* floating whatsapp */
.whatsapp-float{position:fixed;right:22px;bottom:22px;z-index:75;display:flex;align-items:center;gap:10px;background:#25d366;color:#fff;padding:14px 18px;border-radius:999px;font-weight:800;box-shadow:0 15px 38px rgba(37,211,102,.30);transition:.25s}.whatsapp-float:hover{transform:translateY(-3px);box-shadow:0 20px 48px rgba(37,211,102,.38)}.whatsapp-float i{font-size:1.2rem}

/* reveal */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease}.reveal.visible{opacity:1;transform:none}

/* utility */
.bg-soft{background:var(--ice)}.text-center{text-align:center}.mx-auto{margin-inline:auto}.mt-24{margin-top:24px}.mt-36{margin-top:36px}
.note{font-size:.78rem;color:#7a879a}

@media (max-width:1020px){
  .nav-links{position:fixed;left:20px;right:20px;top:94px;background:#fff;border:1px solid var(--line);border-radius:24px;padding:18px;box-shadow:var(--shadow);display:grid;gap:6px;opacity:0;transform:translateY(-10px);pointer-events:none;transition:.25s}.menu-open .nav-links{opacity:1;transform:none;pointer-events:auto}.nav-links a{padding:13px 15px}.nav-toggle{display:flex}.nav-actions .btn{display:none}
  .hero-grid{grid-template-columns:1fr;min-height:0}.hero-copy{padding-top:15px}.hero-visual{height:520px;max-width:760px;width:100%;margin-inline:auto}.hero-main-card{width:90%}
  .trust-grid{grid-template-columns:1fr 1fr}.trust-item:nth-child(2){border-right:0}.trust-item:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.13)}
  .product-grid{grid-template-columns:1fr 1fr}.segment-grid{grid-template-columns:1fr 1fr}.bento-card.large,.bento-card.wide{grid-column:span 12}.bento-card.medium,.bento-card.tall{grid-column:span 6}
  .dark-grid,.split,.page-hero-grid,.contact-grid{grid-template-columns:1fr}.page-hero-media{height:330px}.feature-image{min-height:360px}.feature-image img{min-height:360px}.split-media img{min-height:360px}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr}.footer-grid>div:last-child{grid-column:1/-1}.cta-box{align-items:flex-start;flex-direction:column}.cta-actions{flex-wrap:wrap}
  .gallery a:nth-child(n){grid-column:span 6}.gallery a:nth-child(n) img{height:280px}
}

@media (max-width:680px){
  .container{width:min(calc(100% - 28px),var(--max))}.section{padding:72px 0}.section-sm{padding:54px 0}.nav{height:74px}.brand img{width:180px;max-height:54px}.nav-links{top:84px;left:14px;right:14px}
  h1{font-size:clamp(2.5rem,13vw,4rem)}h2{font-size:clamp(1.9rem,9vw,2.75rem)}.section-head{display:block}.section-head .lead{margin-top:16px}
  .hero{padding-top:30px}.hero-grid{gap:35px}.hero-visual{height:430px}.hero-main-card{width:94%;height:72%;border-radius:28px}.hero-float{width:68%;padding:16px;bottom:28px;border-radius:20px}.hero-product{width:43%;height:160px;border-width:5px;border-radius:20px}.hero-actions .btn{width:100%}.hero-badges{gap:7px}.hero-badge{font-size:.75rem;padding:8px 10px}
  .trust-grid{grid-template-columns:1fr}.trust-item{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.13)}.trust-item:last-child{border-bottom:0}
  .product-grid,.segment-grid{grid-template-columns:1fr}.product-photo{height:255px}.bento{display:grid;grid-template-columns:1fr}.bento-card.large,.bento-card.medium,.bento-card.wide,.bento-card.tall{grid-column:auto;grid-row:auto}.bento-image{height:230px}
  .dark-grid{gap:35px}.feature-points{grid-template-columns:1fr}.feature-image{min-height:310px}.feature-image img{min-height:310px}.mission-card{padding:28px}
  .gallery a:nth-child(n){grid-column:span 12}.gallery a:nth-child(n) img{height:245px}
  .form-grid{grid-template-columns:1fr}.field.full{grid-column:auto}.contact-panel{padding:22px}.map-wrap{height:350px}.cta-box{padding:32px 24px;border-radius:25px}.cta-actions{width:100%}.cta-actions .btn{width:100%}
  .footer-grid{grid-template-columns:1fr;gap:30px}.footer-grid>div:last-child{grid-column:auto}.footer-bottom{display:block}.footer-bottom span{display:block;margin-top:8px}.whatsapp-float{width:54px;height:54px;padding:0;justify-content:center;border-radius:50%;right:16px;bottom:16px}.whatsapp-float span{display:none}
}

@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important}.reveal{opacity:1;transform:none}}


/* ========== AWAL RÁFIA V3 ========== */
:root{--v3-blue:#0c3474;--v3-cobalt:#1458ad;--v3-ink:#071a35;--v3-cyan:#69b8ff;--v3-sand:#f2f5f8}
html{scroll-padding-top:128px}.skip-link{position:fixed;left:12px;top:-80px;z-index:999;background:#fff;color:var(--v3-ink);padding:10px 14px;border-radius:10px;box-shadow:var(--shadow);font-weight:800}.skip-link:focus{top:12px}.topline{height:36px;background:#071a35;color:#d8e5f4;font-size:.72rem;letter-spacing:.01em}.topline-inner{height:36px;display:flex;align-items:center;gap:28px}.topline span,.topline a{display:inline-flex;align-items:center;gap:7px}.topline svg{width:14px;height:14px}.topline a{margin-left:auto;color:#fff;font-weight:800}.site-header{top:36px}.site-header.scrolled{box-shadow:0 14px 40px rgba(7,26,53,.08)}

.hero-v3{position:relative;overflow:hidden;background:linear-gradient(110deg,#f8fbff 0%,#f8fbff 56%,#eaf3ff 56%,#eef6ff 100%);padding:42px 0 58px}.hero-v3:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(10,53,112,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(10,53,112,.035) 1px,transparent 1px);background-size:38px 38px;mask-image:linear-gradient(90deg,#000,transparent 75%)}.hero-v3-grid{position:relative;display:grid;grid-template-columns:.92fr 1.08fr;gap:58px;align-items:center;min-height:650px}.hero-v3-copy{position:relative;z-index:2}.hero-kicker{display:inline-flex;align-items:center;gap:9px;text-transform:uppercase;letter-spacing:.14em;font-size:.72rem;font-weight:900;color:#2c5e99;margin-bottom:20px}.pulse-dot{width:8px;height:8px;background:#2f8bed;border-radius:50%;box-shadow:0 0 0 6px rgba(47,139,237,.1)}.hero-v3 h1{max-width:760px;font-size:clamp(3.2rem,5.7vw,6.25rem);line-height:.94;letter-spacing:-.058em}.hero-v3 h1 em{font-style:normal;color:var(--v3-cobalt);position:relative}.hero-v3-copy>p{font-size:1.06rem;line-height:1.78;color:#53647a;max-width:650px;margin-top:24px}.btn-xl{padding:16px 22px}.text-link{display:inline-flex;align-items:center;gap:8px;font-weight:850;color:var(--v3-ink);padding:12px 2px;border-bottom:1px solid #b8c8db}.text-link svg{width:17px}.hero-proof{display:flex;margin-top:42px;padding-top:24px;border-top:1px solid #cfdae7;max-width:650px}.hero-proof>div{display:grid;gap:2px;padding:0 26px;border-right:1px solid #d6e0eb}.hero-proof>div:first-child{padding-left:0}.hero-proof>div:last-child{border-right:0}.hero-proof strong{font:800 1.6rem/1 "Space Grotesk",sans-serif;color:var(--v3-ink)}.hero-proof span{font-size:.72rem;color:#687990}
.hero-v3-media{height:610px;position:relative}.hero-photo{position:absolute;overflow:hidden;background:#fff;box-shadow:0 30px 70px rgba(10,45,95,.16)}.hero-photo img{width:100%;height:100%;object-fit:cover}.hero-photo-main{inset:0 5% 7% 12%;border-radius:38px 8px 38px 38px}.hero-photo-main:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 60%,rgba(5,25,58,.38))}.hero-photo-small{width:34%;height:35%;left:0;bottom:0;border:7px solid #fff;border-radius:22px}.hero-spec{position:absolute;right:0;top:12%;width:220px;padding:18px;border-radius:17px;background:rgba(7,26,53,.94);color:#fff;box-shadow:0 20px 50px rgba(7,26,53,.2)}.hero-spec span{font-size:.63rem;font-weight:900;letter-spacing:.13em;color:#83c6ff}.hero-spec strong{display:block;font-size:.82rem;line-height:1.45;margin-top:7px}.weave-mark{position:absolute;right:-14px;bottom:0;width:120px;height:120px;opacity:.32;background-image:repeating-linear-gradient(0deg,#175aa7 0 5px,transparent 5px 12px),repeating-linear-gradient(90deg,#175aa7 0 5px,transparent 5px 12px);transform:rotate(7deg);border-radius:20px}

.category-rail{background:#fff;border-top:1px solid #e3eaf2;border-bottom:1px solid #e3eaf2}.category-rail-inner{display:grid;grid-template-columns:repeat(6,1fr)}.category-rail a{padding:19px 16px;border-right:1px solid #e3eaf2;display:flex;gap:9px;align-items:center;font-size:.78rem;font-weight:850;color:#364a64;transition:.25s}.category-rail a:first-of-type{border-left:1px solid #e3eaf2}.category-rail a:hover{background:#0d397c;color:#fff}.category-rail span{font-size:.62rem;color:#2d76cc;font-weight:900}.category-rail a:hover span{color:#88c5ff}

.v3-products{background:#fff}.product-showcase{display:grid;grid-template-columns:1.15fr .85fr .85fr;grid-auto-rows:290px;gap:16px}.showcase-card{position:relative;border-radius:24px;overflow:hidden;background:#edf3f8;box-shadow:0 10px 35px rgba(10,45,95,.06)}.showcase-card img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}.showcase-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 38%,rgba(5,20,43,.78) 100%)}.showcase-card:hover img{transform:scale(1.045)}.showcase-large{grid-row:span 2}.showcase-wide{grid-column:span 2}.showcase-overlay{position:absolute;z-index:2;inset:auto 20px 20px 20px;color:#fff}.showcase-overlay span{font-size:.68rem;font-weight:900;letter-spacing:.13em;color:#9bd0ff}.showcase-overlay h3{font-size:1.3rem;color:#fff;margin-top:4px}.showcase-large .showcase-overlay h3{font-size:1.75rem}.showcase-overlay p{font-size:.78rem;color:#d7e3ef;margin-top:3px}.showcase-overlay svg{position:absolute;right:0;bottom:3px;width:20px}.section-action{display:flex;justify-content:center;margin-top:30px}

.craft-section{background:#071a35;color:#fff;position:relative;overflow:hidden}.craft-section:before{content:"AWAL";position:absolute;left:-10px;bottom:-48px;font:900 clamp(8rem,22vw,22rem)/1 "Space Grotesk",sans-serif;letter-spacing:-.08em;color:rgba(255,255,255,.025)}.craft-grid{position:relative;display:grid;grid-template-columns:.82fr 1.18fr;gap:70px;align-items:center}.craft-copy h2{color:#fff;margin-top:14px}.craft-copy p{color:#bdcadb;line-height:1.75;margin:22px 0 28px}.eyebrow.light{color:#84c5ff}.craft-bento{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:245px 245px;gap:14px}.craft-img{position:relative;margin:0;border-radius:22px;overflow:hidden}.craft-img.big{grid-row:span 2}.craft-img img{width:100%;height:100%;object-fit:cover}.craft-img:after{content:"";position:absolute;inset:0;background:linear-gradient(transparent 58%,rgba(2,12,28,.7))}.craft-img figcaption{position:absolute;z-index:2;left:17px;bottom:15px;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}

.segment-mosaic{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.segment-tile{min-height:190px;padding:22px;border:1px solid #dfe8f2;border-radius:22px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;transition:.25s;position:relative;overflow:hidden}.segment-tile.s1,.segment-tile.s2{grid-column:span 2;min-height:245px}.segment-tile:hover{transform:translateY(-4px);border-color:#a9c9ed;box-shadow:0 18px 45px rgba(8,47,101,.09)}.segment-tile>svg{width:28px;height:28px;color:#1e67ba}.segment-tile span{font-size:.64rem;color:#6193ca;font-weight:900;letter-spacing:.1em}.segment-tile h3{font-size:1.22rem;margin-top:4px}.segment-tile.s1 h3,.segment-tile.s2 h3{font-size:1.7rem}.segment-tile p{font-size:.8rem;color:#6d7b8e;margin-top:6px}

.process-section{background:#f4f7fa}.process-head{max-width:760px}.process-head p{color:#607086;margin-top:13px}.process-grid{display:grid;grid-template-columns:repeat(4,1fr);margin-top:42px;border-top:1px solid #d3deea}.process-step{padding:28px 24px 8px 0;position:relative}.process-step:before{content:"";position:absolute;top:-5px;left:0;width:9px;height:9px;border-radius:50%;background:#1768bc;box-shadow:0 0 0 5px #e0edfa}.process-step>span{font-size:.65rem;letter-spacing:.12em;color:#7191b5;font-weight:900}.process-step svg{display:block;width:31px;height:31px;color:#155eae;margin:21px 0 16px}.process-step h3{font-size:1.1rem}.process-step p{font-size:.8rem;line-height:1.65;color:#6f7d90;margin-top:7px;max-width:220px}

.company-stage-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:62px;align-items:center}.company-stage-media{height:520px;position:relative}.company-stage-media>img{width:100%;height:100%;object-fit:cover;border-radius:34px}.company-label{position:absolute;left:24px;right:24px;bottom:24px;background:rgba(255,255,255,.92);backdrop-filter:blur(12px);border-radius:18px;padding:17px 19px;display:flex;justify-content:space-between;align-items:center;gap:20px}.company-label strong{font-family:"Space Grotesk"}.company-label span{font-size:.76rem;color:#657388}.company-stage-copy>.lead{margin:18px 0 27px}.mini-features{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:26px}.mini-features>div{border:1px solid #e0e7ef;border-radius:17px;padding:17px}.mini-features svg{width:22px;color:#1a64b7}.mini-features strong{display:block;font-size:.82rem;margin-top:12px}.mini-features span{display:block;font-size:.68rem;color:#718096;line-height:1.45;margin-top:4px}

.cta-v3{min-height:310px;border-radius:34px;background:linear-gradient(125deg,#0a2e66,#1358ad);color:#fff;display:grid;grid-template-columns:.55fr 1.5fr .75fr;gap:42px;align-items:center;padding:45px;overflow:hidden;position:relative}.cta-v3:after{content:"";position:absolute;right:-100px;top:-160px;width:420px;height:420px;border-radius:50%;border:1px solid rgba(255,255,255,.12);box-shadow:0 0 0 70px rgba(255,255,255,.025),0 0 0 140px rgba(255,255,255,.02)}.cta-v3-mark{font:900 5rem/1 "Space Grotesk";letter-spacing:-.08em;writing-mode:vertical-rl;transform:rotate(180deg);color:rgba(255,255,255,.12)}.cta-v3 h2{color:#fff}.cta-v3 p{color:#c8d8ea;margin-top:10px}.cta-v3-actions{position:relative;z-index:2;display:grid;gap:10px}.btn-outline-light{border:1px solid rgba(255,255,255,.3);color:#fff;background:transparent}.btn-outline-light:hover{background:#fff;color:#0b3979}.faq-v3{padding-top:85px}

.product-jump{position:sticky;top:106px;z-index:30;background:rgba(255,255,255,.94);backdrop-filter:blur(16px);border-bottom:1px solid #e2e9f1}.product-jump-inner{display:flex;align-items:center;gap:8px;overflow-x:auto;padding-top:10px;padding-bottom:10px;scrollbar-width:none}.product-jump-inner::-webkit-scrollbar{display:none}.product-jump span{font-size:.7rem;font-weight:900;text-transform:uppercase;letter-spacing:.1em;color:#7b899b;margin-right:5px;white-space:nowrap}.product-jump a{font-size:.72rem;font-weight:800;color:#3f536e;padding:8px 12px;background:#f4f7fa;border-radius:999px;white-space:nowrap}.product-jump a:hover{background:#0e3c80;color:#fff}

@media (max-width:1020px){.topline-inner span:nth-child(2){display:none}.hero-v3-grid{grid-template-columns:1fr;min-height:auto}.hero-v3{padding-top:55px}.hero-v3-media{height:560px;max-width:760px;width:100%;margin:auto}.category-rail-inner{grid-template-columns:repeat(3,1fr)}.category-rail a:nth-child(3){border-right:0}.product-showcase{grid-template-columns:1fr 1fr;grid-auto-rows:280px}.showcase-large{grid-row:span 1}.showcase-wide{grid-column:span 1}.craft-grid,.company-stage-grid{grid-template-columns:1fr}.segment-mosaic{grid-template-columns:1fr 1fr}.process-grid{grid-template-columns:1fr 1fr;row-gap:30px}.mini-features{max-width:620px}.cta-v3{grid-template-columns:.25fr 1fr}.cta-v3-actions{grid-column:2}.product-jump{top:110px}}
@media (max-width:680px){.topline{height:32px}.topline-inner{height:32px}.topline-inner span:first-child{display:none}.topline-inner a{margin-left:0;width:100%;justify-content:center}.site-header{top:32px}.hero-v3{padding:38px 0}.hero-v3 h1{font-size:clamp(2.75rem,13.5vw,4.5rem)}.hero-v3-copy>p{font-size:.95rem}.hero-proof{display:grid;grid-template-columns:repeat(3,1fr);margin-top:30px}.hero-proof>div{padding:0 10px}.hero-proof strong{font-size:1.25rem}.hero-proof span{font-size:.62rem}.hero-v3-media{height:430px}.hero-photo-main{inset:0 0 8% 7%;border-radius:25px}.hero-photo-small{width:40%;height:31%;border-width:5px}.hero-spec{width:190px;right:-4px;top:8%;padding:14px}.weave-mark{display:none}.category-rail{overflow:hidden}.category-rail-inner{display:flex;overflow-x:auto;padding:0 14px;width:100%}.category-rail a{flex:0 0 auto;border-left:0!important}.product-showcase{grid-template-columns:1fr;grid-auto-rows:290px}.showcase-large,.showcase-wide{grid-column:auto;grid-row:auto}.craft-grid{gap:36px}.craft-bento{grid-template-columns:1fr 1fr;grid-template-rows:240px 180px}.craft-img.big{grid-column:1/-1;grid-row:auto}.segment-mosaic{grid-template-columns:1fr}.segment-tile.s1,.segment-tile.s2{grid-column:auto;min-height:190px}.process-grid{grid-template-columns:1fr;border-top:0}.process-step{padding:0 0 26px 50px;border-left:1px solid #d3deea}.process-step:before{top:5px;left:-5px}.process-step svg{margin:10px 0 12px}.company-stage-media{height:360px}.company-label{display:grid;left:14px;right:14px;bottom:14px}.mini-features{grid-template-columns:1fr}.cta-v3{grid-template-columns:1fr;padding:30px 24px}.cta-v3-mark{display:none}.cta-v3-actions{grid-column:auto}.product-jump{top:106px}}

/* ===== V3.1 PREMIUM ===== */
.premium-showcase{background:linear-gradient(180deg,#fff 0%,#f5f8fb 100%);position:relative;overflow:hidden}.premium-showcase:before{content:"";position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(17,74,145,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(17,74,145,.025) 1px,transparent 1px);background-size:34px 34px}.premium-gallery{position:relative;display:grid;grid-template-columns:1.35fr .65fr;grid-template-rows:250px 250px;gap:16px}.premium-tile{position:relative;overflow:hidden;border-radius:28px;min-height:0;box-shadow:0 20px 55px rgba(8,41,85,.10);background:#0d2e5e}.premium-tile-main{grid-row:1/3}.premium-tile img{width:100%;height:100%;object-fit:cover;transition:transform .65s cubic-bezier(.2,.7,.2,1),filter .4s ease}.premium-tile:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(5,18,41,.02) 25%,rgba(5,18,41,.88) 100%)}.premium-tile:hover img{transform:scale(1.05);filter:saturate(1.06)}.premium-tile-overlay{position:absolute;z-index:2;left:26px;right:26px;bottom:24px;color:#fff}.premium-tile-overlay span{font-size:.66rem;font-weight:900;letter-spacing:.13em;color:#8ec7ff}.premium-tile-overlay h3{color:#fff;font-size:1.3rem;margin-top:6px}.premium-tile-main .premium-tile-overlay h3{font-size:2rem;max-width:560px}.premium-tile-overlay p{color:#d1deed;font-size:.84rem;margin-top:7px}.premium-tile-overlay>svg{position:absolute;right:0;bottom:2px;width:23px;height:23px}.premium-tile-main .premium-tile-overlay>svg{width:28px;height:28px}

.ops-premium{background:#071a35;color:#fff;position:relative;overflow:hidden}.ops-premium:after{content:"";position:absolute;width:460px;height:460px;border-radius:50%;right:-180px;top:-180px;border:1px solid rgba(255,255,255,.08);box-shadow:0 0 0 80px rgba(255,255,255,.02),0 0 0 160px rgba(255,255,255,.015)}.ops-grid{position:relative;z-index:2;display:grid;grid-template-columns:.9fr 1.1fr;gap:64px;align-items:center}.ops-copy h2{color:#fff;margin-top:12px}.ops-copy .lead{color:#c6d3e4;margin-top:18px}.ops-points{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:30px}.ops-points>div{padding:18px 15px;border:1px solid rgba(255,255,255,.11);border-radius:18px;background:rgba(255,255,255,.035)}.ops-points svg{width:22px;height:22px;color:#8dc7ff}.ops-points strong{display:block;font-size:.78rem;margin-top:12px;color:#fff}.ops-points span{display:block;font-size:.67rem;line-height:1.5;color:#9eb0c7;margin-top:5px}.ops-media{height:520px;position:relative}.ops-media figure{margin:0;position:absolute;overflow:hidden;border-radius:26px;box-shadow:0 30px 70px rgba(0,0,0,.22)}.ops-media img{width:100%;height:100%;object-fit:cover}.ops-main{inset:0 0 12% 12%}.ops-small{left:0;bottom:0;width:38%;height:38%;border:6px solid #071a35}.ops-media figcaption{position:absolute;left:14px;bottom:12px;padding:8px 10px;border-radius:10px;background:rgba(7,26,53,.78);backdrop-filter:blur(10px);color:#fff;font-size:.64rem;font-weight:800;letter-spacing:.06em}.ops-stamp{position:absolute;right:-12px;top:34px;background:#fff;color:#0b326c;border-radius:18px;padding:16px 18px;box-shadow:0 18px 50px rgba(0,0,0,.18);min-width:160px}.ops-stamp b{font:900 1.35rem/1 "Space Grotesk",sans-serif;letter-spacing:-.04em}.ops-stamp span{display:block;font-size:.62rem;line-height:1.45;color:#65758c;margin-top:5px;text-transform:uppercase;letter-spacing:.08em}

.page-hero-products{overflow:hidden}.page-hero-products-media{height:430px;position:relative}.product-hero-main{position:absolute;inset:0 10% 8% 0;border-radius:30px;overflow:hidden;box-shadow:0 25px 65px rgba(8,45,95,.14)}.product-hero-main img,.product-hero-mini img{width:100%;height:100%;object-fit:cover}.product-hero-mini{position:absolute;right:0;bottom:0;width:35%;height:38%;border-radius:20px;overflow:hidden;border:6px solid #fff;box-shadow:0 18px 45px rgba(8,45,95,.16)}.product-hero-label{position:absolute;right:0;top:25px;background:#0b3979;color:#8fc9ff;padding:14px 16px;border-radius:15px;font-size:.62rem;line-height:1.4;letter-spacing:.12em;font-weight:900}.product-hero-label b{color:#fff;font-size:.72rem}.page-hero-chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:24px}.page-hero-chips span{padding:8px 12px;border-radius:999px;background:#edf4fb;color:#275b95;font-size:.68rem;font-weight:850}

@media(max-width:1020px){.premium-gallery{grid-template-columns:1fr 1fr;grid-template-rows:360px 260px}.premium-tile-main{grid-column:1/-1;grid-row:auto}.ops-grid{grid-template-columns:1fr;gap:40px}.ops-media{max-width:760px;width:100%;margin:auto}.page-hero-products-media{height:390px}}
@media(max-width:680px){.premium-gallery{grid-template-columns:1fr;grid-template-rows:330px 250px 250px}.premium-tile-main{grid-column:auto}.premium-tile-main .premium-tile-overlay h3{font-size:1.5rem}.premium-tile-overlay{left:18px;right:18px;bottom:18px}.ops-points{grid-template-columns:1fr}.ops-media{height:390px}.ops-main{inset:0 0 10% 8%}.ops-small{width:42%;height:33%;border-width:4px}.ops-stamp{top:18px;right:-5px;min-width:140px;padding:13px}.page-hero-products-media{height:340px}.product-hero-main{inset:0 8% 8% 0}.product-hero-mini{width:40%;height:34%;border-width:4px}.product-hero-label{top:15px;padding:11px 12px}}

/* ===== V4: PRODUCT DETAIL + QUOTE WIZARD + MOBILE CONVERSION ===== */
.process-premium{background:#fff;position:relative;overflow:hidden}.process-premium:before{content:"";position:absolute;left:0;right:0;top:49%;height:1px;background:linear-gradient(90deg,transparent,#d4e2f0 12%,#d4e2f0 88%,transparent)}.process-track{position:relative;display:grid;grid-template-columns:repeat(6,1fr);gap:16px;margin-top:34px}.process-node{position:relative;background:#fff;border:1px solid #dce7f2;border-radius:24px;padding:26px 20px;min-height:250px;box-shadow:0 16px 45px rgba(10,51,103,.06);z-index:1;transition:transform .3s ease,box-shadow .3s ease}.process-node:hover{transform:translateY(-6px);box-shadow:0 24px 55px rgba(10,51,103,.11)}.process-node>span{display:block;color:#7b94ae;font-size:.62rem;font-weight:900;letter-spacing:.12em}.process-icon{width:48px;height:48px;border-radius:15px;background:#edf5fd;display:grid;place-items:center;color:#155aa9;margin:22px 0 18px}.process-icon svg{width:23px}.process-node h3{font-size:1rem}.process-node p{font-size:.76rem;line-height:1.6;margin-top:8px;color:#64768b}

.product-card-actions{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:auto}.mini-quote{font-size:.69rem;font-weight:850;padding:8px 11px;border-radius:999px;background:#edf4fb;color:#1d5795;white-space:nowrap}.mini-quote:hover{background:#dcecff}

.product-detail-hero{padding:52px 0 78px;background:linear-gradient(145deg,#f7fafe 0%,#edf4fb 100%);overflow:hidden}.breadcrumbs{display:flex;align-items:center;gap:9px;flex-wrap:wrap;font-size:.7rem;color:#6a7d91;margin-bottom:34px}.breadcrumbs a{color:#2d639c}.breadcrumbs strong{color:#173a63}.product-detail-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center}.product-detail-grid h1{font-size:clamp(2.5rem,5vw,5rem);max-width:720px;margin-top:10px}.detail-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:28px}.detail-visual{height:500px;position:relative}.detail-image{position:absolute;inset:0 8% 5% 0;background:#fff;border-radius:34px;overflow:hidden;box-shadow:0 30px 80px rgba(7,47,99,.14)}.detail-image img{width:100%;height:100%;object-fit:contain;padding:28px;background:linear-gradient(145deg,#0b4f98,#1768b7)}.detail-badge{position:absolute;right:0;bottom:0;background:#fff;border-radius:19px;padding:16px 20px;box-shadow:0 18px 45px rgba(7,47,99,.16)}.detail-badge span{display:block;font-size:.58rem;letter-spacing:.14em;color:#6e86a0;font-weight:900}.detail-badge strong{display:block;margin-top:5px;color:#0d4b8e;font-size:.9rem}.detail-info-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.detail-panel{border:1px solid #dce7f2;border-radius:30px;padding:38px;background:#fff}.detail-panel h2{font-size:2rem;margin-top:8px}.detail-panel-dark{background:#082b59;color:#fff;border-color:#082b59}.detail-panel-dark h2{color:#fff}.detail-feature-list{display:grid;gap:12px;margin-top:26px;padding:0;list-style:none}.detail-feature-list li{position:relative;padding:14px 16px 14px 44px;background:#f4f8fc;border-radius:14px;color:#41576e;font-size:.84rem}.detail-feature-list li:before{content:"✓";position:absolute;left:16px;top:12px;width:21px;height:21px;border-radius:50%;background:#dcecff;color:#0f5aa8;display:grid;place-items:center;font-weight:900}.quote-checks{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:25px}.quote-checks span{padding:14px;border:1px solid rgba(255,255,255,.14);border-radius:14px;color:#d6e2ef;font-size:.76rem;display:flex;align-items:center;gap:10px}.quote-checks svg{width:18px;color:#8fc9ff}

.quote-wizard-panel{overflow:hidden}.quote-wizard-intro{font-size:.85rem;color:#66788c;margin-bottom:24px}.wizard-progress{display:flex;gap:8px;margin:0 0 28px}.wizard-progress span{width:32px;height:32px;border-radius:50%;display:grid;place-items:center;background:#e9f0f7;color:#72859a;font-weight:900;font-size:.72rem;position:relative}.wizard-progress span.active,.wizard-progress span.done{background:#0e55a2;color:#fff}.wizard-progress span.done:after{content:"✓"}.wizard-progress span.done{font-size:0}.wizard-progress span:not(:last-child):before{content:"";position:absolute;left:32px;width:8px;height:1px;background:#d8e3ef}.wizard-step{display:none;animation:wizardIn .35s ease}.wizard-step.active{display:block}.wizard-kicker{font-size:.62rem;letter-spacing:.13em;font-weight:900;color:#3b72ac}.wizard-step h3{font-size:1.35rem;margin:7px 0 20px}.choice-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.choice-grid label{cursor:pointer}.choice-grid input{position:absolute;opacity:0;pointer-events:none}.choice-grid label span{display:block;border:1px solid #d9e4ef;border-radius:15px;padding:14px 15px;font-size:.76rem;font-weight:800;color:#52687f;transition:.2s;background:#fff}.choice-grid input:checked+span{border-color:#175da8;background:#edf5fe;color:#0e4d91;box-shadow:0 0 0 2px rgba(23,93,168,.08)}.choice-grid-small{grid-template-columns:repeat(3,1fr)}.wizard-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:26px;padding-top:20px;border-top:1px solid #e4ebf2}.wizard-actions .wizard-prev{margin-right:auto}.wizard-actions .btn[hidden]{display:none}.quote-wizard .field textarea{min-height:120px}@keyframes wizardIn{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:none}}

.mobile-cta-bar{display:none}

@media(max-width:1100px){.process-track{grid-template-columns:repeat(3,1fr)}.process-premium:before{display:none}.product-detail-grid{gap:36px}.detail-visual{height:430px}}
@media(max-width:780px){.process-track{grid-template-columns:1fr 1fr}.product-detail-grid,.detail-info-grid{grid-template-columns:1fr}.product-detail-hero{padding-top:34px}.detail-visual{height:390px}.quote-checks{grid-template-columns:1fr}.choice-grid-small{grid-template-columns:1fr}.mobile-cta-bar{position:fixed;display:grid;grid-template-columns:repeat(3,1fr);left:10px;right:10px;bottom:10px;height:62px;border-radius:18px;background:rgba(7,31,64,.96);backdrop-filter:blur(16px);z-index:1000;box-shadow:0 16px 45px rgba(5,25,50,.3);overflow:hidden}.mobile-cta-bar a{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:4px;color:#fff;font-size:.62rem;font-weight:800;border-right:1px solid rgba(255,255,255,.1)}.mobile-cta-bar a:last-child{border-right:0;background:#175da8}.mobile-cta-bar svg{width:19px;height:19px}.whatsapp-float{display:none!important}body{padding-bottom:80px}}
@media(max-width:560px){.process-track{grid-template-columns:1fr}.process-node{min-height:auto}.choice-grid{grid-template-columns:1fr}.detail-visual{height:330px}.detail-image{inset:0 5% 7% 0}.detail-image img{padding:18px}.detail-badge{padding:12px 14px}.product-detail-grid h1{font-size:2.55rem}.detail-panel{padding:26px 22px}}

/* ===== V4.1 — ACABAMENTO UX ===== */
:root{--focus:rgba(40,104,189,.34);--tap:48px}
::selection{background:#dcecff;color:#082b59}
:focus-visible{outline:3px solid var(--focus);outline-offset:3px}
.skip-link{position:fixed;left:14px;top:12px;z-index:9999;padding:11px 15px;border-radius:12px;background:#fff;color:var(--blue-950);font-weight:850;box-shadow:var(--shadow-sm);transform:translateY(-150%);transition:transform .2s ease}
.skip-link:focus{transform:none}
.section{padding:clamp(68px,7vw,104px) 0}
.section-sm{padding:clamp(48px,5vw,72px) 0}
.section-head{margin-bottom:clamp(30px,4vw,46px)}
.btn{min-height:var(--tap);padding-inline:22px;isolation:isolate}
.btn:active{transform:translateY(0) scale(.985)}
.nav-links a,.mobile-cta-bar a,.product-jump a{touch-action:manipulation}
.site-header{transition:background .25s ease,box-shadow .25s ease,border-color .25s ease}
.site-header.scrolled{background:rgba(255,255,255,.96);box-shadow:0 10px 34px rgba(7,37,78,.08);border-color:rgba(205,217,232,.9)}
.site-header.scrolled .nav{height:74px}
.nav{transition:height .25s ease}
.brand img{transition:width .25s ease,max-height .25s ease}
.site-header.scrolled .brand img{width:205px;max-height:54px}

/* stronger visual rhythm */
.hero-v3-copy,.hero-copy{max-width:690px}
.hero-v3 h1,.hero h1{max-width:12ch;text-wrap:balance}
.hero-v3-copy>p,.hero-copy .lead,.page-hero .lead{text-wrap:pretty}
.hero-actions .btn{min-width:170px}
.hero-photo-main,.hero-main-card,.page-hero-media,.feature-image,.premium-tile,.showcase-card,.company-stage-media>img{transform:translateZ(0)}
.hero-spec,.ops-stamp,.hero-float{border:1px solid rgba(204,220,238,.72)}

/* card consistency and stronger hover/focus */
.product-grid{align-items:stretch}
.product-card{display:flex;flex-direction:column;height:100%}
.product-content{display:flex;flex-direction:column;flex:1}
.product-content .card-link,.product-content .product-actions{margin-top:auto;padding-top:18px}
.product-card:focus-within,.segment-card:focus-within,.bento-card:focus-within,.premium-tile:focus-within,.showcase-card:focus-within{box-shadow:0 0 0 4px rgba(40,104,189,.12),var(--shadow-sm);border-color:#aac8e9}
.segment-grid{align-items:stretch}
.segment-card{height:100%}
.chip{transition:transform .2s ease,border-color .2s ease,background .2s ease}
.chip:hover{transform:translateY(-2px);border-color:#bfd2e9;background:#f9fbfe}

/* page heroes */
.page-hero{padding:clamp(58px,7vw,86px) 0}
.page-hero-grid{gap:clamp(32px,5vw,64px)}
.page-hero h1{max-width:12ch;text-wrap:balance}
.page-hero-media{min-height:320px;height:clamp(320px,31vw,410px)}

/* product detail readability */
.detail-panel{height:100%}
.detail-feature-list li{line-height:1.55}
.product-detail-grid h1{text-wrap:balance}
.product-detail-copy .lead{max-width:62ch}
.product-jump{transition:top .25s ease,box-shadow .25s ease}
.site-header.scrolled~main .product-jump{box-shadow:0 10px 24px rgba(8,40,82,.06)}

/* guided quote: clearer selection + progress */
.quote-wizard-panel{box-shadow:0 22px 70px rgba(8,45,95,.09)}
.wizard-progress{align-items:center;gap:0}
.wizard-progress span{flex:0 0 36px;width:36px;height:36px;transition:.2s ease}
.wizard-progress span:not(:last-child){margin-right:34px}
.wizard-progress span:not(:last-child):before{left:36px;width:34px;height:2px;top:17px}
.wizard-progress span.done:not(:last-child):before{background:#0e55a2}
.wizard-progress span.active{box-shadow:0 0 0 5px rgba(14,85,162,.10)}
.choice-grid label span{min-height:50px;display:flex;align-items:center;position:relative;padding-right:38px}
.choice-grid input:focus-visible+span{outline:3px solid var(--focus);outline-offset:2px}
.choice-grid input:checked+span:after{content:'✓';position:absolute;right:14px;top:50%;transform:translateY(-50%);width:21px;height:21px;border-radius:50%;display:grid;place-items:center;background:#175da8;color:#fff;font-size:.68rem}
.field label{font-weight:800;color:#394d64}
.field input,.field textarea,.field select{min-height:50px;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}
.field input:focus,.field textarea:focus,.field select:focus{border-color:#4f8dce;box-shadow:0 0 0 4px rgba(40,104,189,.10);background:#fff;outline:0}
.wizard-actions{position:sticky;bottom:0;background:linear-gradient(180deg,rgba(255,255,255,.76),#fff 28%);z-index:4;padding-bottom:2px}

/* lightbox usability */
.lightbox-close{min-width:48px;min-height:48px;display:grid;place-items:center}
.lightbox.open{animation:fadeUX .18s ease}
@keyframes fadeUX{from{opacity:0}to{opacity:1}}

/* mobile bottom CTA safe-area + clarity */
.mobile-cta-bar{bottom:max(10px,env(safe-area-inset-bottom));height:64px}
.mobile-cta-bar a:active{background:rgba(255,255,255,.08)}
.mobile-cta-bar a:last-child:active{background:#0e4a91}

@media(max-width:1100px){
  .container{width:min(calc(100% - 32px),var(--max))}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .segment-grid{grid-template-columns:repeat(2,1fr)}
  .hero-actions .btn{min-width:0}
}
@media(max-width:780px){
  .site-header.scrolled .nav{height:72px}
  .site-header.scrolled .brand img{width:190px}
  .section-head{align-items:flex-start;flex-direction:column}
  .section-head .lead{max-width:100%}
  .page-hero-grid{grid-template-columns:1fr}
  .page-hero-media{height:300px;min-height:300px}
  .contact-grid,.split,.dark-grid{grid-template-columns:1fr}
  .dark-grid{gap:38px}
  .feature-image,.feature-image img{min-height:340px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .wizard-actions .btn{min-height:50px}
  body{padding-bottom:calc(82px + env(safe-area-inset-bottom))}
}
@media(max-width:680px){
  .container{width:min(calc(100% - 28px),var(--max))}
  .site-header.scrolled .brand img{width:176px}
  .hero-v3 h1,.hero h1{max-width:none}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;width:100%}
  .hero-actions .btn{width:100%;padding-inline:14px}
  .product-grid,.segment-grid{grid-template-columns:1fr}
  .product-photo{height:clamp(250px,78vw,340px)}
  .page-hero-media{height:270px;min-height:270px;border-radius:24px}
  .feature-points{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{align-items:flex-start;flex-direction:column;gap:8px}
  .wizard-progress span{flex-basis:34px;width:34px;height:34px}
  .wizard-progress span:not(:last-child){margin-right:22px}
  .wizard-progress span:not(:last-child):before{left:34px;width:22px}
  .wizard-actions{display:grid;grid-template-columns:1fr 1fr}
  .wizard-actions .wizard-prev{margin-right:0}
  .wizard-actions .wizard-submit{grid-column:1/-1}
  .quote-wizard-panel,.contact-panel{padding:26px 20px}
}
@media(max-width:460px){
  .hero-actions{grid-template-columns:1fr}
  .hero-badges{display:grid;grid-template-columns:1fr 1fr}
  .hero-badge{justify-content:center;text-align:center}
  .wizard-progress{justify-content:space-between}
  .wizard-progress span:not(:last-child){margin-right:0}
  .wizard-progress span:not(:last-child):before{left:34px;width:calc((100vw - 158px)/3);max-width:48px}
  .mobile-cta-bar{left:8px;right:8px;border-radius:16px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}


/* ===== V4.2 — HERO FIX + NEW RENDERS ===== */
.hero-grid-v3{display:grid;grid-template-columns:.92fr 1.08fr;gap:58px;align-items:center;min-height:650px}
.hero-copy{position:relative;z-index:2;max-width:690px}
.hero-composition{height:610px;position:relative}
.hero-photo-main,.hero-photo-small{overflow:hidden;background:#fff;box-shadow:0 30px 70px rgba(10,45,95,.16)}
.hero-photo-main img,.hero-photo-small img{width:100%;height:100%;object-fit:cover}
.hero-years{display:flex;margin-top:42px;padding-top:24px;border-top:1px solid #cfdae7;max-width:650px}
.hero-years>div{display:grid;gap:2px;padding:0 26px;border-right:1px solid #d6e0eb}.hero-years>div:first-child{padding-left:0}.hero-years>div:last-child{border-right:0}.hero-years strong{font:800 1.6rem/1 "Space Grotesk",sans-serif;color:var(--v3-ink)}.hero-years span{font-size:.72rem;color:#687990}
.hero-spec-card{position:absolute;right:0;top:12%;width:220px;padding:18px;border-radius:17px;background:rgba(7,26,53,.94);color:#fff;box-shadow:0 20px 50px rgba(7,26,53,.2)}
.hero-spec-card span{font-size:.63rem;font-weight:900;letter-spacing:.13em;color:#83c6ff}.hero-spec-card strong{display:block;font-size:.82rem;line-height:1.45;margin-top:7px}.hero-spec-card small{display:block;margin-top:6px;color:#c6d6e8;line-height:1.5}
.hero-mini-photo{position:absolute;width:34%;height:35%;left:0;bottom:0;border:7px solid #fff;border-radius:22px;overflow:hidden;background:#fff;box-shadow:0 30px 70px rgba(10,45,95,.16)}.hero-mini-photo img{width:100%;height:100%;object-fit:cover}
.hero-photo-main img,.premium-tile img,.product-photo img,.page-hero-media img,.detail-image img,.feature-image img{image-rendering:auto}
@media (max-width:1020px){.hero-grid-v3,.hero-v3-grid{grid-template-columns:1fr;min-height:auto}.hero-composition,.hero-v3-media{height:560px;max-width:760px;width:100%;margin:auto}}
@media (max-width:680px){.hero-grid-v3,.hero-v3-grid{gap:34px}.hero-composition,.hero-v3-media{height:430px}.hero-mini-photo,.hero-photo-small{width:40%;height:31%;border-width:5px}.hero-photo-main{inset:0 0 8% 7%;border-radius:25px}.hero-years{display:grid;grid-template-columns:repeat(3,1fr);margin-top:30px}.hero-years>div{padding:0 10px}.hero-years strong{font-size:1.25rem}.hero-years span{font-size:.62rem}}


/* ===== V4.3 — REFINO VISUAL, MOBILE E SEGMENTOS ===== */
:root{--reading:72ch;--section-gap:clamp(72px,7.2vw,112px)}
body{font-size:16px}
p{max-width:var(--reading)}
h1,h2,h3{text-wrap:balance}
.lead{text-wrap:pretty;line-height:1.72}
.section{padding:var(--section-gap) 0}
.section-head h2{max-width:14ch}
.section-head>.lead,.section-head>p{max-width:54ch}
.eyebrow{font-size:.74rem;letter-spacing:.15em}
.btn{letter-spacing:-.01em}
.product-card,.segment-card,.detail-panel,.contact-panel,.bento-card{border-color:#d9e5f1}

/* premium segment navigation */
.segment-premium{background:linear-gradient(180deg,#fff,#f6f9fd)}
.segment-bento{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:290px 290px;gap:18px}
.segment-feature{position:relative;display:block;overflow:hidden;border-radius:28px;min-height:0;background:#0c315f;box-shadow:0 20px 55px rgba(7,46,95,.11);isolation:isolate}
.segment-feature-large{grid-row:1/3}
.segment-feature-wide{grid-column:2;grid-row:2}
.segment-feature img{width:100%;height:100%;object-fit:cover;transition:transform .55s cubic-bezier(.2,.8,.2,1)}
.segment-feature:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(4,22,47,.02) 20%,rgba(4,22,47,.82) 100%);z-index:1}
.segment-feature-overlay{position:absolute;z-index:2;left:26px;right:26px;bottom:24px;color:#fff}
.segment-feature-overlay span{display:block;font-size:.62rem;letter-spacing:.14em;font-weight:900;color:#9dceff;margin-bottom:8px}
.segment-feature-overlay h3{color:#fff;font-size:clamp(1.2rem,2vw,2rem);max-width:16ch}
.segment-feature-overlay p{margin-top:8px;color:#d8e4f1;font-size:.82rem;line-height:1.55;max-width:42ch}
.segment-feature-overlay b{display:inline-flex;align-items:center;gap:7px;margin-top:13px;font-size:.72rem;letter-spacing:.02em}
.segment-feature-overlay b svg{width:16px;height:16px}
.segment-feature:hover img,.segment-feature:focus-visible img{transform:scale(1.045)}
.segment-feature:focus-visible{outline:3px solid rgba(40,104,189,.42);outline-offset:4px}

/* FAQ refinement */
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.faq-item{border:1px solid #d9e5f1;border-radius:18px;background:#fff;padding:0 20px;box-shadow:0 10px 28px rgba(8,43,88,.045)}
.faq-item summary{cursor:pointer;list-style:none;font-family:"Space Grotesk",Manrope,sans-serif;font-weight:700;color:#17385f;padding:20px 34px 20px 0;position:relative}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:after{content:"+";position:absolute;right:0;top:50%;transform:translateY(-50%);font-size:1.45rem;color:#2b68aa;font-weight:500}
.faq-item[open] summary:after{content:"–"}
.faq-item p{padding:0 0 20px;color:#607287;font-size:.88rem;line-height:1.65}

/* stronger mobile composition */
@media(max-width:960px){
  .segment-bento{grid-template-columns:1fr 1fr;grid-template-rows:330px 250px}
  .segment-feature-large{grid-column:1/-1;grid-row:auto}
  .segment-feature-wide{grid-column:auto;grid-row:auto}
  .faq-grid{grid-template-columns:1fr}
}
@media(max-width:780px){
  .nav{height:76px}
  .brand img{width:190px;max-height:54px}
  .page-hero{padding:48px 0 58px}
  .page-hero h1{font-size:clamp(2.45rem,10vw,4rem)}
  .section{padding:72px 0}
  .segment-feature-overlay{left:20px;right:20px;bottom:20px}
  .segment-highlight-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  body{font-size:15.5px}
  .container{width:min(calc(100% - 24px),var(--max))}
  .utility-inner{font-size:.66rem}
  .section{padding:62px 0}
  .section-sm{padding:48px 0}
  .section-head{gap:14px;margin-bottom:30px}
  .section-head h2{max-width:none;font-size:clamp(2rem,9vw,2.8rem)}
  .eyebrow{font-size:.67rem;letter-spacing:.13em;margin-bottom:12px}
  .hero-v3{padding-top:30px}
  .hero-v3 h1{font-size:clamp(2.55rem,13vw,4rem);line-height:.96}
  .hero-v3-copy>p{font-size:.96rem;line-height:1.68;margin-top:18px}
  .hero-badges{gap:7px}.hero-badge{font-size:.64rem;padding:8px 10px}
  .hero-proof{gap:0}.hero-proof>div{padding-inline:8px}.hero-proof strong{font-size:1.1rem}
  .hero-v3-media{height:390px}
  .hero-spec{width:176px;padding:12px;top:6%}.hero-spec strong{font-size:.74rem}.hero-spec small{font-size:.63rem}
  .segment-bento{grid-template-columns:1fr;grid-template-rows:330px 250px 250px 280px}
  .segment-feature-large,.segment-feature-wide{grid-column:auto;grid-row:auto}
  .segment-feature{border-radius:22px}
  .segment-highlight-grid{grid-template-columns:1fr 1fr;gap:0}
  .segment-highlight-grid>div{padding:18px 12px}
  .faq-item{padding-inline:16px}
  .faq-item summary{padding-block:18px;font-size:.94rem}
  .mobile-cta-bar{height:60px}
  .mobile-cta-bar a{font-size:.59rem}
}
@media(max-width:420px){
  .segment-highlight-grid{grid-template-columns:1fr}
  .segment-highlight-grid>div:not(:last-child){border-bottom:1px solid rgba(255,255,255,.12)}
  .hero-proof{grid-template-columns:1fr 1fr 1fr}
  .hero-proof span{font-size:.56rem}
  .page-hero-media{height:240px;min-height:240px}
}


/* ===== V5 — COMERCIAL / CONFIGURADOR ===== */
.commercial-config{background:linear-gradient(145deg,#071f42 0%,#0b3979 62%,#0e55a2 100%);position:relative;overflow:hidden}.commercial-config: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(90deg,#000,transparent)}.config-shell{position:relative;display:grid;grid-template-columns:.72fr 1.28fr;gap:46px;padding:46px;border:1px solid rgba(255,255,255,.12);border-radius:34px;background:rgba(255,255,255,.06);backdrop-filter:blur(18px);box-shadow:0 35px 90px rgba(1,18,42,.28)}.config-intro{align-self:start;position:sticky;top:130px}.config-intro .eyebrow{color:#8fc9ff}.config-intro h2{color:#fff;font-size:clamp(2.3rem,4.5vw,4.5rem);line-height:.98;letter-spacing:-.045em}.config-intro .lead{color:#c7d7e9;margin-top:20px}.config-trust{display:grid;gap:10px;margin-top:30px}.config-trust span{display:flex;align-items:center;gap:10px;color:#d8e5f2;font-size:.76rem;font-weight:750}.config-trust svg{width:18px;color:#8fc9ff}.quick-config{background:#fff;border-radius:28px;padding:30px;box-shadow:0 24px 70px rgba(3,21,48,.22)}.quick-config fieldset{border:0;padding:0;margin:0 0 27px}.quick-config legend{font-weight:900;color:#173a63;font-size:.82rem;margin-bottom:12px}.quick-options{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.quick-options.compact{grid-template-columns:repeat(3,1fr)}.quick-options label{cursor:pointer}.quick-options input{position:absolute;opacity:0;pointer-events:none}.quick-options span{min-height:64px;display:flex;align-items:center;justify-content:center;gap:8px;text-align:center;padding:12px;border:1px solid #d9e4ef;border-radius:15px;background:#f9fbfd;color:#52687f;font-size:.72rem;font-weight:850;transition:.2s}.quick-options span svg{width:18px}.quick-options input:checked+span{background:#eaf4ff;border-color:#1b63b1;color:#0d4c91;box-shadow:0 0 0 2px rgba(27,99,177,.08)}.quick-config-footer{display:flex;align-items:center;justify-content:space-between;gap:20px;border-top:1px solid #e4ebf2;padding-top:24px}.quick-summary{display:grid;gap:4px}.quick-summary span{font-size:.59rem;text-transform:uppercase;letter-spacing:.12em;font-weight:900;color:#7a8da2}.quick-summary strong{font-size:.78rem;color:#24486f;line-height:1.45}.wizard-review{margin-top:22px;padding:15px 17px;border-radius:15px;background:#f2f7fc;border:1px solid #dce8f4}.wizard-review span{display:block;font-size:.58rem;letter-spacing:.12em;text-transform:uppercase;font-weight:900;color:#7890a8}.wizard-review strong{display:block;margin-top:5px;font-size:.76rem;line-height:1.45;color:#24486f}.product-card .mini-quote{transition:transform .2s ease,background .2s ease}.product-card .mini-quote:hover{transform:translateY(-2px)}
@media(max-width:980px){.config-shell{grid-template-columns:1fr;padding:34px}.config-intro{position:static}.quick-options{grid-template-columns:1fr 1fr}.quick-options.compact{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.config-shell{padding:20px;border-radius:24px;gap:28px}.quick-config{padding:20px;border-radius:21px}.quick-options,.quick-options.compact{grid-template-columns:1fr}.quick-options span{min-height:52px;justify-content:flex-start;padding-left:16px}.quick-config-footer{align-items:stretch;flex-direction:column}.quick-config-footer .btn{width:100%}.config-intro h2{font-size:2.55rem}}


/* ===== V5.1 — TRUST PREMIUM + NEED SELECTOR REBUILD ===== */

/* Trust premium */
.trust-premium{
  padding:34px 0 0;
  background:
    radial-gradient(circle at 12% -20%,rgba(84,164,255,.26),transparent 34%),
    linear-gradient(135deg,#061932 0%,#0a2e62 55%,#0d4387 100%);
  border-top:1px solid rgba(255,255,255,.08);
}
.trust-premium:after{
  opacity:.06;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size:42px 42px;
}
.trust-premium .container{position:relative;z-index:2}
.trust-premium-head{
  display:flex;
  align-items:center;
  gap:18px;
  padding:0 6px 22px;
}
.trust-premium-label{
  color:#8fc9ff;
  font-size:.64rem;
  line-height:1;
  font-weight:900;
  letter-spacing:.17em;
  text-transform:uppercase;
  white-space:nowrap;
}
.trust-premium-line{
  height:1px;
  width:100%;
  background:linear-gradient(90deg,rgba(143,201,255,.45),transparent);
}
.trust-premium .trust-grid{
  border:1px solid rgba(255,255,255,.12);
  border-bottom:0;
  border-radius:26px 26px 0 0;
  overflow:hidden;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(12px);
}
.trust-premium .trust-item{
  min-height:154px;
  padding:28px 24px;
  gap:18px;
  align-items:flex-start;
  position:relative;
  background:transparent;
  transition:background .28s ease,transform .28s ease;
}
.trust-premium .trust-item:hover{
  background:rgba(255,255,255,.055);
}
.trust-icon{
  width:52px;
  height:52px;
  border-radius:17px;
  display:grid;
  place-items:center;
  flex:0 0 52px;
  color:#9ed1ff;
  background:linear-gradient(145deg,rgba(115,188,255,.18),rgba(255,255,255,.05));
  border:1px solid rgba(154,208,255,.19);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.trust-icon svg{width:24px;height:24px;stroke-width:1.8}
.trust-copy{display:grid;align-content:start;gap:5px}
.trust-copy .trust-index{
  margin:0 0 7px;
  color:#72ade6;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.16em;
}
.trust-premium .trust-item strong{
  font-family:"Space Grotesk",sans-serif;
  color:#fff;
  font-size:1rem;
  line-height:1.25;
  letter-spacing:-.015em;
}
.trust-premium .trust-item .trust-copy>span:last-child{
  color:#afc5df;
  font-size:.76rem;
  line-height:1.45;
  margin-top:0;
}

/* Need selector */
.need-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 12%,rgba(57,133,219,.11),transparent 24%),
    linear-gradient(180deg,#f8fbff 0%,#fff 100%);
}
.need-section:before{
  content:"";
  position:absolute;
  right:-110px;
  top:70px;
  width:330px;
  height:330px;
  border-radius:50%;
  border:1px solid rgba(28,94,166,.07);
  box-shadow:0 0 0 52px rgba(28,94,166,.025),0 0 0 104px rgba(28,94,166,.015);
  pointer-events:none;
}
.need-header{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);
  gap:70px;
  align-items:end;
  margin-bottom:42px;
}
.need-header h2{
  margin-top:9px;
  max-width:760px;
  font-size:clamp(2.6rem,5vw,5rem);
  line-height:.97;
  letter-spacing:-.052em;
}
.need-header h2 span{color:#155aa9}
.need-header>p{
  margin:0 0 7px;
  max-width:500px;
  color:#61748a;
  font-size:1rem;
  line-height:1.72;
}
.need-bento{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-auto-rows:minmax(305px,auto);
  gap:18px;
}
.need-card{
  grid-column:span 4;
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:28px;
  overflow:hidden;
  color:#0b284d;
  background:rgba(255,255,255,.92);
  border:1px solid #dce7f2;
  border-radius:28px;
  box-shadow:0 16px 44px rgba(8,50,104,.065);
  transition:transform .32s ease,box-shadow .32s ease,border-color .32s ease;
}
.need-card:before{
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  top:-80px;
  right:-65px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(38,104,189,.11),transparent 68%);
  pointer-events:none;
}
.need-card:hover{
  transform:translateY(-7px);
  border-color:#bfd5eb;
  box-shadow:0 28px 66px rgba(8,50,104,.13);
}
.need-card-featured{
  grid-column:span 8;
  background:
    linear-gradient(130deg,rgba(7,37,78,.98),rgba(12,69,135,.97)),
    #082b59;
  border-color:rgba(255,255,255,.08);
  color:#fff;
}
.need-card-featured:before{
  width:330px;height:330px;top:-160px;right:-110px;
  background:radial-gradient(circle,rgba(111,190,255,.27),transparent 68%);
}
.need-card-special{
  grid-column:span 8;
  background:linear-gradient(125deg,#eaf4ff,#f8fbff 62%);
  border-color:#cfe0f0;
}
.need-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.need-kicker{
  color:#50759c;
  font-size:.61rem;
  font-weight:900;
  letter-spacing:.17em;
  text-transform:uppercase;
}
.need-card-featured .need-kicker{color:#91c7f7}
.need-icon{
  width:48px;
  height:48px;
  border-radius:15px;
  display:grid;
  place-items:center;
  color:#1459a8;
  background:#edf5fe;
  border:1px solid #dceafa;
  transition:transform .28s ease,background .28s ease;
}
.need-icon svg{width:22px;height:22px;stroke-width:1.8}
.need-card:hover .need-icon{transform:rotate(-5deg) scale(1.04)}
.need-card-featured .need-icon{
  color:#b9dcff;
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.12);
}
.need-card-copy{
  margin-top:auto;
  padding-top:56px;
  max-width:560px;
}
.need-card h3{
  margin:0;
  color:inherit;
  font-size:clamp(1.45rem,2.25vw,2rem);
  line-height:1.08;
  letter-spacing:-.035em;
}
.need-card p{
  margin-top:13px;
  max-width:470px;
  color:#61748a;
  font-size:.82rem;
  line-height:1.65;
}
.need-card-featured p{color:#bfd1e6}
.need-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:25px;
  padding-top:18px;
  border-top:1px solid #dfe9f3;
  color:#1459a8;
  font-size:.73rem;
  font-weight:900;
  letter-spacing:.01em;
}
.need-link svg{width:17px;height:17px;transition:transform .25s ease}
.need-card:hover .need-link svg{transform:translate(3px,-3px)}
.need-card-featured .need-link{
  border-color:rgba(255,255,255,.12);
  color:#a9d5ff;
}
.need-card-special .need-card-copy{max-width:620px}

/* Desktop balance: 8 + 4 first row, 4 + 8 second row */
.need-card:nth-child(2){grid-column:span 4}
.need-card:nth-child(3){grid-column:span 4}
.need-card:nth-child(4){grid-column:span 8}

@media(max-width:1020px){
  .trust-premium{padding-top:26px}
  .trust-premium .trust-grid{grid-template-columns:1fr 1fr}
  .trust-premium .trust-item{min-height:132px}
  .need-header{grid-template-columns:1fr;gap:18px;align-items:start}
  .need-header>p{max-width:680px}
  .need-bento{grid-template-columns:1fr 1fr;grid-auto-rows:minmax(285px,auto)}
  .need-card,.need-card-featured,.need-card-special,.need-card:nth-child(2),.need-card:nth-child(3),.need-card:nth-child(4){grid-column:auto}
}

@media(max-width:680px){
  .trust-premium{padding-top:22px}
  .trust-premium-head{padding:0 2px 17px}
  .trust-premium-label{font-size:.58rem}
  .trust-premium .trust-grid{
    grid-template-columns:1fr;
    border-radius:22px 22px 0 0;
  }
  .trust-premium .trust-item{
    min-height:auto;
    padding:21px 20px;
    align-items:center;
  }
  .trust-icon{width:46px;height:46px;flex-basis:46px;border-radius:14px}
  .trust-copy .trust-index{margin-bottom:3px}
  .trust-premium .trust-item strong{font-size:.93rem}
  .trust-premium .trust-item .trust-copy>span:last-child{font-size:.71rem}

  .need-header{margin-bottom:28px}
  .need-header h2{font-size:clamp(2.35rem,12vw,3.55rem)}
  .need-header>p{font-size:.9rem;line-height:1.65}
  .need-bento{grid-template-columns:1fr;grid-auto-rows:auto;gap:13px}
  .need-card{
    min-height:275px;
    padding:22px;
    border-radius:22px;
  }
  .need-card-featured{min-height:315px}
  .need-card-copy{padding-top:42px}
  .need-card h3{font-size:1.55rem}
  .need-card p{font-size:.78rem}
  .need-link{margin-top:21px;padding-top:16px}
}


/* ===== V5.3 — TOPLINE INTEGRADA AO HEADER ===== */
.topline{
  position:relative;
  z-index:90;
  height:38px;
  color:#dbe9f8;
  background:
    linear-gradient(90deg,#061a37 0%,#082b59 52%,#0c3f7d 100%);
  border-bottom:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}
.topline:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg,transparent,rgba(115,188,255,.07),transparent 70%);
}
.topline-inner{
  position:relative;
  height:38px;
  display:flex;
  align-items:center;
  gap:0;
  font-size:.68rem;
  line-height:1;
  letter-spacing:.01em;
}
.topline-inner>span,
.topline-inner>a{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:0 18px;
  color:#c8d9eb;
  white-space:nowrap;
}
.topline-inner>span:first-child{padding-left:0}
.topline-inner>span+span{border-left:1px solid rgba(255,255,255,.10)}
.topline-inner>a{
  margin-left:auto;
  padding-right:0;
  color:#fff;
  font-weight:800;
  border-left:1px solid rgba(255,255,255,.10);
  transition:color .2s ease,opacity .2s ease;
}
.topline-inner>a:hover{color:#9ed1ff}
.topline-inner svg{
  width:14px;
  height:14px;
  color:#79b9f4;
  stroke-width:1.8;
  flex:0 0 auto;
}
.site-header{top:38px}
html{scroll-padding-top:130px}

@media(max-width:860px){
  .topline-inner{justify-content:space-between}
  .topline-inner>span:nth-child(2){display:none}
  .topline-inner>span:first-child{padding-right:12px}
  .topline-inner>a{padding-left:12px}
}
@media(max-width:620px){
  .topline{height:34px}
  .topline-inner{height:34px;font-size:.62rem}
  .topline-inner>span,
  .topline-inner>a{min-height:34px}
  .topline-inner>span:first-child{display:none}
  .topline-inner>a{
    width:100%;
    margin-left:0;
    padding:0;
    justify-content:center;
    border-left:0;
  }
  .site-header{top:34px}
  html{scroll-padding-top:116px}
}


/* ===== V5.6 — NAVEGAÇÃO RÁPIDA DE PRODUTOS ===== */
.product-nav-section{
  position:relative;
  z-index:5;
  padding:0 0 26px;
  margin-top:-25px;
}
.product-nav-shell{
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  align-items:center;
  gap:22px;
  padding:16px 18px 16px 22px;
  background:rgba(255,255,255,.96);
  border:1px solid #dce7f2;
  border-radius:22px;
  box-shadow:0 18px 50px rgba(8,49,101,.10);
  backdrop-filter:blur(14px);
}
.product-nav-title{
  min-width:0;
  padding-right:20px;
  border-right:1px solid #e2eaf2;
}
.product-nav-eyebrow{
  display:block;
  margin-bottom:4px;
  color:#6e89a7;
  font-size:.55rem;
  line-height:1;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.product-nav-title strong{
  display:block;
  color:#0c315f;
  font-family:"Space Grotesk",sans-serif;
  font-size:.94rem;
  line-height:1.15;
  letter-spacing:-.02em;
}
.product-nav{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
.product-nav a{
  flex:1 1 0;
  min-width:0;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 12px;
  color:#355b84;
  background:#f4f8fc;
  border:1px solid #e1eaf3;
  border-radius:14px;
  font-size:.68rem;
  line-height:1.1;
  font-weight:850;
  white-space:nowrap;
  transition:transform .22s ease,background .22s ease,color .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.product-nav a svg{
  width:17px;
  height:17px;
  flex:0 0 17px;
  color:#2c72b9;
  stroke-width:1.9;
  transition:transform .22s ease,color .22s ease;
}
.product-nav a:hover,
.product-nav a:focus-visible{
  color:#fff;
  background:linear-gradient(135deg,#0c4d96,#1767b7);
  border-color:#155ea9;
  box-shadow:0 9px 24px rgba(15,83,157,.17);
  transform:translateY(-2px);
}
.product-nav a:hover svg,
.product-nav a:focus-visible svg{
  color:#a8d6ff;
  transform:scale(1.05);
}
.product-card[id]{scroll-margin-top:145px}

@media(max-width:1050px){
  .product-nav-shell{grid-template-columns:1fr;gap:12px;padding:15px}
  .product-nav-title{display:flex;align-items:center;gap:9px;padding:0 2px 2px;border-right:0}
  .product-nav-eyebrow{margin:0}
  .product-nav{overflow-x:auto;padding-bottom:3px;scrollbar-width:none;scroll-snap-type:x proximity}
  .product-nav::-webkit-scrollbar{display:none}
  .product-nav a{flex:0 0 auto;min-width:142px;scroll-snap-align:start}
}
@media(max-width:680px){
  .product-nav-section{margin-top:-12px;padding-bottom:16px}
  .product-nav-shell{border-radius:18px;padding:13px;box-shadow:0 12px 35px rgba(8,49,101,.09)}
  .product-nav-title{justify-content:space-between}
  .product-nav-title strong{font-size:.84rem}
  .product-nav-eyebrow{font-size:.5rem}
  .product-nav{margin-right:-13px;padding-right:13px;gap:7px}
  .product-nav a{min-width:138px;min-height:45px;border-radius:12px;font-size:.65rem}
  .product-card[id]{scroll-margin-top:125px}
}

/* ===== V5.7 — COMPATIBILIDADE FIREFOX / CROSS-BROWSER ===== */
*,*::before,*::after{box-sizing:border-box}
img,svg{max-width:100%}
img{display:block}

/* Backdrop filter: Safari prefix + deterministic fallback for Firefox/unsupported engines */
.site-header,
.hero-float,
.product-num,
.company-label,
.product-jump,
.ops-media figcaption,
.mobile-cta-bar,
.config-shell,
.product-nav-shell{
  -webkit-backdrop-filter:blur(14px);
}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .site-header{background:rgba(255,255,255,.985)}
  .hero-float,.product-num,.company-label,.product-nav-shell{background:#fff}
  .product-jump{background:rgba(255,255,255,.99)}
  .ops-media figcaption{background:#071a35}
  .mobile-cta-bar{background:#071f40}
  .config-shell{background:rgba(19,63,119,.96)}
}

/* mask-image consistency */
.hero-v3:before{
  -webkit-mask-image:linear-gradient(90deg,#000,transparent 75%);
  mask-image:linear-gradient(90deg,#000,transparent 75%);
}
.commercial-config:before{
  -webkit-mask-image:linear-gradient(90deg,#000,transparent);
  mask-image:linear-gradient(90deg,#000,transparent);
}
@supports not ((mask-image:linear-gradient(#000,transparent)) or (-webkit-mask-image:linear-gradient(#000,transparent))){
  .hero-v3:before{opacity:.45}
  .commercial-config:before{opacity:.35}
}

/* text-wrap is progressive enhancement; widths below keep Firefox layout stable */
h1,h2,h3,.lead{overflow-wrap:break-word;word-break:normal}
.hero-v3 h1,.hero h1,.page-hero h1,.product-detail-grid h1{width:100%}

/* Sticky elements: isolate containing blocks and avoid Firefox overflow/sticky inconsistencies */
.site-header,.product-jump,.wizard-actions,.config-intro{isolation:isolate}
.product-jump{top:106px}

/* Premium product navigator: explicit sizing avoids Firefox flex text compression */
.product-nav-section{overflow:visible}
.product-nav-shell{
  width:100%;
  min-width:0;
}
.product-nav-title,.product-nav{min-width:0}
.product-nav{
  width:100%;
  display:grid;
  grid-template-columns:repeat(6,minmax(112px,1fr));
  align-items:stretch;
  gap:8px;
  overflow:visible;
}
.product-nav a{
  width:100%;
  min-width:112px;
  max-width:none;
  flex:none;
  display:inline-flex;
  box-sizing:border-box;
  text-decoration:none;
  line-height:1.2;
  text-align:center;
}
.product-nav a svg{display:block}

/* Firefox uses scrollbar-width; WebKit pseudo kept separately */
@media(max-width:1050px){
  .product-nav-shell{overflow:hidden}
  .product-nav{
    display:flex;
    width:auto;
    max-width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    overscroll-behavior-x:contain;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
    padding-bottom:4px;
  }
  .product-nav::-webkit-scrollbar{width:0;height:0;display:none}
  .product-nav a{
    flex:0 0 150px;
    width:150px;
    min-width:150px;
    max-width:150px;
    scroll-snap-align:start;
  }
}
@media(max-width:680px){
  .product-nav{max-width:calc(100vw - 39px)}
  .product-nav a{
    flex-basis:142px;
    width:142px;
    min-width:142px;
    max-width:142px;
  }
}

/* Grid/flex defensive rules for Firefox min-content sizing */
.hero-v3-grid>*,.page-hero-grid>*,.product-detail-grid>*,.config-shell>*,.ops-grid>*,.company-stage-grid>*,.detail-info-grid>*{min-width:0}
.product-card,.need-card,.trust-item,.process-node,.segment-card{min-width:0}

/* Forms: normalize native Firefox controls */
button,input,select,textarea{font:inherit}
button,.btn,.product-nav a{-moz-appearance:none;-webkit-appearance:none;appearance:none}
select{background-color:#fff}

/* Smooth scrolling only when supported and allowed */
@media(prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}


/* V5.8 FIREFOX HARDENING */
.product-nav-list-v58>a{-moz-box-sizing:border-box;box-sizing:border-box}
@supports (-moz-appearance:none){.product-nav-shell-v58{backdrop-filter:none!important}.product-nav-list-v58>a{transform:none}}


/* ===== V5.9 — SEGMENTOS AUTHORITY CARDS ===== */
.segment-authority-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 12%,rgba(40,104,189,.10),transparent 24%),
    linear-gradient(180deg,#ffffff 0%,#f6f9fd 100%);
}
.segment-authority-section:before{
  content:"";
  position:absolute;
  left:-120px;
  bottom:-120px;
  width:360px;
  height:360px;
  border-radius:50%;
  border:1px solid rgba(24,91,166,.06);
  box-shadow:0 0 0 56px rgba(24,91,166,.025),0 0 0 112px rgba(24,91,166,.015);
}
.segment-authority-head{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(300px,.95fr);
  gap:64px;
  align-items:end;
  margin-bottom:38px;
}
.segment-authority-head h2{
  margin-top:8px;
  max-width:760px;
  font-size:clamp(2.35rem,4.8vw,4.8rem);
  line-height:.98;
  letter-spacing:-.05em;
}
.segment-authority-head>p{
  max-width:530px;
  margin:0 0 8px;
  color:#64768b;
  font-size:.98rem;
  line-height:1.72;
}
.segment-authority-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.segment-authority-card{
  position:relative;
  min-width:0;
  min-height:310px;
  display:flex;
  flex-direction:column;
  padding:28px;
  overflow:hidden;
  border:1px solid #dce7f2;
  border-radius:26px;
  background:rgba(255,255,255,.95);
  box-shadow:0 16px 44px rgba(8,50,104,.06);
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.segment-authority-card:after{
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(33,102,183,.10),transparent 68%);
  pointer-events:none;
}
.segment-authority-card:hover{
  transform:translateY(-7px);
  border-color:#bfd5eb;
  box-shadow:0 26px 62px rgba(8,50,104,.12);
}
.segment-authority-icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#155aa9;
  background:#edf5fe;
  border:1px solid #dceafa;
}
.segment-authority-icon svg{width:23px;height:23px;stroke-width:1.8}
.segment-authority-value{
  margin-top:42px;
  color:#0d4d91;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(2.05rem,3vw,3.2rem);
  line-height:.95;
  font-weight:800;
  letter-spacing:-.05em;
}
.segment-authority-card h3{
  margin-top:13px;
  color:#173b64;
  font-size:1rem;
  line-height:1.25;
}
.segment-authority-card p{
  margin-top:auto;
  padding-top:20px;
  color:#65778b;
  font-size:.75rem;
  line-height:1.62;
}
.segment-authority-card-dark{
  color:#fff;
  border-color:#082b59;
  background:linear-gradient(145deg,#071f42 0%,#0b3979 100%);
  box-shadow:0 18px 50px rgba(5,35,77,.18);
}
.segment-authority-card-dark .segment-authority-icon{
  color:#a8d6ff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
}
.segment-authority-card-dark .segment-authority-value,
.segment-authority-card-dark h3{color:#fff}
.segment-authority-card-dark p{color:#bfd1e6}
.segment-authority-card-dark:after{
  background:radial-gradient(circle,rgba(114,190,255,.22),transparent 68%);
}

@media(max-width:1050px){
  .segment-authority-head{grid-template-columns:1fr;gap:16px;align-items:start}
  .segment-authority-grid{grid-template-columns:1fr 1fr}
  .segment-authority-card{min-height:280px}
}
@media(max-width:680px){
  .segment-authority-head{margin-bottom:28px}
  .segment-authority-head h2{font-size:clamp(2.3rem,11vw,3.45rem)}
  .segment-authority-head>p{font-size:.9rem}
  .segment-authority-grid{grid-template-columns:1fr;gap:13px}
  .segment-authority-card{min-height:250px;padding:23px;border-radius:22px}
  .segment-authority-value{margin-top:34px;font-size:2.35rem}
}
