/* SunGuard Energy — Enterprise Site CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Dancing+Script:wght@600&display=swap');

:root {
  --navy: #1a3a6a;
  --navy-d: #112448;
  --navy-m: #264d82;
  --green: #4d9e27;
  --green-d: #3a7d1a;
  --green-l: #eaf4e2;
  --orange: #e8870d;
  --orange-d: #c46d00;
  --orange-l: #fdf2dc;
  --ink: #1a2332;
  --ink-s: #334155;
  --muted: #64748b;
  --muted-l: #94a3b8;
  --bg: #ffffff;
  --bg2: #f6f8fc;
  --bg3: #eef1f7;
  --border: #e2e8f0;
  --border2: #cbd5e1;
  --hero-placeholder: #5b626c; /* grigio neutro mostrato sotto il video hero prima del caricamento */
  --shadow: 0 1px 2px rgba(12,31,63,.04), 0 4px 16px rgba(12,31,63,.07);
  --shadow-md: 0 4px 8px rgba(12,31,63,.05), 0 12px 28px rgba(12,31,63,.10);
  --shadow-lg: 0 8px 16px rgba(12,31,63,.06), 0 24px 52px rgba(12,31,63,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(77,158,39,.18); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Icon Utility ── */
.ic { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── Layout ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.page-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--bg2); }
.section-dark { background: var(--navy); color: #fff; }

/* ── Typography ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-d); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}
.section-dark .eyebrow { color: #86d24e; }
/* Negli hero con foto l'eyebrow verde si perdeva: targhetta scura + verde chiaro */
.page-hero .eyebrow {
  color: #a9e884;
  background: rgba(7, 19, 42, .55);
  padding: .4rem .85rem;
  border-radius: 999px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.page-hero .eyebrow::before { background: var(--green); }
.section-dark .eyebrow::before { background: linear-gradient(90deg, #86d24e, var(--orange)); }

.h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.08; letter-spacing: -.025em; }
.h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 1rem; }
.h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
.lead { font-size: clamp(.95rem, 1.3vw, 1.08rem); color: var(--muted); line-height: 1.78; max-width: 640px; }
.section-dark .lead { color: rgba(255,255,255,.78); }

em.accent {
  font-style: normal;
  background: linear-gradient(105deg, #6dd437, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Nav ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 88px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(0,0,0,0.35);
  box-shadow: none;
  overflow: visible;
  transition: background .3s, box-shadow .35s, backdrop-filter .3s, height .3s;
}
#site-nav.nav-solid {
  height: 84px;
  background: #1e2228; /* opaco: allo scroll l'header diventa grigio scuro come il footer */
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}

.nav-logo {
  display: flex; align-items: center;
  align-self: center;
  padding: 0 1.5rem 0 0;
}
.nav-logo img { height: 56px; width: auto; }
.nav-logo img.logo-dark { display: none; }
.nav-logo img.logo-light { display: block; }

.nav-logo { order: 1; }
.nav-links { order: 2; margin-left: auto; }
.nav-util { order: 3; }
.nav-burger { order: 4; }

.nav-links {
  display: flex; align-items: center; gap: .1rem; list-style: none;
}
.nav-links li { display: flex; align-items: center; }
.nav-links li + li::before {
  content: '';
  width: 1px; height: 13px; flex-shrink: 0;
  background: rgba(255,255,255,.22);
  margin-right: .15rem;
}
.nav-links a {
  font-size: .84rem; font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 8px 10px; border-radius: var(--radius-sm);
  transition: color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover { color: #fff; background: none; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.nav-links a.nav-active { color: #fff !important; font-weight: 600; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }

/* Nav util — lang + user icon (top right) */
.nav-util {
  position: static;
  display: flex; align-items: center; gap: .55rem;
  flex-shrink: 0;
  margin-left: .75rem;
}
.nav-user {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.28);
  transition: color .2s, border-color .2s, background .2s;
  flex-shrink: 0;
}
.nav-user svg { width: 17px; height: 17px; }
.nav-user:hover { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  margin-left: .75rem; padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  font-size: .76rem;
}

.lang-switcher button {
  background: none; border: none; cursor: pointer;
  padding: 2px 5px;
  border-radius: 6px;
  font-size: .75rem; font-weight: 600; letter-spacing: .03em;
  color: rgba(255,255,255,.55); transition: .2s;
}

.lang-switcher button:hover,
.lang-switcher button.lang-active { color: #fff; background: rgba(255,255,255,.15); }

/* Mobile nav */
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
#site-nav.nav-solid .nav-burger span { background: #fff; }

@media (max-width: 900px) {
  #site-nav { height: 72px; padding: 0 clamp(1.25rem, 4vw, 3rem); align-items: center; }
  #site-nav.nav-solid { height: 72px; }
  .nav-logo { padding: 0; }
  .nav-logo img { height: 44px; }
  .nav-burger { display: flex; }
  .nav-util { position: static; margin-left: auto; gap: .5rem; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(5,15,40,0.97); padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 12px 32px rgba(0,0,0,.4); gap: .3rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,.82) !important; }
  .nav-links li + li::before { display: none; }
  .lang-switcher { margin-left: 0; justify-content: center; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); }
  .lang-switcher button { color: rgba(255,255,255,.55); }
  .lang-switcher button:hover, .lang-switcher button.lang-active { color: #fff; background: rgba(255,255,255,.15); }
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; background: var(--hero-placeholder);
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--hero-placeholder);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  50%  { transform: scale(1.13) translate(-1.5%, .8%); }
  100% { transform: scale(1.0) translate(0, 0); }
}
.hero-overlay {
  display: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 120px clamp(1.25rem, 4vw, 3rem) 80px;
  width: 100%;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border: none; cursor: pointer;
  font-size: .93rem; font-weight: 600; font-family: inherit;
  text-decoration: none; transition: .22s; white-space: nowrap;
  border-radius: var(--radius);
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--orange));
  color: #fff; box-shadow: 0 8px 26px rgba(77,158,39,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(77,158,39,.48); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff; background: rgba(255,255,255,.07);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn-outline-dark {
  border: 1.5px solid var(--border2); color: var(--ink-s);
  background: var(--bg);
}
.btn-outline-dark:hover { border-color: var(--green); color: var(--green-d); background: var(--green-l); }
.btn-sm { padding: 9px 18px; font-size: .82rem; gap: 6px; }
.btn-sm .ic { width: 16px; height: 16px; }

/* ── Cards ── */
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.15rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-accent-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: .3s;
}
.card:hover .card-accent-bar { transform: scaleX(1); }

/* Icon box — set custom SunGuard: box bianco bordato, tessera d'accento sull'angolo */
.icon-box {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid var(--border2); color: var(--ink-s);
  position: relative; flex-shrink: 0; --accent: var(--green);
  border-radius: var(--radius-sm);
}
.icon-box::after { content: ''; position: absolute; right: -1.5px; bottom: -1.5px; width: 10px; height: 10px; background: var(--accent); }
.icon-box.orange { --accent: var(--orange); }
.icon-box.navy { --accent: var(--navy); }
.icon-box.lg { width: 62px; height: 62px; }
.icon-box .ic { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: square; }
.icon-box.lg .ic { width: 28px; height: 28px; }

/* ── Stats ── */
.stat-block b { display: block; font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: #fff; }
.stat-block b i { font-style: normal; color: var(--orange); }
.stat-block span { font-size: .78rem; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .07em; font-weight: 500; display: block; margin-top: .4rem; }

/* ── Chips ── */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.09); backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
}
.chip .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(77,158,39,.5); }
  50% { box-shadow: 0 0 0 7px rgba(77,158,39,0); }
}

/* Hero chip — desktop: top-right corner; mobile: inline */
.hero-chip { position: absolute; top: 0; right: 0; margin: 0; }
@media (max-width: 900px) {
  .hero-chip { position: static; margin-bottom: 1.25rem; }
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(120deg, #0e2442 0%, #152d52 50%, #1a2e0e 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -30%; right: 0; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(77,158,39,.2), transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -40%; left: 5%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,135,13,.15), transparent 65%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }

/* ── Footer ── */
#site-footer {
  background: #1e2228; color: rgba(255,255,255,.8);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-brand p, .footer-brand div {
  font-size: .85rem; line-height: 1.75;
  color: rgba(255,255,255,.6); margin-top: 1.2rem; max-width: 280px;
}
.footer-brand div strong {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: .7rem;
}
.footer-brand div p { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-top: 0; margin-bottom: .45rem; max-width: none; }
.footer-logo img { height: 52px; width: auto; }
.footer-col h5 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.45); margin-bottom: 1.1rem;
}
.footer-col a {
  display: block; font-size: .85rem; color: rgba(255,255,255,.65);
  margin-bottom: .55rem; transition: color .2s;
}
.footer-col a:hover { color: var(--green); }
.footer-col .footer-contact { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-col .footer-contact strong { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem 0;
  font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-tagline {
  font-style: italic; font-size: .88rem;
  color: rgba(77,158,39,.8); letter-spacing: .04em;
}

/* ── Back to top ── */
#back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  opacity: 0; transform: translateY(12px);
  transition: opacity .25s, transform .25s, background .2s;
  pointer-events: none;
}
#back-to-top svg { width: 20px; height: 20px; }
#back-to-top.btt-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: var(--green-d); transform: translateY(-2px); }

/* ── Page Hero (inner pages, 2560×555 section video) ── */
.page-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2560 / 555;
  max-height: 555px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  /* navy fallback while the mp4 is empty/missing */
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy-m) 100%);
  /* #site-nav is 88px fixed; keep titles below the header */
  padding: 108px 0 36px;
  box-sizing: border-box;
}
.page-hero + .page-section { padding-top: clamp(2rem, 4vw, 3rem); }
.page-hero + .wrap { padding-top: clamp(2rem, 4vw, 3rem); }
.page-hero::after {
  content: '';
  position: absolute; top: -20%; right: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(77,158,39,.15), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.page-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(7,19,42,.62) 0%, rgba(7,19,42,.45) 60%, rgba(7,19,42,.72) 100%);
}
.page-hero-inner { position: relative; z-index: 2; width: 100%; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.76); max-width: none; }
@media (max-width: 900px) {
  .page-hero {
    aspect-ratio: unset;
    max-height: none;
    min-height: 280px;
    padding: 104px 0 32px;
  }
}

/* ── Hero split layout (testo + immagine) ── */
.hero-split { display: flex; align-items: center; gap: clamp(2rem, 5vw, 4rem); }
.hero-split-text { flex: 1 1 0; min-width: 0; }
.hero-split-img { flex: 0 0 auto; width: clamp(220px, 35%, 460px); }
.hero-split-img > * {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  opacity: 0;
  transform: translateX(28px);
  animation: heroImgIn .9s .35s cubic-bezier(.22,.68,0,1.2) forwards;
}
.hero-img-ph {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; color: rgba(255,255,255,.35); font-size: .8rem; letter-spacing: .06em;
  opacity: 0; transform: translateX(28px);
  animation: heroImgIn .9s .35s cubic-bezier(.22,.68,0,1.2) forwards;
}
.hero-img-ph svg { width: 36px; height: 36px; stroke: rgba(255,255,255,.25); fill: none; stroke-width: 1.5; }
@keyframes heroImgIn { to { opacity: 1; transform: translateX(0); } }
@media (max-width: 720px) {
  .hero-split { flex-direction: column; }
  .hero-split-img { width: 100%; max-width: 440px; }
}

/* ── Forms ── */
.form-card {
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow-lg);
}
.fg { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.fg label { font-size: .78rem; font-weight: 600; color: var(--ink-s); }
.fg input, .fg select, .fg textarea {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); color: var(--ink);
  padding: 11px 14px; font-size: .9rem; font-family: inherit;
  outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green); background: var(--bg);
  box-shadow: 0 0 0 3px rgba(77,158,39,.12);
}
.fg textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-form {
  width: 100%; background: linear-gradient(135deg, var(--green), var(--orange));
  color: #fff; font-weight: 600; padding: 14px;
  border: none; cursor: pointer;
  font-size: .95rem; font-family: inherit; transition: .22s;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(77,158,39,.25); margin-top: .5rem;
}
.btn-form:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(77,158,39,.4); }

/* ── Contact items ── */
.contact-item {
  display: flex; gap: 1.1rem; align-items: flex-start; margin-bottom: 2rem;
}
.contact-item h5 {
  font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--green-d); margin-bottom: .3rem;
}
.contact-item p { font-size: .92rem; color: var(--ink-s); line-height: 1.6; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .8s both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .45s; }

/* ── Grid utilities ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.grid-2-1 { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

/* ── Text Justify ── */
.card p,
.prod-card p,
.dl-card p,
.cci-feature p,
.law-box p,
.page-section > .wrap > p,
.hero-split-text p,
.form-card p,
.cont-address-block p,
.cont-support-left p,
.dl-cta-strip p,
.footer-brand p,
.section-text p { text-align: justify; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-content { padding-top: 100px; }
}

/* ── Shared restyle helpers (existing class names) ── */
.hsb-inner { border-radius: var(--radius-lg); }
.hsb-btn { border-radius: var(--radius); }
.home-card { border-radius: var(--radius); }
.home-intro-card { border-radius: var(--radius-lg); }
