@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Mulish:wght@300;400;600;700;800;900&family=Open+Sans:wght@400;600;700;800&family=Poppins:wght@400;600&family=Roboto:wght@300;400;500;700;900&display=swap");

:root {
  --text-dark-paragraph: #717171;
  --black: #010524;
  --accent-color: #2196f3;
  --midnight-blue: rgba(6, 11, 61, .5);
  --dark-blue: #0b0d29;
  --gray: #f2f1f1;
  --light-gray: #f9f9fa;
  --white: #fff;
  --white-50: rgba(255, 255, 255, .5);
  --footer-color: #010524;
  --dark-slate-blue: #19375c;
  --heading-font: Muli, Mulish, Poppins, sans-serif;
  --body-font: Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text-dark-paragraph);
  background: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
iframe,
video {
  max-width: 100%;
  height: auto;
}

iframe,
video,
table,
pre {
  max-width: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  color: var(--black);
  font-family: var(--heading-font);
}

h1 {
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 800;
  line-height: 1;
}

h2 {
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

.text-span-3,
.red-h2-text {
  color: var(--accent-color);
}

.w-container,
.base-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.navigation-menu-home-6 {
  z-index: 1000;
  width: 100%;
  height: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  position: fixed;
  inset: 0 0 auto;
  transition: background-color .3s, box-shadow .3s, height .3s;
}

.navigation-menu-home-6.nav-scrolled,
.navigation-menu-home-6.nav-solid {
  height: 82px;
  background: rgba(1, 5, 36, .94);
  box-shadow: 0 12px 30px rgba(1, 5, 36, .18);
}

.nav-container {
  width: 100%;
  max-width: none;
  height: 100%;
  padding-left: 34px;
  padding-right: 34px;
  display: flex;
  align-items: center;
}

.menu-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  width: 214px;
  min-height: 72px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.05;
  transition: opacity .3s;
}

.brand-logo:hover {
  opacity: .82;
}

.brand-mark {
  width: 42px;
  height: 50px;
  flex: 0 0 auto;
  position: relative;
}

.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
}

.brand-mark:before {
  top: 0;
  border-bottom: 25px solid var(--dark-slate-blue);
}

.brand-mark:after {
  bottom: 0;
  border-top: 25px solid #ef3340;
}

.brand-mark span {
  z-index: 1;
  position: absolute;
  inset: 10px 10px 11px;
  border-top: 6px solid #fff;
  border-left: 6px solid #fff;
  transform: rotate(45deg);
}

.brand-text {
  max-width: 158px;
}

.nav-menu-2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

.nav-link-wrapper,
.dropdown-header {
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.dropdown-header {
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-link-wrapper:hover,
.dropdown-header:hover,
.nav-link-wrapper.w--current {
  color: var(--accent-color);
}

.nav-item-title-white {
  margin: 10px 0;
  color: inherit;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.nav-dropdown-transparent {
  position: relative;
}

.nav-dropdown-icon-white {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown-list-2 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  position: absolute;
  top: 100%;
  left: -22px;
  min-width: 310px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(1, 5, 36, .18);
  transition: opacity .22s, transform .22s, visibility .22s;
}

.nav-dropdown-transparent:hover .nav-dropdown-list-2,
.nav-dropdown-transparent:focus-within .nav-dropdown-list-2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link-2 {
  color: var(--black);
  display: block;
  padding: 10px 8px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(1, 5, 36, .08);
  transition: color .2s, padding-left .2s;
}

.nav-dropdown-link-2:hover {
  color: var(--accent-color);
  padding-left: 15px;
}

.nav-view-all {
  margin-top: 6px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: .7px;
}

.primary-red-button,
.primary-ruc-white-button,
.button-outline {
  min-height: 58px;
  border: 1px solid transparent;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
  transition: background-color .3s, color .3s, border-color .3s, transform .3s;
}

.primary-red-button:hover {
  background: #004ae2;
  transform: translateY(-2px);
}

.primary-ruc-white-button {
  background: #f2f1f1;
  color: var(--black);
}

.primary-ruc-white-button:hover {
  background: var(--black);
  color: #fff;
}

.button-outline {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

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

.menu-button-2 {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wrapper-item-home-1 {
  width: 28px;
  display: grid;
  gap: 7px;
}

.line-header,
.line {
  height: 2px;
  background: #fff;
  transition: transform .25s, opacity .25s;
}

.menu-open .line-header {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-open .line {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Mobile drawer close (X) + backdrop overlay — hidden on desktop */
.nav-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color .2s, border-color .2s, transform .2s;
}

.nav-close span {
  display: block;
  margin-top: -3px;
}

.nav-close:hover,
.nav-close:focus-visible {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: rotate(90deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(1, 5, 36, .55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

/* Hard off — JS sets [hidden] when the menu is closed */
.nav-overlay[hidden] {
  display: none;
}

.testimonials-section {
  padding: 130px 0;
  position: relative;
}

.testimonials-section.home-ruc-3-banner-section,
.testimonials-section.inner-banner,
.testimonials-section.contacts-2-banner {
  min-height: 600px;
  padding: 160px 0 130px;
  background-image: linear-gradient(45deg, var(--dark-blue), transparent 85%), linear-gradient(to bottom, var(--midnight-blue), var(--midnight-blue)), var(--hero-image);
  background-position: 0 0, 0 0, 50% 50%;
  background-size: auto, auto, cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.testimonials-section.home-ruc-3-banner-section {
  min-height: 100vh;
}

.testimonials-section.inner-banner {
  min-height: 520px;
}

.testimonials-section.contacts-2-banner {
  min-height: 560px;
  text-align: center;
}

.home-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-top-content-wrapper {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-call-card {
  width: min(360px, 36%);
  padding: 34px;
  color: #fff;
  background: rgba(1, 5, 36, .62);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 28px 70px rgba(1, 5, 36, .28);
  backdrop-filter: blur(10px);
}

.hero-call-card span {
  display: block;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.hero-call-card a {
  display: block;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0;
}

.hero-call-card p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.home-top-title {
  color: #fff;
  max-width: 730px;
  font-size: clamp(48px, 6vw, 70px);
  font-weight: 800;
  line-height: 1;
}

.inner-title {
  max-width: 900px;
}

.home-3-description {
  max-width: 650px;
  color: #fff;
  font-size: 19px;
  line-height: 1.6;
}

.phone-wrapper {
  color: var(--accent-color);
  padding: 15px 30px 15px 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: color .3s;
}

.phone-wrapper:hover {
  color: #fff;
}

.phone-icon {
  width: 26px;
  height: 26px;
  border-left: 8px solid currentColor;
  border-bottom: 8px solid currentColor;
  border-radius: 9px;
  transform: rotate(-45deg);
}

.phone-link {
  color: #f2f1f1;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
}

.home-top-social-wrapper {
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.home-top-social-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  align-items: center;
}

.image-company-partners {
  min-width: 120px;
  color: rgba(255, 255, 255, .85);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, .25);
  padding-top: 8px;
  transition: color .2s, border-color .2s, transform .2s;
}

.image-company-partners:hover {
  color: #fff;
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.hero-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .78);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .35px;
}

.hero-breadcrumbs a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.hero-breadcrumbs a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.breadcrumb-separator {
  color: var(--accent-color);
}

.main-left-title-wrapper {
  max-width: 780px;
  margin-bottom: 50px;
  padding-left: 70px;
  position: relative;
}

.main-left-title-wrapper.centered {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  text-align: center;
}

.vertical-inscription {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  position: absolute;
  left: 0;
  top: 12px;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
  white-space: nowrap;
}

.main-left-title-wrapper.centered .vertical-inscription {
  display: none;
}

.lead-text {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
}

.div-block-25,
.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1.05fr);
  gap: 70px;
  align-items: center;
}

.ruc-service-image,
.feature-image {
  min-height: 470px;
  background-image: var(--feature-image);
  background-position: 50% 50%;
  background-size: cover;
}

.home-3-ruc-services-list,
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 38px;
}

.home-3-ruc-service-item,
.feature-card {
  display: flex;
  gap: 20px;
  min-height: 150px;
  transition: transform .25s, opacity .25s;
}

.home-3-ruc-service-item:hover,
.feature-card:hover {
  transform: translateY(-5px);
}

.roof-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  padding: 12px;
  border: 2px solid var(--accent-color);
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), #0059ff);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content-wrapper-home-3 h5,
.feature-card h5 {
  color: var(--black);
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 12px;
}

.section-gray {
  background: #f8f8f8;
  padding: 130px 0;
  position: relative;
}

.center-cta {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.who-we-are-container {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1.05fr);
  gap: 70px;
  align-items: center;
}

.about-us-wrap.left .main-title-wrapper {
  padding-left: 70px;
  position: relative;
}

.description-about-us {
  font-size: 18px;
  line-height: 1.75;
}

.link-wrapper-with-line {
  margin-top: 35px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.line-link {
  color: var(--black);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 800;
}

.red-line {
  width: 70px;
  height: 2px;
  background: var(--accent-color);
  transition: width .25s;
}

.link-wrapper-with-line:hover .red-line {
  width: 110px;
}

.div-block-18,
.image-panel {
  min-height: 390px;
  background-image: var(--feature-image);
  background-position: 50% 50%;
  background-size: cover;
}

.our-benefit-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}

.our-benefit {
  padding: 26px 0 0;
  border-top: 3px solid var(--accent-color);
}

.company-benefits h5 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
}

.section-with-blue-background {
  min-height: 120px;
  background-image: linear-gradient(to bottom, var(--accent-color), #0059ff);
}

.about-3-form-wrapper {
  min-height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.text-white {
  color: #fff;
}

.home-13-get-started {
  background: var(--footer-color);
  color: rgba(255, 255, 255, .82);
}

.home-13-get-started h2,
.home-13-get-started h3,
.home-13-get-started h4,
.home-13-get-started h5 {
  color: #fff;
}

.get-started-wrapper {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: center;
}

.paragraph-our-benefits {
  font-size: 18px;
  line-height: 1.78;
}

.evidence-panel {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.evidence-panel-image {
  min-height: 310px;
  background-image: linear-gradient(180deg, transparent, rgba(1, 5, 36, .32)), var(--feature-image);
  background-position: 50% 50%;
  background-size: cover;
}

.evidence-panel-body {
  padding: 32px;
}

.evidence-panel-body h3 {
  color: #fff;
  margin-top: 0;
}

.evidence-panel-body p {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 24px;
}

.h2-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.gallery-card {
  min-height: 320px;
  color: #fff;
  background-image: linear-gradient(360deg, var(--dark-blue), transparent 70%), var(--card-image);
  background-position: 0 0, 50% 50%;
  background-size: auto, cover;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: transform .25s;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.ruc-project-wrapper {
  width: 100%;
  padding: 28px;
}

.ruc-item-category {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.ruc-projects-link {
  color: #fff;
  display: block;
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

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

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

.cinematic-location-card {
  min-height: 420px;
  color: #fff;
  background-image: linear-gradient(180deg, rgba(1, 5, 36, .08), rgba(1, 5, 36, .86)), var(--card-image);
  background-position: 50% 50%;
  background-size: cover;
  justify-content: flex-end;
  overflow: hidden;
}

.cinematic-location-card .directory-image {
  display: none;
}

.cinematic-location-card .directory-content {
  background: linear-gradient(180deg, transparent, rgba(1, 5, 36, .72));
}

.cinematic-location-card h3,
.cinematic-location-card p,
.cinematic-location-card .directory-link {
  color: #fff;
}

.directory-card {
  min-height: 390px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(1, 5, 36, .08);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.directory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(1, 5, 36, .14);
}

.directory-image {
  min-height: 190px;
  background-image: var(--card-image);
  background-position: 50% 50%;
  background-size: cover;
}

.directory-content {
  padding: 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.directory-kicker {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.directory-card h3 {
  margin-top: 8px;
  margin-bottom: 14px;
  font-size: 26px;
}

.directory-card h3 a {
  color: var(--black);
  transition: color .2s;
}

.directory-card:hover h3 a {
  color: var(--accent-color);
}

.directory-card p {
  flex: 1;
  line-height: 1.7;
}

.directory-link {
  margin-top: 18px;
  color: var(--black);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
  align-items: start;
}

.detail-content {
  font-size: 18px;
  line-height: 1.82;
}

.detail-content h2 {
  margin-top: 48px;
}

.detail-image {
  min-height: 430px;
  margin: 45px 0;
  background-image: var(--feature-image);
  background-position: 50% 50%;
  background-size: cover;
}

.detail-sidebar {
  position: sticky;
  top: 110px;
}

.sidebox {
  background: var(--light-gray);
  padding: 30px;
  margin-bottom: 24px;
  border-top: 4px solid var(--accent-color);
}

.sidebox,
.sidebox a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sidebox h3 {
  margin-top: 0;
  font-size: 24px;
}

.side-links {
  display: grid;
  gap: 12px;
}

.side-links a {
  color: var(--black);
  font-family: var(--heading-font);
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(1, 5, 36, .12);
  transition: color .2s, padding-left .2s;
}

.side-links a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.process-card {
  padding: 26px;
  background: #fff;
  border-top: 3px solid var(--accent-color);
  box-shadow: 0 16px 44px rgba(1, 5, 36, .08);
}

.process-card h3 {
  margin-top: 0;
  font-size: 22px;
}

.contacts-wrapper-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.contacts-detail {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.contacts-link,
.contacts-address {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

.contact-panel {
  padding: 44px;
  background: var(--light-gray);
}

.contact-map {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 24px 70px rgba(1, 5, 36, .1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(.12) contrast(1.05);
}

.contact-form-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.form-shell {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 42px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(1, 5, 36, .1);
  border-top: 4px solid var(--accent-color);
}

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

.form-field {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-family: var(--heading-font);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(1, 5, 36, .16);
  background: #f9f9fa;
  color: var(--black);
  padding: 15px 16px;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 8.25 10 13l5-4.75' fill='none' stroke='%23010524' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
  padding-right: 44px;
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, .12);
}

.form-submit {
  justify-self: start;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--black);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.mobile-phone-cta {
  display: none;
}

.contact-lines {
  display: grid;
  gap: 20px;
}

.contact-line {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(1, 5, 36, .12);
}

.contact-line strong {
  display: block;
  color: var(--black);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.footer-2 {
  min-height: 520px;
  padding-top: 80px;
  padding-bottom: 60px;
  background: var(--footer-color);
  color: rgba(255, 255, 255, .78);
  position: relative;
  overflow: hidden;
}

.footer-2:before,
.footer-2:after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 26px;
  width: 330px;
  height: 210px;
  opacity: .28;
  border: 1px solid rgba(33, 150, 243, .45);
  transform: skewY(-8deg);
}

.footer-2:after {
  width: 210px;
  height: 145px;
  right: 16%;
  bottom: 145px;
  opacity: .18;
  transform: skewY(10deg);
}

.footer-main-wrapper {
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, .85fr));
  gap: 38px;
  position: relative;
}

.footer-brand-column,
.footer-link-column,
.footer-map-row {
  min-width: 0;
}

.footer-brand-2 {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 22px;
}

.footer-brand-description-2 {
  max-width: 340px;
}

.footer-contact-stack {
  margin-top: 26px;
}

.footer-form-title {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-link-3 {
  display: block;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 12px;
  transition: color .2s, padding-left .2s;
}

.footer-link-3:hover {
  color: var(--accent-color);
  padding-left: 7px;
}

.footer-map-row {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  position: relative;
}

.footer-map-row p {
  max-width: 560px;
}

.footer-map {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.footer-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
  filter: grayscale(.18) contrast(1.05);
}

.footer-rights-wrapper-2 {
  z-index: 1;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  position: relative;
}

.footer-copyright-link-2 {
  color: var(--accent-color);
}

.not-found {
  min-height: 100vh;
}

@media (max-width: 991px) {
  .navigation-menu-home-6 {
    height: 82px;
  }

  .nav-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .brand-logo {
    width: 220px;
    min-height: 60px;
  }

  .menu-button-2 {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .nav-menu-2 {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: min(88vw, 390px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 92px 28px 40px;
    background: var(--footer-color);
    transform: translateX(-103%);
    transition: transform .35s ease;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 20px 0 55px rgba(1, 5, 36, .24);
  }

  .menu-open .nav-menu-2 {
    transform: translateX(0);
  }

  /* Visible close (X) inside the open drawer */
  .nav-close {
    display: flex;
  }

  /* Backdrop fades in with the open drawer; tap it to close */
  .menu-open .nav-overlay:not([hidden]) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Tap-friendly drawer items */
  .nav-menu-2 .nav-link-wrapper,
  .nav-menu-2 .dropdown-header {
    width: 100%;
    min-height: 48px;
    padding: 6px 0;
    font-size: 17px;
  }

  .nav-menu-2 .nav-item-title-white {
    font-size: 17px;
  }

  .nav-dropdown-link-2 {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-dropdown-transparent {
    width: 100%;
  }

  .nav-dropdown-list-2 {
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
  }

  .nav-dropdown-link-2 {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, .1);
  }

  .header-button {
    display: none;
  }

  .testimonials-section.home-ruc-3-banner-section,
  .testimonials-section.inner-banner,
  .testimonials-section.contacts-2-banner {
    min-height: 700px;
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .home-top-wrapper,
  .div-block-25,
  .split-section,
  .who-we-are-container,
  .get-started-wrapper,
  .detail-grid,
  .contacts-wrapper-grid,
  .footer-main-wrapper,
  .footer-map-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .home-top-content-wrapper,
  .hero-call-card {
    width: 100%;
  }

  .hero-call-card {
    display: none;
  }

  .home-3-ruc-services-list,
  .feature-list,
  .our-benefit-container,
  .h2-gallery,
  .directory-grid,
  .home-location-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .main-left-title-wrapper,
  .about-us-wrap.left .main-title-wrapper {
    padding-left: 0;
  }

  .vertical-inscription {
    position: static;
    transform: none;
    display: block;
    margin-bottom: 16px;
  }

  .detail-sidebar {
    position: static;
  }

  .form-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mobile-phone-cta {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 1100;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--accent-color);
    box-shadow: 0 18px 40px rgba(1, 5, 36, .32);
  }

  .mobile-phone-cta .roof-icon {
    width: 34px;
    height: 34px;
    padding: 4px;
    border: 0;
    background: transparent;
  }

  /* Keep the floating phone CTA from covering the open drawer */
  .menu-open .mobile-phone-cta {
    display: none;
  }
}

/* Tablet / large-phone: hard-stack every multi-column layout + tighten spacing */
@media (max-width: 768px) {
  .w-container,
  .base-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .div-block-25,
  .split-section,
  .who-we-are-container,
  .get-started-wrapper,
  .detail-grid,
  .contacts-wrapper-grid,
  .footer-main-wrapper,
  .footer-map-row,
  .home-3-ruc-services-list,
  .feature-list,
  .our-benefit-container,
  .h2-gallery,
  .directory-grid,
  .home-location-grid,
  .process-grid,
  .form-grid,
  .form-shell,
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .testimonials-section,
  .section-gray,
  .detail-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .home-top-title,
  .inner-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  h1 {
    font-size: clamp(34px, 9vw, 50px);
  }

  h2 {
    font-size: clamp(28px, 6vw, 38px);
  }

  /* Tap-friendly form controls */
  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .form-field textarea {
    min-height: 132px;
  }

  .primary-red-button,
  .primary-ruc-white-button,
  .button-outline,
  .form-submit {
    width: 100%;
    min-height: 52px;
  }

  .phone-wrapper {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .brand-logo {
    width: 210px;
    font-size: 15px;
  }

  .brand-mark {
    width: 36px;
    height: 44px;
  }

  .testimonials-section.home-ruc-3-banner-section,
  .testimonials-section.inner-banner,
  .testimonials-section.contacts-2-banner {
    min-height: 640px;
    padding-top: 118px;
    padding-bottom: 72px;
    text-align: left;
  }

  .contacts-2-banner {
    text-align: center;
  }

  .home-top-title {
    font-size: 42px;
  }

  .home-3-description {
    font-size: 16px;
  }

  .section-gray,
  .testimonials-section,
  .detail-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .about-3-form-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }

  .directory-card {
    min-height: 0;
  }

  .contact-form {
    padding: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contacts-link,
  .contacts-address,
  .footer-copyright-link-2 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .detail-image,
  .ruc-service-image,
  .feature-image,
  .div-block-18,
  .image-panel {
    min-height: 300px;
  }

  .contact-panel,
  .sidebox {
    padding: 26px;
  }
}

/* brand-logo-img */
.brand-logo,.footer-brand-2{display:inline-flex;align-items:center}
.brand-logo-img{height:56px;width:auto;display:block;max-width:300px}
.footer-brand-2 .brand-logo-img{height:52px}
