@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&display=swap');
/* ═══════════════════════════════════════════════════════════════
   SUNCORE BROKER — Design System v3
   Blu istituzionale · Bianco · Giallo · Mobile-First
═══════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS */
:root {
  --navy:       #0C2142;
  --navy-2:     #1A3A6B;
  --navy-3:     #1E4A82;
  --blue-light: #EBF2FF;
  --blue-pale:  #F4F7FD;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --yellow:     #F5C400;
  --yellow-d:   #C49800;
  --yellow-l:   #FEF9E7;
  --yellow-glow:rgba(245,196,0,.20);
  --ink:        #0C2142;
  --ink-2:      #475569;
  --ink-3:      #94A3B8;
  --line:       #E2E8F0;
  --t1:  rgba(255,255,255,.95);
  --t2:  rgba(255,255,255,.60);
  --t3:  rgba(255,255,255,.32);
  --border-navy: rgba(255,255,255,.12);
  --font-head: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.36,.64,1);
  --r:    12px;
  --r-sm: 8px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ── 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── 3. LAYOUT */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ── 4. TYPOGRAPHY */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy-2); margin-bottom: 14px;
}
.eyebrow--light { color: var(--t2); }
.eyebrow-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; animation: blink 2.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.6)} }
.sec-title { font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.1; color: var(--ink); }
.sec-title--light { color: var(--t1); }
.sec-sub { font-size: .95rem; color: var(--ink-2); max-width: 520px; margin-top: 12px; line-height: 1.75; }
.sec-sub--light { color: var(--t2); }

/* ── 5. BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem; padding: 13px 24px; border-radius: var(--r-sm); transition: all .2s var(--ease); white-space: nowrap; letter-spacing: .01em; }
.btn--lg { font-size: .95rem; padding: 15px 32px; }
.btn--sm { font-size: .8rem; padding: 9px 18px; }
.btn--yellow { background: var(--yellow); color: var(--navy); font-weight: 700; box-shadow: 0 2px 8px rgba(245,196,0,.25); }
.btn--yellow:hover { background: var(--yellow-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,196,0,.35); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,33,66,.3); }
.btn--outline-navy { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn--outline-navy:hover { background: var(--navy); color: #fff; }
.btn--outline-white { border: 2px solid rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── 6. SCROLL REVEAL */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }
@supports (animation-timeline: view()) {
  [data-reveal] { opacity: 1; transform: none; animation: _rv linear both; animation-timeline: view(); animation-range: entry 0% entry 30%; }
  [data-reveal][data-delay="1"] { animation-delay: .06s; }
  [data-reveal][data-delay="2"] { animation-delay: .12s; }
  [data-reveal][data-delay="3"] { animation-delay: .18s; }
  [data-reveal][data-delay="4"] { animation-delay: .24s; }
  @keyframes _rv { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:none } }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity:1; transform:none; transition:none; animation:none; }
  .wwi { transition:none !important; transform:none !important; opacity:1 !important; }
}

/* ── 7. WORD SPLIT */
.ww  { display: inline-block; overflow: hidden; vertical-align: bottom; }
.wwi { display: inline-block; transform: translateY(108%) skewY(3deg); opacity: 0; will-change: transform, opacity; }
.hero-title.split-go .wwi { transform: none; opacity: 1; transition: transform .72s cubic-bezier(0,.8,.15,1), opacity .45s ease; transition-delay: calc(var(--wi,0) * 85ms + 200ms); }

/* ── 8. CONTEXT BAR (Privati / Aziende — stile Unipol) */
#ctx-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 950;
  height: 34px; display: flex; align-items: center;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08);
}
.ctx-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.ctx-tabs { display: flex; height: 100%; }
.ctx-tab {
  display: flex; align-items: center; padding: 0 22px; height: 100%;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); transition: color .2s, background .2s;
  border-right: 1px solid rgba(255,255,255,.08); text-decoration: none;
}
.ctx-tab:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.06); }
.ctx-tab.active { color: #fff; background: rgba(255,255,255,.1); }
.ctx-links { display: flex; align-items: center; gap: 22px; }
.ctx-link {
  font-size: .72rem; color: rgba(255,255,255,.5); transition: color .2s;
  display: flex; align-items: center; gap: 5px; text-decoration: none;
}
.ctx-link:hover { color: rgba(255,255,255,.9); }
.ctx-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── HEADER */
#hdr {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 900;
  height: 68px; display: flex; align-items: center;
  background: var(--white); box-shadow: 0 1px 0 var(--line);
  transition: box-shadow .3s;
}
#hdr.solid { box-shadow: 0 2px 16px rgba(12,33,66,.1); }
.hdr-inner { display: flex; align-items: center; width: 100%; height: 100%; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: 36px; }
.logo-img { height: 38px; width: auto; }
.logo-fallback { display: none; align-items: center; gap: 10px; }
.logo-mark { width: 36px; height: 36px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; flex-shrink: 0; }
.logo-mark::after { content: ''; position: absolute; top: 0; right: 0; width: 11px; height: 11px; background: var(--yellow); border-radius: 0 8px 0 80%; }
.logo-mark svg { z-index: 1; }
.logo-name { font-family: 'Playfair Display', Georgia, serif; font-size: .95rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.logo-sub  { font-size: .58rem; font-weight: 500; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; display: block; margin-top: 1px; }
.hdr-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.hdr-nav > ul { display: flex; align-items: center; gap: 2px; flex: 1; }
.hdr-nav > ul > li { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; font-size: .83rem; font-weight: 500; color: var(--ink-2); padding: 8px 13px; border-radius: 7px; transition: color .2s, background .2s; }
.nav-link:hover { color: var(--navy); background: var(--blue-pale); }
/* Nav featured item (like Unipol "U COS'È UNICA UNIPOL") */
.nav-featured-link { font-weight: 700; color: var(--navy) !important; gap: 7px; }
.nav-featured-mark { width: 22px; height: 22px; background: var(--navy); border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; overflow: hidden; }
.nav-featured-mark::after { content: ''; position: absolute; top: 0; right: 0; width: 7px; height: 7px; background: var(--yellow); border-radius: 0 5px 0 60%; }
.nav-featured-mark svg { position: relative; z-index: 1; }
.nav-caret { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s; }
.hdr-nav > ul > li.open > a .nav-caret { transform: rotate(180deg); }
.mega { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%); background: var(--white); border: 1px solid rgba(12,33,66,.1); border-radius: 18px; box-shadow: 0 4px 6px rgba(12,33,66,.04), 0 24px 64px rgba(12,33,66,.18); min-width: 560px; display: none; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.hdr-nav > ul > li.open .mega { display: grid; animation: megaIn .22s var(--ease-out); }
@keyframes megaIn { from{opacity:0;transform:translateX(-50%) translateY(10px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }
.mega-hd { grid-column: 1/-1; display: flex; align-items: center; gap: 13px; padding: 15px 20px; background: var(--blue-pale); border-bottom: 1px solid var(--line); }
.mega-hd-ico { width: 36px; height: 36px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mega-hd-ico svg { width: 16px; height: 16px; stroke: var(--yellow); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mega-hd-title { font-size: .82rem; font-weight: 700; color: var(--navy); display: block; line-height: 1.3; }
.mega-hd-sub { font-size: .7rem; color: var(--ink-3); display: block; margin-top: 2px; }
.mega > li:not(.mega-hd):not(.mega-ft) { padding: 5px; }
.mega-item { display: flex; align-items: center; gap: 13px; padding: 11px 13px; border-radius: 12px; transition: background .18s, transform .18s; }
.mega-item:hover { background: var(--blue-light); transform: translateX(2px); }
.mega-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-pale); border: 1px solid var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.mega-item:hover .mega-icon { background: var(--navy); border-color: var(--navy); }
.mega-icon svg { width: 18px; height: 18px; stroke: var(--navy-2); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.mega-item:hover .mega-icon svg { stroke: var(--yellow); }
.mega-label { font-size: .87rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; display: block; }
.mega-desc  { font-size: .73rem; color: var(--ink-3); line-height: 1.5; display: block; }
.mega-ft { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; padding: 11px 20px; border-top: 1px solid var(--line); background: var(--off-white); flex-wrap: wrap; gap: 8px; }
.mega-ft-cta { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 700; color: var(--navy); transition: gap .2s; }
.mega-ft-cta:hover { gap: 11px; }
.mega-ft-cta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.mega-ft-contacts { display: flex; align-items: center; gap: 14px; }
.mega-ft-tel { font-size: .72rem; color: var(--ink-3); display: flex; align-items: center; gap: 5px; text-decoration: none; transition: color .2s; }
.mega-ft-tel:hover { color: var(--navy); }
.mega-ft-tel svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mega-ft-wa { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 600; color: #25D366; text-decoration: none; transition: opacity .2s; }
.mega-ft-wa:hover { opacity: .75; }
.mega-ft-wa svg { width: 14px; height: 14px; flex-shrink: 0; }
.hdr-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.hdr-tel { font-size: .8rem; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 6px; }
.hdr-tel svg { width: 13px; height: 13px; stroke: var(--ink-3); fill: none; stroke-width: 2; }
.hdr-tel a:hover { color: var(--navy); }
.hbg { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 7px; }
.hbg span { display: block; width: 21px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: .25s var(--ease); }
.hbg.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mob-nav { position: fixed; inset: 0; z-index: 800; background: var(--white); display: flex; flex-direction: column; padding: 90px 28px 40px; gap: 4px; pointer-events: none; opacity: 0; transform: translateX(100%); transition: opacity .3s var(--ease), transform .35s var(--ease-out); }
.mob-nav.open { opacity: 1; transform: none; pointer-events: all; }
.mob-link { font-size: 1.5rem; font-weight: 700; color: var(--ink-2); padding: 14px 0; border-bottom: 1px solid var(--line); display: block; transition: color .2s, padding-left .2s; }
.mob-link:hover { color: var(--navy); padding-left: 8px; }
.mob-cta-wrap { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* ── QUICK BAR (bottom sticky) */
#quick-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  background: var(--white); border-top: 2px solid var(--line);
  box-shadow: 0 -4px 24px rgba(12,33,66,.09);
  padding: 7px 0;
}
.qbar-inner { display: flex; align-items: center; gap: 0; justify-content: space-between; }
.qbar-nav { display: flex; align-items: stretch; flex: 1; justify-content: space-evenly; }
.qbar-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 6px 12px; border-radius: 0; cursor: pointer; flex-shrink: 0;
  font-size: .68rem; font-weight: 600; color: var(--ink-2);
  transition: color .18s var(--ease), background .18s var(--ease);
  background: transparent; border: none; min-width: 72px; position: relative;
}
.qbar-btn::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--yellow); border-radius: 0 0 3px 3px;
  transition: width .22s var(--ease);
}
.qbar-btn:hover { color: var(--navy); background: var(--off-white); }
.qbar-btn.on { color: var(--navy); }
.qbar-btn.on::after { width: 60%; }
.qbar-ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.qbar-ico svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.qbar-lbl { font-size: .66rem; font-weight: 600; white-space: nowrap; }

/* Body offset for fixed bars */
body { padding-bottom: 68px; }

/* ── 9. HERO */
#hero { background: var(--navy); padding: 142px 0 0; position: relative; overflow: hidden; }
#hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 36px 36px; mask-image: radial-gradient(ellipse 90% 90% at 50% 30%, black 20%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 30%, black 20%, transparent 80%); }
#hero::after { content: ''; position: absolute; top: -100px; right: -60px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,196,0,.09) 0%, transparent 65%); pointer-events: none; }
.hero-top { text-align: center; position: relative; z-index: 1; padding-bottom: 40px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,196,0,.12); border: 1px solid rgba(245,196,0,.25); border-radius: 100px; padding: 6px 16px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--yellow); margin-bottom: 22px; }
.hero-badge svg { width: 11px; height: 11px; stroke: var(--yellow); fill: none; stroke-width: 2; }
.hero-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.06; color: var(--white); margin-bottom: 18px; }
.hero-title em { font-style: normal; color: var(--yellow); }
.hero-sub { font-size: 1.05rem; color: var(--t2); max-width: 540px; margin: 0 auto 32px; line-height: 1.75; }
.hero-trust { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.htrust { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--t2); }
.htrust svg { width: 14px; height: 14px; stroke: var(--yellow); fill: none; stroke-width: 2.5; }

/* ── 10. QUOTE FORM (stile Unipol) */
.quote-wrap { position: relative; z-index: 2; padding-top: 36px; }
.quote-card { background: var(--white); border-radius: var(--r-xl) var(--r-xl) 0 0; box-shadow: 0 -8px 60px rgba(12,33,66,.22); padding: 40px 44px 52px; margin: 0 auto; max-width: 980px; }
.qc-header { text-align: center; margin-bottom: 32px; }
.qc-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.qc-sub   { font-size: .82rem; color: var(--ink-2); margin-top: 5px; }

/* Selettore prodotto */
.prod-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 32px; }
.prod-btn { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 8px 16px; border: 2px solid var(--line); border-radius: var(--r); background: var(--off-white); cursor: pointer; transition: all .22s var(--ease); font-size: .76rem; font-weight: 600; color: var(--ink-2); text-align: center; }
.prod-btn:hover { border-color: var(--navy-2); background: var(--blue-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(12,33,66,.1); }
.prod-btn.on { border-color: var(--navy); background: var(--navy); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(12,33,66,.3); }
.prod-ico { width: 50px; height: 50px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; transition: background .22s; box-shadow: 0 2px 6px rgba(12,33,66,.1); }
.prod-btn.on .prod-ico { background: rgba(255,255,255,.15); box-shadow: none; }
.prod-ico svg { width: 22px; height: 22px; stroke: var(--navy-2); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke .22s; }
.prod-btn.on .prod-ico svg { stroke: var(--yellow); }
.prod-btn:hover:not(.on) .prod-ico svg { stroke: var(--navy); }

/* Divider */
.qc-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.qc-divider::before, .qc-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.qc-divider span { font-size: .71rem; font-weight: 700; color: var(--ink-3); letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }

/* Prompt (nessun prodotto selezionato) */
.qc-prompt { text-align: center; padding: 32px 20px; border: 2px dashed var(--line); border-radius: var(--r); margin-bottom: 28px; }
.qc-prompt svg { width: 32px; height: 32px; stroke: var(--gray-200); fill: none; stroke-width: 1.5; margin: 0 auto 12px; display: block; }
.qc-prompt p { font-size: .88rem; color: var(--ink-3); }
.qc-prompt strong { color: var(--navy); }

/* Pannelli campi dinamici */
.fpanel-form { display: none; }
.fpanel-form.on { display: block; animation: panelIn .3s var(--ease-out); }
@keyframes panelIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

/* Griglie campi */
.form-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 14px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

/* Singolo campo */
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: .71rem; font-weight: 700; color: var(--ink-2); letter-spacing: .04em; text-transform: uppercase; }
.fg input, .fg select {
  padding: 12px 14px; border: 2px solid var(--line); border-radius: var(--r-sm);
  font-size: .88rem; color: var(--ink); background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(12,33,66,.1); }
.fg input::placeholder { color: var(--ink-3); }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

/* Riga contatti */
.contact-row { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }

/* Privacy */
.f-check { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 20px; }
.f-check input { margin-top: 3px; accent-color: var(--navy); width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; }
.f-check label { font-size: .72rem; color: var(--ink-3); line-height: 1.6; }
.f-check a { color: var(--navy); text-decoration: underline; }

/* Submit row */
.qc-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.qc-assure { display: flex; gap: 20px; flex-wrap: wrap; }
.qc-assure span { font-size: .72rem; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.qc-assure svg { width: 12px; height: 12px; stroke: var(--navy-2); fill: none; stroke-width: 2; }

/* Successo */
.qc-success { text-align: center; padding: 36px 0; display: none; }
.qc-success-ico { width: 64px; height: 64px; border-radius: 50%; background: #ECFDF5; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; animation: popIn .45s var(--ease-spring); }
@keyframes popIn { from{transform:scale(.4);opacity:0} to{transform:scale(1);opacity:1} }
.qc-success-ico svg { width: 28px; height: 28px; stroke: #16A34A; fill: none; stroke-width: 2.5; }
.qc-success h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.qc-success p  { font-size: .85rem; color: var(--ink-2); line-height: 1.7; }

/* ── 11. CREDIBILITY STRIP */
#cred { background: var(--off-white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; }
.cred-row { display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.cred-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 12px 16px; position: relative; text-align: center; }
.cred-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; bottom: 15%; width: 1px; background: var(--line); }
.cred-n { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1; }
.cred-l { font-size: .7rem; color: var(--ink-3); font-weight: 500; line-height: 1.35; text-align: center; }

/* ── 12. SERVICES */
#services { padding: 92px 0; background: var(--white); }
.sec-head { margin-bottom: 48px; }
.svc-cards { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.svc-card { background: var(--white); border: 2px solid var(--line); border-radius: var(--r-lg); padding: 28px 20px 22px; display: flex; flex-direction: column; gap: 12px; transition: all .25s var(--ease); cursor: pointer; position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.svc-card:hover { border-color: var(--navy-2); box-shadow: 0 8px 32px rgba(12,33,66,.1); transform: translateY(-3px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s; }
.svc-card:hover .svc-card-ico { background: var(--navy); }
.svc-card-ico svg { width: 21px; height: 21px; stroke: var(--navy-2); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s; }
.svc-card:hover .svc-card-ico svg { stroke: var(--yellow); }
.svc-card h3 { font-size: .9rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.svc-card p  { font-size: .76rem; color: var(--ink-2); line-height: 1.65; flex: 1; }
.svc-card-link { display: flex; align-items: center; gap: 5px; font-size: .74rem; font-weight: 700; color: var(--ink-3); transition: color .2s, gap .2s; }
.svc-card:hover .svc-card-link { color: var(--navy); gap: 9px; }
.svc-card-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ── 13. FINDER */
#finder { padding: 88px 0; background: var(--navy); }
.finder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.finder-tabs { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; }
.ftab { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border: 1px solid var(--border-navy); border-radius: var(--r-sm); background: transparent; cursor: pointer; transition: all .2s; }
.ftab:hover, .ftab.on { border-color: rgba(245,196,0,.4); background: rgba(245,196,0,.06); }
.ftab-left { display: flex; align-items: center; gap: 12px; }
.ftab-ico { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--border-navy); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.ftab.on .ftab-ico, .ftab:hover .ftab-ico { background: rgba(245,196,0,.12); border-color: rgba(245,196,0,.3); }
.ftab-ico svg { width: 15px; height: 15px; stroke: var(--t3); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.ftab.on .ftab-ico svg, .ftab:hover .ftab-ico svg { stroke: var(--yellow); }
.ftab-lbl { font-size: .86rem; font-weight: 600; color: var(--t2); transition: color .2s; }
.ftab.on .ftab-lbl, .ftab:hover .ftab-lbl { color: var(--t1); }
.ftab-arr { width: 13px; height: 13px; stroke: var(--t3); fill: none; stroke-width: 2; transition: stroke .2s, transform .2s; }
.ftab.on .ftab-arr, .ftab:hover .ftab-arr { stroke: var(--yellow); transform: translateX(4px); }
.finder-panel { background: var(--white); border-radius: var(--r-lg); padding: 32px; min-height: 320px; position: sticky; top: 90px; }
.fpanel { display: none; animation: panelIn .3s var(--ease-out); }
.fpanel.on { display: block; }
.fpanel h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); letter-spacing: -.02em; margin-bottom: 8px; }
.fpanel p  { font-size: .83rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 18px; }
.fpanel-feats { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.fpanel-feat { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: var(--ink-2); }
.fpanel-feat svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ── 14. PROCESS */
#process { padding: 92px 0; background: var(--off-white); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.pstep { background: var(--white); border: 2px solid var(--line); border-radius: var(--r-lg); padding: 36px 28px; position: relative; overflow: hidden; transition: all .25s; }
.pstep:hover { border-color: var(--navy-2); box-shadow: 0 8px 32px rgba(12,33,66,.08); }
.pstep::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.pstep:hover::before { transform: scaleX(1); }
.pstep-n { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; letter-spacing: -.06em; color: var(--blue-light); line-height: 1; margin-bottom: 20px; display: block; transition: color .3s; }
.pstep:hover .pstep-n { color: var(--yellow-l); }
.pstep h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -.01em; }
.pstep p  { font-size: .8rem; color: var(--ink-2); line-height: 1.75; }

/* ── 15. NUMBERS */
#numbers { padding: 72px 0; background: var(--navy); }
.num-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.nitem { padding: 36px 24px; text-align: center; position: relative; transition: background .2s; }
.nitem:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: var(--border-navy); }
.nitem:hover { background: rgba(255,255,255,.04); }
.nitem-n { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; letter-spacing: -.05em; color: var(--yellow); line-height: 1; display: block; margin-bottom: 8px; }
.nitem-l { font-size: .75rem; color: var(--t2); font-weight: 500; letter-spacing: .02em; }

/* ── 16. TESTIMONIALS */
#testimonials { padding: 92px 0; background: var(--white); }
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.tcard { background: var(--white); border: 2px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.tcard:hover { border-color: var(--navy-2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(12,33,66,.1); }
.tcard-stars { display: flex; gap: 3px; }
.tcard-stars svg { width: 13px; height: 13px; fill: var(--yellow); stroke: none; }
.tcard-text { font-size: .84rem; color: var(--ink-2); line-height: 1.78; flex: 1; font-style: italic; }
.tcard-text::before { content: '\201C'; }
.tcard-text::after  { content: '\201D'; }
.tcard-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.tcard-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .76rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.tcard-name { font-size: .82rem; font-weight: 700; color: var(--navy); display: block; }
.tcard-meta { font-size: .72rem; color: var(--ink-3); }

/* ── 17. PARTNERS */
#partners { padding: 56px 0; background: var(--off-white); border-top: 1px solid var(--line); }
.partners-lbl { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 26px; }
.partners-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.partner-pill { padding: 9px 20px; border: 2px solid var(--line); border-radius: 100px; font-size: .8rem; font-weight: 700; color: var(--ink-3); transition: all .2s; background: var(--white); }
.partner-pill:hover { border-color: var(--navy); color: var(--navy); }

/* ── 18. CTA */
#cta { padding: 96px 0; background: var(--navy); position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(245,196,0,.06), transparent); }
#cta::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,196,0,.35), transparent); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-left h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--t1); letter-spacing: -.03em; line-height: 1.15; }
.cta-left h2 em { font-style: normal; color: var(--yellow); }
.cta-left p { font-size: .9rem; color: var(--t2); margin-top: 12px; max-width: 420px; line-height: 1.75; }
.cta-right { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; align-items: flex-start; }
.cta-tel { font-size: .82rem; color: var(--t3); display: flex; align-items: center; gap: 7px; }
.cta-tel svg { width: 13px; height: 13px; stroke: var(--t3); }
.cta-tel a { color: var(--t1); font-weight: 700; transition: color .2s; }
.cta-tel a:hover { color: var(--yellow); }

/* ── 19. FOOTER */
footer { background: #060D1A; padding: 72px 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.foot-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.foot-brand p { font-size: .78rem; color: var(--t3); line-height: 1.78; max-width: 260px; margin-top: 16px; }
.foot-soc { display: flex; gap: 8px; margin-top: 20px; }
.fsoc { width: 33px; height: 33px; border: 1px solid var(--border-navy); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--t3); transition: all .2s; }
.fsoc:hover { border-color: var(--yellow); color: var(--yellow); }
.foot-col h4 { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--t3); margin-bottom: 14px; }
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-col a { font-size: .8rem; color: var(--t3); transition: color .2s; }
.foot-col a:hover { color: var(--t1); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.foot-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.foot-legal { font-size: .67rem; color: var(--t3); line-height: 1.7; }
.foot-legal strong { color: rgba(255,255,255,.4); }
.foot-links { display: flex; gap: 14px; }
.foot-links a { font-size: .67rem; color: var(--t3); transition: color .2s; }
.foot-links a:hover { color: var(--t1); }

/* ── 20. LANDING HERO */
.lhero { min-height: 62svh; display: flex; align-items: flex-start; padding: 130px 0 64px; background: var(--navy); position: relative; overflow: hidden; }
.lhero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%); }
.lhero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: flex-start; position: relative; z-index: 1; }
.lhero-badge { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 18px; background: rgba(245,196,0,.1); border: 1px solid rgba(245,196,0,.22); border-radius: 100px; padding: 5px 13px; font-size: .7rem; font-weight: 700; color: var(--yellow); letter-spacing: .04em; }
.lhero-badge svg { width: 12px; height: 12px; stroke: var(--yellow); fill: none; stroke-width: 2; }
.lhero-title { font-family: var(--font-head); font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.08; color: var(--white); margin-bottom: 14px; }
.lhero-title em { font-style: normal; color: var(--yellow); }
.lhero-sub { font-size: .92rem; color: var(--t2); max-width: 440px; line-height: 1.75; margin-bottom: 24px; }
.lhero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.ltrust { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--t2); }
.ltrust svg { width: 13px; height: 13px; stroke: var(--yellow); fill: none; stroke-width: 2.5; }
.lform-card { background: var(--white); border-radius: var(--r-lg); padding: 28px; box-shadow: 0 20px 60px rgba(12,33,66,.25); position: relative; }
.lform-card::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px; background: var(--yellow); border-radius: 0 0 4px 4px; }
.lform-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: -.01em; }
.lform-sub   { font-size: .75rem; color: var(--ink-3); margin-bottom: 18px; }
.lform-assure { display: flex; justify-content: center; gap: 18px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.lform-assure span { font-size: .67rem; color: var(--ink-3); display: flex; align-items: center; gap: 5px; }
.lform-assure svg { width: 11px; height: 11px; stroke: var(--navy-2); fill: none; }
.lsec-light { padding: 80px 0; background: var(--off-white); border-top: 1px solid var(--line); }
.lsec-white { padding: 80px 0; background: var(--white); }

/* ── 21. FAQ */
#faq { padding: 88px 0; background: var(--off-white); }
.faq-grid { display: flex; flex-direction: column; gap: 6px; max-width: 760px; margin-top: 44px; }
.faq-item { border: 2px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: var(--white); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; text-align: left; background: transparent; cursor: pointer; font-size: .9rem; font-weight: 600; color: var(--navy); transition: background .2s; }
.faq-q:hover { background: var(--blue-pale); }
.faq-q svg { width: 14px; height: 14px; stroke: var(--ink-3); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item.open .faq-q { background: var(--navy); color: var(--white); }
.faq-item.open .faq-q svg { transform: rotate(180deg); stroke: var(--yellow); }
.faq-a { max-height: 0; overflow: hidden; font-size: .85rem; color: var(--ink-2); line-height: 1.78; transition: max-height .35s var(--ease), padding .35s; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 20px; }

/* ── 22. PROFILES (Suncore per te — ispirato a profili Unipol) */
#profiles { padding: 96px 0; background: var(--off-white); border-top: 1px solid var(--line); }
.profiles-head { max-width: 580px; margin-bottom: 56px; }
.profiles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.profile-card {
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-xl);
  padding: 36px 28px; display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden; transition: all .28s var(--ease); cursor: default;
}
.profile-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--navy-3));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.profile-card:hover { border-color: var(--navy-2); box-shadow: 0 16px 48px rgba(12,33,66,.12); transform: translateY(-4px); }
.profile-card:hover::before { transform: scaleX(1); }
.profile-ico {
  width: 58px; height: 58px; border-radius: 16px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  transition: background .28s; margin-bottom: 20px; flex-shrink: 0;
}
.profile-card:hover .profile-ico { background: var(--navy); }
.profile-ico svg {
  width: 25px; height: 25px; stroke: var(--navy-2); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke .28s;
}
.profile-card:hover .profile-ico svg { stroke: var(--yellow); }
.profile-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin-bottom: 4px; }
.profile-sub  { font-size: .73rem; color: var(--ink-3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.profile-desc { font-size: .83rem; color: var(--ink-2); line-height: 1.78; margin-bottom: 20px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.profile-tag {
  font-size: .68rem; font-weight: 700; padding: 4px 12px; border-radius: 100px;
  background: var(--blue-pale); border: 1px solid var(--blue-light); color: var(--navy-2); letter-spacing: .03em;
  transition: all .2s;
}
.profile-card:hover .profile-tag { background: var(--blue-light); border-color: var(--navy-3); }
.profile-cta { display: flex; align-items: center; gap: 7px; font-size: .79rem; font-weight: 700; color: var(--navy); margin-top: auto; transition: gap .2s; text-decoration: none; }
.profile-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; flex-shrink: 0; }
.profile-card:hover .profile-cta { gap: 11px; }

/* ── 23. BROKER WHY (Perché scegliere un broker — differenziatore chiave) */
#broker-why { padding: 96px 0; background: var(--navy); position: relative; overflow: hidden; }
#broker-why::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 78%);
}
.bwhy-head { position: relative; z-index: 1; margin-bottom: 56px; }
.bwhy-vs {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  background: rgba(245,196,0,.1); border: 1px solid rgba(245,196,0,.2); border-radius: 100px;
  padding: 6px 16px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow);
}
.bwhy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; position: relative; z-index: 1; }
.bwhy-item {
  padding: 36px 30px; border: 1px solid var(--border-navy); border-radius: var(--r-lg);
  background: rgba(255,255,255,.04); display: flex; flex-direction: column; gap: 16px;
  transition: background .25s var(--ease), border-color .25s, transform .25s var(--ease);
}
.bwhy-item:hover { background: rgba(255,255,255,.07); border-color: rgba(245,196,0,.35); transform: translateY(-3px); }
.bwhy-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(245,196,0,.1); border: 1px solid rgba(245,196,0,.2);
  display: flex; align-items: center; justify-content: center; transition: background .25s;
}
.bwhy-item:hover .bwhy-ico { background: rgba(245,196,0,.18); }
.bwhy-ico svg { width: 22px; height: 22px; stroke: var(--yellow); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.bwhy-n { font-family: var(--font-head); font-size: 1.08rem; font-weight: 800; color: var(--t1); letter-spacing: -.02em; line-height: 1.2; }
.bwhy-txt { font-size: .83rem; color: var(--t2); line-height: 1.8; }
.bwhy-stat { font-size: .73rem; font-weight: 700; color: var(--yellow); display: flex; align-items: center; gap: 5px; margin-top: 4px; }
.bwhy-stat::before { content: ''; width: 18px; height: 2px; background: var(--yellow); border-radius: 2px; flex-shrink: 0; }

/* ── 24. RESPONSIVE */
@media (max-width: 960px) {
  .ctx-links { display: none; }
  nav.hdr-nav, .hdr-tel, .hdr-right .btn--outline-navy { display: none; }
  .hbg { display: flex; }
  .prod-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-grid-3 { grid-template-columns: 1fr 1fr; }
  .svc-cards { grid-template-columns: repeat(3,1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .finder-grid { grid-template-columns: 1fr; gap: 40px; }
  .finder-panel { position: static; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-right { align-items: center; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1/-1; }
  .lhero-inner { grid-template-columns: 1fr; gap: 40px; }
  .quote-card { padding: 28px 22px 36px; }
  .qc-submit { flex-direction: column; align-items: stretch; }
  .profiles-grid { grid-template-columns: 1fr; gap: 16px; }
  .bwhy-grid { grid-template-columns: 1fr; gap: 12px; }
  .qbar-lbl { display: none; }
  .qbar-btn { min-width: 48px; padding: 6px 10px; }
}
@media (max-width: 600px) {
  /* ctx-bar: solo i 2 tab, più alta per touch */
  #ctx-bar { height: 40px; }
  .ctx-tab { font-size: .65rem; padding: 0 16px; }
  #hdr { top: 40px; }
  #hero { padding-top: 150px; }
  .lhero { padding-top: 136px; }
  .wrap { padding: 0 18px; }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .prod-grid .prod-btn:last-child { grid-column: 1/-1; }
  .contact-grid, .form-grid-3, .form-grid-2 { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr 1fr; }
  .svc-cards .svc-card:last-child { grid-column: 1/-1; }
  .num-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom-inner { flex-direction: column; align-items: flex-start; }
  .mega { min-width: calc(100vw - 40px); grid-template-columns: 1fr; } .mega-ft-tel { display: none; }
  .hero-title { font-size: 2.2rem; }
  .lhero-title { font-size: 1.85rem; }
  .quote-card { padding: 24px 16px 32px; }

/* Nav separator & secondary links */
.nav-sep { width: 1px; height: 16px; background: var(--line); margin: 0 4px; flex-shrink: 0; }
.nav-link--sec { font-size: .8rem; font-weight: 400; color: var(--ink-3); }
.nav-link--sec:hover { color: var(--navy); background: var(--blue-pale); }
/* Header right tel as link */
.hdr-tel a { color: inherit; text-decoration: none; transition: color .2s; }
.hdr-tel a:hover { color: var(--navy); }
/* Form textarea */
.fg textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); font: inherit; font-size: .88rem; color: var(--ink); background: var(--white); resize: vertical; min-height: 60px; transition: border-color .2s; line-height: 1.5; }
.fg textarea:focus { outline: none; border-color: var(--navy); }
.fg-opt { font-size: .72rem; font-weight: 400; color: var(--ink-3); margin-left: 4px; }

/* ── Hero entrance (auto-play on load) ───────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.hero-badge { animation: fadeUp .55s var(--ease-out) .05s both; }
.hero-sub   { animation: fadeUp .6s  var(--ease-out) .45s both; }
.hero-trust { animation: fadeUp .55s var(--ease-out) .7s  both; }

/* ── Shimmer su btn--yellow ───────────────────────────────────── */
.btn--yellow { position: relative; overflow: hidden; }
.btn--yellow::after { content: ''; position: absolute; inset: 0; left: -110%; width: 55%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent); transform: skewX(-14deg); pointer-events: none; }
.btn--yellow:hover::after { left: 160%; transition: left .55s ease; }

/* ── Partner pills stagger ───────────────────────────────────── */
.partners-row { perspective: 600px; }
.partner-pill[data-reveal] { transition-duration: .5s !important; }

/* ── FAQ item reveal ─────────────────────────────────────────── */
.faq-item[data-reveal] { transition-duration: .5s !important; }

/* ── Quote card subtle entrance ──────────────────────────────── */
.quote-card[data-reveal] { transition-duration: .7s !important; }

/* ── Blink eyebrow dot (già c'è ma rallentiamo un po') ───────── */

/* ── Reduce motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero-sub, .hero-trust { animation: none; }
  .btn--yellow::after { display: none; }
}

/* ─── Custom Select ─── */
.cs-wrap { position: relative; }
.cs-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 14px;
  background: var(--white); border: 2px solid var(--line); border-radius: var(--r-sm);
  font-size: .88rem; color: var(--ink); cursor: pointer; text-align: left;
  transition: border-color .2s, box-shadow .2s; font-family: inherit;
}
.cs-trigger:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(12,33,66,.1); }
.cs-trigger:hover { border-color: #94a3b8; }
.cs-val { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-val.is-placeholder { color: var(--ink-3); }
.cs-arrow { flex-shrink: 0; margin-left: 8px; color: #94a3b8; transition: transform .2s var(--ease-out); }
.cs-wrap.is-open .cs-arrow { transform: rotate(180deg); }
.cs-list {
  position: absolute; z-index: 300; top: calc(100% + 5px); left: 0; right: 0;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 14px; box-shadow: 0 12px 32px rgba(12,33,66,.14);
  list-style: none; margin: 0; padding: 6px;
  max-height: 230px; overflow-y: auto;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .18s var(--ease-out), transform .18s var(--ease-out);
}
.cs-wrap.is-open .cs-list { opacity: 1; transform: none; pointer-events: auto; }
.cs-opt {
  padding: 11px 13px; border-radius: 9px; cursor: pointer;
  font-size: .88rem; color: var(--ink);
  transition: background .12s;
}
.cs-opt:hover { background: #f1f5f9; }
.cs-opt.is-sel { background: #eff6ff; color: var(--navy); font-weight: 700; }
@media (prefers-reduced-motion: reduce) {
  .cs-list { transition: none; }
  .cs-arrow { transition: none; }
}
