:root {
  --vmax-blue: #252b7f;
  --vmax-blue-dark: #1a1f5c;
  --vmax-red: #f02d32;
  --solar-yellow: #f7b500;
  --dark: #101828;
  --text: #344054;
  --text-muted: #667085;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --border: #e4e7ec;
  --muted: #667085;
  --shadow: 0 18px 40px rgba(16, 24, 40, 0.1);
  --blue-tint-5: #eef0fb;
  --yellow-tint-10: #fff6e0;
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.1);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --fs-h1: clamp(2.25rem, 3vw, 3rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: 1.375rem;
  --fs-body-lg: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fw-headline: 800;
  --fw-subhead: 600;
  --fw-body: 400;
  --lh-headline: 1.1;
  --lh-body: 1.6;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-2xl-mobile: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

main img {
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(228, 231, 236, 0.75);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--vmax-blue);
}

.site-header .brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.brand span {
  line-height: 1.1;
}

header .brand span {
  display: none;
}
.brand small {
  display: block;
  color: var(--vmax-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--vmax-red);
}

.nav-links .btn-primary:hover {
  color: var(--white);
  background: #d9252a;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--vmax-blue);
  font-size: 1.45rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  cursor: pointer;
  font: inherit;
  font-weight: var(--fw-subhead);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--vmax-red);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--vmax-blue);
  border: 1.5px solid var(--vmax-blue);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--blue-tint-5);
}

.btn-light {
  background: var(--white);
  color: var(--vmax-blue);
  border: 1px solid var(--border);
}

.hero,
.page-hero {
  padding-block: clamp(72px, 7vw, var(--space-2xl));
  background:
    radial-gradient(circle at 82% 18%, rgba(238, 240, 251, 0.95), transparent 34%),
    radial-gradient(circle at 10% 10%, rgba(255, 246, 224, 0.8), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  margin-bottom: 16px;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  color: var(--vmax-blue);
  background: var(--blue-tint-5);
  font-size: 0.82rem;
  font-weight: var(--fw-subhead);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  color: var(--vmax-blue);
  line-height: var(--lh-headline);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: var(--fs-h1);
  line-height: var(--lh-headline);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 560px;
  color: var(--text-muted);
  font-size: var(--fs-body-lg);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(37, 43, 127, 0.12);
  border-radius: var(--radius-pill);
  padding: 9px 13px;
  background: var(--white);
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: var(--fw-subhead);
  box-shadow: var(--shadow-sm);
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--solar-yellow);
}

.image-card {
  position: relative;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.overlay-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 250px;
  border-radius: var(--radius-md);
  padding: 18px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.overlay-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.trust-strip {
  padding: 14px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--vmax-blue), var(--vmax-blue-dark));
  border-bottom: 1px solid #f7b500;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-strip span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--solar-yellow);
}

section {
  padding-block: var(--space-2xl);
}

.contact-section {
  padding-top: clamp(40px, 5vw, 72px);
}

.contact-hero {
  padding-block: clamp(32px, 4vw, 52px);
  background:
    radial-gradient(circle at 88% 14%, rgba(238, 240, 251, 0.95), transparent 32%),
    radial-gradient(circle at 8% 18%, rgba(255, 246, 224, 0.74), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: clamp(34px, 4vw, 62px);
}

.contact-hero-media {
  display: flex;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.contact-hero-panel h1 {
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 2.35vw, 2.55rem);
}

.contact-hero-panel .lead {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.contact-hero-panel form.card {
  padding: 24px;
}

.contact-hero-panel .form-grid {
  gap: 14px;
}

.contact-hero-panel label {
  gap: 6px;
}

.contact-hero-panel textarea {
  min-height: 96px;
}

.lead-hero {
  padding-block: clamp(34px, 4.5vw, 58px);
  background:
    radial-gradient(circle at 84% 14%, rgba(238, 240, 251, 0.96), transparent 32%),
    radial-gradient(circle at 8% 16%, rgba(255, 246, 224, 0.82), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.lead-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: start;
  gap: clamp(40px, 5vw, 72px);
}

.lead-hero-copy h1 {
  font-size: clamp(2.1rem, 3.3vw, 3.65rem);
}

.lead-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.lead-checks li {
  position: relative;
  padding-left: 28px;
  color: var(--dark);
  font-weight: 700;
}

.lead-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--solar-yellow);
  box-shadow: 0 0 0 5px rgba(247, 181, 0, 0.18);
}

.quote-card {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.5vw, 30px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.quote-card h2 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.quote-card > p {
  margin-top: 0;
  color: var(--text-muted);
}

.lead-form-grid {
  gap: 14px;
}

.choice-field {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.choice-field legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--dark);
  font-weight: 600;
}

.choice-field label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: var(--white);
  font-weight: 500;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  height: auto;
  min-height: 0;
  accent-color: var(--vmax-red);
}

.quote-submit {
  width: 100%;
  min-height: 58px;
  text-transform: uppercase;
}

.trust-bar {
  padding-block: 22px;
  color: var(--white);
  background: var(--vmax-blue);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid div {
  display: grid;
  gap: 4px;
}

.trust-grid strong {
  color: var(--solar-yellow);
  font-size: 1.05rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.reason-grid .card {
  min-height: 230px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps-row article {
  position: relative;
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.steps-row span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--vmax-red);
  font-weight: 900;
}

.savings-preview img {
  min-height: 360px;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.testimonial-card {
  background: var(--light-bg);
}

.service-area-box {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
}

.service-map {
  display: grid;
  min-height: 240px;
  place-items: center;
  border-radius: var(--radius-lg);
  color: var(--vmax-blue);
  background: linear-gradient(135deg, var(--blue-tint-5), var(--yellow-tint-10));
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  text-align: center;
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-badges span {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  color: var(--dark);
  background: var(--white);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  padding-right: 42px;
  cursor: pointer;
  color: var(--dark);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--vmax-blue);
  background: var(--blue-tint-5);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-bottom: 0;
}

.final-lead-cta {
  margin-bottom: 0;
  text-align: left;
}

.contact-page section {
  padding-block: clamp(56px, 6vw, 76px);
}

.contact-page .lead-hero,
.contact-page .trust-bar {
  padding-block: clamp(24px, 4vw, 52px);
}

.contact-page .trust-bar {
  padding-block: 18px;
}

.contact-page .section-head {
  margin-bottom: 26px;
}

.contact-page .card {
  padding: 28px;
}

.contact-page .reason-grid .card {
  min-height: 190px;
}

.contact-page .steps-row article {
  padding: 24px;
}

.contact-page .project-strip .card {
  padding: 28px;
}

.contact-page .project-strip img {
  margin-bottom: 20px;
}

.contact-page .project-strip h3 {
  margin-bottom: 12px;
}

.contact-page .savings-preview .check-list {
  margin-bottom: 22px;
}

.contact-page .savings-preview .btn {
  margin-top: 4px;
}

.contact-page .testimonial-card {
  padding: 22px;
}

.contact-page .final-lead-cta {
  padding-block: clamp(58px, 7vw, 86px);
}

.contact-page .final-lead-cta .cta-band {
  padding: clamp(38px, 5vw, 64px);
}

.contact-page .final-lead-cta h2,
.contact-page .final-lead-cta p {
  max-width: 920px;
}

.contact-page .final-lead-cta .eyebrow {
  margin-bottom: 18px;
}

.contact-page .final-lead-cta .btn {
  margin-top: 12px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 0;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card strong {
  color: var(--dark);
}

.card-link {
  color: var(--vmax-red);
  font-weight: 800;
}

.soft {
  background: var(--light-bg);
}

.stats-band {
  background: linear-gradient(135deg, var(--vmax-blue), var(--vmax-blue-dark));
  color: var(--white);
  padding: 42px 0 52px;
}

.stats-band .grid {
  gap: 20px;
  text-align: center;
}

.stats-band .card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
  min-height: 176px;
  padding: 30px 20px 28px;
  display: grid;
  align-content: center;
}

.stat-number {
  display: block;
  color: var(--solar-yellow);
  font-size: clamp(2.15rem, 3.25vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  display: block;
  max-width: 260px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 700;
}

.service-icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--vmax-blue);
  background: var(--blue-tint-5);
  font-weight: 900;
}

.check-list,
.step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.step-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--solar-yellow);
  box-shadow: 0 0 0 5px rgba(247, 181, 0, 0.18);
}

.step-list {
  counter-reset: steps;
}

.step-list li {
  padding-left: 44px;
}

.step-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--vmax-red);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.split > img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 16px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(16, 24, 40, 0.82));
  font-weight: 800;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.filter-btn.active {
  border-color: var(--vmax-blue);
  background: var(--vmax-blue);
  color: var(--white);
}

.cta-band {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(135deg, rgba(37, 43, 127, 0.96), rgba(240, 45, 50, 0.9));
  color: var(--white);
}

.subsidy-band {
  background: var(--yellow-tint-10);
  color: var(--dark);
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band.subsidy-band h2 {
  color: var(--vmax-blue);
}

.cta-band.subsidy-band p {
  max-width: 720px;
  margin-inline: auto;
  color: var(--text);
}

.subsidy-band .cta-actions {
  justify-content: center;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  color: var(--vmax-blue);
  background: var(--light-bg);
}

td:nth-child(2),
td:nth-child(3),
td:nth-child(4),
td:nth-child(5),
td:nth-child(6) {
  white-space: nowrap;
}

.notice {
  border-left: 5px solid var(--solar-yellow);
  border-radius: 12px;
  padding: 18px 20px;
  background: #fff8e1;
  color: var(--dark);
}

.subsidy-offer-note {
  margin: 22px 0 0;
  border: 1px solid rgba(247, 181, 0, 0.55);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--vmax-red);
  background: #fff8e1;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 600;
  text-align: center;
  animation: note-pulse 2.4s ease-in-out infinite;
}

@keyframes note-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(247, 181, 0, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(247, 181, 0, 0.15);
  }
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 34px;
  align-items: start;
}

.blog-article {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 46px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.blog-article h2 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 2.15vw, 2.15rem);
  line-height: 1.2;
}

.blog-article h3 {
  margin-top: 24px;
  font-size: clamp(1.15rem, 1.45vw, 1.35rem);
  line-height: 1.3;
}

.blog-article ul,
.blog-article ol {
  padding-left: 22px;
}

.blog-article li {
  margin-bottom: 9px;
}

.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
  color: var(--text-muted);
  font-size: var(--fs-small);
  font-weight: 700;
}

.featured-image {
  margin: 26px 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.toc {
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--blue-tint-5);
}

.toc h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.toc ol {
  margin-bottom: 0;
}

.blog-callout {
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--yellow-tint-10);
}

.blog-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 98px;
}

.blog-sidebar h2 {
  font-size: clamp(1.45rem, 1.8vw, 1.85rem);
  line-height: 1.15;
}

.blog-card {
  display: grid;
  gap: 14px;
}

.blog-card h2 {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.25;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.author-box {
  display: grid;
  gap: 8px;
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--light-bg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-alert {
  position: relative;
  margin-bottom: 18px;
  border: 1px solid rgba(240, 45, 50, 0.35);
  border-radius: 14px;
  padding: 14px 46px 14px 16px;
  color: #991b1f;
  background: #fff1f2;
}

.form-alert strong,
.form-alert span {
  display: block;
}

.form-alert span {
  margin-top: 2px;
  font-weight: 400;
}

.form-alert-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #991b1f;
  background: rgba(240, 45, 50, 0.1);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.phone-input-wrapper {
  display: flex;
  width: 100%;
  height: 58px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}

.phone-input-wrapper:focus-within {
  border-color: var(--vmax-blue);
  box-shadow: 0 0 0 3px rgba(37, 43, 127, 0.12);
}

.country-code {
  flex-shrink: 0;
  padding: 0 0 0 14px;
  color: var(--dark);
  font-weight: 500;
}

.phone-input-wrapper input {
  height: 56px;
  border: 0;
  border-radius: 0;
  padding: 0 14px 0 8px;
  background: transparent;
  box-shadow: none;
}

.phone-input-wrapper input:focus {
  outline: 0;
}

.field-message {
  margin: 6px 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 400;
}

.field-message:empty {
  display: none;
}

.field-error {
  color: #b42318;
}

.input-error {
  border-color: var(--vmax-red);
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(240, 45, 50, 0.12);
}

.phone-input-wrapper:has(.input-error) {
  border-color: var(--vmax-red);
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(240, 45, 50, 0.12);
}

.email-suggestion {
  display: inline-block;
  width: fit-content;
  margin-top: 6px;
  border: 0;
  padding: 0;
  color: var(--vmax-blue);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: left;
  text-decoration: underline;
}

.email-suggestion[hidden] {
  display: none;
}

.form-honeypot {
  display: none;
}

label {
  display: grid;
  align-content: start;
  gap: 7px;
  color: var(--dark);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--dark);
  font: inherit;
  font-weight: 400;
}

input,
select {
  height: 58px;
}

input::placeholder,
textarea::placeholder {
  color: #7a818f;
  font-weight: 400;
}

select {
  font-weight: 400;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  padding: 72px 0 28px;
  color: #d0d5dd;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(440px, 1.45fr) 0.75fr 0.75fr 1fr;
  gap: 30px;
}

.footer-grid > div:first-child {
  border-radius: 15px;
  padding: 15px;
  background: var(--white);
  color: var(--dark);
  max-height: 190px;
}

.site-footer .brand {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--vmax-blue);
}

.site-footer .brand img {
  width: 100%;
  height: auto;
}

.site-footer .brand span {
  color: var(--vmax-blue);
  font-size: clamp(1.75rem, 2.1vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  padding-top: 40px;
}

.site-footer .brand .footer-brand-red {
  color: var(--vmax-red);
}

.site-footer .brand small {
  margin-top: 8px;
  color: var(--vmax-red);
  font-size: clamp(0.88rem, 1.08vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.footer-grid > div:first-child p {
  max-width: none;
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--dark);
  font-size: clamp(1rem, 1.45vw, 1.05rem);
  line-height: 1.45;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer a:hover {
  color: var(--solar-yellow);
}

.footer-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #d0d5dd;
}

.copyright span {
  display: block;
}

.agency-credit {
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(208, 213, 221, 0.84);
}

.agency-credit a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.agency-credit a:hover {
  color: var(--solar-yellow);
}

.footer-facebook {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease, transform 0.15s ease;
}

.footer-facebook:hover {
  color: var(--white);
  background: var(--white);
  transform: translateY(-2px);
}

.footer-facebook svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  box-shadow: var(--shadow-lg);
  animation: whatsapp-pulse 3.8s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 64px;
  height: 64px;
}

.call-float {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 30;
  /*display: inline-flex;*/
  display: none;
  min-width: 64px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0 16px;
  color: var(--white);
  background: var(--vmax-red);
  box-shadow: var(--shadow-lg);
  font-weight: 800;
}

@keyframes whatsapp-pulse {
  0%,
  72%,
  100% {
    transform: scale(1);
  }
  82% {
    transform: scale(1.07);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 98px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 4px;
  }

  .hero-grid,
  .split,
  .contact-hero-grid,
  .lead-hero-grid,
  .blog-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .project-strip,
  .steps-row,
  .service-area-box {
    grid-template-columns: 1fr;
  }

  .choice-field {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-hero-media img {
    min-height: 320px;
    max-height: 420px;
  }

  .blog-sidebar {
    position: static;
  }

  .grid-3,
  .grid-4,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1360px);
  }

  .hero,
  .page-hero,
  section {
    padding-block: var(--space-2xl-mobile);
  }

  .grid-3,
  .grid-4,
  .gallery,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-checks,
  .choice-field {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 22px;
  }

  .trust-grid {
    gap: 14px;
  }

  .contact-page section {
    padding-block: 48px;
  }

  .contact-page .lead-hero {
    padding-block: 34px 44px;
  }

  .contact-page .card,
  .contact-page .project-strip .card,
  .contact-page .testimonial-card {
    padding: 22px;
  }

  .cta-band {
    padding: 24px;
  }

  .trust-strip {
    font-size: 0.88rem;
  }

  .stats-band {
    padding: 34px 0 42px;
  }

  .stats-band .card {
    min-height: 142px;
    padding: 24px 18px;
  }
	.soft { padding-top: 0px;}
  .site-footer {
    padding-top: 48px;
  }

  .footer-grid > div:first-child {
    padding: 24px;
  }

  .site-footer .brand {
    grid-template-columns: 75px minmax(0, 1fr);
    gap: 16px;
  }
	.site-footer .brand span { padding-top: 45px;}
  .site-footer .brand span {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .site-footer .brand small {
    margin-top: 7px;
    font-size: clamp(0.66rem, 2.6vw, 0.82rem);
    letter-spacing: 0.12em;
  }

  .footer-grid > div:first-child p {
    margin-top: 24px;
    font-size: 1.05rem;
	padding: 0px 10px;
  }
	.footer-grid > div:first-child {
		max-height: 206px;
	}
  .stat-number {
    font-size: 2.35rem;
  }

  .blog-card h2 {
    font-size: 1.22rem;
  }

  .blog-article h2 {
    font-size: 1.45rem;
  }

  .blog-article h3,
  .blog-sidebar h2 {
    font-size: 1.2rem;
  }

  .overlay-card {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .btn {
    width: 100%;
  }
}
