:root {
  --bv-blue: #568ebf;
  --bv-blue-dark: #447464;
  --bv-blue-soft: #dfe7ea;
  --bv-sky: #88b9ca;
  --bv-mist: #dfe7ea;
  --bv-green: #87a668;
  --bv-green-dark: #447464;
  --bv-text: #263b43;
  --bv-muted: #5d7374;
  --bv-surface: #ffffff;
  --bv-surface-alt: #f2f6f7;
  --bv-border: rgba(136, 185, 202, 0.58);
  --bv-shadow: 0 14px 38px rgba(68, 116, 100, 0.14);
  --bv-shadow-hover: 0 22px 54px rgba(68, 116, 100, 0.2);
  --bv-gradient: linear-gradient(115deg, #568ebf 0%, #88b9ca 52%, #447464 100%);
  --bv-gradient-soft: linear-gradient(135deg, rgba(223, 231, 234, 0.78), rgba(136, 185, 202, 0.18));
  --bv-container: 1330px;
}

html {
  scroll-behavior: smooth;
}

body.belverra-site {
  margin: 0;
  color: var(--bv-text);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.belverra-site a {
  color: inherit;
  text-decoration: none;
}

body.belverra-site img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 99999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  clip: auto;
  background: #fff;
  color: var(--bv-text);
}

.bv-site-main {
  min-height: 40vh;
}

.bv-site-header {
  position: sticky;
  z-index: 50;
  top: 0;
}

.bv-topbar {
  min-height: 34px;
  background: var(--bv-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.bv-topbar__inner,
.bv-topbar__contacts,
.bv-navbar__inner,
.bv-primary-navigation ul,
.bv-navbar__actions {
  display: flex;
  align-items: center;
}

.bv-topbar__inner {
  min-height: 34px;
  justify-content: space-between;
}

.bv-topbar__inner p {
  margin: 0;
}

.bv-topbar__contacts {
  gap: 22px;
}

.bv-topbar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.bv-topbar__icon {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-topbar__contacts a:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.bv-navbar {
  position: relative;
  z-index: 50;
  min-height: 78px;
  border-bottom: 1px solid rgba(39, 60, 76, 0.08);
  background: #fff;
  transition: min-height 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.bv-site-header.is-scrolled .bv-navbar {
  border-bottom-color: transparent;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(68, 116, 100, 0.13);
  backdrop-filter: blur(14px);
}

.bv-navbar__inner {
  min-height: 78px;
  justify-content: space-between;
  gap: 32px;
}

.bv-logo {
  flex: 0 0 auto;
  width: 200px;
  line-height: 0;
}

.bv-logo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 220ms ease;
}

.bv-logo:hover img {
  transform: scale(1.025);
}

.bv-primary-navigation {
  margin-left: auto;
}

.bv-primary-navigation ul {
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bv-primary-navigation a {
  position: relative;
  display: block;
  padding: 27px 0 25px;
  color: var(--bv-text);
  font-size: 15px;
  font-weight: 500;
}

.bv-primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bv-blue), var(--bv-green));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.bv-primary-navigation a:hover,
.bv-primary-navigation .current-menu-item > a {
  color: var(--bv-blue);
}

.bv-primary-navigation a:hover::after,
.bv-primary-navigation .current-menu-item > a::after {
  transform: scaleX(1);
}

.bv-navbar__actions {
  gap: 12px;
}

.bv-header-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--bv-green-dark);
  border-radius: 6px;
  background: var(--bv-green-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.bv-header-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(68, 116, 100, 0.22);
}

.bv-header-button--outline {
  border-color: var(--bv-blue);
  background: #fff;
  color: var(--bv-blue);
}

.bv-header-button--outline:hover {
  background: var(--bv-blue);
  color: #fff;
}

.bv-menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
}

body.belverra-site .bv-menu-toggle,
body.belverra-site .bv-menu-toggle:hover,
body.belverra-site .bv-menu-toggle:focus,
body.belverra-site .bv-menu-toggle:active {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--bv-text);
}

.bv-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--bv-text);
  transition: opacity 180ms ease, transform 180ms ease;
}

.bv-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bv-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.bv-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bv-site-footer {
  padding: 72px 0 28px;
  background: var(--bv-gradient);
  color: #fff;
}

.bv-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.25fr;
  gap: 72px;
}

.bv-footer-grid h2 {
  margin: 5px 0 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.bv-footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bv-footer-grid li + li {
  margin-top: 8px;
}

.bv-footer-grid a:hover {
  opacity: 0.82;
  transform: translateX(4px);
}

.bv-footer-grid a {
  display: inline-block;
  transition: opacity 180ms ease, transform 180ms ease;
}

.bv-footer-brand img {
  display: block;
  width: 220px;
  height: auto;
  margin-bottom: 18px;
}

.bv-footer-brand p {
  max-width: 260px;
  margin: 0 0 12px;
}

.bv-footer-contact li {
  display: flex;
  gap: 11px;
}

.bv-footer-contact__icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
}

.bv-footer-bottom p {
  margin: 0;
}

.bv-back-to-top {
  position: fixed;
  z-index: 60;
  right: 28px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--bv-blue), var(--bv-green-dark));
  box-shadow: var(--bv-shadow);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.bv-back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--bv-shadow-hover);
}

.bv-container {
  width: min(calc(100% - 48px), var(--bv-container));
  margin-inline: auto;
}

.bv-gradient {
  background: var(--bv-gradient);
}

.bv-card {
  border: 1px solid var(--bv-border);
  border-radius: 9px;
  background: var(--bv-surface);
  box-shadow: 0 2px 5px rgba(35, 57, 83, 0.06);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.bv-card:hover {
  border-color: var(--bv-sky);
  box-shadow: var(--bv-shadow-hover);
  transform: translateY(-7px);
}

.bv-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--bv-green);
  color: #fff;
  font-weight: 600;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bv-button:hover {
  background: var(--bv-green-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(68, 116, 100, 0.24);
}

.bv-button span {
  transition: transform 180ms ease;
}

.bv-button:hover span {
  transform: translateX(4px);
}

.bv-button__icon {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-button:active,
.bv-header-button:active {
  transform: translateY(0) scale(0.98);
}

.bv-button:focus-visible,
.bv-header-button:focus-visible,
.bv-primary-navigation a:focus-visible,
.bv-menu-toggle:focus-visible,
.bv-back-to-top:focus-visible,
.bv-faq summary:focus-visible {
  outline: 3px solid rgba(86, 142, 191, 0.42);
  outline-offset: 4px;
}

.bv-button--blue {
  background: var(--bv-blue);
}

.bv-button--outline {
  border-color: var(--bv-blue);
  background: #fff;
  color: var(--bv-blue);
}

.bv-button--outline:hover {
  border-color: var(--bv-blue);
  background: var(--bv-blue);
  color: #fff;
}

.bv-button--light {
  border-color: rgba(255, 255, 255, 0.8);
  background: #fff;
  color: var(--bv-green);
}

body.belverra-site a.bv-button,
body.belverra-site a.bv-header-button {
  color: #fff;
}

body.belverra-site a.bv-button--outline,
body.belverra-site a.bv-header-button--outline {
  color: var(--bv-blue);
}

body.belverra-site a.bv-button--light {
  color: var(--bv-green-dark);
}

body.belverra-site a.bv-button--outline:hover,
body.belverra-site a.bv-header-button--outline:hover {
  color: #fff;
}

.bv-home-hero {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 4%, rgba(255, 255, 255, 0.93) 42%, rgba(255, 255, 255, 0.18) 75%), url("../images/home-roof.jpg") center/cover no-repeat;
  background-position: center, center calc(50% + var(--bv-hero-shift, 0px));
}

.bv-home-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(68, 116, 100, 0.14), transparent 45%);
  content: "";
}

.bv-home-hero__content {
  position: relative;
  z-index: 1;
  animation: bv-hero-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bv-eyebrow {
  margin: 0 0 16px;
  color: var(--bv-green-dark);
  font-size: 16px;
  font-weight: 600;
}

.bv-home-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--bv-text);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.bv-home-hero__title-main,
.bv-home-hero__title-sub {
  display: block;
}

.bv-home-hero__title-sub {
  margin-top: 2px;
  font-size: 0.86em;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.bv-home-hero__lead {
  max-width: 810px;
  margin: 24px 0 0;
  color: var(--bv-muted);
  font-size: 18px;
  line-height: 1.75;
}

.bv-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.bv-actions--center {
  justify-content: center;
}

.bv-center {
  margin: 42px 0 0;
  text-align: center;
}

.bv-quick-links {
  position: relative;
  z-index: 4;
  margin-top: -42px;
  padding-bottom: 42px;
}

.bv-quick-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.bv-quick-link {
  display: grid;
  min-height: 110px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  font-size: 18px;
}

.bv-link-arrow {
  color: var(--bv-green-dark);
  font-size: 25px;
  transition: transform 200ms ease;
}

.bv-quick-link:hover .bv-link-arrow {
  transform: translateX(7px);
}

.bv-round-icon,
.bv-square-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bv-mist);
  color: var(--bv-blue);
  font-weight: 700;
  transition: transform 240ms ease, background-color 240ms ease, color 240ms ease;
}

.bv-card:hover .bv-round-icon,
.bv-card:hover .bv-square-icon {
  background: var(--bv-sky);
  color: var(--bv-green-dark);
  transform: translateY(-3px) rotate(-4deg);
}

.bv-round-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 25px;
}

.bv-round-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-square-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  font-size: 23px;
}

.bv-square-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-square-icon--green,
.bv-round-icon--green {
  background: rgba(135, 166, 104, 0.18);
  color: var(--bv-green-dark);
}

.bv-round-icon--purple {
  background: rgba(136, 185, 202, 0.28);
  color: var(--bv-green-dark);
}

.bv-page-hero {
  position: relative;
  display: grid;
  min-height: 340px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.bv-page-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 20% 25%, #fff 0 1px, transparent 1px), radial-gradient(circle at 75% 70%, #fff 0 1px, transparent 1px);
  background-size: 76px 76px, 108px 108px;
  content: "";
  animation: bv-pattern-drift 18s linear infinite;
}

.bv-page-hero .bv-container {
  position: relative;
  animation: bv-hero-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bv-page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.bv-page-hero p {
  margin: 18px 0 0;
  font-size: 19px;
}

.bv-section {
  padding: 90px 0;
}

.bv-section--alt {
  background: var(--bv-gradient-soft);
}

.bv-section h2 {
  margin: 0 0 20px;
  color: var(--bv-green-dark);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.bv-section h3 {
  color: var(--bv-green-dark);
}

.bv-section-heading {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.bv-section-heading::after {
  display: block;
  width: 58px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bv-blue), var(--bv-green));
  content: "";
  transform-origin: center;
  transition: width 300ms ease;
}

.bv-section-heading:hover::after {
  width: 92px;
}

.bv-section-heading h2,
.bv-section-heading h3,
.bv-section-heading p {
  margin-top: 0;
}

.bv-section-heading p {
  margin-bottom: 0;
  color: var(--bv-muted);
  font-size: 17px;
}

.bv-container--narrow {
  max-width: 990px;
}

.bv-container--process {
  max-width: 1160px;
}

.bv-container--form {
  max-width: 1010px;
}

.bv-grid {
  display: grid;
  gap: 26px;
}

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

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

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

.bv-feature-card,
.bv-centered-card,
.bv-area-card {
  padding: 32px 28px;
}

.bv-feature-card h3,
.bv-centered-card h3,
.bv-area-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.bv-feature-card p,
.bv-centered-card p,
.bv-area-card p {
  margin: 0;
  color: var(--bv-muted);
}

.bv-centered-card {
  text-align: center;
}

.bv-centered-card .bv-round-icon {
  display: flex;
  margin-inline: auto;
}

.bv-text-link {
  color: var(--bv-blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.bv-text-link:hover {
  color: var(--bv-green-dark);
  text-decoration-color: currentColor;
}

.bv-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 76px;
}

.bv-about-split {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 60px;
}

.bv-section .bv-about-title {
  font-size: clamp(28px, 2.4vw, 36px);
  white-space: nowrap;
}

.bv-split--reverse > :first-child {
  order: 2;
}

.bv-media {
  width: 100%;
  min-height: 430px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--bv-shadow);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}

.bv-split:hover .bv-media {
  box-shadow: var(--bv-shadow-hover);
  transform: scale(1.018);
}

.bv-check-list,
.bv-mini-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.bv-check-list li,
.bv-mini-list li {
  position: relative;
  padding-left: 28px;
}

.bv-check-list li + li,
.bv-mini-list li + li {
  margin-top: 10px;
}

.bv-check-list li::before,
.bv-mini-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--bv-green);
  border-radius: 50%;
  color: var(--bv-green-dark);
  content: "✓";
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.bv-mini-list {
  color: var(--bv-muted);
  font-size: 14px;
}

.bv-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 54px;
  text-align: center;
}

.bv-process::before {
  position: absolute;
  top: 35px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: var(--bv-sky);
  content: "";
}

.bv-process article {
  position: relative;
}

.bv-process article > span {
  display: inline-grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--bv-mist);
  color: var(--bv-blue);
  font-weight: 700;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.bv-process article:hover > span {
  background: var(--bv-blue);
  color: #fff;
  transform: translateY(-5px) scale(1.06);
}

.bv-process h3 {
  margin: 18px 0 9px;
}

.bv-process p {
  margin: 0;
  color: var(--bv-muted);
}

.bv-cta {
  padding: 72px 0;
  color: #fff;
  text-align: center;
}

.bv-cta h2,
.bv-contact-band h2,
.bv-wide-cta h3 {
  margin: 0 0 12px;
  color: #fff;
}

.bv-cta p,
.bv-contact-band p {
  margin: 0;
  font-size: 17px;
}

.bv-note {
  margin-top: 28px;
  padding: 24px 26px;
  border: 1px solid var(--bv-sky);
  border-radius: 8px;
  background: rgba(223, 231, 234, 0.62);
  color: var(--bv-green-dark);
}

.bv-note p:last-child {
  margin-bottom: 0;
}

.bv-note--warning {
  border-color: #ebc96f;
  background: #fff6df;
}

.bv-note--columns .bv-check-list {
  columns: 2;
}

.bv-energy-scale {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--bv-shadow);
}

.bv-energy-scale > div {
  display: grid;
  min-height: 62px;
  grid-template-columns: 105px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--bv-mist);
}

.bv-energy-scale > div:last-child {
  border-bottom: 0;
}

.bv-energy-scale span {
  align-self: stretch;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 62px;
  text-align: center;
}

.bv-energy-scale p {
  margin: 0;
  padding: 0 25px;
}

.bv-energy-scale .is-a { background: #1f9a62; }
.bv-energy-scale .is-b { background: #70ad45; }
.bv-energy-scale .is-c { background: #b5c52c; }
.bv-energy-scale .is-d { background: #e8cb29; }
.bv-energy-scale .is-e { background: #eea52a; }
.bv-energy-scale .is-f { background: #e7792e; }
.bv-energy-scale .is-g { background: #cd3f34; }

.bv-info-box {
  margin-top: 28px;
  padding: 22px 26px;
}

.bv-process-detail {
  display: grid;
  grid-template-columns: 34% 66%;
  overflow: hidden;
}

.bv-process-detail + .bv-process-detail {
  margin-top: 28px;
}

.bv-process-detail__label {
  padding: 36px;
  background: rgba(223, 231, 234, 0.54);
}

.bv-process-detail__label > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--bv-blue);
  color: #fff;
  font-weight: 700;
}

.bv-process-detail__content {
  padding: 36px 40px;
}

.bv-document-link {
  display: block;
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.bv-document-link:hover {
  border-color: var(--bv-blue);
  background: rgba(136, 185, 202, 0.24);
  box-shadow: 0 12px 24px rgba(35, 57, 83, 0.1);
  transform: translateY(-3px);
}

.bv-document-link:focus-visible {
  outline: 3px solid rgba(86, 142, 191, 0.34);
  outline-offset: 3px;
}

.bv-document-link strong,
.bv-document-link p {
  display: flex;
  align-items: center;
}

.bv-document-link strong {
  gap: 9px;
}

.bv-document-link p {
  justify-content: space-between;
  gap: 14px;
}

.bv-document-link__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-info-stack > div {
  margin-top: 18px;
  padding: 20px 24px;
  border-left: 3px solid var(--bv-green);
  background: rgba(135, 166, 104, 0.1);
  transition: border-left-width 200ms ease, transform 200ms ease;
}

.bv-info-stack > div:hover {
  border-left-width: 7px;
  transform: translateX(3px);
}

.bv-info-stack p {
  margin-bottom: 0;
}

.bv-final-cta {
  background: #fff;
}

.bv-final-cta__box,
.bv-wide-cta {
  padding: 56px 42px;
  border-radius: 9px;
  background: var(--bv-gradient);
  color: #fff;
  text-align: center;
}

.bv-final-cta__box h2,
.bv-final-cta__box p {
  color: #fff;
}

.bv-pricing-section {
  padding-bottom: 105px;
}

.bv-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(300px, 0.95fr);
  align-items: start;
  gap: 30px;
}

.bv-table-wrap {
  overflow: hidden;
}

.bv-price-table {
  width: 100%;
  border-collapse: collapse;
}

.bv-price-table th,
.bv-price-table td {
  padding: 17px 22px;
  border-bottom: 1px solid var(--bv-mist);
  text-align: left;
}

.bv-price-table th {
  background: var(--bv-green-dark);
  color: #fff;
  font-weight: 600;
}

.bv-price-table td:first-child {
  font-weight: 600;
}

.bv-price-table td:nth-child(2) {
  color: var(--bv-green-dark);
}

.bv-price-table th:last-child,
.bv-price-table td:last-child {
  color: var(--bv-green-dark);
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}

.bv-price-table th:last-child {
  color: #fff;
}

.bv-table-note {
  color: var(--bv-muted);
  font-size: 13px;
}

.bv-price-includes {
  padding: 30px;
}

.bv-price-includes h3 {
  margin: 0 0 20px;
}

.bv-price-includes .bv-button {
  width: 100%;
  margin-top: 10px;
  box-sizing: border-box;
}

.bv-faq {
  max-width: 900px;
  margin: 100px auto 0;
}

.bv-faq details {
  margin-top: 14px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(35, 57, 83, 0.05);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.bv-faq details:hover,
.bv-faq details[open] {
  box-shadow: var(--bv-shadow);
  transform: translateY(-2px);
}

.bv-faq summary {
  position: relative;
  padding: 19px 24px;
  padding-right: 62px;
  color: var(--bv-green-dark);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.bv-faq summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bv-mist);
  color: var(--bv-blue);
  content: "+";
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.bv-faq details[open] summary::after {
  background: var(--bv-green-dark);
  color: #fff;
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.bv-faq details p {
  margin: 0;
  padding: 0 24px 20px;
}

.bv-contact-band {
  padding: 70px 0;
  background: var(--bv-green-dark);
  color: #fff;
  text-align: center;
}

.bv-contact-cards-section {
  padding-top: 0;
}

.bv-contact-cards-section .bv-grid {
  position: relative;
  z-index: 3;
  margin-top: -55px;
}

.bv-contact-cards-section .bv-centered-card {
  min-height: 230px;
  box-sizing: border-box;
}

.bv-opening-hours {
  margin-bottom: 80px;
  padding: 24px 30px;
}

.bv-opening-hours h3 {
  margin: 0 0 16px;
}

.bv-opening-hours dl {
  margin: 0;
}

.bv-opening-hours dl > div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.bv-opening-hours dd {
  margin: 0;
  font-weight: 600;
}

.bv-form {
  max-width: 790px;
  margin-inline: auto;
  padding: 34px;
  box-sizing: border-box;
}

.bv-form h2 {
  margin-bottom: 28px;
}

.bv-form label {
  display: block;
  margin-bottom: 20px;
  color: var(--bv-green-dark);
  font-size: 14px;
  font-weight: 600;
}

.bv-form input,
.bv-form select,
.bv-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid var(--bv-border);
  border-radius: 5px;
  outline: none;
  background: #fff;
  box-sizing: border-box;
  color: var(--bv-text);
  font: inherit;
  font-weight: 400;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bv-form input:focus,
.bv-form select:focus,
.bv-form textarea:focus {
  border-color: var(--bv-blue);
  box-shadow: 0 0 0 4px rgba(136, 185, 202, 0.24);
  transform: translateY(-1px);
}

.bv-form .bv-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.bv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bv-required-note {
  margin: 16px 0 0;
  color: var(--bv-muted);
  font-size: 12px;
  text-align: center;
}

.bv-form-message {
  max-width: 790px;
  margin: 0 auto 20px;
  padding: 15px 18px;
  border-radius: 6px;
  text-align: center;
}

.bv-form-message.is-success {
  border: 1px solid #8bb474;
  background: #edf7e8;
  color: #3e6b36;
}

.bv-form-message.is-error {
  border: 1px solid #d98e82;
  background: #fff0ed;
  color: #944b40;
}

.bv-area-card {
  text-align: left;
}

.bv-service-area-heading {
  max-width: 100%;
}

.bv-service-area-heading h3 {
  font-size: clamp(22px, 2.55vw, 28px);
  letter-spacing: -0.02em;
}

@media (min-width: 900px) {
  .bv-service-area-heading h3 {
    white-space: nowrap;
  }
}

.bv-area-card .bv-check-list {
  margin-bottom: 0;
}

.bv-wide-cta {
  margin-top: 30px;
  padding-block: 34px;
}

.bv-wide-cta .bv-button {
  margin-top: 10px;
}

.bv-appointment-steps {
  padding-block: 58px;
}

.bv-appointment-steps article {
  text-align: center;
}

.bv-appointment-steps h3 {
  margin: 17px 0 6px;
  font-size: 17px;
}

.bv-appointment-steps p {
  margin: 0;
  color: var(--bv-muted);
  font-size: 14px;
}

.bv-appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 50px;
}

.bv-appointment-layout .bv-form {
  padding: 34px;
}

.bv-info-sidebar > h2 {
  margin-bottom: 28px;
}

.bv-info-panel {
  padding: 26px;
}

.bv-info-panel + .bv-info-panel {
  margin-top: 24px;
}

.bv-info-panel h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.bv-icon-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bv-info-panel h3.bv-icon-label {
  display: flex;
}

.bv-inline-icon {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--bv-blue);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-info-panel p {
  color: var(--bv-muted);
}

.bv-info-panel--warm {
  border-color: #ebc96f;
  background: #fff6e8;
}

.bv-info-panel--blue {
  background: rgba(223, 231, 234, 0.58);
}

.bv-info-panel .bv-button {
  width: 100%;
  box-sizing: border-box;
}

.bv-electric-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.bv-electric-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(136, 185, 202, 0.22);
  color: var(--bv-green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.bv-electric-lead {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--bv-muted);
  font-size: 18px;
}

.bv-electric-documents {
  display: grid;
  gap: 14px;
}

.bv-electric-document {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 19px 21px;
  border: 1px solid var(--bv-border);
  border-radius: 10px;
  background: var(--bv-surface);
  box-shadow: 0 9px 28px rgba(68, 116, 100, 0.08);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.bv-electric-document:hover {
  border-color: var(--bv-sky);
  box-shadow: var(--bv-shadow);
  transform: translateX(5px);
}

.bv-electric-document h3,
.bv-electric-document p {
  margin: 0;
}

.bv-electric-document h3 {
  font-size: 18px;
}

.bv-electric-document p {
  margin-top: 3px;
  color: var(--bv-muted);
  font-size: 14px;
}

.bv-electric-highlight {
  margin: 24px 0 26px;
  padding: 15px 18px;
  border-left: 4px solid var(--bv-green);
  border-radius: 0 8px 8px 0;
  background: rgba(135, 166, 104, 0.12);
  color: var(--bv-green-dark);
}

.bv-electric-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 50px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 28px 68px rgba(68, 116, 100, 0.25);
}

.bv-electric-visual::before,
.bv-electric-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.bv-electric-visual::before {
  top: -110px;
  right: -80px;
  width: 300px;
  height: 300px;
}

.bv-electric-visual::after {
  right: 34px;
  bottom: -140px;
  width: 260px;
  height: 260px;
}

.bv-electric-visual > * {
  position: relative;
  z-index: 1;
}

.bv-electric-visual__badge {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 700;
}

.bv-electric-visual__icon {
  display: grid;
  width: 126px;
  height: 126px;
  margin: 38px 0 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  transition: background-color 220ms ease, transform 220ms ease;
}

.bv-electric-visual:hover .bv-electric-visual__icon {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-3deg) scale(1.04);
}

.bv-electric-visual__icon svg {
  width: 74px;
  height: 74px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-electric-visual h3 {
  max-width: 430px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.24;
}

.bv-electric-visual ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bv-electric-visual li {
  position: relative;
  padding-left: 25px;
}

.bv-electric-visual li + li {
  margin-top: 8px;
}

.bv-electric-visual li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
  font-weight: 700;
}

.bv-electric-compliance {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: start;
  gap: 54px;
}

.bv-electric-explanation > h3 {
  margin: 0 0 15px;
  font-size: 25px;
}

.bv-electric-explanation > p {
  margin: 0 0 21px;
}

.bv-electric-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin: 27px 0;
  padding: 20px;
  border: 1px solid #e6c46d;
  border-radius: 10px;
  background: #fff7e5;
}

.bv-electric-note svg {
  width: 24px;
  height: 24px;
  color: #9a782b;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-electric-note p {
  margin: 0;
}

.bv-electric-official-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bv-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(86, 142, 191, 0.32);
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.bv-electric-official-link:hover {
  color: var(--bv-green-dark);
  text-decoration-color: currentColor;
}

.bv-electric-checklist {
  padding: 34px;
}

.bv-electric-checklist__head {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--bv-mist);
}

.bv-electric-checklist__head span:not(.bv-round-icon) {
  color: var(--bv-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bv-electric-checklist__head h3 {
  margin: 2px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.bv-electric-checklist__intro {
  margin: 0 0 22px;
  color: var(--bv-muted);
}

.bv-electric-checklist .bv-check-list {
  margin: 0;
}

.bv-electric-benefits .bv-centered-card {
  min-height: 245px;
  box-sizing: border-box;
}

.bv-electric-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid var(--bv-border);
  border-radius: 12px;
  background: rgba(223, 231, 234, 0.42);
}

.bv-electric-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--bv-green-dark);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.bv-electric-trust svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: var(--bv-blue);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-electric-contact-band {
  background: var(--bv-gradient);
}

.bv-entry-content > *:first-child {
  margin-top: 0;
}

.bv-motion-ready .bv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--bv-reveal-delay, 0ms);
}

.bv-motion-ready .bv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bv-motion-ready .bv-card.bv-reveal.is-visible:hover {
  transform: translateY(-7px);
}

body.admin-bar .bv-site-header {
  top: 32px;
}

@keyframes bv-hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bv-pattern-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 76px 76px, -108px 108px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .bv-motion-ready .bv-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1250px) {
  .bv-navbar__inner {
    gap: 20px;
  }

  .bv-logo {
    width: 180px;
  }

  .bv-primary-navigation ul {
    gap: 20px;
  }

  .bv-navbar__actions .bv-header-button--outline {
    display: none;
  }
}

@media (max-width: 1050px) {
  .bv-primary-navigation ul {
    gap: 16px;
  }

  .bv-navbar__actions {
    display: none;
  }

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

  .bv-about-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
  }

  .bv-section .bv-about-title {
    font-size: clamp(22px, 2.7vw, 28px);
  }

  .bv-footer-grid {
    gap: 36px;
  }

  .bv-electric-intro__grid,
  .bv-electric-compliance {
    grid-template-columns: 1fr;
  }

  .bv-electric-intro__grid {
    gap: 45px;
  }

  .bv-electric-visual {
    min-height: 460px;
  }

  .bv-electric-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .bv-container {
    width: min(calc(100% - 32px), var(--bv-container));
  }

  .bv-button {
    width: 100%;
    box-sizing: border-box;
  }

  .bv-topbar__inner {
    padding: 6px 0;
  }

  .bv-topbar__contacts a:last-child,
  .bv-topbar__inner > p,
  .bv-navbar__actions {
    display: none;
  }

  .bv-navbar,
  .bv-navbar__inner {
    min-height: 68px;
  }

  .bv-logo {
    width: 168px;
  }

  .bv-menu-toggle {
    display: block;
  }

  .bv-primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 10px 24px 22px;
    border-top: 1px solid var(--bv-mist);
    background: #fff;
    box-shadow: 0 16px 24px rgba(35, 57, 83, 0.12);
  }

  .bv-primary-navigation.is-open {
    display: block;
    animation: bv-mobile-menu 180ms ease both;
  }

  .bv-primary-navigation ul {
    display: block;
  }

  .bv-primary-navigation a {
    padding: 12px 0;
  }

  .bv-primary-navigation a::after {
    bottom: 8px;
  }

  .bv-site-footer {
    padding-top: 54px;
  }

  .bv-home-hero {
    min-height: 610px;
    background: linear-gradient(rgba(255, 255, 255, 0.91), rgba(255, 255, 255, 0.95)), url("../images/home-roof.jpg") 62% center/cover no-repeat;
    --bv-hero-shift: 0px;
  }

  .bv-home-hero h1 {
    font-size: 37px;
  }

  .bv-home-hero h1 br,
  .bv-home-hero__lead br,
  .bv-section-heading br {
    display: none;
  }

  .bv-home-hero__lead {
    font-size: 16px;
  }

  .bv-actions {
    display: grid;
  }

  .bv-quick-links {
    margin-top: 0;
    padding: 20px 0;
  }

  .bv-quick-links__grid,
  .bv-grid--2,
  .bv-grid--3,
  .bv-grid--4,
  .bv-split,
  .bv-pricing-layout,
  .bv-appointment-layout,
  .bv-form-row {
    grid-template-columns: 1fr;
  }

  .bv-quick-link {
    min-height: 94px;
    padding: 17px;
    font-size: 15px;
  }

  .bv-page-hero {
    min-height: 265px;
  }

  .bv-page-hero h1 {
    font-size: 39px;
  }

  .bv-page-hero p {
    font-size: 16px;
  }

  .bv-section {
    padding: 62px 0;
  }

  .bv-section-heading {
    margin-bottom: 34px;
  }

  .bv-section .bv-about-title {
    font-size: clamp(30px, 3vw, 42px);
    white-space: normal;
  }

  .bv-split {
    gap: 32px;
  }

  .bv-split--reverse > :first-child {
    order: initial;
  }

  .bv-media {
    min-height: 280px;
  }

  .bv-process {
    grid-template-columns: 1fr;
  }

  .bv-process::before {
    display: none;
  }

  .bv-note--columns .bv-check-list {
    columns: 1;
  }

  .bv-process-detail {
    grid-template-columns: 1fr;
  }

  .bv-process-detail__label,
  .bv-process-detail__content {
    padding: 26px;
  }

  .bv-pricing-layout {
    gap: 22px;
  }

  .bv-table-wrap {
    overflow-x: auto;
  }

  .bv-price-table {
    min-width: 650px;
  }

  .bv-faq {
    margin-top: 70px;
  }

  .bv-contact-cards-section {
    padding-top: 40px;
  }

  .bv-contact-cards-section .bv-grid {
    margin-top: 0;
  }

  .bv-opening-hours {
    margin-bottom: 55px;
  }

  .bv-form,
  .bv-appointment-layout .bv-form,
  .bv-info-panel {
    padding: 24px;
  }

  .bv-electric-intro__grid,
  .bv-electric-compliance {
    gap: 32px;
  }

  .bv-electric-lead {
    font-size: 16px;
  }

  .bv-electric-document {
    align-items: start;
    gap: 14px;
    padding: 17px;
  }

  .bv-electric-document .bv-square-icon {
    width: 46px;
    height: 46px;
  }

  .bv-electric-highlight {
    margin-bottom: 22px;
  }

  .bv-electric-visual {
    min-height: 430px;
    padding: 34px 26px;
  }

  .bv-electric-visual__icon {
    width: 110px;
    height: 110px;
    margin: 34px 0 28px;
  }

  .bv-electric-visual__icon svg {
    width: 66px;
    height: 66px;
  }

  .bv-electric-compliance {
    margin-top: 0;
  }

  .bv-electric-note {
    padding: 17px;
  }

  .bv-electric-checklist {
    padding: 25px 22px;
  }

  .bv-electric-checklist__head {
    align-items: flex-start;
  }

  .bv-electric-trust {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .bv-electric-trust span {
    justify-content: flex-start;
    text-align: left;
  }

  .bv-appointment-layout {
    gap: 40px;
  }

  .bv-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .bv-footer-bottom {
    display: block;
  }

  .bv-footer-bottom p + p {
    margin-top: 10px;
  }

  .bv-back-to-top {
    right: 16px;
    bottom: 16px;
  }

  body.admin-bar .bv-site-header {
    top: 46px;
  }
}

@keyframes bv-mobile-menu {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
