/* Общие настройки */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #111111;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

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

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


/* Шапка */

.header {
    height: 76px;
    background: #080808;
    border-bottom: 1px solid #292929;
}

.header-content {
    height: 100%;

    display: flex;
    align-items: center;
    gap: 38px;
}

.logo {
    margin-right: auto;

    color: #ffffff;
    font-size: 21px;
    font-weight: 900;
    line-height: 0.9;
}

.logo span {
    display: block;
    margin-top: 5px;

    color: #ff6600;
    font-size: 10px;
    letter-spacing: 4px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: #ff6600;
}

.header-button {
    padding: 13px 19px;

    border-radius: 4px;
    background: #ff6600;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.header-button:hover {
    background: #e85d00;
    transform: translateY(-2px);
}


/* Первый экран */

.hero {
    min-height: calc(100vh - 76px);

    display: flex;
    align-items: center;

  background:
    linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.94) 0%,
        rgba(0, 0, 0, 0.72) 48%,
        rgba(0, 0, 0, 0.18) 100%
    ),
    url("images/hero.jpg") center / cover no-repeat;
}

.hero-content {
    padding: 90px 0;
}

.hero-label {
    margin: 0 0 18px;

    color: #ff6600;

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    max-width: 850px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-text {
    max-width: 610px;
    margin: 27px 0 34px;

    color: #cccccc;

    font-size: 18px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 24px;

    border: 2px solid #ff6600;
    border-radius: 4px;

    background: #ff6600;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: #e85d00;
    border-color: #e85d00;
    transform: translateY(-2px);
}

.button-outline {
    border-color: #ffffff;
    background: transparent;
}

.button-outline:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
}


/* Версия для телефона */
/* Trust bar */

.trust-bar {
    background: #ffffff;
    color: #111111;
    border-bottom: 1px solid #dddddd;
}

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

.trust-item {
    min-height: 120px;
    padding: 24px 20px;

    display: flex;
    align-items: center;
    gap: 15px;

    border-right: 1px solid #dddddd;
}

.trust-item:first-child {
    border-left: 1px solid #dddddd;
}

.trust-icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #ff6600;
    border-radius: 50%;

    color: #ff6600;
    font-size: 17px;
    font-weight: 900;
}

.trust-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.2;
}

.trust-item p {
    margin: 0;
    color: #666666;
    font-size: 13px;
    line-height: 1.4;
}
/* Results section */

.results-section {
    padding: 75px 0;
    background: #f5f5f5;
    color: #111111;
}

.section-heading {
    margin-bottom: 35px;
    text-align: center;
}

.section-heading p {
    margin: 0 0 8px;

    color: #ff6600;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    text-transform: uppercase;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.result-card {
    position: relative;

    min-height: 300px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border-radius: 8px;
    background: #222222;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.result-half {
    position: relative;

    min-height: 300px;

    background-image: url("images/hero.jpg");
    background-size: cover;
}

.result-before {
    background-position: left center;
    filter: grayscale(1) brightness(0.55);
}

.result-after {
    background-position: right center;
}

.result-half span {
    position: absolute;
    top: 14px;

    padding: 7px 10px;

    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.result-before span {
    left: 14px;
}

.result-after span {
    right: 14px;
    background: #ff6600;
}

.result-name {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 13px 16px;

    background: rgba(0, 0, 0, 0.78);
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.result-card-2 .result-half {
    background-position-y: 35%;
}

.result-card-3 .result-half {
    background-position-y: 70%;
}

.results-link {
    display: block;
    width: fit-content;
    margin: 30px auto 0;

    color: #ff6600;

    font-size: 14px;
    font-weight: 800;
}
@media (max-width: 750px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .menu,
    .header-button {
        display: none;
    }

    .hero h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
/* Results section */

.results-section {
    padding: 75px 0;
    background: #f5f5f5;
    color: #111111;
}

.section-heading {
    margin-bottom: 35px;
    text-align: center;
}

.section-heading p {
    margin: 0 0 8px;

    color: #ff6600;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    text-transform: uppercase;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.result-card {
    position: relative;

    min-height: 300px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border-radius: 8px;
    background: #222222;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.result-half {
    position: relative;

    min-height: 300px;

    background-image: url("images/hero.jpg");
    background-size: cover;
}

.result-before {
    background-position: left center;
    filter: grayscale(1) brightness(0.55);
}

.result-after {
    background-position: right center;
}

.result-half span {
    position: absolute;
    top: 14px;

    padding: 7px 10px;

    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.result-before span {
    left: 14px;
}

.result-after span {
    right: 14px;
    background: #ff6600;
}

.result-name {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 13px 16px;

    background: rgba(0, 0, 0, 0.78);
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.result-card-2 .result-half {
    background-position-y: 35%;
}

.result-card-3 .result-half {
    background-position-y: 70%;
}

.results-link {
    display: block;
    width: fit-content;
    margin: 30px auto 0;

    color: #ff6600;

    font-size: 14px;
    font-weight: 800;
}
@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        border: 1px solid #dddddd;
    }
}
/* Results section */

.results-section {
    padding: 75px 0;
    background: #f5f5f5;
    color: #111111;
}

.section-heading {
    margin-bottom: 35px;
    text-align: center;
}

.section-heading p {
    margin: 0 0 8px;

    color: #ff6600;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    text-transform: uppercase;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.result-card {
    position: relative;

    min-height: 300px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border-radius: 8px;
    background: #222222;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.result-half {
    position: relative;

    min-height: 300px;

    background-image: url("images/hero.jpg");
    background-size: cover;
}

.result-before {
    background-position: left center;
    filter: grayscale(1) brightness(0.55);
}

.result-after {
    background-position: right center;
}

.result-half span {
    position: absolute;
    top: 14px;

    padding: 7px 10px;

    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.result-before span {
    left: 14px;
}

.result-after span {
    right: 14px;
    background: #ff6600;
}

.result-name {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 13px 16px;

    background: rgba(0, 0, 0, 0.78);
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.result-card-2 .result-half {
    background-position-y: 35%;
}

.result-card-3 .result-half {
    background-position-y: 70%;
}

.results-link {
    display: block;
    width: fit-content;
    margin: 30px auto 0;

    color: #ff6600;

    font-size: 14px;
    font-weight: 800;
}
@media (max-width: 550px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 900px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-card {
        min-height: 340px;
    }

    .result-half {
        min-height: 340px;
    }
}
.result-card-1 .result-before {
    background-image: url("./images/garage-before-01.webp");
}

.result-card-1 .result-after {
    background-image: url("./images/garage-after-01.webp");
}

.result-card-2 .result-before {
    background-image: url("./images/garage-before-02.webp");
}

.result-card-2 .result-after {
    background-image: url("./images/garage-after-02.webp");
}

.result-card-3 .result-before {
    background-image: url("./images/garage-before-03.webp");
}

.result-card-3 .result-after {
    background-image: url("./images/garage-after-03.webp");
}
/* FREE ESTIMATE SECTION */

.quote-section {
    padding: 80px 0;
    background: #111111;
    color: #ffffff;
}

.quote-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-label {
    display: inline-block;
    margin-bottom: 16px;

    color: #ff6600;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.quote-text h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
}

.quote-text p {
    max-width: 520px;
    margin: 0;

    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.6;
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;

    padding: 28px;
    background: #1c1c1c;
    border: 1px solid #333333;
    border-radius: 16px;
}

.quote-form input {
    width: 100%;
    padding: 16px;

    border: 1px solid #444444;
    border-radius: 8px;
    outline: none;

    background: #ffffff;
    color: #111111;
    font: inherit;
}

.quote-form input:focus {
    border-color: #ff6600;
}

.quote-form input[type="email"] {
    grid-column: 1 / -1;
}

.quote-form button {
    grid-column: 1 / -1;

    padding: 17px 24px;
    border: none;
    border-radius: 8px;

    background: #ff6600;
    color: #ffffff;

    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.quote-form button:hover {
    background: #e95d00;
}

/* PHONE VERSION */

@media (max-width: 800px) {
    .quote-section {
        padding: 55px 0;
    }

    .quote-box {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .quote-text h2 {
        font-size: 34px;
    }

    .quote-text p {
        font-size: 16px;
    }

    .quote-form {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .quote-form input,
    .quote-form input[type="email"],
    .quote-form button {
        grid-column: 1;
    }
}
/* FOOTER */

.site-footer {
    padding: 32px 0;
    background: #080808;
    border-top: 1px solid #2b2b2b;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 30px;
    align-items: center;
}

.footer-brand strong {
    display: block;
    margin-bottom: 7px;

    font-size: 18px;
    font-weight: 800;
}

.footer-brand p {
    margin: 0;
    color: #999999;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact a {
    color: #ff6600;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.footer-contact span {
    color: #aaaaaa;
    font-size: 14px;
}

.footer-copy {
    margin: 0;
    color: #777777;
    font-size: 13px;
    text-align: right;
}

@media (max-width: 800px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-copy {
        text-align: center;
    }
}
.quote-form button[type="submit"] {
  min-height: 56px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.demo-note {
  margin: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
}
/* Before / After comparison slider */
.compare-card {
  position: relative;
  overflow: hidden;
  --compare-position: 50%;
}

.compare-card .compare-image {
  position: absolute;
  inset: 0;
}

.compare-card .compare-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.compare-card .compare-after {
  z-index: 1;
}

.compare-card .compare-before {
  z-index: 2;
  clip-path: inset(
    0
    calc(100% - var(--compare-position))
    0
    0
  );
}

.compare-label {
  position: absolute;
  top: 16px;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.compare-label-before {
  left: 16px;
}

.compare-label-after {
  right: 16px;
}

.compare-slider {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
  appearance: none;
  touch-action: pan-y;
}

.compare-divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 3px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff5a00;
  color: white;
  font-size: 22px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.compare-card .result-name {
  z-index: 7;
}
/* FAQ */

.faq-section {
  padding: 80px 0;
  background: #111;
}

.faq-section .container {
  max-width: 920px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.25s ease;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: #ff5a00;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: #ff5a00;
}

.faq-item p {
  margin: 0;
  padding: 0 50px 22px 0;
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-item summary {
    font-size: 18px;
    padding: 18px 0;
  }

  .faq-item p {
    padding-right: 35px;
    font-size: 16px;
  }
}
/* Built Better section */

.features-section {
  padding: 80px 0;
  background: #f4f4f4;
  color: #111;
}

.features-section .section-heading {
  margin-bottom: 44px;
  text-align: center;
}

.features-section .section-heading p {
  color: #ff5a00;
}

.features-section .section-heading h2 {
  color: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  margin-bottom: 15px;
  color: #ff5a00;
  font-size: 42px;
  line-height: 1;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .features-section {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* Popular coating colors */

.colors-section {
  padding: 80px 0 25px;
  background: #ffffff;
  color: #111111;
  border-top: 1px solid #dddddd;
}

.colors-section .section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.colors-section .section-heading p {
  color: #ff5a00;
}

.colors-section .section-heading h2 {
  color: #111111;
}

.colors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.color-card {
  text-align: center;
}

.color-swatch {
  height: 115px;
  margin-bottom: 14px;
  border: 1px solid #cccccc;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.color-card h3 {
  margin: 0;
  font-size: 16px;
}

/* Coating textures */

.swatch-domino {
    background-image: url("./images/colors/domino.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swatch-nightfall {
  background-color: #171717;
  background-image:
    radial-gradient(circle, #eeeeee 0 2px, transparent 2.5px),
    radial-gradient(circle, #777777 0 1.5px, transparent 2px),
    radial-gradient(circle, #333333 0 2px, transparent 2.5px);
  background-position: 0 0, 9px 12px, 16px 5px;
  background-size: 19px 19px, 25px 25px, 31px 31px;
}

.swatch-granite {
  background-color: #bdbdbd;
  background-image:
    radial-gradient(circle, #444444 0 2px, transparent 2.5px),
    radial-gradient(circle, #eeeeee 0 1.5px, transparent 2px),
    radial-gradient(circle, #888888 0 2px, transparent 2.5px);
  background-position: 0 0, 8px 10px, 15px 4px;
  background-size: 18px 18px, 24px 24px, 30px 30px;
}

.swatch-saddle {
  background-color: #b98d62;
  background-image:
    radial-gradient(circle, #704525 0 2px, transparent 2.5px),
    radial-gradient(circle, #ead0ae 0 1.5px, transparent 2px),
    radial-gradient(circle, #93613b 0 2px, transparent 2.5px);
  background-position: 0 0, 9px 11px, 16px 5px;
  background-size: 19px 19px, 25px 25px, 31px 31px;
}

.swatch-smoke {
  background-color: #7c7c7c;
  background-image:
    radial-gradient(circle, #222222 0 2px, transparent 2.5px),
    radial-gradient(circle, #cccccc 0 1.5px, transparent 2px),
    radial-gradient(circle, #555555 0 2px, transparent 2.5px);
  background-position: 0 0, 8px 10px, 15px 5px;
  background-size: 18px 18px, 24px 24px, 30px 30px;
}

.swatch-orbit {
  background-color: #687278;
  background-image:
    radial-gradient(circle, #eeeeee 0 2px, transparent 2.5px),
    radial-gradient(circle, #173f59 0 1.5px, transparent 2px),
    radial-gradient(circle, #111111 0 2px, transparent 2.5px);
  background-position: 0 0, 9px 11px, 16px 5px;
  background-size: 19px 19px, 25px 25px, 31px 31px;
}
.swatch-nightfall {
    background-image: url("./images/colors/nightfall.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swatch-granite {
    background-image: url("./images/colors/granite.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swatch-saddle {
    background-image: url("./images/colors/saddle-tan.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swatch-smoke {
    background-image: url("./images/colors/smoke.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swatch-orbit {
    background-image: url("./images/colors/orbit.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Reviews */
.reviews-section {
    padding: 90px 0;
    background: #f5f5f5;
    color: #111111;
}

.reviews-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.reviews-heading p {
    margin: 0 0 12px;
    color: #ff5a00;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.reviews-heading h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    text-transform: uppercase;
}

.rating-card {
    max-width: 720px;
    margin: 0 auto 45px;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 22px;
}

.rating-score strong {
    color: #111111;
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
}

.rating-stars,
.review-stars {
    color: #ff5a00;
    letter-spacing: 3px;
}

.rating-score p {
    margin: 7px 0 0;
    color: #666666;
    font-size: 14px;
}

.rating-source {
    color: #111111;
    font-size: 17px;
    font-weight: 800;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.review-card > p {
    min-height: 135px;
    margin: 22px 0;
    color: #444444;
    font-size: 16px;
    line-height: 1.65;
}

.review-card h3 {
    margin: 0 0 5px;
    color: #111111;
    font-size: 18px;
}

.review-card span {
    color: #777777;
    font-size: 14px;
}

.demo-reviews-note {
    margin: 28px 0 0;
    color: #777777;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card > p {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .reviews-section {
        padding: 65px 0;
    }

    .rating-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }

    .rating-score {
        flex-direction: column;
        gap: 10px;
    }

    .rating-score strong {
        font-size: 52px;
    }
}
/* Warranty */
.warranty-section {
    padding: 90px 0;
    background: #111111;
    color: #ffffff;
}

.warranty-content {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: center;
}

.warranty-badge {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 38px 34px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 6px solid #ff5a00;
    border-radius: 16px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.warranty-badge strong {
    display: block;
    color: #ff5a00;
    font-size: 92px;
    font-weight: 900;
    line-height: 0.8;
}

.warranty-badge span {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warranty-text .section-label {
    margin: 0 0 12px;
    color: #ff5a00;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.warranty-text h2 {
    max-width: 700px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(34px, 4.3vw, 56px);
    line-height: 1.05;
    text-transform: uppercase;
}

.warranty-text > p:not(.section-label) {
    max-width: 680px;
    margin: 0 0 25px;
    color: #cccccc;
    font-size: 18px;
    line-height: 1.65;
}

.warranty-list {
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.warranty-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 32px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.45;
}

.warranty-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff5a00;
    font-size: 20px;
    font-weight: 900;
}

.warranty-text .button {
    display: inline-flex;
}

@media (max-width: 900px) {
    .warranty-content {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .warranty-text h2,
    .warranty-text > p:not(.section-label) {
        margin-left: auto;
        margin-right: auto;
    }

    .warranty-list {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .warranty-section {
        padding: 65px 0;
    }

    .warranty-badge {
        max-width: 330px;
        padding: 30px 25px;
    }

    .warranty-badge strong {
        font-size: 72px;
    }

    .warranty-badge span {
        font-size: 14px;
    }
    .warranty-text h2 {
    font-size: 34px;
    line-height: 1.05;
}
}

/* Simple Process */
.process-section {
    padding: 30px 0 75px;
    background: #f5f5f5;
    color: #111111;
}

.process-section .section-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.process-section .section-heading p {
    margin: 0 0 12px;
    color: #ff5a00;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.process-section .section-heading h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    text-transform: uppercase;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    min-height: 285px;
    padding: 30px;
    background: #ffffff;
    border-top: 4px solid #ff5a00;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.process-number {
    display: block;
    margin-bottom: 38px;
    color: #ff5a00;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.process-card h3 {
    margin: 0 0 16px;
    color: #111111;
    font-size: 22px;
}

.process-card p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 65px 0;
    }

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

    .process-card {
        min-height: auto;
    }
}
@media (max-width: 900px) {
  .colors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .colors-section {
    padding: 60px 0;
  }

  .colors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }

  .color-swatch {
    height: 100px;
  }
}
/* Contact section */
.contact-section {
  padding: 60px 0 80px;
  background: #111111;
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}

.contact-label {
  margin-bottom: 18px;
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.contact-content h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
}

.contact-text {
  max-width: 600px;
  margin-bottom: 32px;
  color: #c9c9c9;
  font-size: 18px;
  line-height: 1.65;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 28px;
  border-radius: 10px;
  background: #ff5a1f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-button:hover {
  background: #e94b10;
  transform: translateY(-2px);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.contact-section .contact-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 150px;
  padding: 28px;

  flex-direction: column;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;

  background: linear-gradient(
    145deg,
    #1c1c1c 0%,
    #141414 100%
  );

  color: #ffffff;

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  overflow: hidden;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-section .contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;

  border-radius: 0 0 4px 4px;
  background: #ff5a1f;
}

.contact-section .contact-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.55);

  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 90, 31, 0.08);
}

.contact-section .contact-item a,
.contact-section .contact-item strong,
.contact-section .contact-item p {
  color: #ffffff;
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.35;
  text-decoration: none;

  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-section .contact-item a:hover {
  color: #ff7a45;
}

.contact-section .contact-item span {
  margin-bottom: 10px;
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.contact-section .contact-item a,
.contact-section .contact-item p {
  margin: 0;
  color: #111111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-section .contact-item a:hover {
  color: #ff5a1f;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content {
    text-align: center;
  }

  .contact-content h2,
  .contact-text {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-details {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-content h2 {
    font-size: 36px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-button {
    width: 100%;
  }

  .contact-details {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .contact-section .contact-item {
    min-height: auto;
    padding: 22px;
  }
}
/* Review avatars */
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.review-avatar {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.review-author h3 {
  margin: 0 0 4px;
}

.review-author span {
  display: block;
}
.process-section {
  padding: 88px 0;
  background: #ffffff;
}

.process-heading {
  text-align: center;
  margin-bottom: 44px;
}

.process-heading p {
  margin-bottom: 10px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.process-step {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  min-height: 250px;
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.process-step-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ff6a00;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(255, 106, 0, 0.28);
}

.process-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f5f5f5;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-icon svg {
  width: 26px;
  height: 26px;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.process-step p {
  margin: 0;
  color: #666666;
  line-height: 1.6;
  font-size: 16px;
}

.process-step-arrow {
  font-size: 30px;
  font-weight: 700;
  color: #8d8d8d;
  line-height: 1;
}

@media (max-width: 1100px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-section {
    padding: 72px 0;
  }

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

  .process-step {
    min-height: auto;
  }
}
.warranty-section {
  padding: 0 0 88px;
  background: #ffffff;
}

.warranty-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 210px 1.1fr 1fr;
  align-items: center;
  gap: 42px;
  padding: 52px;
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 90% 50%,
      rgba(255, 106, 0, 0.2),
      transparent 36%
    ),
    linear-gradient(135deg, #101214, #23272b);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.warranty-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.warranty-badge {
  width: 190px;
  height: 220px;
  padding: 4px;
  background: #ff6a00;
  clip-path: polygon(
    50% 0,
    92% 13%,
    92% 70%,
    50% 100%,
    8% 70%,
    8% 13%
  );
}

.warranty-badge-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #17191b;
  clip-path: polygon(
    50% 0,
    92% 13%,
    92% 70%,
    50% 100%,
    8% 70%,
    8% 13%
  );
}

.warranty-badge strong {
  font-size: 72px;
  line-height: 0.85;
  color: #ffffff;
}

.warranty-badge span {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 4px;
}

.warranty-badge b {
  width: 100%;
  margin-top: 14px;
  padding: 8px 4px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 1px;
  color: #ffffff;
  background: #ff6a00;
}

.warranty-label {
  margin: 0 0 10px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.warranty-copy h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.warranty-copy > p:not(.warranty-label) {
  margin: 0 0 12px;
  color: #c7c7c7;
  line-height: 1.65;
}

.warranty-benefits {
  position: relative;
  z-index: 1;
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.warranty-benefits h3 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 23px;
}

.warranty-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.warranty-benefits li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 32px;
  color: #dedede;
  line-height: 1.45;
}

.warranty-benefits li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff6a00;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 950px) {
  .warranty-panel {
    grid-template-columns: 180px 1fr;
  }

  .warranty-benefits {
    grid-column: 1 / -1;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .warranty-badge {
    width: 170px;
    height: 200px;
  }
}

@media (max-width: 640px) {
  .warranty-section {
    padding-bottom: 72px;
  }

  .warranty-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 24px;
    text-align: center;
  }

  .warranty-badge {
    width: 160px;
    height: 188px;
    margin: 0 auto;
  }

  .warranty-badge strong {
    font-size: 62px;
  }

  .warranty-benefits {
    grid-column: auto;
    padding-top: 28px;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .warranty-badge {
    position: relative;
    width: 160px;
    height: 188px;
    padding: 0;
    background: transparent;
    clip-path: none;
  }

  .warranty-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ff6a00;
    clip-path: polygon(
      50% 0,
      92% 13%,
      92% 70%,
      50% 100%,
      8% 70%,
      8% 13%
    );
  }

  .warranty-badge-inner {
    position: absolute;
    inset: 5px;
    width: auto;
    height: auto;
    z-index: 1;
  }

  .warranty-badge b {
    box-sizing: border-box;
    width: 108px;
    padding: 6px 3px;
    font-size: 10px;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }
}
/* Fix warranty badge on desktop and mobile */
.warranty-badge {
  position: relative;
  width: 180px;
  height: 210px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  clip-path: none;
  flex-shrink: 0;
}

.warranty-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff6a00;
  clip-path: polygon(
    50% 0,
    90% 12%,
    90% 70%,
    50% 100%,
    10% 70%,
    10% 12%
  );
}

.warranty-badge-inner {
  position: absolute;
  inset: 6px;
  width: auto;
  height: auto;
  z-index: 1;
  background: #17191b;
  clip-path: polygon(
    50% 0,
    90% 12%,
    90% 70%,
    50% 100%,
    10% 70%,
    10% 12%
  );
}

.warranty-badge strong {
  font-size: 64px;
  line-height: 0.85;
}

.warranty-badge span {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 4px;
}

.warranty-badge b {
  box-sizing: border-box;
  width: 116px;
  margin-top: 14px;
  padding: 7px 3px;
  background: #ff6a00;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .warranty-badge {
    width: 160px;
    height: 188px;
  }

  .warranty-badge-inner {
    inset: 5px;
  }

  .warranty-badge strong {
    font-size: 58px;
  }

  .warranty-badge b {
    width: 106px;
  }
}
.warranty-badge {
  border: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  overflow: visible;
}
/* FAQ + ESTIMATE FORM */

.faq-section,
.quote-section {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #f5f5f5;
}

.faq-section {
  padding-left: 24px;
  padding-right: 18px;
}

.quote-section {
  padding-left: 18px;
  padding-right: 24px;
}

.faq-section > .container,
.quote-section > .container {
  width: 100%;
  max-width: 590px;
  padding-left: 0;
  padding-right: 0;
}

.faq-section > .container {
  margin-left: auto;
  margin-right: 0;
}

.quote-section > .container {
  margin-left: 0;
  margin-right: auto;
}

/* FAQ heading */

.faq-section .section-heading {
  margin-bottom: 28px;
  text-align: left;
}

.faq-section .section-heading p {
  margin-bottom: 10px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.faq-section .section-heading h2 {
  margin: 0;
  color: #141414;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
}

/* FAQ accordion */

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

.faq-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dddddd;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  position: relative;
  padding: 19px 54px 19px 20px;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  color: #ff6a00;
  font-size: 21px;
  font-weight: 700;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
  background: #ff6a00;
  color: #ffffff;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: #656565;
  font-size: 15px;
  line-height: 1.65;
}

/* Estimate form */

.quote-section .quote-box {
  display: block;
  padding: 34px;
  border: 1px solid #303030;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 106, 0, 0.16),
      transparent 38%
    ),
    linear-gradient(145deg, #111315, #202326);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.quote-text {
  margin-bottom: 24px;
}

.quote-label {
  display: block;
  margin-bottom: 10px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.quote-text h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.08;
}

.quote-text p {
  margin: 0;
  color: #c6c6c6;
  font-size: 16px;
  line-height: 1.6;
}

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

.quote-form input {
  box-sizing: border-box;
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid #d7d7d7;
  border-radius: 9px;
  outline: none;
  background: #ffffff;
  color: #181818;
  font: inherit;
}

.quote-form input:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.16);
}

.quote-form input:nth-of-type(3) {
  grid-column: 1 / -1;
}

.quote-form button[type="submit"] {
  grid-column: 1 / -1;
  min-height: 55px;
  border: 0;
  border-radius: 9px;
  background: #ff6a00;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.quote-form button[type="submit"]:hover {
  background: #e95f00;
  transform: translateY(-1px);
}

.form-success,
.form-error {
  margin-bottom: 16px;
  padding: 13px 15px;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.45;
}

.form-success {
  background: rgba(52, 199, 89, 0.13);
  color: #8ee6a4;
}

.form-error {
  background: rgba(255, 59, 48, 0.14);
  color: #ffaaa4;
}

/* Section after FAQ and form */

.contact-section {
  clear: both;
}

/* Tablet and mobile */

@media (max-width: 900px) {
  .faq-section,
  .quote-section {
    float: none;
    width: 100%;
  }

  .faq-section {
    padding: 72px 22px 34px;
  }

  .quote-section {
    padding: 0 22px 72px;
  }

  .faq-section > .container,
  .quote-section > .container {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .faq-section .section-heading {
    text-align: center;
  }

  .quote-section .quote-box {
    padding: 28px 20px;
  }

  .quote-text {
    text-align: center;
  }

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

  .quote-form input:nth-of-type(3),
  .quote-form button[type="submit"] {
    grid-column: auto;
  }
}
@media (min-width: 901px) {
  .reviews-section {
    padding-bottom: 40px;
  }

  .faq-section,
  .quote-section {
    padding-top: 56px;
  }
}
/* FINAL FOOTER */

.site-footer {
  clear: both;
  padding: 58px 0 0;
  background:
    radial-gradient(
      circle at 88% 30%,
      rgba(255, 106, 0, 0.12),
      transparent 28%
    ),
    linear-gradient(145deg, #0d0f10, #181b1e);
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 0.9fr;
  align-items: start;
  gap: 52px;
  padding-bottom: 46px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  text-decoration: none;
}

.footer-logo-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ff6a00;
  clip-path: polygon(
    50% 0,
    92% 15%,
    92% 70%,
    50% 100%,
    8% 70%,
    8% 15%
  );
  color: #ff6a00;
  font-size: 16px;
  font-weight: 900;
}

.footer-logo strong {
  display: block;
  font-size: 19px;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-logo small {
  display: block;
  margin-top: 5px;
  color: #ff6a00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: #aeb1b4;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 16px;
}

.footer-column a,
.footer-column span {
  color: #b9bbbe;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ff6a00;
}

.footer-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

.footer-rating span {
  color: #ff6a00;
  font-size: 18px;
  font-weight: 800;
}

.footer-rating strong {
  margin-top: 8px;
  color: #ffb000;
  font-size: 17px;
}

.footer-rating small {
  margin-top: 7px;
  color: #bcbec0;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #909396;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  color: #909396;
  font-size: 12px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ff6a00;
}

.site-footer .demo-note {
  margin: 0;
  padding: 11px 20px;
  background: #090a0b;
  color: #777a7d;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 950px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-rating {
    grid-column: 1 / -1;
    max-width: 330px;
  }
}

@media (max-width: 650px) {
  .site-footer {
    padding-top: 46px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-rating {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* Fix footer logo shield */

.footer-logo-mark {
  position: relative;
  width: 58px;
  height: 64px;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  clip-path: none;
  font-size: 0;
}

.footer-logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff6a00;
  clip-path: polygon(
    50% 0,
    92% 14%,
    92% 70%,
    50% 100%,
    8% 70%,
    8% 14%
  );
}

.footer-logo-mark::after {
  content: "AGF";
  position: absolute;
  inset: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111315;
  color: #ff6a00;
  font-size: 15px;
  font-weight: 900;
  clip-path: polygon(
    50% 0,
    92% 14%,
    92% 70%,
    50% 100%,
    8% 70%,
    8% 14%
  );
}
/* ===== Spacing fixes ===== */

/* 1) Меньше пустого места перед Our Simple Process */
.process-section {
  padding-top: 25px;
  padding-bottom: 75px;
}

/* 2) Меньше пустого места перед Reviews */
.reviews-section {
  padding-top: 30px;
  padding-bottom: 40px;
}

/* 3) Меньше пустого места перед Contact */
.contact-section {
  padding-top: 70px;
  padding-bottom: 80px;
  margin-top: 0;
}

/* 4) Исправить кривую границу над Contact */
.faq-section,
.faq-estimate-section {
  padding-top: 30px;
  padding-bottom: 70px;
  margin-bottom: 0;
  overflow: hidden;
}
/* если правая карточка с формой выпирает вниз */
.faq-grid,
.faq-estimate-grid {
  align-items: start;
}

.faq-form,
.estimate-form,
.faq-form-card,
.estimate-card {
  margin-bottom: 0;
}
@media (min-width: 901px) {
  main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  main > section {
    grid-column: 1 / -1;
  }

  main > .faq-section {
    grid-column: 1;
    float: none;
    width: auto;
    height: 100%;
  }

  main > .quote-section {
    grid-column: 2;
    float: none;
    width: auto;
    height: 100%;
  }

  main > .contact-section {
    grid-column: 1 / -1;
    clear: none;
  }
}
/* Все значения в карточках — белые */
.contact-section .contact-item {
  color: #ffffff !important;
}

.contact-section .contact-item > * {
  color: #ffffff !important;
}

/* Первое содержимое карточки — оранжевый заголовок */
.contact-section .contact-item > :first-child {
  color: #ff5a1f !important;
}

/* Ссылки без подчёркивания */
.contact-section .contact-item a {
  color: #ffffff !important;
  text-decoration: none;
}