/* Site polish: layout, spacing, responsive alignment, and subtle motion only. */
:root {
  --site-polish-shadow: 0 18px 45px rgba(var(--roofsie-black-rgb), 0.09);
  --site-polish-shadow-hover: 0 24px 60px rgba(var(--roofsie-black-rgb), 0.14);
  --site-polish-soft-border: 1px solid rgba(var(--roofsie-black-rgb), 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

.main-header {
  background: var(--roofsie-white);
  box-shadow: 0 10px 35px rgba(var(--roofsie-black-rgb), 0.06);
}

.main-header__logo {
    top: 64%;
  left: max(24px, calc((100vw - 1200px) / 2));
  width: 226px;
  transform: translateY(-50%);
  animation: headerLogoFloat 750ms ease both;
}

.main-header__logo a,
.main-header__logo img {
  display: block;
}

.main-header__logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(var(--roofsie-black-rgb), 0.09));
  transition: transform 350ms ease, filter 350ms ease;
}

.main-header__logo a:hover img {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 16px 24px rgba(var(--roofsie-base-rgb), 0.18));
}

.main-header__top {
  min-height: 42px;
  padding: 7px max(24px, calc((100vw - 1200px) / 2)) 7px
    calc(max(24px, calc((100vw - 1200px) / 2)) + 250px);
  background:
    linear-gradient(90deg, rgba(var(--roofsie-base-rgb), 0.18), transparent 38%),
    var(--roofsie-black);
}

.main-header__top-inner,
.main-menu__wrapper-inner {
  width: min(100%, 1200px);
}

.main-header__top-inner {
  min-height: 28px;
}

.main-header__top-address-list {
  gap: 26px;
  flex-wrap: wrap;
}

.main-header__top-address-list li + li,
.main-header__top-social a + a {
  margin-left: 0;
}

.main-header__top-address-list li .icon span {
  color: var(--roofsie-white);
}

.main-header__top-address-list li .text p,
.main-header__top-address-list li .text p a {
  color: rgba(var(--roofsie-white-rgb), 0.78);
}

.main-header__top-address-list li .text p a:hover {
  color: var(--roofsie-white);
}

.main-header__top-social-box {
  margin-left: 24px;
}

.main-header__top-social {
  gap: 12px;
}

.main-header__top-social a {
  width: 30px;
  height: 30px;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--roofsie-white-rgb), 0.09);
}

.main-header__top-social a:hover {
  color: var(--roofsie-white);
  background: var(--roofsie-base);
  box-shadow: 0 8px 18px rgba(var(--roofsie-base-rgb), 0.35);
}

.main-menu {
  background: var(--roofsie-white);
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding-left: 250px;
  padding-right: 0;
}

.stricky-header .main-menu__wrapper-inner {
  min-height: 72px;
  padding-left: 0;
}

.stricky-header .sticky-header__logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.stricky-header .sticky-header__logo img {
  display: block;
    width: 234px;

  height: auto;
}

.stricky-header .main-menu__list {
  margin-left: 88px;
}

.main-menu__left,
.main-menu__right {
  float: none;
}

.main-menu__left {
  flex: 1 1 auto;
  min-width: 0;
}

.main-menu__main-menu-box,
.main-menu .main-menu__list,
.stricky-header .main-menu__list {
  height: 100%;
}

.main-menu__main-menu-box {
  display: flex;
  align-items: center;
}

.main-menu .main-menu__list,
.stricky-header .main-menu__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  flex: 0 0 auto;
  padding-top: 27px;
  padding-bottom: 27px;
}

.stricky-header .main-menu__list > li {
  padding-top: 24px;
  padding-bottom: 24px;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 18px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  padding-left: 8px;
  padding-right: 8px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 16px;
  line-height: 1.2;
}

.main-menu .main-menu__list > li > a::after,
.stricky-header .main-menu__list > li > a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: var(--roofsie-base);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms ease;
}

.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after,
.stricky-header .main-menu__list > li.current > a::after,
.stricky-header .main-menu__list > li:hover > a::after {
  transform: scaleX(1);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(var(--roofsie-black-rgb), 0.13);
}

.main-menu__right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 22px;
  padding: 0;
}

.main-menu__brochure-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--roofsie-base), #0b5f91);
  color: var(--roofsie-white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(var(--roofsie-base-rgb), 0.24);
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}

.main-menu__brochure-btn:hover {
  color: var(--roofsie-white);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(var(--roofsie-base-rgb), 0.32);
}

.main-menu__brochure-btn i {
  font-size: 14px;
}

.main-menu__call {
  margin-right: 0;
  padding: 0;
}

.main-menu__call-icon {
  box-shadow: 0 12px 24px rgba(var(--roofsie-base-rgb), 0.16);
}

.main-menu__call:hover .main-menu__call-icon {
  transform: rotate(-8deg) scale(1.04);
  background-color: var(--roofsie-base);
  color: var(--roofsie-white);
}

.main-menu__search-box {
  width: 46px;
  height: 46px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: var(--roofsie-primary);
  transition: transform 300ms ease, background-color 300ms ease;
}

.main-menu__search-box:before {
  display: none;
}

.main-menu__search {
  font-size: 20px;
}

.main-menu__search-box:hover {
  transform: translateY(-2px);
  background: rgba(var(--roofsie-base-rgb), 0.13);
}

.main-header__top-address-list li,
.main-header__top-social a,
.main-menu .main-menu__list > li,
.main-menu__right {
  animation: headerItemIn 520ms ease both;
}

.main-header__top-address-list li:nth-child(2),
.main-header__top-social a:nth-child(2),
.main-menu .main-menu__list > li:nth-child(2) {
  animation-delay: 70ms;
}

.main-header__top-social a:nth-child(3),
.main-menu .main-menu__list > li:nth-child(3) {
  animation-delay: 110ms;
}

.main-header__top-social a:nth-child(4),
.main-menu .main-menu__list > li:nth-child(4) {
  animation-delay: 150ms;
}

.main-menu .main-menu__list > li:nth-child(5) {
  animation-delay: 190ms;
}

.main-menu .main-menu__list > li:nth-child(6),
.main-menu__right {
  animation-delay: 230ms;
}

@keyframes headerLogoFloat {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 12px)) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes headerItemIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-header__logo,
  .main-header__top-address-list li,
  .main-header__top-social a,
  .main-menu .main-menu__list > li,
  .main-menu__right {
    animation: none;
  }
}

@media (max-width: 1399px) {
  .main-menu .main-menu__list > li + li,
  .stricky-header .main-menu__list > li + li {
    margin-left: 28px;
  }
}

@media (max-width: 1199px) {
  .main-header__logo {
    left: 30px;
    width: 190px;
  }

  .main-header__top {
    padding-left: 250px;
    padding-right: 30px;
  }

  .main-menu__wrapper-inner {
    min-height: 78px;
    padding-left: 250px;
    padding-right: 30px;
  }

  .main-menu__left {
    margin-right: auto;
  }

  .main-menu__main-menu-box {
    width: 100%;
    justify-content: flex-end;
  }

  .main-menu .main-menu__list,
  .stricky-header .main-menu__list {
    display: none;
    margin-left: 0;
  }

  .main-menu .mobile-nav__toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    background: var(--roofsie-primary);
    color: var(--roofsie-base);
  }
}

@media (max-width: 991px) {
  .main-header__logo {
    top: 50%;
    width: 180px;
  }

  .main-menu__wrapper-inner {
    justify-content: flex-end;
    padding-left: 220px;
  }

  .main-menu__left {
    margin-left: auto;
    margin-right: 0;
    flex: 0 0 auto;
  }

  .main-menu .main-menu__list,
  .stricky-header .main-menu__list {
    margin-left: 0;
  }

  .main-menu__right {
    display: none;
  }
}

@media (max-width: 767px) {
  .main-header__top {
    display: none;
  }

  .main-header__logo {
    left: 20px;
    width: min(165px, calc(100vw - 110px));
  }

  .main-menu__wrapper-inner {
    min-height: 72px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .stricky-header .sticky-header__logo img {
    width: 150px;
  }

  .main-menu__left {
    float: none;
  }

  .main-menu .mobile-nav__toggler {
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .stricky-header .main-menu__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 80px;
  }
}

.container {
  width: min(100%, 1200px);
}

.section-title {
  margin-bottom: 42px;
}

.section-sub-title-box {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  padding-left: 40px;
}

.section-sub-title {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-title__title {
font-size: 43px;

  line-height: 1.18;
  letter-spacing: 0;
}

.section-title.text-center .section-sub-title-box {
  justify-content: center;
}

.thm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(var(--roofsie-base-rgb), 0.25);
  transition: transform 300ms ease, box-shadow 300ms ease, color 300ms ease;
}

.thm-btn i {
  margin-left: 0;
  transition: transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

.thm-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(var(--roofsie-base-rgb), 0.32);
}

.thm-btn:hover i {
  transform: translateX(3px);
}

.main-header__top-inner,
.main-menu__wrapper-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.main-header__top-social a,
.main-menu__call-icon,
.mobile-nav__toggler {
  transition: transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

.main-header__top-social a:hover,
.mobile-nav__toggler:hover {
  transform: translateY(-2px);
}

.main-slider__content {
  max-width: 720px;
}

.main-slider__btn-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.quote-modal__trigger {
  position: relative;
  overflow: hidden;
  border: 0;
  padding-right: 26px;
  padding-left: 24px;
  background:
    linear-gradient(135deg, #18b86f 0%, var(--roofsie-base) 52%, #0b5f91 100%);
  color: var(--roofsie-white);
  isolation: isolate;
  box-shadow: 0 16px 34px rgba(var(--roofsie-base-rgb), 0.36);
}

.quote-modal__trigger::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 58%);
  content: "";
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.quote-modal__trigger i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--roofsie-white-rgb), 0.2);
  color: var(--roofsie-white);
  font-size: 13px;
}

.quote-modal__trigger:hover,
.quote-modal__trigger:focus {
  color: var(--roofsie-white);
  background:
    linear-gradient(135deg, #16a866 0%, var(--roofsie-base) 48%, #084f7b 100%);
  box-shadow: 0 22px 44px rgba(var(--roofsie-base-rgb), 0.44);
}

.quote-modal__trigger:hover::after,
.quote-modal__trigger:focus::after {
  transform: translateX(120%);
}

.quote-modal__trigger:focus-visible {
  outline: 3px solid rgba(var(--roofsie-white-rgb), 0.72);
  outline-offset: 4px;
}

.quote-modal .modal-dialog {
  width: min(920px, calc(100% - 24px));
  max-width: 920px;
  max-height: calc(100vh - 24px);
  margin-left: auto;
  margin-right: auto;
}

.quote-modal .modal-content {
  max-height: calc(100vh - 24px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(var(--roofsie-black-rgb), 0.28);
}

.quote-modal form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.quote-modal .modal-header {
  flex: 0 0 auto;
  align-items: flex-start;
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(var(--roofsie-black-rgb), 0.08);
  background: linear-gradient(135deg, rgba(var(--roofsie-base-rgb), 0.12), rgba(var(--roofsie-black-rgb), 0.04));
}

.quote-modal__eyebrow {
  margin: 0 0 4px;
  color: var(--roofsie-base);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-modal .modal-title {
  color: var(--roofsie-black);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.quote-modal .btn-close {
  margin-top: 4px;
}

.quote-modal .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 24px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.quote-modal .form-label {
  margin-bottom: 7px;
  color: var(--roofsie-black);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.quote-modal .form-control,
.quote-modal .form-select {
  min-height: 50px;
  border-color: rgba(var(--roofsie-black-rgb), 0.12);
  border-radius: 6px;
  color: var(--roofsie-gray);
  font-size: 15px;
  box-shadow: none;
}

.quote-modal .form-control:focus,
.quote-modal .form-select:focus {
  border-color: var(--roofsie-base);
  box-shadow: 0 0 0 0.2rem rgba(var(--roofsie-base-rgb), 0.16);
}

.quote-modal input[type="file"].form-control {
  padding: 12px;
}

.quote-modal .modal-footer {
  flex: 0 0 auto;
  justify-content: flex-start;
  padding: 0 28px 28px;
  border-top: 0;
}

.quote-modal__submit {
  border: 0;
  min-width: 150px;
}

body.scheme-popup-open {
  overflow: hidden;
}

.scheme-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.scheme-popup.is-visible {
  opacity: 1;
  visibility: visible;
}

.scheme-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 29, 0.72);
  backdrop-filter: blur(8px);
}

.scheme-popup__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 30px;
  background: var(--roofsie-white);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.28);
}

.scheme-popup__content {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
}

.scheme-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(var(--roofsie-black-rgb), 0.08);
  color: #0a1c2c;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(var(--roofsie-black-rgb), 0.12);
  transition: transform 250ms ease, background-color 250ms ease, color 250ms ease;
}

.scheme-popup__close:hover {
  transform: rotate(90deg);
  background: var(--roofsie-base);
  color: var(--roofsie-white);
}

.scheme-popup__hero {
  position: relative;
  padding: 56px 44px 42px;
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(165deg, #0b2c47 0%, #0d4f84 52%, #0c639d 100%);
  color: var(--roofsie-white);
}

.scheme-popup__hero::after {
  position: absolute;
  right: 0;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: rgba(var(--roofsie-white-rgb), 0.14);
  content: "";
}

.scheme-popup__hero::before {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--roofsie-white-rgb), 0.16), transparent);
  content: "";
}

.scheme-popup__eyebrow,
.scheme-popup__panel-label,
.scheme-popup__stats-date,
.scheme-popup__microcopy,
.scheme-popup__count-label,
.scheme-popup__stat-card small {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scheme-popup__eyebrow {
  margin-bottom: 14px;
  color: #ffd27d;
  font-size: 12px;
  font-weight: 800;
}

.scheme-popup__title {
  margin: 0 0 18px;
  color: var(--roofsie-white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.scheme-popup__intro {
  max-width: 560px;
  margin: 0 0 24px;
  color: rgba(var(--roofsie-white-rgb), 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.scheme-popup__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.scheme-popup__highlight {
  min-height: 118px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(var(--roofsie-white-rgb), 0.12);
  border-radius: 18px;
  background: rgba(var(--roofsie-white-rgb), 0.08);
  backdrop-filter: blur(4px);
}

.scheme-popup__highlight strong {
  display: block;
  margin-bottom: 8px;
  color: var(--roofsie-white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.scheme-popup__highlight span {
  display: block;
  color: rgba(var(--roofsie-white-rgb), 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.scheme-popup__quote {
  margin: 0;
  padding: 24px 24px 22px;
  border: 1px solid rgba(var(--roofsie-white-rgb), 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 0.12), rgba(var(--roofsie-white-rgb), 0.07));
  box-shadow: inset 0 1px 0 rgba(var(--roofsie-white-rgb), 0.06);
}

.scheme-popup__quote p {
  margin: 0 0 12px;
  color: var(--roofsie-white);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}

.scheme-popup__quote cite {
  color: rgba(var(--roofsie-white-rgb), 0.78);
  font-size: 14px;
  font-style: normal;
}

.scheme-popup__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.scheme-popup__cta {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd27d, #ffb93a);
  color: #09233a;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 18px 36px rgba(255, 194, 80, 0.32);
}

.scheme-popup__cta:hover,
.scheme-popup__cta:focus {
  color: #09233a;
  transform: translateY(-2px);
}

.scheme-popup__cta:focus-visible {
  outline: 3px solid rgba(255, 210, 125, 0.5);
  outline-offset: 4px;
}

.scheme-popup__microcopy {
  max-width: 270px;
  margin: 0;
  color: rgba(var(--roofsie-white-rgb), 0.6);
  font-size: 10px;
  line-height: 1.7;
}

.scheme-popup__panel {
  padding: 56px 34px 34px;
  background:
    radial-gradient(circle at top right, rgba(var(--roofsie-base-rgb), 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef6fd 100%);
}

.scheme-popup__deadline {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 18px 18px 0;
}

.scheme-popup__deadline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(var(--roofsie-base-rgb), 0.12);
  color: var(--roofsie-base);
  font-size: 21px;
}

.scheme-popup__panel-label {
  margin: 0 0 8px;
  color: var(--roofsie-base);
  font-size: 12px;
  font-weight: 800;
}

.scheme-popup__deadline-date {
  margin: 0;
  color: #0a1c2c;
  font-size: 18px;
  font-weight: 700;
}

.scheme-popup__countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
  padding: 0 18px;
}

.scheme-popup__countdown-item {
  padding: 18px 12px 16px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-base-rgb), 0.04));
  box-shadow: 0 14px 24px rgba(var(--roofsie-black-rgb), 0.05);
  text-align: center;
}

.scheme-popup__count {
  display: block;
  color: #0a1c2c;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.scheme-popup__count-label {
  display: block;
  margin-top: 8px;
  color: #5f6872;
  font-size: 11px;
  font-weight: 700;
}

.scheme-popup__stats {
  padding: 22px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 0.9), rgba(var(--roofsie-base-rgb), 0.06));
  box-shadow: 0 20px 40px rgba(var(--roofsie-black-rgb), 0.06);
}

.scheme-popup__stats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 2px 6px 0;
}

.scheme-popup__stats-date {
  margin: 0;
  color: #5f6872;
  font-size: 11px;
  font-weight: 700;
}

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

.scheme-popup__stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 210px;
  padding: 22px 16px 18px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.14);
  border-radius: 22px;
  background: rgba(var(--roofsie-white-rgb), 0.96);
  box-shadow: 0 12px 24px rgba(var(--roofsie-black-rgb), 0.04);
  text-align: center;
}

.scheme-popup__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(var(--roofsie-base-rgb), 0.12);
  color: var(--roofsie-base);
  font-size: 20px;
}

.scheme-popup__stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0a1c2c;
  font-size: clamp(22px, 1.9vw, 36px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.scheme-popup__stat-card span {
  display: block;
  color: #0f2131;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.scheme-popup__stat-card small {
  display: block;
  margin-top: 8px;
  color: #5f6872;
  font-size: 10px;
  font-weight: 700;
}

.main-slider__title {
 font-size: 49px;
  line-height: 1.04;
}

.main-slider__text {
  max-width: 650px;
}

.feature-one {
padding: 49px 0 24px;
  margin-top: 0;
}

.feature-one .row,
.services-one__bottom .row {
  row-gap: 30px;
}

.feature-one__single {
  height: 100%;
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--site-polish-shadow);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.feature-one__single:after,
.feature-one__single-inner {
  border-radius: 8px;
}

.feature-one__single:after {
  display: none;
}

.feature-one__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.82;
}

.feature-one__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 35, 0.06) 0%, rgba(7, 23, 35, 0.5) 100%);
  content: "";
}

.feature-one__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.feature-one__single:hover .feature-one__media img {
  transform: scale(1.06);
}

.feature-one__badge {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--roofsie-white-rgb), 0.92);
  color: var(--roofsie-black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-one__single:hover,
.services-one__single:hover,
.testimonial-one__single:hover,
.project-one__single:hover {
  transform: translateY(-8px);
  box-shadow: var(--site-polish-shadow-hover);
}

.feature-one__top {
  align-items: flex-start;
  min-height: 0;
}

.feature-one__title-box {
  margin-left: 0;
}

.feature-one__single-inner {
  position: relative;
  padding: 26px 28px 30px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-primary-rgb), 0.06), rgba(var(--roofsie-white-rgb), 0) 72%),
    var(--roofsie-white);
}

.feature-one__eyebrow {
  margin-bottom: 10px;
  color: var(--roofsie-base);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-one__title {
  margin-bottom: 0;
}

.feature-one__title a {
  display: inline-block;
  color: var(--roofsie-black);
  font-size: 31px;
  line-height: 1.08;
}

.feature-one__single:hover .feature-one__title a {
  color: var(--roofsie-black);
}

.feature-one__text,
.feature-one__read-more {
  position: relative;
  z-index: 1;
}

.feature-one__text {
  color: #6a6f78;
  min-height: 96px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.feature-one__single:hover .feature-one__text {
  color: #6a6f78;
}

.feature-one__read-more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.feature-one__read-more a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--roofsie-base-rgb), 0.12);
  transition: transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

.feature-one__single:hover .feature-one__read-more a i {
  transform: translateX(3px);
  background: var(--roofsie-white);
}

.about-one,
.services-one,
.why-choose-two,
.project-one,
.testimonial-one {
  padding-top: 39px;
      padding-bottom: 31px;
}

.about-one {
    padding-top: 39px;
    padding-bottom: 31px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-primary-rgb), 0.72), rgba(var(--roofsie-white-rgb), 0) 42%),
    var(--roofsie-white);
  overflow: hidden;
}

.about-one .row {
  align-items: center;
  row-gap: 56px;
}

.about-one__shape {
  right: -90px;
  bottom: 34px;
  opacity: 0.16;
  animation: aboutShapeDrift 9s ease-in-out infinite alternate;
}

.about-one__left {
  margin-right: clamp(24px, 4vw, 56px);
}

.about-one__right {
  padding-top: 0;
  animation: aboutContentIn 850ms ease both;
}

.finance-support {
  position: relative;
  padding: 18px 0 18px;
  background:
    radial-gradient(circle at 92% 18%, rgba(var(--roofsie-base-rgb), 0.06), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, rgba(var(--roofsie-primary-rgb), 0.18) 100%);
}

.finance-support__intro {
  max-width: 760px;
  margin-bottom: 18px;
}

.finance-support__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--roofsie-base);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finance-support__intro h3 {
  margin: 0;
  color: #0a1c2c;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.finance-support__intro p {
  margin: 10px 0 0;
  color: #5f6872;
  line-height: 1.7;
}

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

.finance-support__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 16px 20px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 18px;
  background: rgba(var(--roofsie-white-rgb), 0.96);
  box-shadow: 0 12px 24px rgba(var(--roofsie-black-rgb), 0.04);
}

.finance-support__logo-card img {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.pv-brands {
  position: relative;
  padding: 44px 0 36px;
  background:
    radial-gradient(circle at 14% 14%, rgba(var(--roofsie-base-rgb), 0.12), transparent 20%),
    radial-gradient(circle at 90% 20%, rgba(var(--roofsie-base-rgb), 0.06), transparent 18%),
    linear-gradient(180deg, #edf6ff 0%, #f9fcff 54%, rgba(var(--roofsie-primary-rgb), 0.18) 100%);
}

.pv-brands__shell {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 0.98), rgba(var(--roofsie-base-rgb), 0.05)),
    var(--roofsie-white);
  box-shadow: 0 28px 64px rgba(var(--roofsie-black-rgb), 0.08);
}

.pv-brands__shell::before {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--roofsie-base), rgba(var(--roofsie-base-rgb), 0.12));
  content: "";
}

.pv-brands__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(var(--roofsie-base-rgb), 0.1);
}

.pv-brands__intro {
  max-width: 760px;
  padding: 0 6px;
}

.pv-brands__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--roofsie-base);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pv-brands__intro h3 {
  margin: 0;
  color: #0a1c2c;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.pv-brands__intro p {
  max-width: 820px;
  margin: 14px 0 0;
  color: #5f6872;
  line-height: 1.7;
}

.pv-brands__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 270px;
  align-items: stretch;
}

.pv-brands__summary-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 126px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-base-rgb), 0.04));
  text-align: center;
  overflow: hidden;
}

.pv-brands__summary-card strong {
  display: block;
  max-width: 140px;
  margin-bottom: 8px;
  color: #0a1c2c;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.pv-brands__summary-card span {
  display: block;
  max-width: 120px;
  color: #5f6872;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  text-wrap: balance;
}

.pv-brands__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.pv-brands__logo-card {
  position: relative;
  min-height: 128px;
  padding: 14px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-base-rgb), 0.03)),
    rgba(var(--roofsie-white-rgb), 0.98);
  box-shadow: 0 14px 26px rgba(var(--roofsie-black-rgb), 0.04);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.pv-brands__logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--roofsie-base-rgb), 0.22);
  box-shadow: 0 22px 38px rgba(var(--roofsie-black-rgb), 0.08);
}

.pv-brands__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 98px;
  height: 100%;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(var(--roofsie-base-rgb), 0.06), transparent 55%),
    rgba(var(--roofsie-white-rgb), 0.98);
}

.pv-brands__logo-frame img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.inverter-brands {
  position: relative;
  padding: 8px 0 40px;
  background:
    radial-gradient(circle at 86% 18%, rgba(var(--roofsie-base-rgb), 0.08), transparent 18%),
    linear-gradient(180deg, #f9fcff 0%, rgba(var(--roofsie-base-rgb), 0.07) 100%);
}

.inverter-brands__shell {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 0.98), rgba(var(--roofsie-base-rgb), 0.04)),
    var(--roofsie-white);
  box-shadow: 0 28px 64px rgba(var(--roofsie-black-rgb), 0.08);
}

.inverter-brands__shell::before {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #0e3b61, rgba(var(--roofsie-base-rgb), 0.12));
  content: "";
}

.inverter-brands__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(var(--roofsie-base-rgb), 0.1);
}

.inverter-brands__intro {
  max-width: 760px;
  padding: 0 6px;
}

.inverter-brands__label {
  display: inline-block;
  margin-bottom: 10px;
  color: #0e3b61;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inverter-brands__intro h3 {
  margin: 0;
  color: #0a1c2c;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.inverter-brands__intro p {
  max-width: 820px;
  margin: 14px 0 0;
  color: #5f6872;
  line-height: 1.7;
}

.inverter-brands__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 270px;
  align-items: stretch;
}

.inverter-brands__summary-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 126px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-base-rgb), 0.04));
  text-align: center;
  overflow: hidden;
}

.inverter-brands__summary-card strong {
  display: block;
  max-width: 150px;
  margin-bottom: 8px;
  color: #0a1c2c;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.inverter-brands__summary-card span {
  display: block;
  max-width: 120px;
  color: #5f6872;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  text-wrap: balance;
}

.inverter-brands__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.inverter-brands__logo-card {
  position: relative;
  min-height: 128px;
  padding: 14px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-base-rgb), 0.03)),
    rgba(var(--roofsie-white-rgb), 0.98);
  box-shadow: 0 14px 26px rgba(var(--roofsie-black-rgb), 0.04);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.inverter-brands__logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--roofsie-base-rgb), 0.22);
  box-shadow: 0 22px 38px rgba(var(--roofsie-black-rgb), 0.08);
}

.inverter-brands__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 98px;
  height: 100%;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(var(--roofsie-base-rgb), 0.05), transparent 55%),
    rgba(var(--roofsie-white-rgb), 0.98);
}

.inverter-brands__logo-frame img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.cable-brands {
  position: relative;
  padding: 8px 0 40px;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--roofsie-base-rgb), 0.08), transparent 18%),
    linear-gradient(180deg, #f8fbff 0%, rgba(var(--roofsie-base-rgb), 0.06) 100%);
}

.cable-brands__shell {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 0.98), rgba(var(--roofsie-base-rgb), 0.04)),
    var(--roofsie-white);
  box-shadow: 0 28px 64px rgba(var(--roofsie-black-rgb), 0.08);
}

.cable-brands__shell::before {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #1a5e4d, rgba(var(--roofsie-base-rgb), 0.12));
  content: "";
}

.cable-brands__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(var(--roofsie-base-rgb), 0.1);
}

.cable-brands__intro {
  max-width: 760px;
  padding: 0 6px;
}

.cable-brands__label {
  display: inline-block;
  margin-bottom: 10px;
  color: #1a5e4d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cable-brands__intro h3 {
  margin: 0;
  color: #0a1c2c;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.cable-brands__intro p {
  max-width: 820px;
  margin: 14px 0 0;
  color: #5f6872;
  line-height: 1.7;
}

.cable-brands__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 270px;
  align-items: stretch;
}

.cable-brands__summary-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 126px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-base-rgb), 0.04));
  text-align: center;
  overflow: hidden;
}

.cable-brands__summary-card strong {
  display: block;
  max-width: 150px;
  margin-bottom: 8px;
  color: #0a1c2c;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.cable-brands__summary-card span {
  display: block;
  max-width: 120px;
  color: #5f6872;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  text-wrap: balance;
}

.cable-brands__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 420px;
}

.cable-brands__logo-card {
  position: relative;
  min-height: 128px;
  padding: 14px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-base-rgb), 0.03)),
    rgba(var(--roofsie-white-rgb), 0.98);
  box-shadow: 0 14px 26px rgba(var(--roofsie-black-rgb), 0.04);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.cable-brands__logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--roofsie-base-rgb), 0.22);
  box-shadow: 0 22px 38px rgba(var(--roofsie-black-rgb), 0.08);
}

.cable-brands__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 98px;
  height: 100%;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(var(--roofsie-base-rgb), 0.05), transparent 55%),
    rgba(var(--roofsie-white-rgb), 0.98);
}

.cable-brands__logo-frame img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.about-one__img-box {
  isolation: isolate;
  animation: aboutImageIn 850ms ease both;
}

.about-one__img-box::before {
  position: absolute;
  inset: 28px -24px -24px 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(var(--roofsie-base-rgb), 0.18), rgba(var(--roofsie-black-rgb), 0.08));
  content: "";
  z-index: -1;
}

.about-one__img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(var(--roofsie-black-rgb), 0.16);
}

.about-one__img > img,
.services-one__img,
.services-one__img img,
.project-one__img-box,
.project-one__img img {
  border-radius: 8px;
}

.about-one__img > img {
  min-height: 520px;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.about-one__img-box:hover .about-one__img > img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.about-one__line {
  right: -18px;
  opacity: 0.28;
}

.about-one__satisfied {
  bottom: 34px;
  left: -28px;
}

.about-one__satisfied-content {
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(var(--roofsie-base-rgb), 0.28);
  animation: aboutBadgePulse 3.2s ease-in-out infinite;
}

.about-one__satisfied-shape {
  opacity: 0.78;
}

.about-one__big-text {
  left: -306px;
  color: rgba(var(--roofsie-base-rgb), 0.08);
  letter-spacing: 0.14em;
}

.about-one__right .section-title {
  margin-bottom: 24px;
}

.about-one__text {
  max-width: 630px;
  color: #5f6872;
  line-height: 1.85;
}

.about-one__points {
  gap: 18px;
  align-items: stretch;
  margin-top: 32px;
  margin-bottom: 38px;
}

.about-one__points li {
  flex: 1 1 0;
  padding: 24px;
  border: var(--site-polish-soft-border);
  border-radius: 8px;
  background: var(--roofsie-white);
  box-shadow: 0 12px 32px rgba(var(--roofsie-black-rgb), 0.06);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
  animation: aboutPointIn 650ms ease both;
}

.about-one__points li:nth-child(2) {
  animation-delay: 140ms;
}

.about-one__points li:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--roofsie-base-rgb), 0.25);
  box-shadow: 0 20px 48px rgba(var(--roofsie-black-rgb), 0.11);
}

.about-one__points li .icon-box {
  align-items: center;
  margin-bottom: 14px;
}

.about-one__points li .icon-box .icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--roofsie-base-rgb), 0.1);
  color: var(--roofsie-base);
  transition: transform 350ms ease, background-color 350ms ease, color 350ms ease;
}

.about-one__points li:hover .icon-box .icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--roofsie-base);
  color: var(--roofsie-white);
}

.about-one__points li .icon-box .text-box {
  margin-left: 12px;
}

.about-one__points li .icon-box .text-box p {
  font-size: 17px;
  line-height: 1.35;
}

.about-one__points li .text-box-two p {
  line-height: 1.7;
}

.about-one__btn {
  animation: aboutButtonIn 700ms ease 220ms both;
}

.hierarchy-toggle {
  margin-top: 26px;
  border: 0;
  cursor: pointer;
}

.hierarchy-toggle[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.hierarchy-section {
  padding: 0 0 120px;
}

.hierarchy-section[hidden] {
  display: none !important;
}

.hierarchy-section__header {
  margin-bottom: 38px;
}

.hierarchy-chart {
  --hierarchy-line: #c5d4e4;
  --head-card-width: 240px;
  --head-gap: 120px;
  --team-gap: 22px;
  position: relative;
  padding: 40px 28px 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(244, 164, 96, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.hierarchy-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  pointer-events: none;
}

.hierarchy-chart__director,
.hierarchy-chart__heads,
.hierarchy-chart__teams {
  position: relative;
  z-index: 1;
}

.hierarchy-chart__director {
  display: flex;
  justify-content: center;
}

.hierarchy-chart__top-branch,
.hierarchy-chart__operation-link {
  position: relative;
  z-index: 0;
}

.hierarchy-chart__top-branch {
  width: calc((var(--head-card-width) * 2) + var(--head-gap));
  height: 54px;
  margin: 0 auto;
}

.hierarchy-chart__top-branch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 28px;
  background: var(--hierarchy-line);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hierarchy-chart__top-branch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: 100%;
  height: 2px;
  background: var(--hierarchy-line);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hierarchy-chart__heads {
  width: calc((var(--head-card-width) * 2) + var(--head-gap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, var(--head-card-width));
  gap: 28px var(--head-gap);
}

.hierarchy-chart__heads::before,
.hierarchy-chart__heads::after {
  content: "";
  position: absolute;
  top: -26px;
  left: calc(var(--head-card-width) / 2);
  width: 2px;
  height: 26px;
  background: var(--hierarchy-line);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hierarchy-chart__heads::before {
  left: calc(var(--head-card-width) / 2);
}

.hierarchy-chart__heads::after {
  left: calc(100% - (var(--head-card-width) / 2));
}

.hierarchy-chart__operation-link {
  width: calc((var(--head-card-width) * 2) + var(--head-gap));
  height: 28px;
  margin: 0 auto;
}

.hierarchy-chart__operation-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - (var(--head-card-width) / 2));
  width: 2px;
  height: 28px;
  background: var(--hierarchy-line);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hierarchy-chart__teams {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: var(--team-gap);
  padding-top: 34px;
}

.hierarchy-chart__teams::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100% - (2 * var(--team-gap))) / 6);
  right: calc((100% - (2 * var(--team-gap))) / 6);
  height: 2px;
  background: var(--hierarchy-line);
  border-radius: 999px;
}

.hierarchy-chart__teams::after {
  display: none;
}

.hierarchy-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.hierarchy-card--director {
  max-width: 320px;
  overflow: hidden;
}

.hierarchy-card--head,
.hierarchy-card--team {
  padding: 24px 20px;
}

.hierarchy-card--team::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -34px;
  width: 2px;
  height: 34px;
  background: var(--hierarchy-line);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hierarchy-card--operation {
  background: linear-gradient(145deg, #eef8ff 0%, #ffffff 100%);
}

.hierarchy-card__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hierarchy-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hierarchy-card__content {
  padding: 22px 20px 24px;
}

.hierarchy-card__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roofsie-base, #f15a29);
}

.hierarchy-card h3,
.hierarchy-card h4,
.hierarchy-card h5 {
  margin: 0;
  color: var(--roofsie-black, #0f172a);
}

.hierarchy-card h3 {
  font-size: 30px;
  line-height: 1.15;
}

.hierarchy-card h4 {
  font-size: 24px;
  line-height: 1.2;
}

.hierarchy-card h5 {
  font-size: 18px;
  line-height: 1.35;
}

.about-one__points li + li {
  margin-left: 0;
}

@keyframes aboutImageIn {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutContentIn {
  from {
    opacity: 0;
    transform: translateX(26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutPointIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutButtonIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutBadgePulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes aboutShapeDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(-26px, -18px, 0) rotate(5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-one__shape,
  .about-one__img-box,
  .about-one__right,
  .about-one__points li,
  .about-one__btn,
  .about-one__satisfied-content {
    animation: none;
  }

  .about-one__img > img,
  .about-one__points li,
  .about-one__points li .icon-box .icon {
    transition: none;
  }
}

@media (max-width: 1199px) {
  .hierarchy-chart {
    --head-card-width: 220px;
    --head-gap: 80px;
  }

  .hierarchy-chart__heads {
    gap: 24px var(--head-gap);
  }

  .hierarchy-chart__teams {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 767px) {
  .hierarchy-section {
    padding: 0 0 80px;
  }

  .hierarchy-chart {
    padding: 28px 18px 20px;
    border-radius: 24px;
  }

  .hierarchy-chart__top-branch,
  .hierarchy-chart__operation-link,
  .hierarchy-chart__teams::before,
  .hierarchy-chart__teams::after,
  .hierarchy-chart__heads::before,
  .hierarchy-chart__heads::after {
    display: none;
  }

  .hierarchy-chart__heads,
  .hierarchy-chart__teams {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hierarchy-chart__director {
    margin-bottom: 18px;
  }

  .hierarchy-card--director {
    max-width: 100%;
  }

  .hierarchy-card--team::before {
    display: none;
  }

  .hierarchy-card h3 {
    font-size: 26px;
  }

  .hierarchy-card h4 {
    font-size: 22px;
  }
}

.mission-vision {
  position: relative;
  padding-top: 42px;
  padding-bottom: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(var(--roofsie-base-rgb), 0.14), transparent 24%),
    radial-gradient(circle at 92% 6%, rgba(var(--roofsie-base-rgb), 0.08), transparent 18%),
    linear-gradient(180deg, #f8fbfe 0%, rgba(var(--roofsie-primary-rgb), 0.66) 100%);
  z-index: 1;
}

.mission-vision__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.mission-vision__shape--one {
  top: 70px;
  right: -90px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(var(--roofsie-base-rgb), 0.08);
  animation: missionShapeFloat 8s ease-in-out infinite alternate;
}

.mission-vision__shape--two {
  left: -70px;
  bottom: 40px;
  width: 150px;
  height: 150px;
  background: rgba(var(--roofsie-base-rgb), 0.08);
  animation: missionShapeFloat 10s ease-in-out infinite alternate-reverse;
}

.mission-vision .section-title {
  margin-bottom: 48px;
  animation: missionHeadingIn 760ms ease both;
}

.mission-vision .row {
  align-items: stretch;
  row-gap: 30px;
}

.mission-vision__card {
  position: relative;
  height: 100%;
  padding: 34px 30px 28px;
  border: 1px solid rgba(var(--roofsie-black-rgb), 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 0.98), rgba(var(--roofsie-white-rgb), 0.9)),
    var(--roofsie-white);
  box-shadow: 0 20px 56px rgba(var(--roofsie-black-rgb), 0.08);
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
  animation: missionCardIn 720ms ease both;
}

.mission-vision__card::after {
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--roofsie-base), rgba(var(--roofsie-base-rgb), 0.15));
  content: "";
}

.mission-vision .row > div:nth-child(2) .mission-vision__card {
  animation-delay: 120ms;
}

.mission-vision .row > div:nth-child(3) .mission-vision__card {
  animation-delay: 240ms;
}

.mission-vision .row > div:nth-child(1) .mission-vision__card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.96)),
    var(--roofsie-white);
}

.mission-vision .row > div:nth-child(2) .mission-vision__card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 248, 0.96)),
    var(--roofsie-white);
}

.mission-vision .row > div:nth-child(3) .mission-vision__card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 242, 0.96)),
    var(--roofsie-white);
}

.mission-vision__card:before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--roofsie-base-rgb), 0.1), transparent 46%);
  content: "";
  opacity: 0;
  transition: opacity 350ms ease;
}

.mission-vision__card:hover {
  transform: translateY(-12px) rotate(-0.6deg);
  border-color: rgba(var(--roofsie-base-rgb), 0.28);
  box-shadow: 0 32px 76px rgba(var(--roofsie-black-rgb), 0.14);
}

.mission-vision__card:hover:before {
  opacity: 1;
}

.mission-vision__card-mark {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(var(--roofsie-black-rgb), 0.08);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.mission-vision__icon {
  position: relative;
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--roofsie-base), #0d6aa0);
  color: var(--roofsie-white);
  font-size: 30px;
  box-shadow: 0 22px 38px rgba(var(--roofsie-base-rgb), 0.24);
  transition: transform 350ms ease, background-color 350ms ease;
}

.mission-vision__card:hover .mission-vision__icon {
  transform: translateY(-4px) rotate(-8deg) scale(1.06);
}

.mission-vision__eyebrow {
  position: relative;
  margin-bottom: 10px;
  color: var(--roofsie-base);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-vision__card h3 {
  position: relative;
  margin-bottom: 14px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.mission-vision__card p {
  position: relative;
  color: #5f6872;
  line-height: 1.78;
}

.mission-vision__footer-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(var(--roofsie-base-rgb), 0.08);
  color: var(--roofsie-black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes missionHeadingIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes missionCardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes missionShapeFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(24px, -18px, 0) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mission-vision__shape,
  .mission-vision .section-title,
  .mission-vision__card {
    animation: none;
  }

  .mission-vision__card,
  .mission-vision__card:before,
  .mission-vision__icon {
    transition: none;
  }
}

.services-one:before {
  height: 58%;
  min-height: 520px;
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--roofsie-base-rgb), 0.32), transparent 28%),
    linear-gradient(135deg, #06111d 0%, #0d2234 58%, #07131f 100%);
}

.services-one {
  /* padding-top: clamp(92px, 9vw, 132px);
  padding-bottom: clamp(92px, 9vw, 132px); */
  overflow: hidden;
}

.services-one-shape-1 {
  opacity: 0.55;
  animation: servicesShapeFloat 9s ease-in-out infinite alternate;
}

.services-one-shape-2 {
  opacity: 0.8;
  animation: servicesShapeFade 6s ease-in-out infinite alternate;
}

.services-one__top {
  margin-bottom: 50px;
}

.services-one__top .row {
  align-items: center;
  row-gap: 22px;
}

.services-one__top-left {
  animation: servicesHeadingIn 750ms ease both;
}

.services-one__top-right {
  margin-top: 0;
  padding: 26px 28px;
  border: 1px solid rgba(var(--roofsie-white-rgb), 0.12);
  border-radius: 8px;
  background: rgba(var(--roofsie-white-rgb), 0.055);
  backdrop-filter: blur(8px);
  animation: servicesCopyIn 750ms ease 100ms both;
}

.services-one__top-right-text {
  color: rgba(var(--roofsie-white-rgb), 0.78);
  line-height: 1.85;
}

.services-one__bottom .row {
  align-items: stretch;
  row-gap: 30px;
}

.services-one__single {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--roofsie-white);
  box-shadow: 0 18px 45px rgba(var(--roofsie-black-rgb), 0.12);
  transition: transform 350ms ease, box-shadow 350ms ease;
  animation: servicesCardIn 720ms ease both;
}

.services-one__bottom .row > div:nth-child(2) .services-one__single {
  animation-delay: 100ms;
}

.services-one__bottom .row > div:nth-child(3) .services-one__single {
  animation-delay: 200ms;
}

.services-one__single:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(var(--roofsie-black-rgb), 0.18);
}

.services-one__img {
  aspect-ratio: 16 / 10;
  border-radius: 8px 8px 0 0;
}

.services-one__img:before {
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-black-rgb), 0.02), rgba(var(--roofsie-black-rgb), 0.5)),
    rgba(var(--roofsie-base-rgb), 0.12);
}

.services-one__img img {
  height: 100%;
  object-fit: cover;
}

.services-one__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 246px;
  padding: 34px 30px 28px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: none;
}

.services-one__icon {
  top: -42px;
  right: 24px;
  width: 74px;
  height: 74px;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(var(--roofsie-base-rgb), 0.3);
  transition: transform 350ms ease, background-color 350ms ease;
}

.services-one__single:hover .services-one__icon {
  transform: translateY(-4px) rotate(-6deg);
  background-color: var(--roofsie-black);
}

.services-one__title {
  margin-bottom: 12px;
}

.services-one__text {
  flex: 1 1 auto;
  line-height: 1.75;
}

.services-one__read-more {
  margin-top: 24px;
  padding-top: 14px;
}

.services-one__read-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.services-one__read-more a i {
  top: 0;
  margin-left: 0;
}

.services-one__read-more:hover a i {
  transform: translateX(4px);
}

.services-one__read-more a,
.feature-one__read-more a,
.why-choose-two__read-more a {
  letter-spacing: 0.08em;
}

@keyframes servicesHeadingIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes servicesCopyIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes servicesCardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes servicesShapeFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(28px, 18px, 0);
  }
}

@keyframes servicesShapeFade {
  from {
    opacity: 0.18;
    transform: scale(1);
  }

  to {
    opacity: 0.34;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-one-shape-1,
  .services-one-shape-2,
  .services-one__top-left,
  .services-one__top-right,
  .services-one__single {
    animation: none;
  }
}

.why-choose-two__left,
.why-choose-two__middle,
.why-choose-two__right {
  height: 100%;
}

.why-choose-two {

  background:
    radial-gradient(circle at 50% 48%, rgba(var(--roofsie-base-rgb), 0.2), transparent 28%),
    linear-gradient(135deg, #06111d 0%, #0b1d2d 54%, #07131f 100%);
}

.why-choose-two-bg {
  opacity: 0.1;
  filter: saturate(0.8) contrast(1.05);
  transform: scale(1.04);
  animation: whyBgBreath 10s ease-in-out infinite alternate;
}

.why-choose-two .section-title {
  margin-bottom: 56px;
  animation: whyHeadingIn 760ms ease both;
}

.why-choose-two .section-title__title {
  color: var(--roofsie-white);
}

.why-choose-two .row {
  align-items: center;
  row-gap: 42px;
}

.why-choose-two__left,
.why-choose-two__right {
  display: flex;
  align-items: center;
}

.why-choose-two__list-one,
.why-choose-two__list-two {
  width: 100%;
}

.why-choose-two__list-one li,
.why-choose-two__list-two li {
  display: flex;
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(var(--roofsie-white-rgb), 0.1);
  border-radius: 8px;
  background: rgba(var(--roofsie-white-rgb), 0.055);
  box-shadow: 0 18px 45px rgba(var(--roofsie-black-rgb), 0.12);
  backdrop-filter: blur(8px);
  transition: transform 350ms ease, border-color 350ms ease, background-color 350ms ease, box-shadow 350ms ease;
  animation: whyCardIn 720ms ease both;
}

.why-choose-two__list-one li + li,
.why-choose-two__list-two li + li {
  margin-top: 22px;
}

.why-choose-two__list-one li:nth-child(2),
.why-choose-two__list-two li:nth-child(2) {
  animation-delay: 130ms;
}

.why-choose-two__list-one li:hover,
.why-choose-two__list-two li:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--roofsie-base-rgb), 0.38);
  background: rgba(var(--roofsie-white-rgb), 0.085);
  box-shadow: 0 28px 70px rgba(var(--roofsie-black-rgb), 0.2);
}

.why-choose-two__list-one li .content,
.why-choose-two__list-two li .content {
  position: relative;
  top: 0;
  left: auto;
  max-width: none;
  width: auto;
  text-align: left;
}

.why-choose-two__list-one li .content h4,
.why-choose-two__list-two li .content h4 {
  font-size: 22px;
  line-height: 1.3;
}

.why-choose-two__list-one li .content p,
.why-choose-two__list-two li .content p {
  color: rgba(var(--roofsie-white-rgb), 0.72);
  line-height: 1.72;
  padding-top: 12px;
  padding-bottom: 16px;
}

.why-choose-two__list-one li .icon,
.why-choose-two__list-two li .icon {
  position: relative;
  inset: auto;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  box-shadow: 0 18px 35px rgba(var(--roofsie-base-rgb), 0.24);
}

.why-choose-two__list-one li .icon {
  margin-right: 18px;
}

.why-choose-two__list-two li {
  flex-direction: row-reverse;
}

.why-choose-two__list-two li .icon {
  margin-right: 18px;
}

.why-choose-two__list-one li .icon:before,
.why-choose-two__list-two li .icon:before {
  display: none;
}

.why-choose-two__list-one li .icon span,
.why-choose-two__list-two li .icon span {
  font-size: 42px;
}

.why-choose-two__list-one li:hover .icon,
.why-choose-two__list-two li:hover .icon {
  transform: rotate(-7deg) scale(1.06);
  background-color: var(--roofsie-white);
}

.why-choose-two__middle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  animation: whyImageIn 820ms ease 90ms both;
}

.why-choose-two__img-box {
  width: min(100%, 380px);
}

.why-choose-two__img-one {
  border: 10px solid rgba(var(--roofsie-white-rgb), 0.1);
  box-shadow: 0 28px 80px rgba(var(--roofsie-black-rgb), 0.26);
  transition: transform 600ms ease, box-shadow 600ms ease;
}

.why-choose-two__img-one > img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.why-choose-two__img-box:hover .why-choose-two__img-one {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 34px 96px rgba(var(--roofsie-black-rgb), 0.34);
}

.why-choose-two__img-two {
  top: auto;
  left: auto;
  right: -18px;
  bottom: 24px;
  width: 42%;
  animation: whySmallImageFloat 4.5s ease-in-out infinite;
}

.why-choose-two__img-two > img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(var(--roofsie-black-rgb), 0.25));
}

.why-choose-two__read-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--roofsie-base);
}

.why-choose-two__read-more a i {
  top: 0;
  margin-left: 0;
  color: var(--roofsie-black);
}

.why-choose-two__read-more a:hover i {
  transform: translateX(4px);
}

.why-choose-two__list-two .why-choose-two__read-more {
  justify-content: flex-start;
}

@keyframes whyHeadingIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whyCardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whyImageIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes whySmallImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes whyBgBreath {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-choose-two-bg,
  .why-choose-two .section-title,
  .why-choose-two__list-one li,
  .why-choose-two__list-two li,
  .why-choose-two__middle,
  .why-choose-two__img-two {
    animation: none;
  }
}

.project-one__top {
  margin-bottom: 46px;
  animation: projectHeadingIn 760ms ease both;
}

.project-one {

  background:
    linear-gradient(180deg, rgba(var(--roofsie-primary-rgb), 0.74), rgba(var(--roofsie-white-rgb), 1) 45%),
    var(--roofsie-white);
  overflow: hidden;
}

.project-one__bottom-wrapper {
  max-width: 1480px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 56px;
}

.project-one__carousel {
  animation: projectCarouselIn 820ms ease 120ms both;
}

.project-one__carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.project-one__carousel .owl-item,
.project-one__carousel .item,
.project-one__single {
  height: 100%;
}

.project-one__single {
  border-radius: 8px;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.project-one__single:hover {
  transform: translateY(-10px);
}

.project-one__img-box {
  overflow: hidden;
  border-radius: 8px;
  background: var(--roofsie-black);
  box-shadow: 0 18px 48px rgba(var(--roofsie-black-rgb), 0.12);
  transition: box-shadow 350ms ease;
}

.project-one__single:hover .project-one__img-box {
  box-shadow: 0 28px 70px rgba(var(--roofsie-black-rgb), 0.2);
}

.project-one__img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
}

.project-one__img:before {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-black-rgb), 0.06), rgba(var(--roofsie-black-rgb), 0.72)),
    rgba(var(--roofsie-base-rgb), 0.68);
}

.project-one__img img {
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.project-one__content {
  left: 26px;
  right: 86px;
  bottom: 28px;
  transform: translateY(22px);
}

.project-one__single:hover .project-one__content {
  transition-delay: 180ms;
}

.project-one__title {
  font-size: 22px;
  line-height: 1.25;
}

.project-one__title a {
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 300ms ease;
}

.project-one__single:hover .project-one__title a {
  background-size: 100% 2px;
}

.project-one__link {
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: rgba(var(--roofsie-white-rgb), 0.14);
  backdrop-filter: blur(8px);
}

.project-one__single:hover .project-one__link {
  transition-delay: 120ms;
}

.project-one__link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.project-one__link:hover {
  background: var(--roofsie-base);
  transform: scale(1) rotate(-8deg);
}

.project-one__carousel.owl-carousel .owl-dots {
  bottom: -50px;
  gap: 8px;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot {
  width: 28px;
  height: 5px;
  margin: 0;
  border-radius: 999px;
  background-color: rgba(var(--roofsie-black-rgb), 0.12);
  transition: width 250ms ease, background-color 250ms ease;
}

.project-one__carousel.owl-carousel .owl-dot.active {
  width: 44px;
  height: 5px;
  background-color: var(--roofsie-base);
}

@keyframes projectHeadingIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes projectCarouselIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-one__top,
  .project-one__carousel {
    animation: none;
  }

  .project-one__single,
  .project-one__img img,
  .project-one__title a {
    transition: none;
  }
}

.testimonial-one .container {
  max-width: 1120px;
}

.testimonial-one {
  /* padding-top: clamp(92px, 9vw, 132px);
  padding-bottom: clamp(92px, 9vw, 132px); */
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--roofsie-base-rgb), 0.1), transparent 25%),
    linear-gradient(180deg, var(--roofsie-primary), var(--roofsie-white));
}

.testimonial-one-shape {
  opacity: 0.05;
  animation: testimonialShapeFloat 10s ease-in-out infinite alternate;
}

.testimonial-one .section-title {
  margin-bottom: 50px;
  animation: testimonialHeadingIn 760ms ease both;
}

.testimonial-one__carousel {
  animation: testimonialCarouselIn 820ms ease 120ms both;
}

.testimonial-one__carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonial-one__carousel .owl-item,
.testimonial-one__carousel .item {
  height: 100%;
}

.testimonial-one__single {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 300px;
  padding: 42px 42px 36px;
  border: 1px solid rgba(var(--roofsie-black-rgb), 0.07);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-primary-rgb), 0.64));
  box-shadow: 0 16px 44px rgba(var(--roofsie-black-rgb), 0.08);
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.testimonial-one__single:before {
  transform: scaleY(1);
  opacity: 0.9;
}

.testimonial-one__single:after {
  position: absolute;
  top: 24px;
  right: 32px;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: rgba(var(--roofsie-base-rgb), 0.1);
}

.testimonial-one__single:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--roofsie-base-rgb), 0.22);
  box-shadow: 0 26px 64px rgba(var(--roofsie-black-rgb), 0.13);
}

.testimonial-one__client-info {
  gap: 16px;
  margin-left: 0;
  padding-right: 120px;
}

.testimonial-one__client-info:before {
  display: inline-flex;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--roofsie-base), #0a466a);
  box-shadow: 0 14px 26px rgba(var(--roofsie-base-rgb), 0.25);
  color: var(--roofsie-white);
  content: "AS";
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.testimonial-one__client-info--pm:before {
  content: "PM";
}

.testimonial-one__client-info--rp:before {
  content: "RP";
}

.testimonial-one__client-details {
  margin-left: 0;
}

.testimonial-one__client-name {
  line-height: 1.35;
}

.testimonial-one__text {
  flex: 1 1 auto;
  padding-top: 28px;
  color: #5f6872;
  line-height: 1.82;
}

.testimonial-one__rating {
  top: 42px;
  right: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: rgba(var(--roofsie-base-rgb), 0.1);
}

.testimonial-one__rating:after {
  display: none;
}

.testimonial-one__rating i {
  color: var(--roofsie-base);
}

.testimonial-one__single:hover .testimonial-one__rating i {
  color: var(--roofsie-white);
}

@keyframes testimonialHeadingIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testimonialCarouselIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testimonialShapeFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(22px, -18px, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-one-shape,
  .testimonial-one .section-title,
  .testimonial-one__carousel {
    animation: none;
  }

  .testimonial-one__single {
    transition: none;
  }

  .product-page .container > *,
  .product-page__hero::before,
  .product-page__panel::before,
  .product-page__pillar::before,
  .product-page__card::before,
  .product-page__band::before,
  .product-page__image::before,
  .product-page__visual-card::before {
    animation: none;
    transition: none;
  }
}

.site-footer {
  background:
    radial-gradient(circle at 12% 15%, rgba(var(--roofsie-base-rgb), 0.22), transparent 24%),
    linear-gradient(135deg, #050d15 0%, #0b1b2a 52%, #07131f 100%);
  overflow: hidden;
}

.site-footer-img-1 {
  opacity: 0.09;
  animation: footerImageDrift 10s ease-in-out infinite alternate;
}

.site-footer-shape-1 {
  opacity: 0.08;
  animation: footerShapeSpin 16s linear infinite;
}

.site-footer__top {
  padding: clamp(72px, 8vw, 104px) 0 clamp(58px, 6vw, 82px);
}

.site-footer__top .row {
  align-items: stretch;
  row-gap: 30px;
}

.footer-widget__column {
  position: relative;
  height: 100%;
  padding: 34px;
  border: 1px solid rgba(var(--roofsie-white-rgb), 0.1);
  border-radius: 8px;
  background: rgba(var(--roofsie-white-rgb), 0.055);
  box-shadow: 0 20px 55px rgba(var(--roofsie-black-rgb), 0.2);
  backdrop-filter: blur(8px);
  transition: transform 350ms ease, border-color 350ms ease, background-color 350ms ease, box-shadow 350ms ease;
  animation: footerCardIn 760ms ease both;
}

.site-footer__top .row > div:nth-child(2) .footer-widget__column {
  animation-delay: 120ms;
}

.footer-widget__column:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--roofsie-base-rgb), 0.34);
  background: rgba(var(--roofsie-white-rgb), 0.075);
  box-shadow: 0 30px 75px rgba(var(--roofsie-black-rgb), 0.28);
}

.footer-widget__title {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(var(--roofsie-white-rgb), 0.1);
  color: var(--roofsie-white);
  line-height: 1.25;
}

.footer-widget__title:after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--roofsie-base);
  content: "";
}

.footer-widget__contact-list li {
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: transform 300ms ease, background-color 300ms ease;
}

.footer-widget__contact-list li + li {
  margin-top: 10px;
}

.footer-widget__contact-list li:hover {
  transform: translateX(5px);
  background: rgba(var(--roofsie-white-rgb), 0.055);
}

.footer-widget__contact-list li .icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--roofsie-base-rgb), 0.14);
  transition: transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

.footer-widget__contact-list li:hover .icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--roofsie-base);
}

.footer-widget__contact-list li .icon i {
  color: var(--roofsie-base);
  transition: color 300ms ease;
}

.footer-widget__contact-list li:hover .icon i {
  color: var(--roofsie-white);
}

.footer-widget__contact-list li .text {
  margin-left: 0;
}

.footer-widget__contact-list li .text p {
  line-height: 1.7;
  word-break: break-word;
}

.footer-widget__contact-list li .text p a {
  color: rgba(var(--roofsie-white-rgb), 0.78);
}

.footer-widget__contact-list li .text p a:hover {
  color: var(--roofsie-white);
}

.footer-widget__map {
  margin-top: 15px;
}

.site-footer iframe {
  height: 282px;
  border-radius: 8px;
  filter: saturate(0.9) contrast(1.02);
  box-shadow: 0 16px 42px rgba(var(--roofsie-black-rgb), 0.28);
}

.product-page {
  position: relative;
  padding: 25px 0;
  background:
    linear-gradient(120deg, rgba(var(--roofsie-black-rgb), 0.03) 0%, rgba(var(--roofsie-black-rgb), 0) 22%),
    radial-gradient(circle at 12% 18%, rgba(var(--roofsie-base-rgb), 0.12), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(var(--roofsie-base-rgb), 0.16), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(var(--roofsie-base-rgb), 0.1), transparent 18%),
    linear-gradient(180deg, #edf5fa 0%, #f4f9fc 18%, #ffffff 52%, #f7fbfe 100%),
    var(--roofsie-white);
  overflow: hidden;
}

.product-page::before,
.product-page::after {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: 0;
}

.product-page .container::before,
.product-page .container::after {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: -1;
}

.product-page::before {
  top: 120px;
  left: -90px;
  width: 280px;
  height: 280px;
  border: 36px solid rgba(var(--roofsie-base-rgb), 0.06);
  border-radius: 50%;
}

.product-page::after {
  right: -40px;
  bottom: 140px;
  width: 220px;
  height: 220px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(var(--roofsie-base-rgb), 0.08), rgba(var(--roofsie-white-rgb), 0)),
    rgba(var(--roofsie-base-rgb), 0.04);
  transform: rotate(18deg);
}

.product-page > .container > .row:first-child::before {
  position: absolute;
  top: -46px;
  right: 10%;
  width: 180px;
  height: 180px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(var(--roofsie-base-rgb), 0.08), rgba(var(--roofsie-white-rgb), 0)),
    rgba(var(--roofsie-base-rgb), 0.04);
  content: "";
  transform: rotate(18deg);
  z-index: -1;
}

.product-page .container {
  position: relative;
  z-index: 1;
}

.product-page .container::before {
  top: 260px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(var(--roofsie-base-rgb), 0.18) 0%, rgba(var(--roofsie-base-rgb), 0) 68%);
}

.product-page .container::after {
  left: -30px;
  bottom: 220px;
  width: 140px;
  height: 140px;
  border: 20px solid rgba(var(--roofsie-base-rgb), 0.07);
  border-radius: 28px;
  transform: rotate(-18deg);
}

.product-page .container > .row:first-child {
  position: relative;
}

.product-page .container > .row:first-child::after {
  position: absolute;
  inset: 22px -28px auto auto;
  width: 240px;
  height: 240px;
  background-image:
    linear-gradient(rgba(var(--roofsie-base-rgb), 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--roofsie-base-rgb), 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.34;
  mask-image: radial-gradient(circle at center, black 38%, transparent 78%);
  z-index: -1;
}

.product-page__hero,
.product-page__panel {
  position: relative;
  padding: 38px;
  border-radius: 14px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.14);
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-primary-rgb), 0.4)),
    var(--roofsie-white);
  box-shadow: 0 18px 48px rgba(var(--roofsie-black-rgb), 0.08);
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.product-page__hero {
  height: 100%;
  border-color: rgba(var(--roofsie-base-rgb), 0.2);
}

.product-page__image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.16);
  box-shadow: 0 18px 42px rgba(var(--roofsie-black-rgb), 0.12);
  background: #dfeaf2;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.product-page__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}


.product-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--roofsie-base);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-page__eyebrow:before {
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--roofsie-base);
  content: "";
}

.product-page h1 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.15;
}

.product-page p {
  margin-bottom: 16px;
  color: #5f6872;
  line-height: 1.85;
}

.product-page__list,
.product-page__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-page__list li,
.product-page__links li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 24px;
  color: #5f6872;
}

.product-page__list li:before,
.product-page__links li:before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--roofsie-base);
  content: "";
}

.product-page__grid {
  margin-top: 34px;
  row-gap: 30px;
}

.product-page__panel h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.25;
}

.product-page__panel--dark {
  border-color: rgba(var(--roofsie-base-rgb), 0.2);
  background:
    radial-gradient(circle at top right, rgba(var(--roofsie-base-rgb), 0.2), transparent 28%),
    linear-gradient(135deg, #08131f 0%, #10273a 58%, #123a54 100%);
  box-shadow: 0 22px 56px rgba(var(--roofsie-black-rgb), 0.18);
}

.product-page__panel--dark h3,
.product-page__panel--dark p,
.product-page__panel--dark li {
  color: var(--roofsie-white);
}

.product-page__panel--dark .product-page__list li {
  color: rgba(var(--roofsie-white-rgb), 0.84);
}

.product-page__panel--dark .product-page__list li:before {
  background: var(--roofsie-white);
}

.product-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.product-page__actions .thm-btn {
  min-height: 50px;
}

.product-page__note {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--roofsie-base);
  border-radius: 8px;
  background: rgba(var(--roofsie-base-rgb), 0.08);
  color: #28404f;
  font-weight: 600;
}

.product-page__stats {
  margin-top: 26px;
  row-gap: 18px;
}

.product-page__stat {
  padding: 18px 20px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.14);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--roofsie-base-rgb), 0.1), rgba(var(--roofsie-white-rgb), 0.96));
}

.product-page__stat h3 {
  margin: 0 0 6px;
  color: var(--roofsie-base);
  font-size: 28px;
  line-height: 1;
}

.product-page__stat p {
  margin: 0;
  font-size: 15px;
}

.product-page__cards {
  row-gap: 30px;
}

.product-page__card {
  position: relative;
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-primary-rgb), 0.34)),
    rgba(var(--roofsie-white-rgb), 0.98);
  box-shadow: 0 16px 38px rgba(var(--roofsie-black-rgb), 0.07);
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.product-page__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--roofsie-base), #0d5a86);
  color: var(--roofsie-white);
  font-size: 24px;
  box-shadow: 0 14px 28px rgba(var(--roofsie-base-rgb), 0.24);
}

.product-page__card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.product-page__card p {
  margin-bottom: 0;
}

.product-page__band {
  position: relative;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 85% 20%, rgba(var(--roofsie-base-rgb), 0.22), transparent 20%),
    linear-gradient(135deg, #071421 0%, #0b2236 55%, #12354f 100%);
  color: var(--roofsie-white);
  box-shadow: 0 22px 54px rgba(var(--roofsie-black-rgb), 0.18);
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.product-page__band::after {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 180px;
  height: 180px;
  background-image:
    linear-gradient(rgba(var(--roofsie-white-rgb), 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--roofsie-white-rgb), 0.08) 1px, transparent 1px);
  background-size: 16px 16px;
  content: "";
  opacity: 0.32;
  mask-image: radial-gradient(circle at center, black 42%, transparent 78%);
}

.product-page__band h2,
.product-page__band h3 {
  color: var(--roofsie-white);
}

.product-page__band p,
.product-page__band li {
  color: rgba(var(--roofsie-white-rgb), 0.82);
}

.product-page__band .product-page__list li:before,
.product-page__band .product-page__links li:before {
  background: var(--roofsie-white);
}

.product-page__section {
  margin-top: 34px;
}

.product-page__section--dark {
  position: relative;
  margin-top: 38px;
  padding: 28px 30px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(var(--roofsie-base-rgb), 0.22), transparent 28%),
    linear-gradient(0deg, rgba(var(--roofsie-white-rgb), 0.03), rgba(var(--roofsie-white-rgb), 0.03)),
    linear-gradient(135deg, #08131e 0%, #0d2132 52%, #12354c 100%);
  box-shadow: 0 22px 58px rgba(var(--roofsie-black-rgb), 0.16);
  overflow: hidden;
}

.product-page__section--dark::before {
  position: absolute;
  top: -34px;
  right: 42px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(var(--roofsie-white-rgb), 0.08);
  border-radius: 50%;
  content: "";
}

.product-page__section--dark::after {
  position: absolute;
  left: 22px;
  bottom: 18px;
  width: 160px;
  height: 160px;
  background-image:
    linear-gradient(rgba(var(--roofsie-white-rgb), 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--roofsie-white-rgb), 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  content: "";
  opacity: 0.28;
  mask-image: radial-gradient(circle at center, black 38%, transparent 78%);
}

.product-page__section--dark .product-page__section-title {
  margin-bottom: 0;
}

.product-page__section--dark .product-page__section-title::before {
  background: linear-gradient(180deg, var(--roofsie-white), rgba(var(--roofsie-white-rgb), 0.22));
}

.product-page__section--dark .product-page__section-title h2,
.product-page__section--dark .product-page__section-title p {
  color: var(--roofsie-white);
}

.product-page__section--dark .product-page__section-title p {
  color: rgba(var(--roofsie-white-rgb), 0.82);
}

.product-page__section-title {
  position: relative;
  margin-bottom: 22px;
  padding-left: 22px;
}

.product-page__section-title::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 4px;
  height: calc(100% - 12px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--roofsie-base), rgba(var(--roofsie-base-rgb), 0.18));
  content: "";
}

.product-page__section-title h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.2;
}

.product-page__section-title p {
  max-width: 720px;
  margin-bottom: 0;
}

.product-page__pillars {
  row-gap: 30px;
}

.product-page__pillar {
  position: relative;
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-primary-rgb), 0.32)),
    rgba(var(--roofsie-white-rgb), 0.96);
  box-shadow: 0 16px 40px rgba(var(--roofsie-black-rgb), 0.07);
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.product-page__pillar h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.product-page__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.product-page__meta-item {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.16);
  background: linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 0.96), rgba(var(--roofsie-primary-rgb), 0.55));
}

.product-page__meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--roofsie-base);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-page__meta-text {
  margin: 0;
  color: var(--roofsie-black);
  font-weight: 700;
  line-height: 1.5;
}

.product-page__crosslinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.product-page__visual {
  margin-top: 34px;
}

.product-page__visual .product-page__panel {
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 0.98), rgba(var(--roofsie-primary-rgb), 0.3)),
    var(--roofsie-white);
}

.product-page__visual .product-page__panel.product-page__panel--dark {
  background:
    linear-gradient(135deg, #08131f 0%, #10273a 58%, #123a54 100%);
}

.contact-page--custom {
  padding: 70px 0 100px;
  background:
    radial-gradient(circle at 14% 20%, rgba(var(--roofsie-base-rgb), 0.12), transparent 22%),
    linear-gradient(180deg, #f3f8fc 0%, #ffffff 42%, #f7fbfe 100%);
}

.contact-page--custom .container {
  max-width: 1240px;
}

.contact-sidebar,
.contact-form-card {
  position: relative;
  height: 100%;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.14);
  border-radius: 20px;
  overflow: hidden;
}

.contact-sidebar {
  padding: 30px 26px;
  background:
    radial-gradient(circle at top right, rgba(var(--roofsie-base-rgb), 0.18), transparent 26%),
    linear-gradient(135deg, #08131f 0%, #10273a 58%, #123a54 100%);
  box-shadow: 0 24px 58px rgba(var(--roofsie-black-rgb), 0.16);
}

.contact-sidebar__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(var(--roofsie-white-rgb), 0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-sidebar__eyebrow::before {
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: var(--roofsie-white);
  content: "";
}

.contact-sidebar h2 {
  margin-bottom: 16px;
  color: var(--roofsie-white);
  font-size: 32px;
  line-height: 1.2;
}

.contact-sidebar > p {
  margin-bottom: 24px;
  color: rgba(var(--roofsie-white-rgb), 0.8);
  line-height: 1.8;
}

.contact-detail-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid rgba(var(--roofsie-white-rgb), 0.1);
  border-radius: 16px;
  background: rgba(var(--roofsie-white-rgb), 0.06);
  backdrop-filter: blur(8px);
}

.contact-detail-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(var(--roofsie-white-rgb), 0.1);
  color: var(--roofsie-white);
  font-size: 18px;
}

.contact-detail-card__content span {
  display: block;
  margin-bottom: 4px;
  color: rgba(var(--roofsie-white-rgb), 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-card__content a,
.contact-detail-card__content p {
  margin: 0;
  color: var(--roofsie-white);
  font-size: 16px;
  line-height: 1.7;
}

.contact-detail-card__content a:hover {
  color: rgba(var(--roofsie-white-rgb), 0.82);
}

.contact-map-card {
  margin-top: 22px;
  border: 1px solid rgba(var(--roofsie-white-rgb), 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(var(--roofsie-white-rgb), 0.08);
}

.contact-map-card iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.contact-form-card {
  padding: 34px 34px 24px;
  background:
    linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-primary-rgb), 0.38)),
    var(--roofsie-white);
  box-shadow: 0 22px 54px rgba(var(--roofsie-black-rgb), 0.08);
}

.contact-form-card__header {
  margin-bottom: 22px;
}

.contact-form-card__header .contact-sidebar__eyebrow {
  color: var(--roofsie-base);
}

.contact-form-card__header .contact-sidebar__eyebrow::before {
  background: var(--roofsie-base);
}

.contact-form-card__header h3 {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 1.2;
}

.contact-form-card__header p {
  max-width: 720px;
  margin-bottom: 0;
  color: #5f6872;
}

.contact-form-card form .row {
  row-gap: 18px;
}

.contact-form-card form .row + .row {
  margin-top: 18px;
}

.contact-form-card form input[type="text"],
.contact-form-card form input[type="email"],
.contact-form-card form input[type="number"],
.contact-form-card form input[type="file"] {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(var(--roofsie-black-rgb), 0.1);
  border-radius: 14px;
  background: rgba(var(--roofsie-white-rgb), 0.92);
  color: var(--roofsie-black);
  box-shadow: inset 0 1px 0 rgba(var(--roofsie-white-rgb), 0.65);
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease, background-color 300ms ease;
}

.contact-form-card form input[type="text"]::placeholder,
.contact-form-card form input[type="email"]::placeholder,
.contact-form-card form input[type="number"]::placeholder {
  color: #7b8794;
}

.contact-form-card form input[type="text"]:focus,
.contact-form-card form input[type="email"]:focus,
.contact-form-card form input[type="number"]:focus,
.contact-form-card form input[type="file"]:focus {
  outline: none;
  border-color: rgba(var(--roofsie-base-rgb), 0.45);
  box-shadow: 0 0 0 4px rgba(var(--roofsie-base-rgb), 0.12);
  background: var(--roofsie-white);
}

.contact-form-card form input[name="message"] {
  min-height: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  line-height: 1.6;
}

.contact-form-card form input[type="number"] {
  -moz-appearance: textfield;
}

.contact-form-card form input[type="number"]::-webkit-outer-spin-button,
.contact-form-card form input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.textheading {
  margin: 0;
  padding-top: 16px;
  color: var(--roofsie-black);
  font-size: 15px;
  font-weight: 700;
}

.contact-form-card form input[type="file"] {
  padding: 14px 18px;
  cursor: pointer;
}

.contact-form-card form input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--roofsie-base-rgb), 0.14), rgba(var(--roofsie-base-rgb), 0.28));
  color: var(--roofsie-base);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 300ms ease, transform 300ms ease;
}

.contact-form-card form input[type="file"]:hover::file-selector-button {
  transform: translateY(-1px);
}

.contact-form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--roofsie-black);
  font-size: 14px;
  font-weight: 700;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(var(--roofsie-black-rgb), 0.12);
  border-radius: 12px;
  background: rgba(var(--roofsie-white-rgb), 0.9);
  color: var(--roofsie-black);
  transition: border-color 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}

.contact-form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: rgba(var(--roofsie-base-rgb), 0.4);
  box-shadow: 0 0 0 4px rgba(var(--roofsie-base-rgb), 0.12);
  background: var(--roofsie-white);
}

.contact-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}

.contact-captcha-box {
  flex: 1 1 340px;
}

.submit__control {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.captcha-heading {
  margin-bottom: 12px;
  color: var(--roofsie-black);
  font-size: 18px;
  font-weight: 700;
}

.submit__generated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.submit__generated.valid::after,
.submit__generated.unvalid::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  content: "";
}

.submit__generated.valid::after {
  background: rgba(46, 204, 113, 0.14);
  color: #1f9d57;
  content: "✓";
}

.submit__generated.unvalid::after {
  background: rgba(214, 49, 49, 0.12);
  color: #d63131;
  content: "✕";
}

.submit__generated span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(var(--roofsie-black-rgb), 0.1);
  border-radius: 10px;
  background: var(--roofsie-white);
  font-weight: 800;
}

.submit__generated .captcha-status {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.submit__generated .submit__input {
  width: 72px !important;
  height: 44px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.35);
  border-radius: 10px;
  color: var(--roofsie-base);
  font-weight: 800;
  text-align: center;
}

.submit__generated.valid .submit__input {
  border-color: #1f9d57;
  color: #1f9d57;
}

.submit__generated.valid .captcha-status {
  background: rgba(46, 204, 113, 0.14);
  color: #1f9d57;
}

.submit__generated.unvalid .submit__input {
  border-color: #d63131;
  color: #d63131;
}

.submit__generated.unvalid .captcha-status {
  background: rgba(214, 49, 49, 0.12);
  color: #d63131;
}

.captcha-refresh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.18);
  border-radius: 999px;
  background: var(--roofsie-white);
  color: var(--roofsie-base);
  font-weight: 700;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.captcha-refresh:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--roofsie-base-rgb), 0.34);
  box-shadow: 0 10px 24px rgba(var(--roofsie-black-rgb), 0.08);
}

.captcha-refresh i {
  transition: transform 300ms ease;
}

.captcha-refresh:hover i {
  transform: rotate(180deg);
}

.contact-submit-box {
  flex: 0 0 auto;
}

.submit {
  min-width: 170px;
  margin: 0;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--roofsie-base), #0b5f91);
  color: var(--roofsie-white);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(var(--roofsie-base-rgb), 0.25);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(var(--roofsie-base-rgb), 0.32);
}

.submit__error,
.submit__error--empty {
  display: block;
  margin-top: 10px;
  color: #d63131;
  font-size: 13px;
}

.hide {
  display: none;
}

.product-page__visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(var(--roofsie-base-rgb), 0.12), rgba(var(--roofsie-white-rgb), 0)),
    #dfeaf2;
  box-shadow: 0 18px 42px rgba(var(--roofsie-black-rgb), 0.1);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.product-page__visual-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.product-page__visual-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(var(--roofsie-white-rgb), 0.2);
  border-radius: 12px;
  background: rgba(7, 20, 33, 0.72);
  backdrop-filter: blur(10px);
}

.product-page__visual-caption h4 {
  margin: 0 0 6px;
  color: var(--roofsie-white);
  font-size: 20px;
  line-height: 1.25;
}

.product-page__visual-caption p {
  margin: 0;
  color: rgba(var(--roofsie-white-rgb), 0.84);
  line-height: 1.65;
}

.product-page__crosslink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-primary-rgb), 0.45));
  color: var(--roofsie-black);
  font-weight: 700;
  transition: transform 300ms ease, border-color 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.product-page__crosslink:hover {
  color: var(--roofsie-base);
  transform: translateY(-2px);
  border-color: rgba(var(--roofsie-base-rgb), 0.35);
  box-shadow: 0 14px 30px rgba(var(--roofsie-black-rgb), 0.08);
}

.product-page__hero::before,
.product-page__panel::before,
.product-page__pillar::before,
.product-page__card::before,
.product-page__band::before,
.product-page__image::before,
.product-page__visual-card::before {
  position: absolute;
  top: -20%;
  left: -130%;
  width: 60%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(14deg);
  content: "";
  pointer-events: none;
  transition: left 650ms ease;
}

.product-page__hero:hover,
.product-page__panel:hover,
.product-page__pillar:hover,
.product-page__card:hover,
.product-page__band:hover,
.product-page__image:hover,
.product-page__visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--roofsie-base-rgb), 0.28);
  box-shadow: 0 24px 54px rgba(var(--roofsie-black-rgb), 0.12);
}

.product-page__hero:hover::before,
.product-page__panel:hover::before,
.product-page__pillar:hover::before,
.product-page__card:hover::before,
.product-page__band:hover::before,
.product-page__image:hover::before,
.product-page__visual-card:hover::before {
  left: 155%;
}

.product-page .container > * {
  animation: productFadeIn 700ms ease both;
}

.product-page .container > *:nth-child(2) {
  animation-delay: 90ms;
}

.product-page .container > *:nth-child(3) {
  animation-delay: 180ms;
}

.product-page .container > *:nth-child(4) {
  animation-delay: 270ms;
}

.product-page .container > *:nth-child(5) {
  animation-delay: 360ms;
}

@keyframes productFadeIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(var(--roofsie-white-rgb), 0.1);
}

.site-footer__bottom-text,
.copyright-text {
  color: rgba(var(--roofsie-white-rgb), 0.76);
}

.copyright-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.copyright-text a {
  display: inline-flex;
  align-items: center;
}

.copyright-text img {
  max-width: 150px;
  height: auto;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(var(--roofsie-white-rgb), 0.92);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.copyright-text a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--roofsie-black-rgb), 0.22);
}

@keyframes footerCardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerImageDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(24px, -16px, 0);
  }
}

@keyframes footerShapeSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-img-1,
  .site-footer-shape-1,
  .footer-widget__column {
    animation: none;
  }

  .footer-widget__column,
  .footer-widget__contact-list li,
  .footer-widget__contact-list li .icon {
    transition: none;
  }
}

@media (max-width: 1199px) {
  .main-menu__right {
    gap: 18px;
  }

  .about-one__left,
  .about-one__right,
  .why-choose-two__left,
  .why-choose-two__middle,
  .why-choose-two__right {
    max-width: 720px;
  }

  .about-one__left {
    margin-left: auto;
    margin-right: auto;
  }

  .about-one__right {
    margin-left: auto;
    margin-right: auto;
  }

  .about-one__text {
    max-width: 100%;
  }

  .why-choose-two__middle {
    margin-top: 40px;
    margin-bottom: 48px;
  }

  .why-choose-two__left,
  .why-choose-two__right {
    margin-left: auto;
    margin-right: auto;
  }

  .why-choose-two__img-box {
    width: min(100%, 360px);
  }
}

@media (max-width: 991px) {
  .finance-support__logos {
    grid-template-columns: 1fr;
  }

  .scheme-popup {
    padding: 14px;
  }

  .scheme-popup__content {
    grid-template-columns: 1fr;
  }

  .scheme-popup__hero::after {
    display: none;
  }

  .scheme-popup__hero::before {
    left: 26px;
    right: 26px;
  }

  .scheme-popup__hero,
  .scheme-popup__panel {
    padding: 34px 26px 26px;
  }

  .scheme-popup__highlights {
    grid-template-columns: 1fr;
  }

  .scheme-popup__deadline,
  .scheme-popup__countdown {
    padding-left: 0;
    padding-right: 0;
  }

  .scheme-popup__stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-one,
  .about-one,
  .mission-vision,
  .services-one,
  .why-choose-two,
  .project-one,
  .testimonial-one {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .services-one__top-left,
  .services-one__top-right {
    text-align: center;
  }

  .services-one__top-right {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-one__top-left .section-sub-title-box {
    justify-content: center;
  }

  .services-one:before {
    height: 52%;
    min-height: 640px;
  }

  .services-one__content {
    min-height: 230px;
  }

  .about-one__left {
    margin-right: auto;
  }

  .about-one__right {
    margin-top: 48px;
  }

  .about-one__img > img {
    min-height: 440px;
  }

  .about-one__big-text {
    display: none;
  }

  .mission-vision .section-title {
    margin-bottom: 36px;
  }

  .why-choose-two .section-title {
    margin-bottom: 42px;
  }

  .why-choose-two__middle {
    order: -1;
    margin-top: 0;
    margin-bottom: 8px;
  }

  .site-footer__top {
    padding: 70px 0 58px;
  }

  .footer-widget__column {
    padding: 28px;
  }

  .product-page {
    padding: 72px 0;
  }

  .product-page h1 {
    font-size: 34px;
  }

  .product-page__section-title h2 {
    font-size: 30px;
  }

  .product-page__meta {
    grid-template-columns: 1fr;
  }

  .contact-page--custom {
    padding: 56px 0 80px;
  }

  .contact-sidebar h2,
  .contact-form-card__header h3 {
    font-size: 28px;
  }

  .contact-form-card {
    padding: 30px 28px 22px;
  }

}

@media (max-width: 767px) {
  .finance-support__intro h3 {
    font-size: 24px;
  }

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

  .scheme-popup__stats {
    padding: 18px;
    border-radius: 22px;
  }

  .scheme-popup__stats-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-slider__title {
    font-size: 42px;
  }

  .main-slider__content {
    text-align: left;
  }

  .section-title,
  .section-title.text-left {
    text-align: center !important;
  }

  .section-sub-title-box {
    justify-content: center;
  }

  .section-title__title br,
  .main-slider__text br {
    display: none;
  }

  .feature-one__single,
  .services-one__content,
  .testimonial-one__single,
  .footer-widget__column {
    padding-left: 24px;
    padding-right: 24px;
  }

  .services-one {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .services-one:before {
    height: 42%;
    min-height: 520px;
  }

  .services-one__top {
    margin-bottom: 34px;
  }

  .services-one__top-right {
    padding: 22px;
  }

  .services-one__content {
    min-height: 0;
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .services-one__icon {
    top: -38px;
    right: 20px;
    width: 66px;
    height: 66px;
  }

  .services-one__icon span {
    font-size: 38px;
  }

  .project-one {
    padding-top: 76px;
    padding-bottom: 92px;
  }

  .project-one__top {
    margin-bottom: 34px;
  }

  .project-one__bottom-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 46px;
  }

  .project-one__img {
    aspect-ratio: 5 / 6;
  }

  .project-one__content {
    left: 22px;
    right: 76px;
    bottom: 24px;
  }

  .project-one__title {
    font-size: 20px;
  }

  .project-one__link {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .about-one__points {
    flex-direction: column;
    gap: 16px;
  }

  .about-one__img-box::before,
  .about-one__line {
    display: none;
  }

  .about-one__img > img {
    min-height: 340px;
  }

  .about-one__satisfied {
    right: 16px;
    bottom: 16px;
    left: auto;
  }

  .about-one__satisfied-shape {
    display: none;
  }

  .about-one__satisfied-content {
    padding: 16px 22px 18px;
  }

  .about-one__satisfied-count-box h3 {
    font-size: 40px;
    line-height: 42px !important;
  }

  .about-one__satisfied-percent {
    font-size: 25px;
    line-height: 42px;
  }

  .about-one__satisfied-text {
    font-size: 15px;
    line-height: 18px;
  }

  .about-one__points li {
    padding: 22px;
  }

  .mission-vision {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .mission-vision__card {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .mission-vision__card-mark {
    top: 20px;
    right: 22px;
    font-size: 36px;
  }

  .mission-vision__card h3 {
    font-size: 30px;
  }

  .why-choose-two__list-one li,
  .why-choose-two__list-two li {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 22px;
    text-align: center;
  }

  .why-choose-two__list-one li .icon,
  .why-choose-two__list-two li .icon {
    position: relative;
    inset: auto;
    margin: 0 auto 18px;
  }

  .why-choose-two__list-one li .icon:before,
  .why-choose-two__list-two li .icon:before {
    display: none;
  }

  .why-choose-two__list-two li .content {
    position: relative;
    max-width: 100%;
    text-align: center;
  }

  .why-choose-two__list-one li .content,
  .why-choose-two__list-two li .content {
    text-align: center;
  }

  .why-choose-two__img-box {
    width: min(100%, 320px);
  }

  .why-choose-two__img-one {
    border-width: 7px;
  }

  .why-choose-two__img-two {
    right: 0;
    bottom: 12px;
    width: 38%;
  }

  .why-choose-two__list-two .why-choose-two__read-more,
  .why-choose-two__read-more {
    justify-content: center;
  }

  .testimonial-one__rating {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    margin-top: 22px;
    border-radius: 8px;
  }

  .testimonial-one {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .testimonial-one .section-title {
    margin-bottom: 34px;
  }

  .testimonial-one__single {
    min-height: 0;
    padding-top: 32px;
    padding-bottom: 30px;
  }

  .testimonial-one__single:after {
    top: 20px;
    right: 24px;
    font-size: 38px;
  }

  .testimonial-one__client-info {
    padding-right: 0;
  }

  .testimonial-one__rating:after {
    display: none;
  }

  .site-footer iframe {
    height: 220px;
  }

  .product-page {
    padding: 60px 0;
  }

  .product-page__hero,
  .product-page__panel {
    padding: 26px 22px;
  }

  .product-page__band,
  .product-page__card {
    padding: 24px 22px;
  }

  .product-page h1 {
    font-size: 30px;
  }

  .product-page__section-title h2 {
    font-size: 26px;
  }

  .product-page__image img {
    min-height: 240px;
  }

  .contact-sidebar,
  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-form-footer {
    align-items: stretch;
  }

  .contact-submit-box,
  .submit {
    width: 100%;
  }

  .contact-map-card iframe {
    height: 200px;
  }

  .contact-form-card form input[type="text"],
  .contact-form-card form input[type="email"],
  .contact-form-card form input[type="number"],
  .contact-form-card form input[type="file"] {
    min-height: 54px;
  }

  .textheading {
    padding-top: 0;
  }


  .footer-widget__contact-list li {
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .copyright-text {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .finance-support {
    padding-top: 18px;
  }

  .finance-support__logo-card {
    min-height: 112px;
  }

  .quote-modal .modal-dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    margin: 8px auto;
  }

  .quote-modal .modal-content {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 8px;
  }

  .quote-modal .modal-header {
    align-items: center;
    padding: 18px 18px 14px;
  }

  .quote-modal__eyebrow {
    font-size: 10px;
  }

  .quote-modal .modal-title {
    font-size: 22px;
  }

  .quote-modal .modal-body {
    padding: 18px;
  }

  .quote-modal .row {
    --bs-gutter-y: 0.85rem;
  }

  .quote-modal .form-label {
    font-size: 13px;
  }

  .quote-modal .form-control,
  .quote-modal .form-select {
    min-height: 46px;
    font-size: 14px;
  }

  .quote-modal input[type="file"].form-control {
    padding: 10px;
  }

  .quote-modal .modal-footer {
    padding: 0 18px 18px;
  }

  .quote-modal__submit {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .scheme-popup__dialog {
    border-radius: 22px;
  }

  .scheme-popup__hero,
  .scheme-popup__panel {
    padding: 28px 18px 18px;
  }

  .scheme-popup__hero::before {
    left: 18px;
    right: 18px;
  }

  .scheme-popup__title {
    font-size: 30px;
  }

  .scheme-popup__intro {
    font-size: 16px;
  }

  .scheme-popup__quote {
    padding: 18px;
    border-radius: 18px;
  }

  .scheme-popup__quote p {
    font-size: 16px;
  }

  .scheme-popup__highlight {
    min-height: 0;
  }

  .scheme-popup__cta {
    width: 100%;
    justify-content: center;
  }

  .scheme-popup__count {
    font-size: 30px;
  }

  .scheme-popup__stat-card strong {
    font-size: 30px;
  }

  .feature-one,
  .about-one,
  .mission-vision,
  .services-one,
  .why-choose-two,
  .project-one,
  .testimonial-one {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .feature-one__top {
    align-items: center;
  }

  .feature-one__media {
    aspect-ratio: 1 / 0.95;
  }

  .feature-one__single-inner {
    padding: 22px 20px 24px;
  }

  .feature-one__title-box {
    margin-left: 0;
  }

  .feature-one__text {
    min-height: auto;
  }

  .mission-vision__icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    font-size: 26px;
  }

  .mission-vision__card h3 {
    font-size: 28px;
  }

  .footer-widget__column {
    padding: 24px 20px;
  }

  .site-footer iframe {
    height: 210px;
  }
}

.submit__generated.valid::after {
  content: "\2713";
}

.submit__generated.unvalid::after {
  content: "\2715";
}

@media (max-width: 991px) {
  .pv-brands__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .pv-brands__summary {
    width: 100%;
    min-width: 0;
  }

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

  .inverter-brands__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .inverter-brands__summary {
    width: 100%;
    min-width: 0;
  }

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

  .cable-brands__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .cable-brands__summary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .pv-brands__intro h3 {
    font-size: 24px;
  }

  .pv-brands__shell {
    padding: 22px;
    border-radius: 22px;
  }

  .pv-brands__shell::before {
    left: 22px;
    right: 22px;
  }

  .pv-brands__summary {
    grid-template-columns: 1fr 1fr;
  }

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

  .inverter-brands__intro h3 {
    font-size: 24px;
  }

  .inverter-brands__shell {
    padding: 22px;
    border-radius: 22px;
  }

  .inverter-brands__shell::before {
    left: 22px;
    right: 22px;
  }

  .inverter-brands__summary {
    grid-template-columns: 1fr 1fr;
  }

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

  .cable-brands__intro h3 {
    font-size: 24px;
  }

  .cable-brands__shell {
    padding: 22px;
    border-radius: 22px;
  }

  .cable-brands__shell::before {
    left: 22px;
    right: 22px;
  }

  .cable-brands__summary {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .pv-brands {
    padding-top: 22px;
    padding-bottom: 26px;
  }

  .pv-brands__summary {
    grid-template-columns: 1fr;
  }

  .pv-brands__logo-card {
    min-height: 96px;
    padding: 12px;
  }

  .pv-brands__logo-frame {
    min-height: 72px;
  }

  .inverter-brands {
    padding-top: 0;
    padding-bottom: 26px;
  }

  .inverter-brands__summary {
    grid-template-columns: 1fr;
  }

  .inverter-brands__logo-card {
    min-height: 96px;
    padding: 12px;
  }

  .inverter-brands__logo-frame {
    min-height: 72px;
  }

  .cable-brands {
    padding-top: 0;
    padding-bottom: 26px;
  }

  .cable-brands__summary {
    grid-template-columns: 1fr;
  }

  .cable-brands__logo-card {
    min-height: 96px;
    padding: 12px;
  }

  .cable-brands__logo-frame {
    min-height: 72px;
  }
}

.submit__generated .submit__input {
  min-height: 44px !important;
  padding: 0 10px !important;
  background: var(--roofsie-white);
}

.submit__control > .captcha-refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(var(--roofsie-base-rgb), 0.1);
  color: var(--roofsie-base);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 300ms ease, background-color 300ms ease;
}

.submit__control > .captcha-refresh-btn:hover {
  transform: rotate(180deg);
  background: rgba(var(--roofsie-base-rgb), 0.16);
}

.submit__generated.valid::after,
.submit__generated.unvalid::after {
  display: none !important;
  content: none !important;
}

.clients-page {
  position: relative;
  padding: 70px 0 100px;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--roofsie-base-rgb), 0.12), transparent 24%),
    linear-gradient(180deg, #f5f9fc 0%, #ffffff 45%, #f6fbfe 100%);
}

.clients-page__intro {
  width: min(100%, 760px);
  margin: 18px auto 0;
  color: #5f6872;
  line-height: 1.8;
}

.clients-segments {
  display: grid;
  gap: 56px;
  margin-top: 46px;
}

.clients-segment__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(var(--roofsie-base-rgb), 0.18);
}

.clients-segment__heading span {
  color: var(--roofsie-base);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clients-segment__heading h3 {
  margin: 0;
  color: var(--roofsie-black);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.client-logo-card {
  min-width: 0;
}

.client-logo-card__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.18);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-primary-rgb), 0.18)),
    var(--roofsie-white);
  box-shadow:
    0 24px 50px rgba(var(--roofsie-black-rgb), 0.08),
    inset 0 1px 0 rgba(var(--roofsie-white-rgb), 0.92);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
}

.client-logo-card__inner::before {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(var(--roofsie-base-rgb), 0.18);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.client-logo-card__inner:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--roofsie-base-rgb), 0.34);
  background:
    linear-gradient(145deg, rgba(var(--roofsie-white-rgb), 1), rgba(var(--roofsie-base-rgb), 0.12)),
    var(--roofsie-white);
  box-shadow:
    0 30px 60px rgba(var(--roofsie-black-rgb), 0.14),
    inset 0 1px 0 rgba(var(--roofsie-white-rgb), 0.96);
}

.client-logo-card__inner img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 116px;
    object-fit: contain;
    object-position: center;
    filter: saturate(0.95);
    transition: transform 300ms ease, filter 300ms ease;
}

.client-logo-card__inner:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}

.client-logo-card__inner--text {
  min-height: 156px;
  padding: 24px;
  text-align: center;
}

.client-logo-card__inner--text span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--roofsie-black);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

@media (max-width: 1199px) {
  .clients-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .clients-page {
    padding: 56px 0 80px;
  }

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

  .clients-segments {
    gap: 42px;
    margin-top: 38px;
  }

  .clients-segment__heading {
    display: block;
  }

  .clients-segment__heading h3 {
    margin-top: 6px;
    font-size: 26px;
  }

  .client-logo-card__inner {
    min-height: 160px;
    padding: 16px;
    border-radius: 18px;
  }

  .client-logo-card__inner img {
    height: 68px;
    max-height: 72px;
  }

  .client-logo-card__inner--text span {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-card__inner--text {
    min-height: 128px;
  }
}

.gallery-page {
  position: relative;
  padding: 70px 0 100px;
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--roofsie-base-rgb), 0.12), transparent 24%),
    linear-gradient(180deg, #f6fbfe 0%, #ffffff 46%, #f4f9fc 100%);
}

.gallery-page__intro {
  width: min(100%, 760px);
  margin: 18px auto 0;
  color: #5f6872;
  line-height: 1.8;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 22px;
  margin-top: 42px;
}

.gallery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.gallery-card--tall {
  margin-bottom: 22px;
}

.gallery-card--wide {
  margin-bottom: 22px;
}

.gallery-card__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(var(--roofsie-base-rgb), 0.14);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(var(--roofsie-black-rgb), 0.09);
  aspect-ratio: 1 / 1;
}

.gallery-card--tall .gallery-card__media {
  aspect-ratio: 4 / 6;
}

.gallery-card--wide .gallery-card__media {
  aspect-ratio: 16 / 10;
}

.gallery-card__media::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(var(--roofsie-white-rgb), 0.28);
  border-radius: 18px;
  content: "";
  z-index: 1;
  pointer-events: none;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(8, 19, 31, 0.04), rgba(8, 19, 31, 0.56));
  color: var(--roofsie-white);
  font-size: 30px;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 2;
}

.gallery-card__media:hover img {
  transform: scale(1.08);
  filter: saturate(1.04);
}

.gallery-card__media:hover .gallery-card__overlay {
  opacity: 1;
}

@media (max-width: 1199px) {
  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 991px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .gallery-page {
    padding: 56px 0 80px;
  }

  .gallery-masonry {
    column-gap: 18px;
  }

  .gallery-card__media {
    border-radius: 18px;
  }

  .gallery-card__media::before {
    inset: 10px;
    border-radius: 12px;
  }
}

@media (max-width: 575px) {
  .gallery-masonry {
    column-count: 1;
  }
}
