:root {
    --navy: #071824;
    --navy-soft: #0d2433;
    --blue: #0b7fb8;
    --blue-light: #dff4fc;
    --orange: #f26a2e;
    --orange-dark: #d95720;
    --cream: #f5f1e8;
    --white: #ffffff;
    --text: #173042;
    --muted: #667987;
    --border: #d9e3e9;
    --shadow: 0 24px 70px rgba(7, 24, 36, 0.12);
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.section-tag {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-tag-light {
    color: #8fd9f4;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 24px;
    border: 0;
    border-radius: 4px;
    font-weight: 800;
    transition: 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--blue);
}

.button-primary:hover {
    background: #086d9f;
}

.button-light {
    color: var(--navy);
    background: var(--white);
}

.button-dark {
    color: var(--white);
    background: var(--navy);
}

.button-orange {
    color: var(--white);
    background: var(--orange);
}

.button-orange:hover {
    background: var(--orange-dark);
}

.button-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
}

.top-bar {
    color: #d8e7ef;
    background: var(--navy);
    font-size: 0.8rem;
}

.top-bar-content {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar a {
    color: var(--white);
    font-weight: 800;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(217, 227, 233, 0.85);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.25s ease;
}

.header.scrolled {
    box-shadow: 0 14px 40px rgba(7, 24, 36, 0.1);
}

.navigation-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 2px;
}

.logo-icon svg {
    width: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
}

.logo-text strong {
    color: var(--navy);
    font-size: 0.73rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.logo-text span {
    margin-top: 4px;
    color: var(--blue);
    font-size: 1.18rem;
    font-weight: 900;
}

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

.navigation a {
    position: relative;
    padding: 27px 0;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.25s ease;
}

.navigation a:hover,
.navigation a.active-link {
    color: var(--blue);
}

.navigation a:hover::after,
.navigation a.active-link::after {
    width: 100%;
}

.navigation-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-button {
    min-width: 42px;
    min-height: 42px;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--navy);
    background: var(--white);
    font-weight: 800;
}

.header-quote-button {
    min-height: 44px;
    padding: 10px 17px;
    font-size: 0.86rem;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--blue-light);
}

.menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    transition: 0.25s ease;
}

.hero-section {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(
            90deg,
            rgba(6, 22, 34, 0.96) 0%,
            rgba(6, 22, 34, 0.82) 50%,
            rgba(6, 22, 34, 0.25) 100%
        ),
        url("https://images.pexels.com/photos/32588548/pexels-photo-32588548.jpeg?auto=compress&cs=tinysrgb&w=1900")
        center / cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(7, 24, 36, 0.55)
        );
}

.hero-grid {
    position: relative;
    z-index: 2;
    padding-block: 105px;
    display: grid;
    grid-template-columns: 1.5fr 0.65fr;
    gap: 70px;
    align-items: center;
}

.hero-content {
    max-width: 780px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 700;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5ce391;
    box-shadow: 0 0 0 7px rgba(92, 227, 145, 0.13);
}

.hero-section h1 {
    max-width: 760px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.2rem, 6vw, 5.7rem);
    line-height: 0.97;
    letter-spacing: -0.055em;
}

.hero-description {
    max-width: 690px;
    margin-top: 25px;
    color: #dceaf2;
    font-size: 1.08rem;
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.emergency-button {
    color: var(--white);
    background: var(--orange);
}

.phone-icon {
    font-size: 1.35rem;
}

.phone-button-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.phone-button-text small {
    font-size: 0.65rem;
    font-weight: 700;
}

.hero-benefits {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #e0eef6;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-benefits > span {
    display: flex;
    gap: 7px;
}

.emergency-card {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(7, 24, 36, 0.82);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
}

.emergency-card-icon {
    width: 63px;
    height: 63px;
    display: grid;
    place-items: center;
    margin-bottom: 23px;
    color: var(--white);
    background: var(--orange);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}

.emergency-label {
    color: #8fd9f4;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.emergency-card h2 {
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.85rem;
    line-height: 1.13;
}

.emergency-card > p:not(.emergency-label) {
    margin-top: 15px;
    color: #c8d8e2;
    font-size: 0.92rem;
}

.emergency-phone {
    display: block;
    margin-top: 22px;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
}

.emergency-availability {
    margin-top: 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d3e2ea;
    font-size: 0.78rem;
    font-weight: 700;
}

.statistics-section {
    color: var(--white);
    background: var(--blue);
}

.statistics-grid {
    min-height: 120px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.statistic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.statistic:last-child {
    border-right: 0;
}

.statistic strong {
    font-family: "Montserrat", sans-serif;
    font-size: 1.85rem;
}

.statistic span {
    color: #d9eff8;
    font-size: 0.8rem;
}

.services-section {
    padding: 110px 0;
    background: var(--cream);
}

.services-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 90px;
    align-items: start;
}

.services-intro {
    position: sticky;
    top: 120px;
}

.services-intro h2,
.about-heading h2,
.problems-header h2,
.projects-heading h2,
.process-intro h2,
.reviews-top h2,
.quote-panel h2,
.faq-heading h2,
.final-cta h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.2rem, 4.3vw, 3.8rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.services-intro h2 {
    color: var(--navy);
}

.services-intro p {
    margin-top: 20px;
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    color: var(--blue);
    font-weight: 800;
}

.service-row {
    display: grid;
    grid-template-columns: 60px 1fr 45px;
    gap: 22px;
    align-items: start;
    padding: 30px 0;
    border-top: 1px solid #cfd9df;
}

.service-row:last-child {
    border-bottom: 1px solid #cfd9df;
}

.service-number {
    color: var(--orange);
    font-family: "Montserrat", sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.service-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-symbol {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 1.1rem;
}

.service-row h3 {
    color: var(--navy);
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
}

.service-row p {
    max-width: 650px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.91rem;
}

.service-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #cad5dc;
    color: var(--navy);
    background: transparent;
    transition: 0.25s ease;
}

.service-row:hover .service-arrow {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
}

.emergency-banner {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--orange);
}

.emergency-banner-shape {
    position: absolute;
    top: -70%;
    right: 15%;
    width: 430px;
    height: 430px;
    border: 80px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.emergency-banner-content {
    position: relative;
    z-index: 2;
    min-height: 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.emergency-banner-title > span {
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.emergency-banner-title h2 {
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.emergency-banner-details p {
    max-width: 550px;
    color: #fff1e9;
}

.emergency-banner-phone {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    background: var(--navy);
}

.emergency-banner-phone-icon {
    font-size: 1.35rem;
}

.emergency-banner-phone span:last-child {
    display: flex;
    flex-direction: column;
}

.emergency-banner-phone small {
    color: #c5d7e1;
    font-size: 0.65rem;
}

.emergency-banner-phone strong {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
}

.about-section {
    padding: 115px 0;
    background: var(--white);
}

.about-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.about-heading h2 {
    color: var(--navy);
}

.about-story {
    padding-top: 10px;
}

.about-lead {
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 700;
}

.about-story > p:not(.about-lead) {
    margin-top: 22px;
    color: var(--muted);
}

.about-signature {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.owner-initials {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    font-weight: 900;
}

.about-signature div:last-child {
    display: flex;
    flex-direction: column;
}

.about-signature span {
    color: var(--muted);
    font-size: 0.8rem;
}

.about-visual-grid {
    margin-top: 75px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 0;
    align-items: stretch;
}

.about-large-image {
    position: relative;
    min-height: 650px;
}

.about-large-image img {
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 310px;
    padding: 22px 25px;
    color: var(--white);
    background: var(--blue);
}

.image-caption span,
.image-caption strong {
    display: block;
}

.image-caption span {
    color: #d9eef8;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.image-caption strong {
    margin-top: 5px;
}

.about-benefits-panel {
    margin: 55px 0 -40px;
    padding: 45px 38px;
    color: var(--white);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.panel-label {
    color: #8fd9f4;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.benefit-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-number {
    color: var(--orange);
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
}

.benefit-item h3 {
    font-size: 1rem;
}

.benefit-item p {
    margin-top: 8px;
    color: #b7c8d3;
    font-size: 0.83rem;
}

.about-benefits-panel .button {
    width: 100%;
    margin-top: 28px;
    background: var(--orange);
}

.problems-section {
    padding: 110px 0;
    color: var(--white);
    background: var(--navy);
}

.problems-header {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 70px;
    align-items: end;
}

.problems-header h2 {
    color: var(--white);
}

.problems-header > p {
    color: #afc2ce;
}

.problems-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.problem-card {
    min-height: 280px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.problem-card-accent {
    background: var(--blue);
}

.problem-index {
    color: var(--orange);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}

.problem-card-accent .problem-index {
    color: var(--white);
}

.problem-card h3 {
    margin-top: 70px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.22rem;
}

.problem-card p {
    margin-top: 13px;
    color: #afc2ce;
    font-size: 0.87rem;
}

.problem-card-accent p {
    color: #e0f2fa;
}

.projects-section {
    padding: 115px 0;
    background: var(--white);
}

.projects-heading {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 75px;
    align-items: end;
}

.projects-heading h2 {
    color: var(--navy);
}

.projects-heading > p {
    color: var(--muted);
}

.project-collage {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-rows: 320px 320px;
    gap: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;
}

.project-card-large {
    grid-row: 1 / 3;
}

.project-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 60px 28px 28px;
    color: var(--white);
    background: linear-gradient(
        transparent,
        rgba(7, 24, 36, 0.9)
    );
}

.project-overlay span {
    color: #8fd9f4;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.project-overlay h3 {
    margin-top: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
}

.project-card-large .project-overlay h3 {
    font-size: 1.7rem;
}

.project-overlay p {
    margin-top: 5px;
    color: #c9d7df;
    font-size: 0.8rem;
}

.process-section {
    padding: 110px 0;
    color: var(--white);
    background: var(--blue);
}

.process-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 90px;
    align-items: start;
}

.process-intro {
    position: sticky;
    top: 120px;
}

.process-intro h2 {
    color: var(--white);
}

.process-intro p {
    margin-top: 20px;
    color: #d9eef8;
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 24px;
    padding-bottom: 45px;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: var(--white);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}

.timeline-step span {
    color: #bfe8f7;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.timeline-step h3 {
    margin-top: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
}

.timeline-step p {
    max-width: 650px;
    margin-top: 9px;
    color: #d7edf7;
    font-size: 0.9rem;
}

.reviews-section {
    padding: 115px 0;
    background: var(--cream);
}

.reviews-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.reviews-top h2 {
    color: var(--navy);
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 18px;
}

.overall-rating > strong {
    color: var(--navy);
    font-family: "Montserrat", sans-serif;
    font-size: 3.2rem;
    line-height: 1;
}

.overall-rating > div {
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #f2a91f;
    letter-spacing: 0.12em;
}

.overall-rating small {
    margin-top: 5px;
    color: var(--muted);
}

.review-list {
    margin-top: 55px;
    border-top: 1px solid #cfd9df;
}

.review-row {
    display: grid;
    grid-template-columns: 230px 1fr 70px;
    gap: 40px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #cfd9df;
}

.review-client {
    display: flex;
    align-items: center;
    gap: 13px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
}

.review-client > div:last-child {
    display: flex;
    flex-direction: column;
}

.review-client span {
    color: var(--muted);
    font-size: 0.8rem;
}

.review-content p {
    margin-top: 9px;
    color: var(--text);
}

.review-date {
    color: var(--muted);
    font-size: 0.8rem;
    text-align: right;
}

.quote-faq-section {
    padding: 115px 0;
    background: var(--white);
}

.quote-faq-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    align-items: stretch;
}

.quote-panel {
    padding: 55px;
    color: var(--white);
    background: var(--navy);
}

.quote-panel h2 {
    color: var(--white);
}

.quote-panel > p {
    max-width: 620px;
    margin-top: 20px;
    color: #b9cad5;
}

.quote-form {
    margin-top: 35px;
}

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

.quote-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: #e6f1f6;
    font-size: 0.8rem;
    font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    outline: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    transition: 0.2s ease;
}

.quote-form input,
.quote-form select {
    min-height: 51px;
    padding: 0 14px;
}

.quote-form textarea {
    padding: 14px;
    resize: vertical;
}

.quote-form select option {
    color: var(--text);
    background: var(--white);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #8fa4b2;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 106, 46, 0.14);
}

.form-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
}

.form-bottom p {
    color: #8fa4b2;
    font-size: 0.76rem;
}

.form-status {
    min-height: 23px;
    margin-top: 14px;
    color: #8fd9f4;
    font-size: 0.85rem;
    font-weight: 700;
}

.faq-panel {
    padding: 55px 45px;
    background: var(--cream);
}

.faq-heading h2 {
    color: var(--navy);
}

.faq-list {
    margin-top: 35px;
    border-top: 1px solid #cfd9df;
}

.faq-item {
    border-bottom: 1px solid #cfd9df;
}

.faq-question {
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    color: var(--navy);
    background: transparent;
    text-align: left;
    font-weight: 800;
}

.faq-question strong {
    flex: 0 0 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border: 1px solid #bfcbd2;
    transition: 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 40px 22px 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.faq-item.active .faq-question strong {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg);
}

.direct-contact-card {
    margin-top: 35px;
    padding: 28px;
    color: var(--white);
    background: var(--blue);
}

.direct-contact-card span {
    display: block;
    color: #d9eef8;
    font-size: 0.78rem;
}

.direct-contact-card a {
    display: block;
    margin-top: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
}

.direct-contact-card p {
    margin-top: 5px;
    color: #d9eef8;
    font-size: 0.78rem;
}

.final-cta {
    padding: 75px 0;
    color: var(--white);
    background: var(--orange);
}

.final-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta span {
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.final-cta h2 {
    max-width: 720px;
    margin-top: 9px;
    color: var(--white);
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.final-cta .button-orange {
    color: var(--navy);
    background: var(--white);
}

.footer {
    padding: 80px 0 22px;
    color: #b3c5d1;
    background: #04121c;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 0.85fr 1fr;
    gap: 55px;
}

.footer-logo .logo-text strong {
    color: #d8e6ed;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 20px;
    font-size: 0.87rem;
}

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

.footer-column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.88rem;
}

.footer-column a,
.footer-column p {
    font-size: 0.82rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.76rem;
}

.floating-call-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 57px;
    height: 57px;
    display: none;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 12px 30px rgba(242, 106, 46, 0.35);
    font-size: 1.35rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1000px) {
    .header-quote-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .navigation {
        position: fixed;
        inset: 116px 0 auto 0;
        max-height: 0;
        display: grid;
        gap: 0;
        overflow: hidden;
        background: var(--white);
        box-shadow: 0 24px 40px rgba(7, 24, 36, 0.12);
        transition: max-height 0.35s ease;
    }

    .navigation.open {
        max-height: 430px;
    }

    .navigation a {
        padding: 17px 25px;
        border-bottom: 1px solid var(--border);
    }

    .navigation a::after {
        display: none;
    }

    .hero-grid,
    .services-layout,
    .about-editorial-grid,
    .problems-header,
    .projects-heading,
    .process-layout,
    .quote-faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 45px;
    }

    .emergency-card {
        max-width: 560px;
    }

    .services-intro,
    .process-intro {
        position: static;
    }

    .services-layout,
    .process-layout {
        gap: 55px;
    }

    .emergency-banner-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-block: 70px;
    }

    .about-editorial-grid {
        gap: 45px;
    }

    .about-visual-grid {
        grid-template-columns: 1fr;
    }

    .about-benefits-panel {
        margin: 0;
    }

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

    .project-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 430px 300px;
    }

    .project-card-large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .review-row {
        grid-template-columns: 210px 1fr;
    }

    .review-date {
        display: none;
    }

    .final-cta-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta-actions {
        justify-content: flex-start;
    }

    .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .top-bar-content {
        min-height: 34px;
        justify-content: center;
    }

    .top-bar-content > p {
        display: none;
    }

    .logo-text strong {
        font-size: 0.65rem;
    }

    .logo-text span {
        font-size: 1rem;
    }

    .hero-section {
        min-height: auto;
        background-position: 62% center;
    }

    .hero-grid {
        padding-block: 76px;
    }

    .hero-section h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-benefits {
        display: grid;
        gap: 10px;
    }

    .emergency-card {
        padding: 27px;
    }

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

    .statistic {
        min-height: 100px;
        padding: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .statistic:nth-child(2) {
        border-right: 0;
    }

    .services-section,
    .about-section,
    .problems-section,
    .projects-section,
    .process-section,
    .reviews-section,
    .quote-faq-section {
        padding: 78px 0;
    }

    .service-row {
        grid-template-columns: 38px 1fr;
    }

    .service-arrow {
        display: none;
    }

    .service-title-row {
        align-items: flex-start;
    }

    .service-symbol {
        flex: 0 0 42px;
    }

    .emergency-banner-title h2 {
        font-size: 2.7rem;
    }

    .about-large-image {
        min-height: 430px;
    }

    .image-caption {
        min-width: 0;
        width: 100%;
    }

    .about-benefits-panel {
        padding: 36px 24px;
    }

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

    .problem-card {
        min-height: 230px;
    }

    .problem-card h3 {
        margin-top: 45px;
    }

    .project-collage {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .project-card-large {
        grid-column: auto;
    }

    .project-card {
        min-height: 330px;
    }

    .reviews-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .review-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .quote-panel,
    .faq-panel {
        padding: 38px 22px;
    }

    .form-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-bottom .button {
        width: 100%;
    }

    .final-cta-actions,
    .final-cta-actions .button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-call-button {
        display: grid;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}