/* ==========================================================================
   Fotovoltaico Bergamo — "Petrolio e Oro" (sesta identità della rete)
   Petrolio #14424C · Oro #D9A441 · Panna #FAF7F0 · Rame #B06B3B
   Font: DM Serif Display (titoli) + Source Sans 3 (testo)
   Forme: raggio 8px, card con bordo sinistro oro, bottoni oro pieni con
   testo petrolio, header petrolio scuro con bordo oro
   ========================================================================== */

:root {
  --petrol: #14424C;
  --petrol-dark: #0D2E35;
  --petrol-ink: #123036;
  --gold: #D9A441;
  --gold-dark: #B9862F;
  --cream: #FAF7F0;
  --cream-deep: #F0EADA;
  --copper: #B06B3B;
  --copper-dark: #8F5330;
  --ink: #1D2A2C;
  --muted: #4E6166;
  --line: #E2DDD2;
  --white: #FFFFFF;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow-petrol: 0 14px 34px -14px rgba(20, 66, 76, 0.42);
  --shadow-card: 0 10px 26px -10px rgba(20, 66, 76, 0.22), 0 2px 6px rgba(20, 66, 76, 0.10);
  --font-head: "DM Serif Display", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.24;
  color: var(--petrol-ink);
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(1.95rem, 3.7vw, 2.75rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); margin: 1.6rem 0 0.8rem; }
h3 { font-size: 1.16rem; margin: 1.2rem 0 0.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--petrol); text-decoration: none; }
a:hover { color: var(--copper); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem 1.25rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--petrol-ink);
  color: rgba(250, 247, 240, 0.88);
  font-size: 0.83rem;
}
.topbar-in {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 6px; padding-bottom: 6px; gap: 12px; flex-wrap: wrap;
}
.topbar a { color: var(--cream); font-weight: 600; }
.topbar a:hover { color: var(--gold); }

/* ---------- Header petrolio scuro con bordo oro ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--petrol-dark);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow 0.25s;
}
.site-header.scrolled { box-shadow: var(--shadow-petrol); }
.header-in { display: flex; align-items: center; gap: 20px; height: 68px; }

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 42px; height: 42px; }
.brand-name {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 400;
  color: var(--cream); white-space: nowrap;
}
.brand-name strong { color: var(--gold); font-weight: 400; letter-spacing: 0.04em; }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; list-style: none; gap: 4px; margin: 0; }
.main-nav li { position: relative; }
.main-nav a, .drop-toggle {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 13px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  color: var(--cream); background: none; border: 0; cursor: pointer;
}
.main-nav a:hover, .drop-toggle:hover { background: rgba(217, 164, 65, 0.16); color: var(--gold); }
.drop-toggle svg { transition: transform 0.2s; }
.has-drop:hover .drop-toggle svg, .has-drop.open .drop-toggle svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 300px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-petrol);
  list-style: none; margin: 0; padding: 8px;
  display: none; max-height: 70vh; overflow: auto;
}
.has-drop:hover .dropdown, .has-drop.open .dropdown { display: block; }
.dropdown a { display: block; padding: 7px 11px; font-size: 0.92rem; border-radius: var(--radius-sm); color: var(--ink); }
.dropdown a:hover { background: var(--cream); color: var(--petrol); }

/* ---------- Bottoni oro pieni, testo petrolio ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem;
  border: 2px solid transparent; cursor: pointer; transition: all 0.2s;
}
.btn-gold {
  background: var(--gold); color: var(--petrol-ink);
  box-shadow: 0 8px 20px -8px rgba(217, 164, 65, 0.65);
}
.btn-gold:hover { background: var(--gold-dark); color: var(--petrol-dark); transform: translateY(-1px); }
.btn-outline { border-color: var(--cream); color: var(--cream); background: transparent; }
.btn-outline:hover { background: rgba(250, 247, 240, 0.14); color: var(--white); border-color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.header-phone { padding: 9px 16px; font-size: 0.9rem; flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: 8px; margin-left: auto;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--gold); border-radius: 2px; transition: 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero home ---------- */
.hero {
  background:
    linear-gradient(115deg, rgba(13, 46, 53, 0.94) 0%, rgba(20, 66, 76, 0.84) 55%, rgba(20, 66, 76, 0.58) 100%),
    url("../img/hero-installazione-fotovoltaico.jpg") center/cover no-repeat;
  color: var(--cream);
  padding: 64px 0 84px;
}
.hero-in { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero h1 { color: var(--white); }
.hero-lead { font-size: 1.13rem; color: rgba(250, 247, 240, 0.92); max-width: 34rem; }
.hero-points { list-style: none; margin: 1.3rem 0 0; }
.hero-points li {
  display: flex; align-items: center; gap: 10px; margin-bottom: 0.55rem;
  font-weight: 600;
}
.hero-card {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-petrol);
  border-top: 5px solid var(--gold);
}
.hero-card h2 { margin-top: 0; }

/* ---------- Divisori diagonali ---------- */
.diag-divider { line-height: 0; margin-bottom: -1px; }
.diag-divider svg { width: 100%; height: 72px; display: block; }
.dd-back { fill: var(--gold); opacity: 0.40; }
.dd-front { fill: var(--petrol); }
.diag-flip .dd-back { fill: var(--copper); opacity: 0.32; }
.diag-flip .dd-front { fill: var(--petrol-dark); }

/* ---------- Trustbar ---------- */
.trustbar { background: var(--petrol); color: var(--cream); padding: 20px 0; }
.trustbar-in {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
}

/* ---------- Sezioni ---------- */
.section { padding: 62px 0; }
.section-alt { background: var(--cream); }
.kicker {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 0.4rem;
}
.section-title { margin-top: 0; }
.section-lead { color: var(--muted); font-size: 1.06rem; max-width: 46rem; }

.grid { display: grid; gap: 22px; margin-top: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.why-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-card);
  border-bottom: 4px solid var(--copper);
}
.section-alt .why-card { background: var(--white); }
.why-card h3 { margin-top: 0.6rem; }
.why-card p { margin-bottom: 0; color: var(--muted); font-size: 0.96rem; }
.why-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--cream); display: flex; align-items: center; justify-content: center;
}

/* ---------- Card servizi: bordo sinistro oro ---------- */
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-petrol); }
.card-img { width: 100%; height: 168px; object-fit: cover; }
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-top: 0; }
.card-body h3 a { color: var(--petrol-ink); }
.card-body h3 a:hover { color: var(--copper); }
.card-body p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.card-link { font-weight: 700; color: var(--copper); }
.card-link:hover { color: var(--copper-dark); }

/* ---------- Tabelle prezzi ---------- */
.table-wrap { overflow-x: auto; margin: 18px 0 8px; }
.price-table {
  width: 100%; border-collapse: collapse; font-size: 0.95rem;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.price-table caption {
  text-align: left; font-size: 0.85rem; color: var(--muted);
  padding: 8px 2px; caption-side: top;
}
.price-table thead th {
  background: var(--petrol); color: var(--cream);
  font-family: var(--font-body); font-weight: 600; text-align: left;
  padding: 12px 16px;
}
.price-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--line); }
.price-table tbody tr:nth-child(even) { background: var(--cream); }
.price-table tbody tr:hover { background: var(--cream-deep); }
.price-table .price { font-weight: 700; color: var(--petrol); white-space: nowrap; }
.table-note { font-size: 0.85rem; color: var(--muted); }

/* ---------- Split (testo + immagine) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-petrol); }
.areas { color: var(--muted); font-size: 0.94rem; line-height: 1.9; }

/* ---------- Chips zone ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  background: var(--white); border: 1.5px solid var(--petrol);
  color: var(--petrol); padding: 7px 16px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; transition: all 0.18s;
}
.chip:hover { background: var(--petrol); color: var(--cream); }
.chip-service { border-color: var(--copper); color: var(--copper-dark); }
.chip-service:hover { background: var(--copper); color: var(--white); }
.more-services { margin-top: 10px; font-size: 0.94rem; color: var(--muted); }

/* ---------- Processo ---------- */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 26px; counter-reset: step;
}
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-card); position: relative;
}
.section-alt .step { background: var(--white); }
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--petrol-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 400; font-size: 1.1rem;
  margin-bottom: 12px; box-shadow: 0 6px 14px -6px rgba(217, 164, 65, 0.6);
}
.step h3 { margin-top: 0; }
.step p { margin-bottom: 0; font-size: 0.93rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 16px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 10px;
  overflow: hidden; box-shadow: var(--shadow-card);
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding: 15px 18px; background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 1.02rem;
  color: var(--petrol-ink); text-align: left;
}
.faq-q:hover { color: var(--copper); }
.faq-q svg { flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 480px; }
.faq-a-inner { padding: 0 18px 16px; }
.faq-a-inner p { margin-bottom: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(120deg, var(--petrol-dark) 0%, var(--petrol) 70%, var(--copper-dark) 100%);
  color: var(--cream); padding: 54px 0;
}
.cta-in { display: flex; justify-content: space-between; align-items: center; gap: 36px; flex-wrap: wrap; }
.cta h2 { color: var(--white); margin-top: 0; }
.cta p { color: rgba(250, 247, 240, 0.9); max-width: 34rem; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-phone-big {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 8px;
  font-family: var(--font-head); font-size: 1.45rem; font-weight: 400;
  color: var(--white);
}
.cta-phone-big:hover { color: var(--gold); }
.cta-checks { list-style: none; margin: 14px 0 0; }
.cta-checks li { display: flex; align-items: center; gap: 9px; margin-bottom: 0.45rem; font-weight: 600; }
.cta-form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 24px; min-width: 320px; max-width: 430px;
  box-shadow: var(--shadow-petrol); border-top: 5px solid var(--gold);
}

/* ---------- Blocco urgenza 2026 ---------- */
.urgency-2026 {
  background: var(--cream); border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0;
  box-shadow: var(--shadow-card);
}
.urgency-2026 p { margin-bottom: 0; font-size: 0.96rem; }
.badge-incentivo {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--copper); color: var(--white);
  border-radius: 999px; padding: 4px 14px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.85rem; margin-bottom: 14px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; list-style: none; margin: 0; gap: 6px; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--copper); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb [aria-current] { color: var(--petrol); font-weight: 600; }

/* ---------- Page hero ---------- */
.page-hero { background: var(--cream); padding: 46px 0 52px; }
.page-hero h1 { margin-bottom: 0.8rem; }
.page-lead { font-size: 1.08rem; color: var(--muted); max-width: 52rem; }
.page-hero-img {
  margin-top: 26px; border-radius: var(--radius);
  box-shadow: var(--shadow-petrol); max-height: 420px; width: 100%; object-fit: cover;
}
.page-hero-thanks { text-align: left; }

.prose { margin-bottom: 8px; }
.prose p { color: #2E3D40; }
.prose strong { color: var(--petrol-ink); }

/* ---------- Satellite ---------- */
.price-list li { margin-bottom: 0.35rem; }
.steps-list li { margin-bottom: 0.35rem; }
.sat-cta-box {
  background: var(--petrol); color: var(--cream);
  border-radius: var(--radius); padding: 30px; margin: 34px 0 18px;
  box-shadow: var(--shadow-petrol);
}
.sat-cta-box h2 { color: var(--white); margin-top: 0; }
.sat-cta-box p { color: rgba(250, 247, 240, 0.92); }
.sat-form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 22px; margin-top: 18px;
  box-shadow: var(--shadow-card);
}
.sat-cta-alt { font-size: 0.92rem; margin-top: 14px; }
.sat-cta-alt a { color: var(--gold); text-decoration: underline; }
.sat-backlink { margin-top: 20px; font-size: 0.94rem; color: var(--muted); }

/* ---------- Contatti / grazie / 404 ---------- */
.contact-phone {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 400; color: var(--petrol);
}
.contact-phone:hover { color: var(--copper); }
.benefit-box {
  margin-top: 24px; background: var(--cream); border-radius: var(--radius);
  padding: 20px 22px; border-left: 5px solid var(--gold);
}
.benefit-box h3 { margin-top: 0; }
.benefit-box ul { list-style: none; margin: 0; }
.benefit-box li { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 0.5rem; }
.thanks-box {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 26px; margin: 26px 0;
  box-shadow: var(--shadow-card); border-top: 5px solid var(--gold);
}
.thanks-box h2 { margin-top: 0; }
.thanks-list { list-style: none; margin: 0; }
.thanks-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.7rem; }

/* ---------- Form ---------- */
.lead-form { display: flex; flex-direction: column; gap: 13px; }
.lead-form label {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.86rem; color: var(--petrol-ink); margin-bottom: 4px;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.96rem; color: var(--ink);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(20, 66, 76, 0.16);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-note { font-size: 0.92rem; color: var(--muted); }
.form-privacy { font-size: 0.8rem; color: var(--muted); margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--petrol-ink); color: rgba(250, 247, 240, 0.82); margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 0.9fr; gap: 34px;
  padding-top: 52px; padding-bottom: 34px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-name strong { color: var(--gold); }
.site-footer h3 {
  color: var(--gold); font-family: var(--font-body); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin: 0 0 14px;
}
.site-footer ul { list-style: none; margin: 0; }
.site-footer li { margin-bottom: 7px; font-size: 0.92rem; }
.site-footer a { color: rgba(250, 247, 240, 0.82); }
.site-footer a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 7px; flex-wrap: wrap; }
.footer-contact strong { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 240, 0.16);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  max-width: 1180px; margin: 0 auto; padding: 16px 20px;
  font-size: 0.84rem;
}
.footer-minimal {
  background: var(--petrol-ink); color: rgba(250, 247, 240, 0.85);
  text-align: center; padding: 34px 0;
}
.footer-minimal p { margin-bottom: 0.4rem; }
.footer-minimal a { color: var(--cream); }
.footer-minimal a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-in { grid-template-columns: 1fr; gap: 30px; }
  .split { grid-template-columns: 1fr; }
  .trustbar-in { grid-template-columns: repeat(2, 1fr); }
  .cta-in { flex-direction: column; align-items: flex-start; }
  .cta-form { max-width: 100%; width: 100%; }

  .header-in { height: 60px; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--petrol-dark);
    border-bottom: 3px solid var(--gold); box-shadow: var(--shadow-petrol);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    margin-left: 0;
  }
  .main-nav.open { max-height: calc(100vh - 60px); overflow: auto; }
  .main-nav > ul { flex-direction: column; padding: 12px 20px 20px; }
  .main-nav a, .drop-toggle { width: 100%; padding: 12px 10px; font-size: 1rem; }
  .dropdown { position: static; box-shadow: none; border: 0; border-left: 3px solid var(--gold); border-radius: 0; margin-left: 12px; max-height: none; background: rgba(250, 247, 240, 0.07); }
  .dropdown a { color: var(--cream); }
  .dropdown a:hover { background: rgba(217, 164, 65, 0.16); color: var(--gold); }
  .has-drop.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .header-phone .phone-label { display: none; }
  .header-phone { padding: 9px 11px; }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trustbar-in { grid-template-columns: 1fr; gap: 10px; }
  .section { padding: 46px 0; }
  .cta-phone-big { font-size: 1.15rem; }
  .topbar-in { justify-content: center; text-align: center; }
}

/* Fix responsive tabelle prezzi (mobile) */
.table-wrap { -webkit-overflow-scrolling: touch; max-width: 100%; }
@media (max-width: 640px) {
  .price-table { width: 100%; table-layout: fixed; }
  .price-table thead th,
  .price-table tbody td { padding: 10px 8px; font-size: 0.88rem; overflow-wrap: break-word; word-break: break-word; }
  .price-table .price { white-space: normal; }
  .price-table caption { font-size: 0.9rem; }
}
html, body { overflow-x: clip; }
