:root {
  --navy: #0a1c39;
  --navy-soft: #17345c;
  --blue: #175cff;
  --blue-dark: #0c45cf;
  --yellow: #ffd21c;
  --green: #13ad82;
  --green-soft: #e7faf4;
  --purple: #7446e8;
  --purple-soft: #f1ecff;
  --orange: #f36b3d;
  --orange-soft: #fff0e9;
  --sky: #eaf3ff;
  --ink: #10213b;
  --copy: #455773;
  --muted: #60728b;
  --line: #dbe4ef;
  --paper: #ffffff;
  --surface: #f6f9fd;
  --shadow-sm: 0 12px 35px rgba(15, 43, 81, .09);
  --shadow-lg: 0 28px 80px rgba(9, 29, 62, .16);
  --radius-sm: 15px;
  --radius: 24px;
  --radius-lg: 34px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 10px;
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.preview-bar {
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 18px;
  color: #d9e7fb;
  background: #07152c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.preview-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 210, 28, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 13px 24px;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(219, 228, 239, .85);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s, min-height .2s;
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(9, 29, 62, .07); }
.header-inner {
  width: min(100%, var(--content));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img { width: 240px; height: auto; display: block; }
.brand-place {
  margin-bottom: 1px;
  padding: 4px 8px;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.site-nav a {
  position: relative;
  color: #314561;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 760;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 3px;
  border-radius: 3px;
  background: var(--page-accent, var(--blue));
  transition: right .2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--navy); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  border-radius: 13px;
  color: var(--navy);
  background: var(--surface);
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 3px;
  background: currentColor;
  transition: transform .2s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .service-link:focus-visible, summary:focus-visible, .site-nav a:focus-visible {
  outline: 3px solid rgba(23, 92, 255, .3);
  outline-offset: 4px;
}
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 13px 28px rgba(23, 92, 255, .24); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 17px 34px rgba(23, 92, 255, .3); }
.button-yellow { color: var(--navy); background: var(--yellow); box-shadow: 0 12px 28px rgba(255, 210, 28, .25); }
.button-yellow:hover { background: #ffdc43; }
.button-flyer { color: var(--navy); background: var(--yellow); border-color: #efc000; box-shadow: 0 13px 28px rgba(243, 107, 61, .2); }
.button-flyer:hover { background: #ffdc43; box-shadow: 0 17px 34px rgba(243, 107, 61, .27); }
.header-flyer { flex: 0 0 auto; min-width: 185px; }
.button-light { color: var(--navy); background: #fff; border-color: #d5dfeb; box-shadow: 0 10px 24px rgba(9, 29, 62, .07); }
.button-ghost { color: #fff; border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .07); }
.button-small { min-height: 44px; padding: 0 17px; font-size: 14px; }

.container { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 45px;
}
.section-head > p { margin: 0 0 4px; color: var(--copy); font-size: 18px; line-height: 1.7; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 4px; background: currentColor; }
h1, h2, h3 { margin-top: 0; color: var(--navy); letter-spacing: -.045em; }
h1 { margin-bottom: 24px; font-size: clamp(48px, 5.8vw, 76px); line-height: .99; font-weight: 900; }
h2 { margin-bottom: 18px; font-size: clamp(36px, 4vw, 55px); line-height: 1.04; font-weight: 890; }
h3 { margin-bottom: 11px; font-size: 24px; line-height: 1.18; font-weight: 850; }
.lead { color: var(--copy); font-size: clamp(18px, 1.8vw, 21px); line-height: 1.65; }

.hero {
  --page-accent: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 87% 18%, rgba(23, 92, 255, .15), transparent 26%),
    radial-gradient(circle at 8% 85%, rgba(255, 210, 28, .19), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #fff 52%, #f4f8ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -270px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(23, 92, 255, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(23, 92, 255, .035), 0 0 0 130px rgba(23, 92, 255, .025);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .82fr);
  align-items: center;
  gap: 74px;
}
.hero-copy { max-width: 680px; }
.hero-copy .eyebrow { margin-bottom: 23px; }
.hero-copy h1 em { color: var(--blue); font-style: normal; }
.hero-copy .lead { max-width: 650px; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 13px 22px; margin-top: 27px; color: #40536d; font-size: 14px; font-weight: 750; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof i { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; font-style: normal; font-weight: 900; }

.hero-board {
  position: relative;
  min-height: 500px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.board-grid { height: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.board-card {
  position: relative;
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px;
  border-radius: 21px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.board-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(10, 28, 57, .12); }
.board-card strong { position: relative; z-index: 2; display: block; max-width: 155px; font-size: 20px; line-height: 1.13; letter-spacing: -.025em; }
.board-card small { position: relative; z-index: 2; font-size: 13px; font-weight: 750; }
.board-card-blue { grid-row: span 2; color: #fff; background: var(--blue); }
.board-card-green { color: #075a45; background: #bff5e5; }
.board-card-purple { color: #3d237f; background: #ded1ff; }
.board-card-orange { color: #773019; background: #ffd2bf; }
.board-card-blue strong { max-width: 180px; font-size: 27px; }
.board-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, .34);
}
.board-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.board-card-blue .board-icon { color: var(--navy); background: var(--yellow); }
.board-card-blue::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  bottom: -85px;
  border: 28px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}
.live-chip {
  position: absolute;
  z-index: 5;
  left: -28px;
  bottom: 36px;
  max-width: 245px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid #e0e7f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.live-chip-dot { width: 11px; height: 11px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(19, 173, 130, .13); }
.live-chip.is-closed .live-chip-dot { background: #ee6459; box-shadow: 0 0 0 5px rgba(238, 100, 89, .13); }
.live-chip span { display: grid; gap: 1px; }
.live-chip strong { color: var(--navy); font-size: 14px; line-height: 1.3; }
.live-chip small { color: var(--muted); font-size: 12px; line-height: 1.4; }

.partner-quick { padding: 22px 0; background: #fff; }
.partner-quick-inner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 28px 32px; border: 1px solid #dce5f1; border-radius: 22px; background: linear-gradient(110deg, #f1f6ff, #fff9dc); box-shadow: var(--shadow-sm); }
.partner-quick .eyebrow { margin-bottom: 7px; }
.partner-quick h2 { margin: 0 0 5px; font-size: clamp(27px, 3vw, 38px); }
.partner-quick p { margin: 0; color: var(--copy); font-size: 16px; }

.service-overview { background: linear-gradient(180deg, #fff, #f7faff 55%, #fff); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 13px 35px rgba(17, 46, 84, .055);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: var(--card-accent, var(--blue)); }
.service-card .card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 5px 0 25px;
  border-radius: 17px;
  color: var(--card-accent, var(--blue));
  background: var(--card-soft, var(--sky));
}
.card-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 26px; }
.service-card p { margin: 0 0 22px; color: var(--copy); font-size: 16px; }
.service-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--card-accent, var(--blue)); font-size: 15px; font-weight: 850; text-decoration: none; }
.service-link span { transition: transform .18s; }
.service-link:hover span { transform: translateX(4px); }
.accent-green { --card-accent: var(--green); --card-soft: var(--green-soft); }
.accent-purple { --card-accent: var(--purple); --card-soft: var(--purple-soft); }
.accent-orange { --card-accent: var(--orange); --card-soft: var(--orange-soft); }

.route-finder {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--navy);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.route-copy { padding: 48px; background: radial-gradient(circle at 10% 10%, rgba(23, 92, 255, .34), transparent 42%); }
.route-copy .eyebrow { color: #91b6ff; }
.route-copy h2 { max-width: 530px; margin: 18px 0 14px; color: #fff; font-size: clamp(34px, 3.8vw, 50px); }
.route-copy > p { max-width: 610px; margin: 0 0 29px; color: #b7c7dd; font-size: 17px; }
.route-options { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.route-option {
  min-height: 74px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 13px;
  color: #eef5ff;
  background: rgba(255, 255, 255, .06);
  text-align: left;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 780;
  cursor: pointer;
  transition: background .18s, border .18s, transform .18s;
}
.route-option:hover, .route-option.is-active { transform: translateY(-2px); border-color: var(--yellow); background: rgba(255, 210, 28, .12); }
.route-result { min-height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 48px; color: var(--ink); background: var(--yellow); }
.route-result > small { color: #685500; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.route-result h3 { margin: 13px 0 11px; font-size: 35px; }
.route-result p { margin: 0 0 25px; color: #514617; font-size: 16px; }
.route-result .button { align-self: flex-start; color: #fff; background: var(--navy); box-shadow: none; }

.partner-section { padding-top: 88px; background: linear-gradient(180deg, #fff, #f4f8ff); }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.partner-card {
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr minmax(190px, 260px);
  gap: 26px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.partner-card h3 { margin: 13px 0 10px; font-size: 30px; }
.partner-card p { margin: 0 0 23px; color: var(--copy); font-size: 16px; line-height: 1.65; }
.partner-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.partner-actions .button { min-height: 48px; padding: 12px 15px; font-size: 13px; }
.partner-brand { display: inline-flex; padding: 8px 12px; border-radius: 9px; color: #fff; font-size: 14px; font-weight: 950; letter-spacing: .06em; }
.partner-tim .partner-brand { background: #0b57d0; }
.partner-duferco .partner-brand { background: #15936f; }
.partner-qr-wrap { display: grid; gap: 10px; justify-items: center; }
.partner-qr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.partner-qr { display: grid; gap: 7px; justify-items: center; color: var(--navy); font-size: 12px; font-weight: 850; text-align: center; text-decoration: none; }
.partner-qr img { width: 124px; height: 124px; display: block; padding: 7px; border: 1px solid #d9e2ee; border-radius: 14px; background: #fff; object-fit: contain; }
.partner-duferco .partner-qr img { width: 180px; height: 180px; }
.qr-help { max-width: 245px; color: var(--muted); font-size: 12px; line-height: 1.45; text-align: center; }
.business-partner { margin-top: 20px; padding: 30px 32px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(135deg, #071d43, #123f83); box-shadow: var(--shadow-lg); }
.business-partner-copy { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.business-partner .partner-brand { background: #e22138; }
.business-partner h3 { margin: 0 0 7px; color: #fff; font-size: 28px; }
.business-partner p { max-width: 800px; margin: 0; color: #bfd0e7; line-height: 1.65; }
.business-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-top: 24px; }
.business-service { min-height: 280px; display: flex; flex-direction: column; padding: 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 17px; background: rgba(255,255,255,.07); }
.business-service > i { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 15px; color: var(--yellow); background: rgba(255,255,255,.1); font-style: normal; }
.business-service > i svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.business-service small { color: #9fb5d2; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.business-service h4 { margin: 6px 0 8px; color: #fff; font-size: 20px; }
.business-service p { margin: 0 0 18px; color: #bfd0e7; font-size: 14px; line-height: 1.5; }
.business-service > a, .business-service-actions a { display: flex; justify-content: space-between; gap: 8px; margin-top: auto; padding: 11px 12px; border-radius: 10px; color: #071d43; background: var(--yellow); font-size: 13px; font-weight: 900; text-decoration: none; transition: transform .18s, background .18s; }
.business-service > a:hover, .business-service-actions a:hover { transform: translateY(-2px); background: #ffdc43; }
.business-service-actions { display: grid; gap: 7px; margin-top: auto; }
.business-service-actions a { margin-top: 0; }
.service-energy > i { color: #ffd83e; }
.service-fiber > i { color: #71c4ff; }
.service-office > i { color: #ff926f; }
.partner-disclosure { max-width: 900px; margin: 22px auto 0; color: var(--muted); font-size: 13px; line-height: 1.6; text-align: center; }

.visit-section { padding: 100px 0 35px; color: #fff; background: #081a35; }
.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: stretch; }
.visit-copy .eyebrow { color: var(--yellow); }
.visit-copy h2 { margin: 18px 0; color: #fff; }
.visit-copy > p { max-width: 570px; margin: 0 0 29px; color: #b7c6da; font-size: 18px; }
.contact-stack { display: grid; gap: 10px; }
.contact-row {
  display: grid;
  grid-template-columns: 45px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, .055);
  text-decoration: none;
  transition: background .18s, transform .18s;
}
.contact-row:hover { transform: translateX(4px); background: rgba(255, 255, 255, .09); }
.contact-row.contact-flyer { border-color: rgba(255, 210, 28, .55); background: rgba(255, 210, 28, .12); }
.contact-row.contact-flyer:hover { background: rgba(255, 210, 28, .18); }
.contact-row > i { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: var(--yellow); background: rgba(255, 255, 255, .08); font-style: normal; }
.contact-row svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-row span { display: grid; gap: 1px; }
.contact-row small { color: #8fa3be; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-row strong { font-size: 16px; line-height: 1.4; }
.contact-row b { color: #7289a8; }
.visit-panel { min-height: 560px; position: relative; border-radius: 29px; background: #132b4d; overflow: hidden; }
.visit-panel iframe { width: 100%; height: 100%; min-height: 560px; display: block; border: 0; filter: saturate(.85) contrast(1.04); }
.hours-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 19px 21px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(7, 25, 52, .25);
  backdrop-filter: blur(15px);
}
.hours-panel > div { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; border-bottom: 1px solid #e2e8f0; font-size: 14px; }
.hours-panel > div:last-child { border: 0; }
.hours-panel .hours-heading { padding-bottom: 11px; }
.hours-heading strong { color: var(--navy); font-size: 18px; }
.hours-heading .hours-source {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-align: right;
  text-decoration: none;
}
.hours-heading .hours-source:hover { text-decoration: underline; }
.hours-heading .hours-source[data-sync-state="loading"] { color: var(--muted); }
.hours-panel strong { text-align: right; }
.finance-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
  padding: 20px 23px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  background: rgba(255, 255, 255, .065);
}
.finance-logo-wrap { padding: 11px 15px; border-radius: 13px; background: #fff; }
.finance-logo-wrap img { width: 100%; max-width: 300px; height: auto; display: block; margin: auto; }
.finance-strip h3 { margin: 0 0 4px; color: #fff; font-size: 22px; }
.finance-strip p { margin: 0; color: #aebed3; font-size: 15px; }

.site-footer { padding: 50px 0 30px; color: #9db0c9; background: #081a35; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 42px;
  align-items: start;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.site-footer .brand { width: fit-content; padding: 10px 12px; border-radius: 12px; background: #fff; }
.site-footer .brand img { width: 190px; }
.footer-text { margin: 14px 0 0; max-width: 420px; font-size: 14px; line-height: 1.6; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 20px; }
.footer-nav a { color: #d6e0ec; font-size: 14px; font-weight: 700; text-decoration: none; }
.footer-nav a:hover { color: var(--yellow); }
.footer-socials { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 9px; }
.footer-nav .social-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid #d7e0eb; border-radius: 11px; color: var(--navy); background: #fff; }
.footer-nav .social-link:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--blue); }
.social-link svg { width: 20px; height: 20px; flex: 0 0 auto; }
.social-facebook svg { fill: currentColor; }
.social-instagram svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-instagram .social-dot { fill: currentColor; stroke: none; }
.footer-meta { text-align: right; font-size: 12px; }
.footer-meta p { margin: 0 0 6px; }
.footer-meta a { color: #d6e0ec; text-decoration: none; }
.footer-meta .preview-note { max-width: 250px; margin-top: 15px; color: #748aa7; line-height: 1.5; }

.whatsapp-fab {
  position: fixed;
  z-index: 90;
  right: 21px;
  bottom: 21px;
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #20bd67;
  box-shadow: 0 15px 35px rgba(3, 39, 22, .25);
  transition: transform .18s;
}
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: currentColor; }

/* Inner pages */
.page-assistenza { --page-accent: var(--green); --page-soft: var(--green-soft); }
.page-recupero { --page-accent: var(--purple); --page-soft: var(--purple-soft); }
.page-vendita { --page-accent: var(--orange); --page-soft: var(--orange-soft); }
.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 78px;
  background: linear-gradient(135deg, var(--page-soft), #fff 70%);
}
.inner-hero::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -100px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--page-accent) 11%, transparent);
}
.breadcrumb { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 42px; color: var(--muted); font-size: 13px; font-weight: 720; }
.breadcrumb a { color: var(--page-accent); text-decoration: none; }
.breadcrumb span::before { content: "/"; margin-right: 7px; color: #9eacbc; }
.inner-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .76fr; align-items: center; gap: 70px; }
.inner-hero .eyebrow { color: var(--page-accent); margin-bottom: 20px; }
.inner-hero h1 { max-width: 780px; }
.inner-hero h1 em { color: var(--page-accent); font-style: normal; }
.inner-hero .lead { max-width: 690px; margin: 0; }
.inner-hero .button-primary { background: var(--page-accent); box-shadow: 0 13px 28px color-mix(in srgb, var(--page-accent) 24%, transparent); }
.inner-visual {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  padding: 33px;
  border-radius: 31px;
  color: #fff;
  background: var(--page-accent);
  box-shadow: var(--shadow-lg);
}
.inner-visual::after { content: ""; position: absolute; inset: 17px; border: 1px solid rgba(255, 255, 255, .23); border-radius: 22px; }
.visual-main-icon { position: relative; z-index: 2; width: 135px; height: 135px; display: grid; place-items: center; border-radius: 39px; color: var(--navy); background: var(--yellow); transform: rotate(-4deg); }
.visual-main-icon svg { width: 70px; height: 70px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.visual-label { position: absolute; z-index: 3; padding: 10px 13px; border-radius: 11px; color: var(--ink); background: #fff; box-shadow: 0 12px 24px rgba(8, 28, 57, .13); font-size: 13px; line-height: 1.2; font-weight: 850; }
.visual-label-one { left: 4px; top: 66px; }
.visual-label-two { right: 3px; bottom: 73px; }
.visual-number { position: absolute; left: 32px; bottom: 27px; color: rgba(255, 255, 255, .23); font-size: 72px; line-height: 1; font-weight: 950; letter-spacing: -.07em; }

.content-section { background: #fff; }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.topic-card { padding: 27px; border: 1px solid var(--line); border-radius: 21px; background: #fff; }
.topic-card:nth-child(2), .topic-card:nth-child(5) { background: var(--page-soft); border-color: transparent; }
.topic-card .mini-icon { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 19px; border-radius: 13px; color: var(--page-accent); background: var(--page-soft); }
.topic-card:nth-child(2) .mini-icon, .topic-card:nth-child(5) .mini-icon { background: #fff; }
.mini-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.topic-card h3 { font-size: 21px; }
.topic-card p { margin: 0; color: var(--copy); font-size: 15px; line-height: 1.65; }
.topic-card ul { margin: 13px 0 0; padding: 0; list-style: none; color: var(--copy); font-size: 15px; }
.topic-card li { position: relative; padding: 4px 0 4px 20px; }
.topic-card li::before { content: "✓"; position: absolute; left: 0; color: var(--page-accent); font-weight: 900; }

.process-box {
  margin-top: 26px;
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 45px;
  padding: 42px;
  border-radius: 26px;
  color: #fff;
  background: var(--navy);
}
.process-intro .eyebrow { color: var(--yellow); }
.process-intro h2 { margin: 15px 0 12px; color: #fff; font-size: 36px; }
.process-intro p { margin: 0; color: #afbed2; font-size: 16px; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.process-step { padding: 20px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 17px; background: rgba(255, 255, 255, .055); }
.process-step > span { width: 33px; height: 33px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 10px; color: var(--navy); background: var(--yellow); font-size: 13px; font-weight: 950; }
.process-step strong { display: block; margin-bottom: 6px; color: #fff; font-size: 16px; }
.process-step p { margin: 0; color: #aebed3; font-size: 13px; line-height: 1.55; }

.proof-band { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.proof-band span { padding: 9px 13px; border-radius: 999px; color: #324763; background: var(--surface); font-size: 13px; font-weight: 780; }

.faq-section { background: linear-gradient(180deg, var(--page-soft), #fff); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.faq-intro h2 { margin: 16px 0; }
.faq-intro p { margin: 0 0 26px; color: var(--copy); }
.faq-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.faq-list { border-top: 1px solid color-mix(in srgb, var(--page-accent) 25%, #dce4ef); }
.faq-list details { border-bottom: 1px solid color-mix(in srgb, var(--page-accent) 25%, #dce4ef); }
.faq-list summary { position: relative; padding: 21px 45px 21px 0; color: var(--navy); font-size: 17px; line-height: 1.45; font-weight: 820; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 16px; right: 3px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: var(--page-accent); background: #fff; font-size: 22px; font-weight: 500; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: -4px 45px 21px 0; color: var(--copy); font-size: 15px; line-height: 1.7; }
.notice {
  margin-top: 23px;
  padding: 19px 21px;
  border-left: 4px solid var(--page-accent);
  border-radius: 0 14px 14px 0;
  color: #3e4c61;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}
.notice strong { display: block; margin-bottom: 4px; color: var(--navy); font-size: 15px; }

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 26px; }
.price-card { padding: 23px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.price-card small { color: var(--muted); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-card strong { display: block; margin: 6px 0; color: var(--page-accent); font-size: 29px; line-height: 1.1; letter-spacing: -.035em; }
.price-card p { margin: 0; color: var(--copy); font-size: 14px; }

.shop-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 35px;
  margin-top: 26px;
  padding: 37px;
  border-radius: 25px;
  background: var(--orange-soft);
}
.shop-feature h2 { font-size: 36px; }
.shop-feature p { color: var(--copy); }
.shop-feature-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.shop-display { min-height: 285px; position: relative; display: grid; place-items: center; border-radius: 21px; background: var(--orange); overflow: hidden; }
.shop-display svg { position: relative; z-index: 2; width: 165px; height: 165px; fill: none; stroke: #fff; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.shop-display::after { content: ""; position: absolute; width: 240px; height: 240px; border: 32px solid rgba(255, 255, 255, .13); border-radius: 50%; }

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 26px 29px;
  border-radius: 19px;
  color: #fff;
  background: var(--page-accent);
}
.inline-cta h3 { margin: 0 0 4px; color: #fff; font-size: 22px; }
.inline-cta p { margin: 0; color: rgba(255, 255, 255, .79); font-size: 14px; }
.inline-cta .button { flex: 0 0 auto; color: var(--navy); background: var(--yellow); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 14px; }
  .header-flyer { width: 46px; min-width: 46px; min-height: 46px; padding: 0; border-radius: 13px; }
  .header-flyer span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .hero-grid { gap: 45px; grid-template-columns: 1fr .88fr; }
  .board-card { padding: 19px; }
  .inner-hero-grid { gap: 45px; }
  .finance-strip { grid-template-columns: 260px 1fr; }
  .finance-strip .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 36px), var(--content)); }
  .site-header { min-height: 75px; padding: 10px 18px; }
  .header-inner { gap: 10px; }
  .brand img { width: 210px; }
  .brand-place { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 108px 14px auto;
    max-height: calc(100vh - 122px);
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    overflow: auto;
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 14px; border-radius: 10px; font-size: 16px; }
  .site-nav a:hover { background: var(--surface); }
  .site-nav a::after { display: none; }
  .hero { padding: 65px 0 58px; }
  .hero-grid, .inner-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-board { min-height: 470px; }
  .partner-quick-inner { grid-template-columns: 1fr; }
  .partner-quick-inner .button { justify-self: start; }
  .live-chip { left: 18px; }
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 10px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 270px; }
  .route-finder { grid-template-columns: 1fr; }
  .route-copy, .route-result { padding: 38px; }
  .partner-grid { grid-template-columns: 1fr; }
  .business-services { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .finance-strip { grid-template-columns: 250px 1fr; }
  .inner-hero { padding-top: 42px; }
  .inner-visual { min-height: 360px; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .process-box { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .shop-feature { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 580px) {
  .preview-bar { min-height: 29px; font-size: 11px; }
  .site-nav { top: 102px; }
  .brand img { width: 185px; }
  h1 { font-size: 45px; }
  h2 { font-size: 36px; }
  .lead { font-size: 17px; }
  .hero { padding-top: 50px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .faq-actions { display: grid; }
  .faq-actions .button { width: 100%; }
  .hero-proof { display: grid; }
  .partner-quick { padding-top: 12px; }
  .partner-quick-inner { padding: 24px; }
  .partner-quick-inner .button { width: 100%; }
  .hero-board { min-height: 550px; padding: 14px; }
  .board-grid { grid-template-columns: 1fr; }
  .board-card { min-height: 130px; }
  .board-card-blue { grid-row: auto; min-height: 180px; }
  .board-icon { width: 46px; height: 46px; border-radius: 14px; }
  .board-icon svg { width: 25px; height: 25px; }
  .live-chip { left: 25px; right: 25px; bottom: -25px; max-width: none; }
  .section { padding: 70px 0; }
  .service-grid, .topic-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .route-copy, .route-result { padding: 30px 24px; }
  .route-options { grid-template-columns: 1fr; }
  .route-result h3 { font-size: 30px; }
  .partner-card { grid-template-columns: 1fr; text-align: center; }
  .partner-card .button { width: 100%; }
  .partner-qr { justify-self: center; }
  .partner-actions { display: grid; }
  .business-partner-copy { grid-template-columns: 1fr; }
  .business-services { grid-template-columns: 1fr; }
  .visit-section { padding-top: 75px; }
  .visit-panel, .visit-panel iframe { min-height: 490px; }
  .hours-panel { left: 12px; right: 12px; bottom: 12px; padding: 15px; }
  .hours-panel > div { display: grid; gap: 1px; }
  .hours-panel strong { text-align: left; }
  .finance-strip { grid-template-columns: 1fr; gap: 18px; }
  .finance-strip .button { grid-column: auto; justify-self: stretch; }
  .finance-logo-wrap img { max-width: 300px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-socials { display: flex; }
  .footer-nav .social-link { width: 45px; height: 45px; justify-content: center; padding: 0; }
  .social-link span { display: none; }
  .inner-hero { padding-bottom: 58px; }
  .breadcrumb { margin-bottom: 30px; }
  .inner-visual { min-height: 320px; }
  .visual-label-one { left: 13px; top: 42px; }
  .visual-label-two { right: 12px; bottom: 42px; }
  .process-box { padding: 28px 23px; }
  .process-steps { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .shop-feature { padding: 25px 22px; }
  .inline-cta { align-items: stretch; flex-direction: column; padding: 24px; }
  .inline-cta .button { width: 100%; }
  .whatsapp-fab { width: 55px; height: 55px; right: 14px; bottom: 14px; }
}
