/* =========================================================
   SAP Sistemi — portoni.be
   Sistema visivo coerente con faaweb.it
   Display: Archivo · Testo: IBM Plex Sans · Dati: IBM Plex Mono
   ========================================================= */

:root{
  /* Colore */
  --navy:#0F2A4D;
  --navy-900:#0A1F3A;
  --navy-700:#173a63;
  --azure:#1478D4;
  --azure-bright:#1E90FF;
  --azure-050:#EAF3FC;

  --white:#ffffff;
  --steel-50:#F5F7FA;
  --steel-100:#EBEFF4;
  --steel-200:#D9E0EA;
  --steel-300:#C2CCDA;

  --ink:#0F2A4D;
  --ink-600:#47566B;
  --ink-400:#6B7688;

  /* Tipografia */
  --f-display:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --f-body:"IBM Plex Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --f-mono:"IBM Plex Mono",ui-monospace,"SFMono-Regular",Menlo,monospace;

  /* Misure */
  --wrap:1200px;
  --wrap-narrow:820px;
  --gutter:clamp(1.15rem,4vw,2.25rem);
  --radius:14px;
  --radius-sm:9px;

  --shadow-sm:0 1px 2px rgba(15,42,77,.06),0 3px 10px rgba(15,42,77,.05);
  --shadow:0 10px 34px rgba(15,42,77,.10);
  --shadow-lg:0 24px 60px rgba(15,42,77,.16);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  margin:0;
  font-family:var(--f-body);
  font-size:1.0625rem;
  line-height:1.72;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;height:auto;display:block}
a{color:var(--azure);text-decoration:none}
a:hover{color:var(--navy)}

/* ---------- Tipografia ---------- */
h1,h2,h3,h4{font-family:var(--f-display);color:var(--navy);line-height:1.12;margin:0 0 .5em;letter-spacing:-.012em}
h1{font-weight:800;font-size:clamp(2rem,4.6vw,3.25rem)}
h2{font-weight:700;font-size:clamp(1.5rem,3vw,2.15rem)}
h3{font-weight:700;font-size:1.2rem;letter-spacing:-.006em}
h4{font-weight:600;font-size:1.02rem}
p{margin:0 0 1.1rem}
strong{font-weight:600;color:var(--navy)}
:focus-visible{outline:3px solid var(--azure-bright);outline-offset:2px;border-radius:3px}

.eyebrow{
  font-family:var(--f-mono);
  font-size:.74rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--azure);
  font-weight:500;
  display:inline-flex;align-items:center;gap:.6rem;
  margin:0 0 1rem;
}

/* ---------- Layout ---------- */
.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gutter)}
.wrap--narrow{max-width:var(--wrap-narrow)}
.section{padding-block:clamp(3.25rem,7vw,5.75rem)}
.section--tight{padding-block:clamp(2.5rem,5vw,4rem)}
.section--steel{background:var(--steel-50)}
.section--navy{background:var(--navy);color:#dbe6f4}
.section--navy h1,.section--navy h2,.section--navy h3{color:#fff}
.section--navy .eyebrow{color:var(--azure-bright)}

.lead{font-size:1.18rem;line-height:1.65;color:var(--ink-600)}
.section-head{max-width:640px;margin-bottom:2.5rem}
.section-head.center{margin-inline:auto;text-align:center}
.section-head.center .eyebrow{justify-content:center}

.grid{display:grid;gap:1.5rem}
@media(min-width:700px){.g-2{grid-template-columns:repeat(2,1fr)}.g-3{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1080px){.g-4{grid-template-columns:repeat(4,1fr)}}

/* ---------- Bottoni ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:var(--f-display);font-weight:600;font-size:.98rem;
  padding:.85rem 1.5rem;border-radius:999px;border:2px solid transparent;
  cursor:pointer;transition:transform .18s ease,background .18s ease,color .18s,box-shadow .18s;
  line-height:1;
}
.btn .arw{transition:transform .2s ease}
.btn:hover .arw{transform:translateX(4px)}
.btn--primary{background:var(--azure);color:#fff;box-shadow:0 8px 22px rgba(20,120,212,.28)}
.btn--primary:hover{background:var(--navy);color:#fff;transform:translateY(-2px)}
.btn--ghost{background:transparent;color:var(--navy);border-color:var(--steel-300)}
.btn--ghost:hover{border-color:var(--navy);color:var(--navy);transform:translateY(-2px)}
.btn--light{background:#fff;color:var(--navy)}
.btn--light:hover{background:var(--azure);color:#fff;transform:translateY(-2px)}
.btn--outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.4)}
.btn--outline-light:hover{background:#fff;color:var(--navy);border-color:#fff}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:60;background:#fff;
  border-bottom:1px solid var(--steel-100);
  transition:box-shadow .25s ease;
}
.site-header.scrolled{box-shadow:0 6px 22px rgba(15,42,77,.09)}
.header-in{display:flex;align-items:center;gap:1.5rem;min-height:78px;padding-inline:var(--gutter);max-width:var(--wrap);margin-inline:auto}
.brand{display:flex;align-items:center;margin-right:auto}
.brand img{height:44px;width:auto}
.nav{display:none}
@media(min-width:1080px){.nav{display:flex;align-items:center;gap:.35rem}}
.nav a{
  font-family:var(--f-display);font-weight:600;font-size:.94rem;color:var(--navy);
  padding:.55rem .8rem;border-radius:8px;position:relative;
}
.nav a:hover{color:var(--azure);background:var(--azure-050)}
.nav a[aria-current="page"]{color:var(--azure)}
.nav a[aria-current="page"]::after{
  content:"";position:absolute;left:.8rem;right:.8rem;bottom:.15rem;height:2px;background:var(--azure);border-radius:2px;
}
.header-cta{display:none}
@media(min-width:1080px){.header-cta{display:inline-flex;margin-left:.5rem}}
.header-tel{
  display:none;font-family:var(--f-mono);font-weight:500;font-size:.9rem;color:var(--navy);
  white-space:nowrap;
}
.header-tel span{color:var(--ink-400);display:block;font-size:.66rem;letter-spacing:.12em;text-transform:uppercase}
@media(min-width:1200px){.header-tel{display:block}}

/* burger */
.burger{
  display:inline-flex;flex-direction:column;justify-content:center;gap:5px;
  width:46px;height:46px;border:1px solid var(--steel-200);border-radius:10px;background:#fff;
  cursor:pointer;margin-left:auto;padding:0 12px;
}
@media(min-width:1080px){.burger{display:none}}
.burger span{height:2px;background:var(--navy);border-radius:2px;transition:.25s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{
  position:fixed;inset:78px 0 0;background:#fff;z-index:55;
  transform:translateX(100%);transition:transform .3s ease;
  padding:1.5rem var(--gutter) 2.5rem;overflow-y:auto;
}
.mobile-nav.open{transform:translateX(0)}
.mobile-nav a{
  display:block;font-family:var(--f-display);font-weight:600;font-size:1.35rem;color:var(--navy);
  padding:.9rem 0;border-bottom:1px solid var(--steel-100);
}
.mobile-nav a:hover,.mobile-nav a[aria-current="page"]{color:var(--azure)}
.mobile-nav .btn{margin-top:1.5rem;width:100%;justify-content:center}
.mobile-tel{margin-top:1.25rem;font-family:var(--f-mono);color:var(--navy);font-weight:500}
body.nav-lock{overflow:hidden}

/* ---------- Portale (motivo firma) ---------- */
/* trapezio in prospettiva, ripreso dall'icona del logo */
.portal{
  --pc:var(--azure);
  position:relative;aspect-ratio:1/1.15;width:100%;
}
.portal svg{width:100%;height:100%;display:block;overflow:visible}

/* ---------- Hero ---------- */
.hero{position:relative;background:var(--navy);color:#e6eef8;overflow:hidden}
.hero::before{
  content:"";position:absolute;inset:0;opacity:.5;
  background:
    radial-gradient(120% 90% at 85% 10%,rgba(30,144,255,.32),transparent 55%),
    radial-gradient(90% 80% at 0% 100%,rgba(20,120,212,.22),transparent 60%);
}
/* doghe orizzontali sottili sul fondo, come un manto sezionale */
.hero::after{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.35;
  background-image:repeating-linear-gradient(to bottom,
     transparent 0 46px,rgba(255,255,255,.045) 46px 47px);
  -webkit-mask-image:linear-gradient(to right,transparent,#000 40%);
          mask-image:linear-gradient(to right,transparent,#000 40%);
}
.hero-in{
  position:relative;z-index:2;max-width:var(--wrap);margin-inline:auto;
  padding:clamp(3rem,7vw,5.5rem) var(--gutter) clamp(3.25rem,7vw,5.5rem);
  display:grid;gap:2.5rem;align-items:center;
}
@media(min-width:1080px){.hero-in{grid-template-columns:1.15fr .85fr;gap:3.5rem}}
.hero h1{color:#fff;margin-bottom:1.1rem}
.hero .eyebrow{color:var(--azure-bright)}
.hero-lead{font-size:1.2rem;color:#c4d4e8;max-width:36ch;margin-bottom:1.9rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:.85rem}
.hero-badges{display:flex;flex-wrap:wrap;gap:1.4rem 2rem;margin-top:2.4rem;padding-top:1.9rem;border-top:1px solid rgba(255,255,255,.14)}
.hero-badge b{font-family:var(--f-display);font-size:1.7rem;font-weight:800;color:#fff;display:block;line-height:1}
.hero-badge span{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:#8fabce}

/* riquadro portale nell'hero */
.hero-portal{position:relative;max-width:380px;margin-inline:auto;width:100%}

/* pagine interne: hero compatto */
.page-hero{background:var(--navy);color:#cddaee;position:relative;overflow:hidden}
.page-hero::after{content:"";position:absolute;inset:0;opacity:.4;background:radial-gradient(90% 120% at 90% 0%,rgba(30,144,255,.28),transparent 55%)}
.page-hero-in{position:relative;z-index:2;max-width:var(--wrap);margin-inline:auto;padding:clamp(2.75rem,6vw,4.5rem) var(--gutter)}
.page-hero h1{color:#fff;max-width:20ch;margin-bottom:.9rem}
.page-hero p{max-width:60ch;color:#bccde3;font-size:1.14rem;margin:0}
.crumbs{font-family:var(--f-mono);font-size:.76rem;letter-spacing:.06em;color:#89a4c6;margin-bottom:1.4rem;text-transform:uppercase}
.crumbs a{color:#89a4c6}.crumbs a:hover{color:#fff}
.crumbs .sep{opacity:.5;margin:0 .45rem}

/* ---------- Card modelli portone (illustrazioni CSS) ---------- */
.model-card{
  background:#fff;border:1px solid var(--steel-100);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow-sm);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s;
  display:flex;flex-direction:column;
}
.model-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:var(--steel-200)}
.model-vis{
  aspect-ratio:4/3;background:linear-gradient(160deg,#eef2f7,#dde5ee);
  padding:16px;display:flex;
}
.model-body{padding:1.25rem 1.35rem 1.5rem}
.model-body h3{margin-bottom:.4rem}
.model-body p{margin:0;font-size:.96rem;color:var(--ink-600);line-height:1.6}

/* La "porta" disegnata: telaio + manto a doghe */
.door{
  --slat:#c9d2de;--face:#e7edf4;--edge:#aeb9c9;
  width:100%;flex:1;border-radius:6px;position:relative;
  background:var(--face);
  box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 5px var(--edge);
  overflow:hidden;
}
.door::after{ /* riflesso alluminio */
  content:"";position:absolute;inset:0;
  background:linear-gradient(115deg,rgba(255,255,255,.55),transparent 40%,transparent 60%,rgba(255,255,255,.3));
  pointer-events:none;
}
.door--rigato{background-image:repeating-linear-gradient(to bottom,var(--face) 0 5px,var(--slat) 5px 6px)}
.door--dogato{background-image:repeating-linear-gradient(to bottom,var(--face) 0 20px,var(--edge) 20px 22px)}
.door--liscio{background-image:repeating-linear-gradient(to bottom,var(--face) 0 34px,var(--edge) 34px 35px)}
.door--cassettato{
  background-image:
    repeating-linear-gradient(to bottom,transparent 0 22px,var(--edge) 22px 24px),
    repeating-linear-gradient(to right,transparent 0 30px,var(--edge) 30px 32px);
  background-color:var(--face);
}
.door--finestrato{background-image:repeating-linear-gradient(to bottom,var(--face) 0 20px,var(--edge) 20px 22px)}
.door--finestrato::before{
  content:"";position:absolute;left:8%;right:8%;top:12px;height:26px;border-radius:3px;
  background:linear-gradient(120deg,#bcd4ea,#8fb7dd);
  box-shadow:inset 0 0 0 3px var(--face),0 0 0 2px var(--edge);
  background-image:linear-gradient(120deg,#bcd4ea,#8fb7dd),repeating-linear-gradient(to right,transparent 0 22px,rgba(255,255,255,.7) 22px 24px);
  z-index:1;
}
.door--legno{
  --face:#c98f56;--slat:#a9713f;--edge:#8a5a30;
  background-image:repeating-linear-gradient(to bottom,var(--face) 0 19px,var(--slat) 19px 22px);
}
.door--pedonale{background-image:repeating-linear-gradient(to bottom,var(--face) 0 24px,var(--edge) 24px 26px)}
.door--pedonale::before{ /* anta pedonale */
  content:"";position:absolute;left:14%;top:8%;bottom:0;width:44%;
  border:2px solid var(--azure);border-bottom:none;border-radius:3px 3px 0 0;z-index:1;
  background:rgba(20,120,212,.06);
}

/* ---------- Category card (home) ---------- */
.cat-card{
  background:#fff;border:1px solid var(--steel-100);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;height:100%;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s;
}
.cat-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:var(--steel-200)}
.cat-media{aspect-ratio:16/11;background:var(--steel-100);overflow:hidden}
.cat-media img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .4s ease}
.cat-card:hover .cat-media img{transform:scale(1.04)}
.cat-body{padding:1.4rem 1.45rem 1.5rem;display:flex;flex-direction:column;flex:1}
.cat-body h3{margin-bottom:.45rem}
.cat-body p{margin:0;color:var(--ink-600);font-size:.98rem;line-height:1.6}
.cat-cta{margin-top:auto;align-self:flex-start;padding-top:.72rem;padding-bottom:.72rem}
.cat-body p{margin-bottom:1.25rem}

.mini-head{font-family:var(--f-mono);font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:var(--brand-azure);margin:0 0 1.1rem;font-weight:600}

/* ---------- Feature / vantaggi ---------- */
.feature{
  background:#fff;border:1px solid var(--steel-100);border-radius:var(--radius);
  padding:1.5rem 1.5rem 1.6rem;box-shadow:var(--shadow-sm);height:100%;
  transition:transform .2s ease,box-shadow .2s;
}
.feature:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.feature .ico{
  width:46px;height:46px;border-radius:11px;display:grid;place-items:center;margin-bottom:1rem;
  background:var(--azure-050);color:var(--azure);
}
.feature .ico svg{width:24px;height:24px}
.feature h3{font-size:1.08rem;margin-bottom:.4rem}
.feature p{margin:0;font-size:.97rem;color:var(--ink-600);line-height:1.62}

/* lista con check */
.checklist{list-style:none;margin:0;padding:0;display:grid;gap:.9rem}
.checklist li{position:relative;padding-left:2.1rem;line-height:1.55}
.checklist li::before{
  content:"";position:absolute;left:0;top:.15rem;width:1.4rem;height:1.4rem;border-radius:50%;
  background:var(--azure-050);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231478D4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size:.9rem;background-repeat:no-repeat;background-position:center;
}
.section--navy .checklist li::before{background-color:rgba(30,144,255,.18)}
.checklist li strong{display:block}

/* ---------- Split media ---------- */
.split{display:grid;gap:2.5rem;align-items:center}
@media(min-width:900px){.split{grid-template-columns:1fr 1fr;gap:3.5rem}.split.rev>*:first-child{order:2}}
.media-frame{
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
  background:var(--steel-100);border:1px solid var(--steel-200);position:relative;
}
.media-frame img{width:100%;object-fit:cover}
.media-frame.tall{aspect-ratio:4/5}
.media-frame.tall img{height:100%}

/* ---------- Spec table ---------- */
.spec{width:100%;border-collapse:collapse;font-size:.98rem;background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--steel-100)}
.spec th,.spec td{text-align:left;padding:.95rem 1.15rem;border-bottom:1px solid var(--steel-100);vertical-align:top}
.spec tr:last-child th,.spec tr:last-child td{border-bottom:none}
.spec th{font-family:var(--f-display);color:var(--navy);width:34%;font-weight:600;background:var(--steel-50)}
.spec td{color:var(--ink-600)}

.spec-list{display:grid;gap:1.15rem}
.spec-item{border-left:3px solid var(--azure);padding:.15rem 0 .15rem 1.15rem}
.spec-item h4{margin:0 0 .25rem;font-family:var(--f-display);color:var(--navy);font-size:1.02rem}
.spec-item p{margin:0;color:var(--ink-600);font-size:.96rem;line-height:1.6}

/* ---------- Gallery ---------- */
.gallery{display:grid;gap:1rem;grid-template-columns:repeat(2,1fr)}
@media(min-width:800px){.gallery{grid-template-columns:repeat(3,1fr)}}
.gallery figure{margin:0;border-radius:var(--radius-sm);overflow:hidden;background:var(--steel-100);border:1px solid var(--steel-200);box-shadow:var(--shadow-sm)}
.gallery img{width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .4s ease}
.gallery figure:hover img{transform:scale(1.05)}

/* strip RAL */
.ral{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--steel-200)}
.ral img{width:100%}

/* ---------- Numbered process ---------- */
.steps{counter-reset:step;display:grid;gap:1.1rem}
@media(min-width:900px){.steps{grid-template-columns:repeat(2,1fr)}}
.step{
  position:relative;background:#fff;border:1px solid var(--steel-100);border-radius:var(--radius);
  padding:1.4rem 1.5rem 1.5rem 4.4rem;box-shadow:var(--shadow-sm);
}
.step::before{
  counter-increment:step;content:counter(step,decimal-leading-zero);
  position:absolute;left:1.3rem;top:1.35rem;font-family:var(--f-mono);font-weight:600;
  color:var(--azure);font-size:1.05rem;
}
.step h3{font-size:1.06rem;margin-bottom:.35rem}
.step p{margin:0;font-size:.96rem;color:var(--ink-600);line-height:1.6}

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg,var(--navy),var(--navy-700));color:#fff;
  border-radius:var(--radius);padding:clamp(2rem,4vw,3rem);position:relative;overflow:hidden;
  display:grid;gap:1.6rem;align-items:center;
}
.cta-band::after{content:"";position:absolute;inset:0;opacity:.5;background:radial-gradient(80% 120% at 100% 0,rgba(30,144,255,.35),transparent 55%)}
@media(min-width:820px){.cta-band{grid-template-columns:1fr auto}}
.cta-band>*{position:relative;z-index:1}
.cta-band h2{color:#fff;margin-bottom:.4rem}
.cta-band p{color:#c4d4e8;margin:0;max-width:52ch}
.cta-actions{display:flex;flex-wrap:wrap;gap:.8rem}

/* ---------- FAQ ---------- */
.faq{display:grid;gap:.85rem;max-width:820px}
.faq details{background:#fff;border:1px solid var(--steel-100);border-radius:var(--radius-sm);box-shadow:var(--shadow-sm);overflow:hidden}
.faq summary{
  cursor:pointer;list-style:none;padding:1.15rem 3rem 1.15rem 1.3rem;position:relative;
  font-family:var(--f-display);font-weight:600;color:var(--navy);font-size:1.04rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";position:absolute;right:1.2rem;top:50%;transform:translateY(-50%);
  font-size:1.5rem;color:var(--azure);font-weight:400;transition:transform .2s;
}
.faq details[open] summary::after{content:"–"}
.faq .faq-body{padding:0 1.3rem 1.3rem;color:var(--ink-600);line-height:1.65}
.faq .faq-body p{margin:0}

/* ---------- Contatti ---------- */
.contact-grid{display:grid;gap:2.5rem}
@media(min-width:960px){.contact-grid{grid-template-columns:1fr 1.1fr;gap:3.5rem}}
.info-list{display:grid;gap:1.4rem;margin:0 0 2rem;padding:0;list-style:none}
.info-list li{display:flex;gap:1rem;align-items:flex-start}
.info-list .ico{flex:none;width:44px;height:44px;border-radius:11px;background:var(--azure-050);color:var(--azure);display:grid;place-items:center}
.info-list .ico svg{width:22px;height:22px}
.info-list b{display:block;font-family:var(--f-display);color:var(--navy);font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;margin-bottom:.15rem}
.info-list a,.info-list span{color:var(--ink-600);font-size:1.02rem}
.info-list .mono{font-family:var(--f-mono)}

form.quote{background:#fff;border:1px solid var(--steel-100);border-radius:var(--radius);padding:clamp(1.5rem,3vw,2.25rem);box-shadow:var(--shadow)}
.field{margin-bottom:1.15rem}
.field label{display:block;font-family:var(--f-display);font-weight:600;font-size:.9rem;color:var(--navy);margin-bottom:.4rem}
.field label .req{color:var(--azure)}
.field input,.field textarea,.field select{
  width:100%;font-family:var(--f-body);font-size:1rem;color:var(--ink);
  padding:.8rem .95rem;border:1.5px solid var(--steel-200);border-radius:var(--radius-sm);
  background:var(--steel-50);transition:border-color .18s,background .18s,box-shadow .18s;
}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none;border-color:var(--azure);background:#fff;box-shadow:0 0 0 4px rgba(20,120,212,.12);
}
.field textarea{resize:vertical;min-height:120px}
.field-row{display:grid;gap:1.15rem}
@media(min-width:620px){.field-row{grid-template-columns:1fr 1fr}}
.consent{display:flex;gap:.65rem;align-items:flex-start;font-size:.88rem;color:var(--ink-600);line-height:1.5}
.consent input{width:1.1rem;height:1.1rem;margin-top:.2rem;flex:none;accent-color:var(--azure)}
form.quote .btn{width:100%;justify-content:center;margin-top:.5rem}
.form-note{font-family:var(--f-mono);font-size:.72rem;color:var(--ink-400);margin-top:1rem;text-align:center;letter-spacing:.03em}
.map-embed{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--steel-200);margin-top:2.5rem}
.map-embed iframe{display:block;width:100%;height:340px;border:0;background:var(--steel-100)}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy-900);color:#a9bdd8;padding-block:clamp(3rem,5vw,4rem) 0}
.footer-grid{display:grid;gap:2.5rem;padding-bottom:2.75rem}
@media(min-width:760px){.footer-grid{grid-template-columns:1.5fr 1fr 1fr}}
.footer-brand img{height:40px;margin-bottom:1.2rem}
.footer-brand p{color:#93a9c8;font-size:.96rem;line-height:1.6;max-width:34ch;margin:0 0 1.3rem}
.footer-brand .faddr{font-style:normal;font-size:.94rem;line-height:1.7;color:#a9bdd8}
.footer-brand .faddr a{color:#a9bdd8}.footer-brand .faddr a:hover{color:#fff}
.footer-col h4{color:#fff;font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;font-family:var(--f-mono);font-weight:500;margin-bottom:1.1rem}
.footer-col ul{list-style:none;margin:0;padding:0;display:grid;gap:.65rem}
.footer-col a{color:#a9bdd8;font-size:.97rem}
.footer-col a:hover{color:#fff}
.socials{display:flex;gap:.7rem;margin-top:.3rem}
.socials a{width:40px;height:40px;border-radius:10px;background:rgba(255,255,255,.07);display:grid;place-items:center;color:#cdddf0;transition:.2s}
.socials a:hover{background:var(--azure);color:#fff;transform:translateY(-2px)}
.socials svg{width:19px;height:19px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-block:1.4rem;font-size:.85rem;color:#7f96b6;display:flex;flex-wrap:wrap;gap:.4rem 1.2rem;justify-content:space-between}
.footer-bottom .mono{font-family:var(--f-mono);font-size:.8rem}
.footer-bottom a{color:#7f96b6}.footer-bottom a:hover{color:#fff}

/* ---------- Reveal ---------- */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}

.text-block>*+h2{margin-top:2.2rem}
.text-block>*+h3{margin-top:1.6rem}
.divider{height:1px;background:var(--steel-100);border:none;margin-block:clamp(2.5rem,5vw,4rem)}

/* ---------- WhatsApp floating button ---------- */
.wa-float{position:fixed;right:20px;bottom:20px;z-index:60;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 20px rgba(15,42,77,.28);transition:transform .18s ease,box-shadow .18s ease}
.wa-float:hover{transform:scale(1.06);box-shadow:0 10px 26px rgba(15,42,77,.34)}
.wa-float:focus-visible{outline:3px solid var(--azure-bright);outline-offset:3px}
.wa-float svg{width:32px;height:32px;fill:#fff}
@media (max-width:640px){.wa-float{right:16px;bottom:16px;width:52px;height:52px}.wa-float svg{width:29px;height:29px}}
@media (prefers-reduced-motion:reduce){.wa-float{transition:none}}
