/* Car Valuation Page – red & white brand theme */

:root {
  --primary: #c8102e;
  --primary-dark: #a00d25;
  --primary-light: #e8324a;
  --primary-muted: rgba(200, 16, 46, 0.45);
  --primary-soft: #fdecef;
  --blue: #c8102e;
  --dark: #000000;
  --body-text: #555555;
  --gray: #e9ebef;
  --gray-text: #555555;
  --white: #ffffff;
  --red: #c8102e;
  --shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body-text);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 1595px;
  max-width: 90%;
  margin: 0 auto;
}

.bold { font-weight: 700; }
.fs-16 { font-size: 16px; }
.fs-19 { font-size: 19px; }
.fs-24 { font-size: 24px; }
.fs-48 { font-size: 48px; }
.col-blue { color: var(--primary); }
.col-red { color: var(--primary); padding-right: 6px; }
.gray-text { color: var(--gray-text); }
.bg-gray { background-color: var(--gray); }
.bg-white { background-color: var(--white); }
.text-center { text-align: center; }
.pv-60 { padding: 60px 0; }
.py-60 { padding: 60px 0; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-1 { margin-bottom: 0.25rem; }
.mt-4 { margin-top: 1.5rem; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-20 { gap: 20px; }

.page-title {
  color: var(--dark);
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 12px auto 0;
}

.text-center.page-title::after,
.page-title.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

.page-title:not(.text-center)::after {
  margin-left: 0;
  margin-right: auto;
}

.page-subtitle,
.subtitle {
  color: var(--gray-text);
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.5;
}

.page-title-sub {
  color: var(--primary);
  font-size: 25px;
  font-weight: 500;
  margin: 0;
}

.primary-color {
  color: var(--primary);
}

/* Header */
#header {
  background: var(--white);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#header .logo img {
  height: 53px;
  width: auto;
}

#header .main-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

#header .menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

#header .menu a {
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
}

#header .menu a:hover,
#header .menu a.active {
  color: var(--blue);
}

#header .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--blue);
}

/* Hero Banner */
.hero-banner {
  background: var(--white);
  padding: 140px 0 60px;
  margin-top: 0;
}

.hero-banner.new {
  padding: 40px 0 60px;
}

.hero-banner .banner-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-banner .content-section {
  flex: 1;
  max-width: 60%;
}

.hero-banner .main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin: 0 0 20px;
}

.hero-banner .subtitle {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--blue);
}

.hero-banner .features-text {
  font-size: 20px;
  color: var(--body-text);
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-banner .feature-badges {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-banner .badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-banner .badge-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(6147%) hue-rotate(346deg) brightness(90%) contrast(101%);
}

.hero-banner .badge-item span {
  font-size: 18px;
  color: var(--dark);
  font-weight: 500;
}

.hero-banner .action-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--blue);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 80px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #a00d25;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark);
  padding: 16px 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #dedede;
  border-radius: 80px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #8b0b20;
  color: var(--white);
  transform: translateY(-2px);
}

.hero-banner .image-section {
  flex: 1;
  position: relative;
  max-width: 40%;
}

.hero-banner .car-image {
  position: relative;
}

.hero-banner .car-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero-banner .points-badge {
  position: absolute;
  left: -20px;
  bottom: -20px;
  background-color: var(--white);
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.hero-banner .points-badge .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.hero-banner .points-badge .label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 5px;
}

/* Numbers Section */
/* Numbers Section */
.numbers-section {
  padding: 60px 0;
  background: #f5f6f8;
}

.numbers-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 150px;
  flex-wrap: wrap;
}

/* Each Item */
.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 220px;
}

/* Circle Badge */
.circle-badge {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #c8102e;
  box-shadow:
    0 0 0 8px rgba(200, 16, 46, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-badge:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 0 0 10px rgba(200, 16, 46, 0.18),
    0 16px 40px rgba(0, 0, 0, 0.14);
}

.circle-badge .number-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.circle-badge .number {
  font-size: 1.9rem;
  font-weight: 800;
  color: #c8102e;
  line-height: 1;
}

/* Text below circle */
.number-item .title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1f2b;
}

.number-item .description {
  font-size: 0.85rem;
  color: #7b8299;
  line-height: 1.6;
  text-align: center;
}

/* Divider between items */
.numbers-grid .number-item:not(:last-child) {
  position: relative;
}

.numbers-grid .number-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50px;
  height: 60px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #e0e3ea, transparent);
}

/* Responsive */
@media (max-width: 640px) {
  .numbers-grid {
    gap: 32px;
  }
  .numbers-grid .number-item:not(:last-child)::after {
    display: none;
  }
}
/*  */





/* Service Form */
.service-form {
  padding: 60px 0;
}

.service-form .form-container {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray);
}

.service-form .form-layout {
  display: flex;
  min-height: 500px;
}

.service-form .image-container {
  width: 50%;
  flex-shrink: 0;
  background: var(--gray);
}

.service-form .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-form .left-column {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-form .form-header .page-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.service-form .form-row .form-group {
  flex: 1;
}

.service-form .form-group {
  margin-bottom: 20px;
}

.service-form .form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d3d4;
  border-radius: 5px;
  font-size: 16px;
  color: #757575;
  font-family: inherit;
  transition: border-color 0.3s;
}

.service-form .form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.service-form .form-control.is-invalid {
  border-color: var(--red);
}

.service-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.service-form .invalid-feedback {
  color: var(--red);
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.service-form .form-control.is-invalid + .invalid-feedback {
  display: block;
}

.service-form .phone-input-wrapper {
  display: flex;
  gap: 10px;
}

.service-form .country-code {
  width: 100px;
  flex-shrink: 0;
}

/* Includes Section */
.includes .box {
  background-color: var(--white);
  border-radius: 10px;
  padding: 38px;
  box-shadow: 0 0 5px rgba(0, 0, 0.17);
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.includes .box .item {
  flex-basis: 45%;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.includes .box .item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 2px var(--white), inset 0 0 0 4px var(--primary);
}

.includes .box .item .title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.includes .box .item .content {
  font-size: 18px;
  color: var(--body-text);
  line-height: 1.6;
}

.includes .extra-note {
  flex-basis: 100%;
  color: var(--blue);
  text-align: center;
  padding-top: 10px;
  font-size: 16px;
}

/* Partners / Banks */
.partners-section .bank-logos {
  margin: 40px 0 50px;
}

.partners-section .logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.partners-section .logos-row img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.partners-section .logos-row img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partners-section .more-banks {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
}

/* FAQ / Accordion */
.faq .list {
  margin-top: 20px;
}

.faq .list .item {
  margin-bottom: 20px;
  background-color: var(--white);
  border-radius: 6px;
}

.faq .list .item .top {
  display: flex;
  border-radius: 6px;
  background-color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.faq .list .item .top .title {
  flex: 1;
  padding: 15px;
  font-weight: 700;
  font-size: 19px;
}

.faq .list .item .top .clickable {
  color: var(--white);
  font-size: 20px;
  background-color: var(--blue);
  width: 50px;
  border-radius: 0 6px 6px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.faq .list .item .top .clickable::before {
  content: "+";
}

.faq .list .item.active .top .clickable {
  background-color: var(--primary-dark);
}

.faq .list .item.active .top .clickable::before {
  content: "−";
}

.faq .list .item .content {
  padding: 20px 15px;
  font-size: 19px;
  display: none;
  line-height: 1.6;
  color: var(--body-text);
}

.faq .list .item.active .content {
  display: block;
}

.faq .list .sub {
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 15px;
}

/* Full Width Banner */
.full-width-banner {
  width: 100%;
  padding: 40px 20px;
  background: linear-gradient(270deg, #3a0a12, #c8102e);
  color: var(--white);
  text-align: center;
  box-sizing: border-box;
}

.full-width-banner h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px;
}

.full-width-banner h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px;
  opacity: 0.9;
}

.full-width-banner .cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--white);
  margin-top: 10px;
  color: #a00d25;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.full-width-banner .cta-button:hover {
  background-color: #f0f0f0;
  color: #8b0b20;
}

/* Features Grid */
.features .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.features .list .item {
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 18px;
  flex: 1 1 calc(33.3% - 21px);
  min-width: 280px;
  text-align: center;
  padding: 25px;
}

.features .list .item .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--blue);
}

.features .list .item .image {
  margin: 15px 0;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features .list .item .image img {
  height: 60px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(6147%) hue-rotate(346deg) brightness(90%) contrast(101%);
}

.features .list .item .content {
  font-size: 19px;
  color: var(--body-text);
  line-height: 1.6;
}

.features .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.button {
  background-color: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  min-width: 280px;
  max-width: 100%;
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 13.5px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s all;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.button:hover {
  background-color: #a00d25;
  transform: translateY(-2px);
}

.button.phone-btn {
  background-color: var(--white);
  color: var(--blue);
  border: 1px solid #dedede;
}

.button.phone-btn:hover {
  background-color: #8b0b20;
  color: var(--white);
}

.button .icon img {
  width: 20px;
  height: 20px;
}

/* How It Works */
.HIW-new {
  padding: 80px 0;
}

.HIW-new__title.col-blue {
  color: var(--dark);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 55px;
}

.HIW-new__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 12px auto 0;
}

.HIW-new__grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.HIW-new__item {
  width: 33.3333%;
  text-align: center;
  padding: 10px 40px 0;
}

.HIW-new__item:not(:last-child) {
  border-right: 1px solid var(--primary);
}

.HIW-new__number {
  color: var(--primary-muted);
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}

.HIW-new__step-title {
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
}

.HIW-new__step-description {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

/* About / Certificate */
.about .row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about .image {
  flex: 1;
  min-width: 280px;
  max-width: 45%;
}

.about .content {
  flex: 1;
  min-width: 280px;
  max-width: 45%;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
}

.about .content p {
  margin: 0 0 18px;
}

.about .certificate-points {
  margin: 0;
  padding-left: 22px;
}

.about .certificate-points li {
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Inspections */
.inspections-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

.inspections-stat {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.inspections-stat .page-title {
  margin-bottom: 0;
}

.inspection-counter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.inspection-counter .digit {
  padding: 0.85rem 1.25rem;
  background: var(--blue);
  border-radius: 0.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.inspection-counter .digit:hover {
  transform: scale(1.08);
  background: #a00d25;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.inspection-counter .digit .number {
  color: var(--white);
  font-weight: 700;
  font-size: 2.5rem;
}

.pill {
  display: inline-block;
  background-color: var(--blue);
  color: var(--white);
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 25px;
  text-align: center;
}

.inspections-brands {
  flex: 1;
  overflow: hidden;
}

.brands-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.brands-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.brand-card {
  flex: 0 0 140px;
  height: 132px;
  perspective: 1000px;
  cursor: pointer;
}

.brand-card .inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.brand-card:hover .inner {
  transform: rotateY(180deg);
}

.brand-card .front,
.brand-card .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.brand-card .back {
  transform: rotateY(180deg);
}

.brand-card .front img {
  max-height: 60px;
  width: auto;
}

.brand-card .back .num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--blue);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.brand-card .back .name {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  padding: 0 8px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.carousel-nav button {
  background: var(--blue);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.carousel-nav button:hover {
  background: #a00d25;
}

/* Testimonials */
.testimonials {
  margin-top: 0;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.testimonial {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 27px 4px rgba(0, 0, 0, 0.04);
  padding: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  position: relative;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.testimonial .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.testimonial .author-name {
  font-weight: 700;
  color: var(--dark);
}

.testimonial .text {
  color: var(--body-text);
  line-height: 1.6;
  font-size: 16px;
}

/* Footer */
#footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 20px;
  margin-top: 60px;
}

#footer a {
  color: #ccc;
}

#footer a:hover {
  color: var(--primary-light);
}

#footer .footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

#footer .footer-col h4 {
  color: var(--white);
  margin: 0 0 15px;
  font-size: 18px;
}

#footer .footer-col ul li {
  margin-bottom: 8px;
}

#footer .footer-bottom {
  border-top: 1px solid #555;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

/* Form success message */
.form-success {
  display: none;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  border: 1px solid rgba(200, 16, 46, 0.2);
}

.form-success.show {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-banner .banner-content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .hero-banner .content-section,
  .hero-banner .image-section {
    max-width: 100%;
  }

  .hero-banner .main-title {
    font-size: 32px;
  }

  .hero-banner .subtitle {
    font-size: 24px;
  }

  .hero-banner .points-badge {
    right: 50%;
    transform: translateX(50%);
    left: auto;
    bottom: -20px;
  }

  .numbers-grid {
    gap: 20px;
  }

  .number-item {
    flex: 1 1 calc(50% - 15px);
  }

  .service-form .form-layout {
    flex-direction: column;
  }

  .service-form .image-container,
  .service-form .left-column {
    width: 100%;
  }

  .service-form .image-container {
    height: 250px;
  }

  .includes .box .item {
    flex-basis: 100%;
  }

  .HIW-new__grid {
    flex-direction: column;
  }

  .HIW-new__item {
    width: 100%;
    padding: 24px 0;
  }

  .HIW-new__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }

  .HIW-new__title {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .HIW-new__number {
    font-size: 46px;
  }

  .inspections-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .inspections-stat {
    flex: none;
    width: 100%;
    align-items: center;
  }

  .about .image,
  .about .content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #header .menu-toggle {
    display: block;
  }

  #header .main-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  #header .main-menu.open {
    display: flex;
  }

  #header .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hero-banner {
    padding: 120px 0 80px;
  }

  .hero-banner .main-title {
    font-size: 28px;
  }

  .hero-banner .subtitle {
    font-size: 22px;
  }

  .hero-banner .features-text {
    font-size: 16px;
  }

  .hero-banner .feature-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hero-banner .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .number-item {
    flex: 1 1 100%;
  }

  .service-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .features .list .item {
    flex: 1 1 100%;
  }

  .page-title {
    font-size: 28px;
  }
}
