/* ============================================================
   Confronta Energia — by Fashion Innova
   Brand: Modern Eco — petrolio + lime + coral CTA
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #F4F8F6;
  --bg-cream:  #ECF3F0;
  --surface:   #FFFFFF;
  --ink:       #0A1F2C;
  --ink-soft:  #1F3640;
  --ink-mid:   #44606D;
  --muted:     #6F8694;
  --line:      #D6E2DD;
  --line-soft: #E8F0EC;

  /* Brand colors */
  --teal:       #0F766E;
  --teal-deep:  #0B5751;
  --teal-soft:  #CCFBF1;
  --teal-mint:  #E0F8F3;

  --lime:       #84CC16;
  --lime-deep:  #65A30D;
  --lime-soft:  #ECFCCB;

  --coral:      #F97316;
  --coral-deep: #EA580C;
  --coral-light:#FB923C;
  --coral-soft: #FFEDD5;

  /* Aliases retro-compat (HTML usa ancora .gold/--gold*) */
  --gold:       var(--coral);
  --gold-deep:  var(--coral-deep);
  --gold-light: var(--coral-light);
  --gold-soft:  var(--coral-soft);

  /* Typography */
  --font-head: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1200px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm:  0 1px 2px rgba(10, 31, 44, 0.05);
  --shadow:     0 12px 32px rgba(10, 31, 44, 0.08);
  --shadow-lg:  0 24px 60px rgba(10, 31, 44, 0.18);
  --shadow-cta: 0 14px 30px rgba(249, 115, 22, 0.32);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur:  240ms;

  --header-h: 76px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover { color: var(--teal-deep); }

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--lime-soft);
  padding: 12px 16px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 0.55em 0;
}

h1 { font-size: clamp(2.2rem, 4.4vw + 0.6rem, 3.8rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 2vw + 1rem, 2.5rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 0.9vw + 1rem, 1.6rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 0.4vw + 1rem, 1.25rem); font-weight: 700; }
h5 { font-size: 1.02rem; font-weight: 700; }
h6 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal-deep); }

p { margin: 0 0 1em 0; }

/* Risemantizzata: era serif Cormorant italic, ora display italic accent */
.serif-italic {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  color: var(--lime-deep);
}

.gold       { color: var(--coral); }
.gold-light { color: var(--coral-light); }
.muted      { color: var(--muted); font-weight: 400; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 31, 44, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(132, 204, 22, 0.18);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.site-header.scrolled {
  background: rgba(10, 31, 44, 0.98);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-body);
}
.brand:hover { color: #fff; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--lime) 100%);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.45);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.brand-tag  { font-size: 0.7rem; color: var(--lime-soft); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.brand-tag.gold { color: var(--lime); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: #DCE6E2;
  font-size: 0.94rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color var(--dur) var(--ease);
}

.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease);
  border-radius: 2px;
}

.site-nav a:hover { color: var(--lime-soft); }
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(165deg, var(--coral-light) 0%, var(--coral) 45%, var(--coral-deep) 100%);
  color: #fff !important;
  padding: 12px 20px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-cta:hover {
  background: linear-gradient(165deg, #FB923C 0%, var(--coral-light) 50%, var(--coral) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff !important;
}
.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.nav-cta i { font-size: 1.08rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border-radius: 12px;
  transition: background var(--dur) var(--ease);
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}
.nav-toggle:active {
  background: rgba(255, 255, 255, 0.14);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: linear-gradient(180deg, #0A1F2C 0%, #0E2D31 60%, #0A2A2A 100%);
  color: #E6F1ED;
  padding: clamp(64px, 8vw, 120px) 0 clamp(72px, 9vw, 140px);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at 88% 12%, rgba(132, 204, 22, 0.18), transparent 55%),
    radial-gradient(700px circle at 8% 92%, rgba(15, 118, 110, 0.45), transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(132, 204, 22, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 204, 22, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { max-width: 640px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid rgba(132, 204, 22, 0.4);
  border-radius: 999px;
  background: rgba(132, 204, 22, 0.08);
  margin-bottom: 24px;
}
.eyebrow i { font-size: 0.95rem; color: var(--lime); }
.eyebrow.gold-light { color: var(--coral-light); border-color: rgba(251, 146, 60, 0.4); background: rgba(251, 146, 60, 0.08); }
.eyebrow.gold-light i { color: var(--coral-light); }

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-weight: 800;
}
.hero h1 .serif-italic { display: block; color: var(--lime); margin-top: 4px; font-weight: 800; }
.hero-h1-line {
  display: block;
  font-family: var(--font-body);
  font-size: 0.36em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B7C9C2;
  margin-top: 18px;
}
.hero-h1-line .gold { color: var(--coral-light); font-weight: 700; }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #C7D6D1;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(165deg, var(--coral-light) 0%, var(--coral) 40%, var(--coral-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-cta), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  background: linear-gradient(165deg, #FB923C 0%, var(--coral-light) 45%, var(--coral) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(249, 115, 22, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border-color: rgba(204, 251, 241, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.btn-ghost:hover {
  background: rgba(132, 204, 22, 0.16);
  border-color: var(--lime);
  color: var(--lime-soft);
  box-shadow: 0 0 0 1px rgba(132, 204, 22, 0.25);
}
.btn-ghost:active {
  background: rgba(132, 204, 22, 0.22);
}

.trust-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  font-size: 0.88rem;
  color: #B7C9C2;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust-strip i { color: var(--lime); font-size: 1.05rem; }

/* Hero card */
.hero-card {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(132, 204, 22, 0.18), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(160deg, #0F2933 0%, #0A1F2C 100%);
  border: 1px solid rgba(132, 204, 22, 0.22);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(132, 204, 22, 0.18);
}

.hc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hc-row:last-of-type { border-bottom: 0; }

.hc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(132, 204, 22, 0.12);
  border: 1px solid rgba(132, 204, 22, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hc-label {
  font-family: var(--font-head);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}
.hc-val {
  color: #C7D6D1;
  font-size: 0.86rem;
  margin-top: 2px;
}

.hc-mini {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-light);
  background: rgba(251, 146, 60, 0.10);
  border: 1px solid rgba(251, 146, 60, 0.30);
  border-radius: 999px;
  vertical-align: middle;
}

.hc-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(132, 204, 22, 0.20);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #B7C9C2;
  font-size: 0.85rem;
}
.hc-foot i { color: var(--lime); }

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: clamp(64px, 7vw, 110px) 0;
}

.section-light { background: var(--surface); }
.section-cream { background: var(--bg-cream); }
.section-dark {
  background: linear-gradient(180deg, #0A1F2C 0%, #0E2D31 100%);
  color: #DCE6E2;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #FFFFFF; }
.section-dark .section-lead { color: #B7C9C2; }

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.section-head.with-icon { padding-top: 8px; }

.section-head.dark .section-eyebrow {
  color: var(--lime);
  border-color: rgba(132, 204, 22, 0.45);
  background: rgba(132, 204, 22, 0.08);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
  padding: 6px 14px;
  border: 1px solid var(--teal-soft);
  border-radius: 999px;
  background: var(--teal-mint);
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 16px auto 0;
}

.topic-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: var(--teal-mint);
  color: var(--teal-deep);
  border: 1px solid var(--teal-soft);
}

.topic-icon.topic-luce {
  background: var(--coral-soft);
  color: var(--coral-deep);
  border-color: rgba(249, 115, 22, 0.25);
}
.topic-icon.topic-gas {
  background: var(--lime-soft);
  color: var(--lime-deep);
  border-color: rgba(132, 204, 22, 0.30);
}
.topic-icon.topic-net {
  background: var(--teal-soft);
  color: var(--teal-deep);
  border-color: rgba(15, 118, 110, 0.25);
}

.sub-h {
  text-align: center;
  font-size: clamp(1.3rem, 1vw + 1rem, 1.7rem);
  margin: 0 0 32px;
  color: var(--ink);
  position: relative;
  padding-bottom: 16px;
}
.sub-h::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  border-radius: 2px;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.benefit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  transition: width var(--dur) var(--ease);
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal-soft);
}
.benefit:hover::before { width: 100%; }

.benefit-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.benefit h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.benefit p {
  font-size: 0.94rem;
  color: var(--ink-mid);
  margin: 0;
}

/* ============================================================
   CARDS (luce / gas / internet)
   ============================================================ */

.card-grid {
  display: grid;
  gap: 22px;
  margin-bottom: 56px;
}
.card-grid.c3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid.c4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.12);
  border-color: var(--teal-soft);
}

.card header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.card header i { font-size: 1.5rem; }
.card header i.gold { color: var(--teal); }

.card h4 { margin: 0; font-size: 1.18rem; color: var(--ink); }

.card p { font-size: 0.94rem; color: var(--ink-mid); }

.card-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.card-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--ink-mid);
  margin-bottom: 8px;
}
.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime-deep);
  font-weight: 700;
  font-size: 0.95rem;
  top: -1px;
}
.card-list li:last-child { margin-bottom: 0; }

/* tech cards */
.tech-card .tech-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 5px 10px;
  background: var(--teal);
  color: var(--lime-soft);
  border-radius: 6px;
  font-family: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tech-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 0.85rem;
  color: var(--ink-mid);
}
.tech-meta i { color: var(--teal); margin-right: 5px; }

.tech-card.emphasis {
  background: linear-gradient(160deg, var(--teal-mint) 0%, #FFFFFF 100%);
  border-color: var(--teal-soft);
}
.tech-card.emphasis header i { font-size: 1.7rem; color: var(--teal); }
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 18px 12px 4px 4px;
  margin-left: -4px;
  min-height: 48px;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.card-cta i { color: var(--coral); }
.card-cta:hover { color: var(--coral-deep); }
.card-cta:active {
  background: rgba(249, 115, 22, 0.08);
}

/* ============================================================
   SPLIT PANEL (componenti bolletta + callout)
   ============================================================ */

.split-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 56px;
}

.split-text {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.split-text h3 {
  margin-top: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.split-text p { color: var(--ink-mid); }
.split-text strong { color: var(--ink); font-weight: 700; }

.callout {
  background: linear-gradient(160deg, #0F2933 0%, #0A1F2C 100%);
  color: #DCE6E2;
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.22), transparent 70%);
  pointer-events: none;
}
.callout-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(132, 204, 22, 0.12);
  border: 1px solid rgba(132, 204, 22, 0.32);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 700;
}
.callout h4 { color: #FFFFFF; margin-bottom: 12px; }
.callout p  { color: #C7D6D1; font-size: 0.94rem; margin: 0; }
.callout strong { color: var(--lime-soft); font-weight: 700; }
.callout code {
  background: rgba(132, 204, 22, 0.14);
  color: var(--lime-soft);
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 0.88em;
  font-family: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}

/* ============================================================
   HOW TO CHOOSE
   ============================================================ */

.how-to-choose {
  background: linear-gradient(160deg, var(--lime-soft) 0%, var(--teal-mint) 100%);
  border: 1px solid rgba(132, 204, 22, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px clamp(24px, 4vw, 48px);
}
.how-to-choose h3 {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
  color: var(--ink);
}
.how-to-choose h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--lime-deep));
  border-radius: 2px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.choose-grid > div {
  text-align: center;
  padding: 8px;
}
.choose-grid i {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  color: var(--lime-deep);
}
.choose-grid i.gold { color: var(--lime-deep); }
.choose-grid h5 { margin: 0 0 6px; color: var(--ink); }
.choose-grid p  { margin: 0; font-size: 0.9rem; color: var(--ink-mid); }

/* ============================================================
   GUIDES (dark section)
   ============================================================ */

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.guide-col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  color: #FFFFFF;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(132, 204, 22, 0.28);
}
.guide-col-title i { color: var(--lime); font-size: 1.5rem; }

.guide-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 0;
}
.guide-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 32px 16px 0;
  font-weight: 600;
  font-size: 0.98rem;
  color: #DCE6E2;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.guide-item summary::-webkit-details-marker { display: none; }
.guide-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.guide-item[open] summary::after {
  content: '−';
  background: var(--lime);
  color: var(--ink);
}
.guide-item summary:hover { color: var(--lime-soft); }
.guide-item p {
  color: #B7C9C2;
  font-size: 0.93rem;
  padding: 0 0 18px;
  margin: 0;
}

/* ============================================================
   STATS
   ============================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.stat::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  opacity: 0.7;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.14);
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem);
  font-weight: 800;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 0.86rem;
  color: var(--ink-mid);
  line-height: 1.4;
}

.authority-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-deep);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.auth-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--teal-mint);
  color: var(--teal-deep);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid var(--teal-soft);
}
.authority-row h4 { margin: 0 0 6px; }
.authority-row p { margin: 0; font-size: 0.95rem; color: var(--ink-mid); }
.authority-row strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   PANORAMA FORNITORI
   ============================================================ */

.panorama-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.panorama-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
}

.panorama-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 70%);
  pointer-events: none;
}

.panorama-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.12);
  border-color: var(--teal-soft);
}

.panorama-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal-mint);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  border: 1px solid var(--teal-soft);
}

.panorama-card h3 {
  font-size: 1.18rem;
  margin: 0 0 8px;
  color: var(--ink);
}

.panorama-card p {
  font-size: 0.92rem;
  color: var(--ink-mid);
  margin: 0;
}

.panorama-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(160deg, var(--lime-soft) 0%, var(--teal-mint) 100%);
  border: 1px solid rgba(132, 204, 22, 0.35);
  border-left: 4px solid var(--teal-deep);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.panorama-note i {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--teal-deep);
  line-height: 1.4;
}

.panorama-note p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .panorama-note { flex-direction: column; gap: 10px; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-container { max-width: 1100px; }

.faq-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.faq-col-title {
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 32px 16px 0;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--teal);
  color: #fff;
}
.faq-item summary:hover { color: var(--teal-deep); }
.faq-item p {
  color: var(--ink-mid);
  font-size: 0.92rem;
  padding: 0 0 18px;
  margin: 0;
}

/* ============================================================
   CTA FINALE
   ============================================================ */

.cta-final {
  position: relative;
  background: radial-gradient(ellipse at top right, #0F2933 0%, #0A1F2C 70%);
  color: #E6F1ED;
  padding: clamp(64px, 7vw, 100px) 0;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px circle at 12% 80%, rgba(132, 204, 22, 0.15), transparent 60%),
    radial-gradient(500px circle at 88% 12%, rgba(249, 115, 22, 0.10), transparent 60%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-content h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}
.cta-content h2 .serif-italic { color: var(--lime); }
.cta-content p {
  color: #C7D6D1;
  font-size: 1.02rem;
  max-width: 560px;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 18px;
  font-size: 0.88rem;
  color: #B7C9C2;
}
.cta-features i { color: var(--lime); margin-right: 6px; }

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.cta-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 440px;
}
.cta-action-buttons .btn {
  font-size: 0.93rem;
  padding: 12px 18px;
  min-height: 44px;
}
.cta-action-buttons .btn i {
  font-size: 1.05rem;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(165deg, var(--coral-light) 0%, var(--coral) 45%, var(--coral-deep) 100%);
  color: #fff;
  padding: 18px 30px;
  min-height: 56px;
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(249, 115, 22, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.phone-pill:hover {
  background: linear-gradient(165deg, #FB923C 0%, var(--coral-light) 50%, var(--coral) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 26px 56px rgba(249, 115, 22, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.phone-pill:active {
  transform: translateY(-1px);
}
.phone-pill i {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  background: var(--teal-deep);
  color: var(--lime-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(132, 204, 22, 0.35);
}
.phone-pill-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
  text-align: left;
}
.phone-pill-num {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
  text-align: left;
  letter-spacing: -0.01em;
}

.cta-hours {
  margin: 0;
  color: #B7C9C2;
  font-size: 0.85rem;
}
.cta-hours i { color: var(--lime); margin-right: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #06141C;
  color: #97AAA3;
  padding: 72px 0 28px;
  border-top: 1px solid rgba(132, 204, 22, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand { margin-bottom: 18px; }
.footer-claim {
  font-size: 0.92rem;
  color: #8AA199;
  max-width: 360px;
  margin-bottom: 18px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--coral-light);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.footer-phone:hover { color: var(--coral); }
.footer-phone i {
  font-size: 1.05rem;
  background: var(--teal-deep);
  color: var(--lime-soft);
  border: 1px solid rgba(132, 204, 22, 0.32);
  padding: 8px;
  border-radius: 50%;
}

.site-footer h5 {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a {
  color: #97AAA3;
  font-size: 0.92rem;
  transition: color var(--dur) var(--ease);
}
.site-footer ul a:hover { color: var(--lime-soft); }

.disclaimer-block {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  margin-bottom: 28px;
}
.disclaimer-block h6 {
  margin-bottom: 14px;
  color: var(--lime);
}
.disclaimer-block p {
  font-size: 0.84rem;
  color: #7A8E87;
  line-height: 1.65;
  margin-bottom: 10px;
}
.disclaimer-block strong { color: #C7D6D1; font-weight: 700; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom small {
  display: block;
  font-size: 0.82rem;
  color: #6F8694;
  line-height: 1.35;
}
.legal-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  row-gap: 6px;
  padding: 0;
  margin: 0;
}
.legal-links a {
  color: #7A8E87;
  font-size: 0.82rem;
}
.legal-links a:hover { color: var(--lime); }
.footer-bottom .legal-links li {
  margin-bottom: 0;
}

/* ============================================================
   BARRA CHIAMATA FISSA (tutte le pagine — nascosta solo su disclaimer + fondo home)
   ============================================================ */

body.has-call-dock .site-footer {
  padding-bottom: calc(16px + 56px + env(safe-area-inset-bottom, 0px));
}

.site-call-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 0 0 env(safe-area-inset-bottom, 0px);
  background: linear-gradient(180deg, rgba(10, 31, 44, 0.2) 0%, rgba(10, 31, 44, 0.96) 28%, #0A1F2C 100%);
  border-top: 1px solid rgba(132, 204, 22, 0.28);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 280ms var(--ease), opacity 260ms var(--ease), visibility 0s linear 0s, box-shadow 280ms var(--ease);
}

.site-call-dock.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: none;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease), visibility 0s linear 280ms;
}

body.has-call-dock.call-dock-retracted .site-footer {
  padding-bottom: 28px;
}

.site-call-dock__link {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 20px 14px;
  min-height: 56px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  -webkit-tap-highlight-color: transparent;
}
.site-call-dock__link:hover {
  color: #fff;
}
.site-call-dock__link:active {
  opacity: 0.92;
}

.site-call-dock__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(165deg, var(--coral-light) 0%, var(--coral) 55%, var(--coral-deep) 100%);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.site-call-dock__icon i {
  font-size: 1.25rem;
}

.site-call-dock__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.site-call-dock__num {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.site-call-dock__hint {
  font-size: 0.78rem;
  font-weight: 600;
  color: #B7C9C2;
  letter-spacing: 0.02em;
}

.site-call-dock__action {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--lime-soft);
}
.site-call-dock__action i {
  font-size: 1.25rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 460px; margin: 0 auto; width: 100%; }
  .split-panel { grid-template-columns: 1fr; }
  .cta-final-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .cta-content { margin: 0 auto; }
  .cta-content p { margin-left: auto; margin-right: auto; }
  .cta-features { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Overlay dietro al menu mobile (inserito da main.js) */
.nav-backdrop {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(10, 31, 44, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: nav-backdrop-in 200ms var(--ease) forwards;
}
@keyframes nav-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  /* fixed dentro header sticky+backdrop crea pannello invisibile: usiamo absolute sotto la barra */
  .site-header {
    overflow: visible;
    z-index: 200;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 31, 44, 0.96);
  }

  .header-inner {
    position: relative;
    z-index: 2;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(10, 31, 44, 0.98);
    border-top: 1px solid rgba(132, 204, 22, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 20px 28px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), visibility 0s linear var(--dur);
    z-index: 1;
  }
  body.menu-open .site-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), visibility 0s linear 0s;
  }
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-call-dock {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    visibility: hidden;
    transition: opacity 180ms var(--ease), transform 200ms var(--ease), visibility 0s linear 200ms;
  }

  .site-nav a {
    padding: 16px 8px;
    font-size: 1.08rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav a:active {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    margin-top: 20px;
    justify-content: center;
    border-bottom: 0 !important;
    padding: 16px 24px !important;
    font-size: 1.02rem !important;
    min-height: 52px;
  }

  .hero { padding: 56px 0 72px; }
  .hero-ctas .btn.btn-primary {
    flex: 1 1 100%;
    width: 100%;
  }
  .hero-ctas .btn.btn-ghost {
    flex: 1 1 calc(50% - 7px);
    justify-content: center;
    min-width: 0;
    padding: 13px 16px;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .trust-strip { font-size: 0.85rem; gap: 12px 20px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }

  .split-text { padding: 24px; }
  .callout    { padding: 24px; }
  .how-to-choose { padding: 28px 20px; }
  .authority-row { flex-direction: column; gap: 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 12px;
  }

}

@media (max-width: 480px) {
  .brand-tag    { display: none; }
  .brand-name   { font-size: 1.05rem; }
  .phone-pill   { padding: 14px 20px; gap: 12px; }
  .phone-pill-num { font-size: 1.25rem; }
  .phone-pill i { width: 40px; height: 40px; font-size: 1.3rem; }
  .site-call-dock__hint { display: none; }
  .site-call-dock__link { padding-inline: 16px; min-height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
