/* =========================================================
   NORDGLANZ
   DESKTOP + MOBILE
========================================================= */
/* =========================================================
   NORDGLANZ
   DESKTOP + MOBILE
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    font-family: "Manrope", Arial, sans-serif;
    color: #142522;
    background: #ffffff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 76px;

    display: flex;
    align-items: center;

    padding: 0 5%;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #e4ebe9;

    backdrop-filter: blur(12px);
}


/* =========================================================
   HAMBURGER — 3 LINIEN
========================================================= */

.menu-button {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-right: 17px;

    cursor: pointer;

    background: transparent;

    border: 1px solid #d8e2df;
    border-radius: 50%;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.menu-button:hover {
    border-color: #087f6b;
    background: #f1f7f5;
}

.menu-button > span {
    display: block;

    width: 18px;
    height: 2px;

    background: #102824;

    border-radius: 10px;

    transition: 0.2s ease;
}

.menu-button > span:nth-child(2) {
    width: 14px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    gap: 10px;
}

.logo-symbol {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #9bc9bd;
    border-radius: 50%;

    color: #087f6b;

    font-size: 15px;
    font-weight: 800;
}

.logo-name {
    display: flex;
    flex-direction: column;
}

.logo-name strong {
    color: #102824;

    font-size: 18px;
    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -0.4px;
}

.logo-name small {
    margin-top: 4px;

    color: #81908c;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.9px;

    text-transform: uppercase;
}


/* =========================================================
   OVERLAY
========================================================= */

.menu-overlay {
    position: fixed;
    inset: 0;

    z-index: 1990;

    background: rgba(2, 17, 14, 0.65);

    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   SIDE MENU
========================================================= */

.side-menu {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 2000;

    width: min(430px, 92vw);
    height: 100dvh;

    padding: 32px 34px;

    display: flex;
    flex-direction: column;

    overflow-y: auto;

    background: #09251f;
    color: #ffffff;

    box-shadow: 30px 0 80px rgba(0, 0, 0, 0.24);

    transform: translateX(-105%);

    transition:
        transform 0.38s cubic-bezier(0.22, 0.8, 0.25, 1);
}

.side-menu.open {
    transform: translateX(0);
}

.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}


/* =========================================================
   SIDE LOGO
========================================================= */

.side-logo {
    display: flex;
    align-items: center;

    gap: 11px;
}

.side-logo > span {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(126, 226, 201, 0.55);
    border-radius: 50%;

    color: #7ee2c9;

    font-size: 15px;
    font-weight: 800;
}

.side-logo strong {
    display: block;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.1;
}

.side-logo small {
    display: block;

    margin-top: 4px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.9px;

    text-transform: uppercase;
}


/* =========================================================
   CLOSE
========================================================= */

.menu-close {
    position: relative;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    cursor: pointer;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.menu-close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 16px;
    height: 1.5px;

    background: #ffffff;
}

.menu-close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

.menu-close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* =========================================================
   MENU NAV
========================================================= */

.menu-title {
    display: block;

    margin-top: 29px;
    margin-bottom: 7px;

    color: #67cdb5;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.side-navigation {
    display: flex;
    flex-direction: column;
}

.side-navigation a {
    display: flex;
    align-items: center;

    gap: 19px;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.92);

    font-size: 18px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.side-navigation a:hover {
    color: #7ee2c9;

    padding-left: 5px;
}

.side-navigation small {
    width: 23px;

    color: #67cdb5;

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   SIDE CONTACT
========================================================= */

.side-contact {
    margin-top: auto;

    padding-top: 28px;
}

.side-contact > span {
    display: block;

    margin-bottom: 10px;

    color: #67cdb5;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.side-phone {
    display: block;

    font-size: 20px;
    font-weight: 800;
}

.side-email {
    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 12px;
}

.side-contact p {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 11px;
}

.side-cta {
    min-height: 52px;

    margin-top: 22px;
    padding: 0 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    color: #0a2a24;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 800;
}

.side-cta span {
    font-size: 18px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    padding: 90px 8%;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(4, 27, 22, 0.96) 0%,
            rgba(4, 27, 22, 0.88) 38%,
            rgba(4, 27, 22, 0.51) 62%,
            rgba(4, 27, 22, 0.08) 100%
        ),
        url("./reinigung-mann.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 780px;
}

.hero-location {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 26px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.hero-location > span {
    width: 28px;
    height: 1px;

    background: #72d8bf;
}

.hero h1 {
    color: #ffffff;

    font-size: clamp(48px, 5.3vw, 76px);
    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -3px;
}

.hero h1 em {
    display: block;

    color: #79dfc7;

    font-style: normal;
}

.hero-text {
    max-width: 610px;

    margin-top: 27px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;
    font-weight: 500;

    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.button-primary,
.button-secondary {
    min-height: 54px;

    padding: 0 21px;

    display: inline-flex;
    align-items: center;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 800;
}

.button-primary {
    justify-content: space-between;

    min-width: 210px;

    gap: 28px;

    background: #ffffff;
    color: #0b302a;
}

.button-primary span {
    font-size: 18px;
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);

    color: #ffffff;
}


/* =========================================================
   HERO BENEFITS
========================================================= */

.hero-benefits {
    display: flex;
    flex-wrap: wrap;

    gap: 26px;

    margin-top: 42px;
    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-benefits div {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
    font-weight: 600;
}

.hero-benefits div > span {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(121, 223, 199, 0.55);
    border-radius: 50%;

    color: #79dfc7;

    font-size: 9px;
}


/* =========================================================
   QUALITY BAR
========================================================= */

.quality-bar {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 0 8%;

    border-bottom: 1px solid #e3ebe8;

    background: #ffffff;
}

.quality-item {
    min-height: 115px;

    padding: 0 26px;

    display: flex;
    align-items: center;

    gap: 15px;

    border-right: 1px solid #e3ebe8;
}

.quality-item:first-child {
    padding-left: 0;
}

.quality-item:last-child {
    border-right: 0;
}

.quality-item > span {
    color: #9aaba7;

    font-size: 9px;
    font-weight: 800;
}

.quality-item strong {
    display: block;

    font-size: 14px;
    font-weight: 800;
}

.quality-item small {
    display: block;

    margin-top: 2px;

    color: #7a8985;

    font-size: 10px;
}


/* =========================================================
   GENERAL
========================================================= */

.section {
    padding: 105px 8%;
}

.eyebrow {
    display: block;

    margin-bottom: 16px;

    color: #087f6b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.2px;
}

.eyebrow.light {
    color: #71d6be;
}

.section-heading {
    display: grid;

    grid-template-columns: 1.25fr 0.75fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}

.section-heading h2,
.prices-info h2,
.about-content h2,
.contact-info h2 {
    color: #102824;

    font-size: clamp(35px, 4vw, 52px);
    font-weight: 800;

    line-height: 1.13;

    letter-spacing: -1.8px;
}

.section-heading > p {
    max-width: 450px;

    color: #687773;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #f6f8f7;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.service-card {
    min-height: 320px;

    display: grid;

    grid-template-columns: 45% 55%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfe7e5;
}

.service-image {
    min-height: 320px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-image.office {
    background-image:
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1000&q=85");
}

.service-image.windows {
    background-image:
        url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1000&q=85");
}

.service-image.stairs {
    background-image:
        url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1000&q=85");
}

.service-image.deep-clean {
    background-image:
        url("https://images.unsplash.com/photo-1585421514738-01798e348b17?auto=format&fit=crop&w=1000&q=85");
}

.service-content {
    padding: 31px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-number {
    color: #087f6b;

    font-size: 9px;
    font-weight: 800;
}

.service-content h3 {
    margin-top: 14px;

    font-size: 21px;
    font-weight: 800;

    line-height: 1.2;
}

.service-content p {
    margin-top: 13px;

    color: #687773;

    font-size: 12px;

    line-height: 1.75;
}

.service-content a {
    margin-top: auto;
    padding-top: 23px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #087f6b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}

.service-content a span {
    font-size: 16px;
}


/* =========================================================
   PRICES
========================================================= */

.prices {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 95px;

    background: #0a2a24;
    color: #ffffff;
}

.prices-info h2 {
    color: #ffffff;
}

.prices-info > p {
    max-width: 460px;

    margin-top: 23px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.8;
}

.price-contact {
    min-height: 52px;

    margin-top: 30px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;

    gap: 25px;

    background: #ffffff;
    color: #0a2a24;

    border-radius: 4px;

    font-size: 11px;
    font-weight: 800;
}

.price-contact span {
    font-size: 17px;
}

.price-list {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.price-item {
    min-height: 108px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.price-item > div {
    display: flex;
    align-items: center;

    gap: 20px;
}

.price-item > div > span {
    color: #6bd1b8;

    font-size: 9px;
    font-weight: 800;
}

.price-item strong {
    font-size: 16px;
    font-weight: 700;
}

.price-item > p {
    min-width: 150px;

    text-align: right;

    font-size: 23px;
    font-weight: 800;
}

.price-item > p small {
    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;
    font-weight: 600;
}

.price-item > p.individual {
    color: #82dec8;

    font-size: 13px;
    font-weight: 700;
}

.price-note {
    display: block;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.37);

    font-size: 9px;

    line-height: 1.6;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 85px;

    align-items: center;
}

.about-image {
    position: relative;

    min-height: 590px;

    background-image:
        linear-gradient(
            0deg,
            rgba(6, 32, 27, 0.28),
            rgba(6, 32, 27, 0)
        ),
        url("./reinigung-mann.png");

    background-size: cover;
    background-position: center;
}

.about-image-label {
    position: absolute;

    left: 22px;
    bottom: 22px;

    padding: 15px 18px;

    display: flex;
    align-items: center;

    gap: 11px;

    background: rgba(7, 35, 30, 0.94);

    color: #ffffff;
}

.about-image-label > span {
    width: 33px;
    height: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(126, 226, 201, 0.5);
    border-radius: 50%;

    color: #7ee2c9;

    font-size: 12px;
    font-weight: 800;
}

.about-image-label strong {
    display: block;

    font-size: 13px;
}

.about-image-label small {
    display: block;

    color: rgba(255, 255, 255, 0.55);

    font-size: 8px;
}

.about-intro {
    margin-top: 23px;

    color: #687773;

    font-size: 15px;

    line-height: 1.8;
}

.about-list {
    margin-top: 34px;

    border-top: 1px solid #dfe7e5;
}

.about-list > div {
    display: grid;

    grid-template-columns: 38px 1fr;

    gap: 16px;

    padding: 20px 0;

    border-bottom: 1px solid #dfe7e5;
}

.about-list > div > span {
    color: #087f6b;

    font-size: 9px;
    font-weight: 800;
}

.about-list section strong {
    font-size: 14px;
    font-weight: 800;
}

.about-list section p {
    margin-top: 3px;

    color: #72817d;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: start;

    background: #f4f7f6;
}

.contact-info > p {
    max-width: 470px;

    margin-top: 23px;

    color: #687773;

    font-size: 14px;

    line-height: 1.8;
}

.contact-list {
    margin-top: 38px;

    border-top: 1px solid #d8e2df;
}

.contact-list > div {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 14px;

    padding: 18px 0;

    border-bottom: 1px solid #d8e2df;
}

.contact-list > div > span {
    color: #087f6b;

    font-size: 9px;
    font-weight: 800;
}

.contact-list section small {
    display: block;

    margin-bottom: 2px;

    color: #899691;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.contact-list section a,
.contact-list section strong {
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   FORM
========================================================= */

.form-box {
    padding: 42px;

    background: #ffffff;

    border: 1px solid #dfe7e5;
}

.form-title {
    margin-bottom: 28px;
    padding-bottom: 22px;

    border-bottom: 1px solid #e0e8e6;
}

.form-title > span {
    color: #087f6b;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.form-title h3 {
    margin-top: 6px;

    font-size: 26px;
    font-weight: 800;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    margin-bottom: 6px;

    color: #354743;

    font-size: 10px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    outline: none;

    border: 1px solid #cedbd7;
    border-radius: 3px;

    background: #ffffff;
    color: #142522;

    font-size: 12px;
}

.form-group input,
.form-group select {
    height: 48px;

    padding: 0 13px;
}

.form-group textarea {
    min-height: 125px;

    padding: 12px 13px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #087f6b;

    box-shadow: 0 0 0 3px rgba(8, 127, 107, 0.07);
}


/* =========================================================
   PRIVACY
========================================================= */

.privacy-check {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    margin: 2px 0 20px;

    color: #788681;

    font-size: 9px;

    line-height: 1.6;
}

.privacy-check input {
    width: 15px;
    height: 15px;

    margin-top: 1px;

    flex: 0 0 15px;

    accent-color: #087f6b;
}


/* =========================================================
   SUBMIT
========================================================= */

.submit-button {
    width: 100%;
    min-height: 53px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    background: #0b302a;
    color: #ffffff;

    border-radius: 3px;

    font-size: 11px;
    font-weight: 800;
}

.submit-button:hover {
    background: #087f6b;
}

.submit-button:disabled {
    opacity: 0.6;

    cursor: wait;
}

.submit-button span {
    font-size: 17px;
}


/* =========================================================
   FORM MESSAGE
========================================================= */

.form-message {
    display: none;
}

.form-message.success,
.form-message.error {
    display: flex;
    flex-direction: column;

    gap: 3px;

    margin-top: 15px;

    padding: 14px;

    border-radius: 3px;
}

.form-message.success {
    background: #e7f5ef;

    border: 1px solid #b4dccc;

    color: #075f49;
}

.form-message.error {
    background: #fff0f0;

    border: 1px solid #efc1c1;

    color: #9b2929;
}

.form-message strong {
    font-size: 11px;
    font-weight: 800;
}

.form-message span {
    font-size: 9px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #071d19;
    color: #ffffff;
}

.footer-main {
    padding: 60px 8%;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;
}

.footer-brand > div {
    display: flex;
    align-items: center;

    gap: 10px;
}

.footer-brand > div > span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(126, 226, 201, 0.5);
    border-radius: 50%;

    color: #7ee2c9;

    font-size: 12px;
    font-weight: 800;
}

.footer-brand > div > strong {
    font-size: 18px;
    font-weight: 800;
}

.footer-brand p {
    max-width: 320px;

    margin-top: 15px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

    line-height: 1.7;
}

.footer-column > strong {
    display: block;

    margin-bottom: 13px;

    color: #67cdb5;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.footer-column a {
    display: block;

    margin: 7px 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
}

.footer-bottom {
    min-height: 62px;

    padding: 0 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.34);

    font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .section-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .prices {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    html {
        /*
           На телефоне шапка больше не закреплена,
           поэтому дополнительный отступ сверху
           при переходе по якорям не нужен.
        */
        scroll-padding-top: 0;
    }


    /* =====================================================
       MOBILE HEADER
       ВАЖНО:
       position: static убирает sticky на телефоне.
       Шапка теперь уезжает вверх вместе со страницей.
    ===================================================== */

    .header {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;

        height: 66px;

        padding: 0 17px;

        background: rgba(255, 255, 255, 0.98);

        transform: none !important;
    }


    /* HAMBURGER */

    .menu-button {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        margin-right: 12px;

        border: 0;
        border-radius: 0;
    }

    .menu-button > span {
        width: 21px;
        height: 2px;
    }

    .menu-button > span:nth-child(2) {
        width: 21px;
    }


    /* LOGO */

    .logo-symbol {
        width: 33px;
        height: 33px;

        font-size: 13px;
    }

    .logo-name strong {
        font-size: 16px;
    }

    .logo-name small {
        display: none;
    }


    /* SIDE MENU */

    .side-menu {
        width: 90vw;

        padding: 23px 21px;
    }

    .side-navigation a {
        padding: 13px 0;

        font-size: 17px;
    }


    /* HERO */

    .hero {
        min-height: 650px;

        padding: 70px 24px 60px;

        align-items: center;

        background-position: 64% center;

        background-image:
            linear-gradient(
                90deg,
                rgba(4, 27, 22, 0.95) 0%,
                rgba(4, 27, 22, 0.83) 52%,
                rgba(4, 27, 22, 0.28) 100%
            ),
            url("./reinigung-mann.png");
    }

    .hero-location {
        margin-bottom: 21px;

        font-size: 9px;

        line-height: 1.5;
    }

    .hero-location > span {
        width: 20px;
    }

    .hero h1 {
        font-size: 44px;

        line-height: 1.03;

        letter-spacing: -2.2px;
    }

    .hero-text {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;

        margin-top: 28px;
    }

    .button-primary,
    .button-secondary {
        width: 100%;

        min-height: 52px;
    }

    .button-primary {
        justify-content: space-between;
    }

    .button-secondary {
        justify-content: center;
    }

    .hero-benefits {
        flex-direction: column;

        gap: 10px;

        margin-top: 29px;
        padding-top: 20px;
    }


    /* QUALITY */

    .quality-bar {
        grid-template-columns: 1fr 1fr;

        padding: 0 20px;
    }

    .quality-item {
        min-height: 95px;

        padding: 0 10px;

        border-bottom: 1px solid #e3ebe8;
    }

    .quality-item:first-child {
        padding-left: 10px;
    }

    .quality-item:nth-child(2) {
        border-right: 0;
    }

    .quality-item:nth-child(3),
    .quality-item:nth-child(4) {
        border-bottom: 0;
    }

    .quality-item > span {
        display: none;
    }


    /* SECTIONS */

    .section {
        padding: 70px 22px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .prices-info h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 34px;

        letter-spacing: -1.3px;
    }


    /* SERVICES */

    .services-grid {
        gap: 16px;
    }

    .service-card {
        display: block;

        min-height: 0;
    }

    .service-image {
        min-height: 220px;
    }

    .service-content {
        min-height: 250px;

        padding: 24px 21px;
    }


    /* PRICES */

    .prices {
        gap: 42px;
    }

    .price-item {
        min-height: 95px;

        gap: 12px;
    }

    .price-item > div {
        gap: 9px;
    }

    .price-item strong {
        font-size: 13px;
    }

    .price-item > p {
        min-width: 95px;

        font-size: 19px;
    }

    .price-item > p.individual {
        font-size: 11px;
    }


    /* ABOUT */

    .about {
        gap: 42px;
    }

    .about-image {
        min-height: 430px;
    }

    .about-image-label {
        left: 14px;
        bottom: 14px;
    }


    /* FORM */

    .form-box {
        padding: 26px 19px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-title h3 {
        font-size: 23px;
    }


    /* FOOTER */

    .footer-main {
        padding: 48px 22px;

        grid-template-columns: 1fr;

        gap: 32px;
    }

    .footer-bottom {
        min-height: auto;

        padding: 18px 22px;

        flex-direction: column;
        align-items: flex-start;

        gap: 4px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 39px;
    }

    .quality-bar {
        grid-template-columns: 1fr;
    }

    .quality-item {
        border-right: 0;
        border-bottom: 1px solid #e3ebe8 !important;
    }

    .quality-item:last-child {
        border-bottom: 0 !important;
    }

    .price-item {
        padding: 20px 0;

        flex-direction: column;
        align-items: flex-start;
    }

    .price-item > p {
        width: 100%;

        text-align: left;
    }

}
