/* =========================================================
   LUXKRONE REINIGUNGSSERVICE
   PREMIUM LIGHT WEBSITE
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --bg: #f7f7f4;
    --bg-white: #ffffff;
    --bg-soft: #eeeeea;

    --text: #171719;
    --text-soft: #55565a;
    --text-light: #77787b;

    --dark: #202027;

    --gold: #b18a4a;
    --gold-light: #d2b77d;

    --border: #deded8;

    --container: 1320px;

    --radius-small: 12px;
    --radius-medium: 22px;
    --radius-large: 32px;

    --font-main:
        "DM Sans",
        Arial,
        Helvetica,
        sans-serif;

    --font-display:
        "Manrope",
        Arial,
        Helvetica,
        sans-serif;

    --transition:
        0.4s cubic-bezier(0.22, 1, 0.36, 1);

}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--bg);

    color: var(--text);

    font-family: var(--font-main);

    font-size: 16px;

    line-height: 1.6;

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


img {

    display: block;

    width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    border: 0;

    background: none;

    font: inherit;

    color: inherit;

    cursor: pointer;

}


::selection {

    background: var(--dark);

    color: white;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--dark);

    color: white;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;

}


.page-loader.loaded {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


.loader-inner {

    width: min(
        calc(100% - 60px),
        420px
    );

    text-align: center;

}


.loader-logo {

    font-family: var(--font-display);

    font-size: 28px;

    font-weight: 800;

    letter-spacing: 0.18em;

    margin-bottom: 28px;

}


.loader-line {

    height: 1px;

    width: 100%;

    background: rgba(255,255,255,0.2);

    overflow: hidden;

}


.loader-line span {

    display: block;

    width: 0;

    height: 100%;

    background: var(--gold);

    animation:
        loaderProgress 1.8s
        cubic-bezier(.22,1,.36,1)
        forwards;

}


.loader-status {

    margin-top: 16px;

    color: rgba(255,255,255,.55);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .18em;

}


@keyframes loaderProgress {

    to {

        width: 100%;

    }

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    background:
        rgba(247,247,244,.88);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(0,0,0,.06);

    transition:
        transform .5s ease,
        background .4s ease;

}


.site-header.header-hidden {

    transform: translateY(-100%);

}


.header-inner {

    min-height: 86px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

}


.logo-mark {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    background: var(--dark);

    color: white;

    font-family: var(--font-display);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .04em;

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo-text strong {

    font-family: var(--font-display);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: .1em;

}


.logo-text small {

    margin-top: 6px;

    font-size: 7px;

    letter-spacing: .22em;

    color: var(--text-light);

}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 34px;

}


.desktop-nav a {

    position: relative;

    font-size: 13px;

    font-weight: 600;

    color: var(--text-soft);

    transition: color var(--transition);

}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition: width var(--transition);

}


.desktop-nav a:hover {

    color: var(--text);

}


.desktop-nav a:hover::after {

    width: 100%;

}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 19px;

    background: var(--dark);

    color: white;

    font-size: 12px;

    font-weight: 600;

    border-radius: 999px;

    transition:
        transform var(--transition),
        background var(--transition);

}


.header-button span {

    font-size: 16px;

}


.header-button:hover {

    transform: translateY(-2px);

    background: #000;

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background: var(--dark);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.menu-toggle span {

    width: 17px;

    height: 1px;

    background: white;

    transition: transform .3s ease;

}


.menu-toggle.active span:first-child {

    transform:
        translateY(3px)
        rotate(45deg);

}


.menu-toggle.active span:last-child {

    transform:
        translateY(-3px)
        rotate(-45deg);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    display: none;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    padding:
        150px 0
        90px;

    display: flex;

    align-items: center;

}


.hero-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 90px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    position: relative;

    z-index: 2;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 11px;

    color: var(--text-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

}


.eyebrow span {

    width: 28px;

    height: 1px;

    background: var(--gold);

}


.hero h1 {

    margin-top: 28px;

    font-family: var(--font-display);

    font-size:
        clamp(58px, 7vw, 112px);

    font-weight: 800;

    line-height: .91;

    letter-spacing: -.065em;

}


.hero h1 em {

    display: block;

    color: var(--gold);

    font-style: normal;

}


.hero-description {

    max-width: 500px;

    margin-top: 35px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 38px;

}


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);

}


.button span {

    font-size: 16px;

}


.button:hover {

    transform: translateY(-3px);

}


.button-dark {

    background: var(--dark);

    color: white;

}


.button-dark:hover {

    background: #000;

}


.button-light {

    background: white;

    border: 1px solid var(--border);

}


.button-light:hover {

    border-color: var(--dark);

}


/* =========================================================
   HERO META
========================================================= */

.hero-meta {

    display: flex;

    gap: 40px;

    margin-top: 65px;

}


.hero-meta div {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.hero-meta strong {

    font-family: var(--font-display);

    font-size: 13px;

    color: var(--gold);

}


.hero-meta span {

    font-size: 11px;

    color: var(--text-light);

    text-transform: uppercase;

    letter-spacing: .12em;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

}


.hero-image-wrap {

    position: relative;

    overflow: hidden;

    min-height: 680px;

    border-radius:
        var(--radius-large);

    background: #ddd;

}


.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.04);

    transition:
        transform 1.4s
        cubic-bezier(.22,1,.36,1);

}


.hero-image-wrap:hover
.hero-image {

    transform: scale(1.08);

}


.hero-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02),
            rgba(0,0,0,.25)
        );

}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {

    position: absolute;

    right: 28px;

    bottom: 28px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px 18px;

    background:
        rgba(255,255,255,.94);

    backdrop-filter:
        blur(15px);

    border-radius: 15px;

}


.badge-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--dark);

    color: white;

    font-size: 14px;

}


.hero-badge div {

    display: flex;

    flex-direction: column;

}


.hero-badge strong {

    font-size: 14px;

    font-family: var(--font-display);

}


.hero-badge small {

    color: var(--text-light);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .12em;

}


/* =========================================================
   HERO CAPTION
========================================================= */

.hero-caption {

    position: absolute;

    left: 28px;

    bottom: 28px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    color: white;

}


.hero-caption span {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .15em;

}


.hero-caption small {

    font-size: 8px;

    letter-spacing: .16em;

    opacity: .7;

}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {

    background: white;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 27px 25px;

    border-right: 1px solid var(--border);

}


.trust-item:first-child {

    border-left: 1px solid var(--border);

}


.trust-icon {

    width: 37px;

    height: 37px;

    display: grid;

    place-items: center;

    flex: 0 0 auto;

    border: 1px solid var(--border);

    border-radius: 50%;

    color: var(--gold);

    font-size: 13px;

}


.trust-item div {

    display: flex;

    flex-direction: column;

}


.trust-item strong {

    font-size: 12px;

    font-weight: 700;

}


.trust-item div span {

    margin-top: 2px;

    color: var(--text-light);

    font-size: 10px;

}


/* =========================================================
   GENERIC SECTION
========================================================= */

.section {

    padding:
        140px 0;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 750px;

}


.section-heading h2,
.about-content h2,
.process-intro h2 {

    margin-top: 25px;

    font-family: var(--font-display);

    font-size:
        clamp(45px, 5vw, 76px);

    font-weight: 800;

    line-height: .98;

    letter-spacing: -.055em;

}


.section-heading h2 em,
.about-content h2 em,
.process-intro h2 em {

    color: var(--gold);

    font-style: normal;

}


.section-heading p {

    max-width: 530px;

    margin-top: 25px;

    color: var(--text-soft);

    font-size: 16px;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background: var(--bg);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 70px;

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);

}


.service-card {

    position: relative;

    min-height: 330px;

    padding: 32px;

    background: transparent;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    transition:
        background var(--transition),
        transform var(--transition);

    overflow: hidden;

}


.service-card::before {

    content: "";

    position: absolute;

    width: 0;

    height: 0;

    right: -50px;

    bottom: -50px;

    border-radius: 50%;

    background:
        rgba(177,138,74,.10);

    transition:
        width .7s ease,
        height .7s ease;

}


.service-card:hover {

    background: white;

}


.service-card:hover::before {

    width: 180px;

    height: 180px;

}


.service-number {

    position: absolute;

    top: 28px;

    right: 30px;

    color: #aaa;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .1em;

}


.service-icon {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border);

    border-radius: 14px;

    color: var(--gold);

    font-size: 20px;

    margin-bottom: 60px;

    transition:
        background var(--transition),
        color var(--transition);

}


.service-card:hover
.service-icon {

    background: var(--dark);

    color: white;

}


.service-card h3 {

    position: relative;

    font-family: var(--font-display);

    font-size: 20px;

    line-height: 1.2;

}


.service-card p {

    position: relative;

    max-width: 310px;

    margin-top: 12px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;

}


.service-arrow {

    position: absolute;

    right: 30px;

    bottom: 28px;

    font-size: 20px;

    color: var(--gold);

    transition:
        transform var(--transition);

}


.service-card:hover
.service-arrow {

    transform:
        translate(4px,-4px);

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: white;

}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 100px;

}


.about-image {

    position: relative;

    min-height: 650px;

    overflow: hidden;

    border-radius: var(--radius-large);

}


.about-image img {

    width: 100%;

    height: 100%;

    min-height: 650px;

    object-fit: cover;

    transition:
        transform 1.2s
        cubic-bezier(.22,1,.36,1);

}


.about-image:hover img {

    transform: scale(1.05);

}


.about-image-label {

    position: absolute;

    left: 25px;

    bottom: 25px;

    max-width: 270px;

    padding: 20px;

    background:
        rgba(255,255,255,.92);

    backdrop-filter:
        blur(15px);

    border-radius: 16px;

}


.about-image-label span {

    display: block;

    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .18em;

}


.about-image-label strong {

    display: block;

    margin-top: 7px;

    font-family: var(--font-display);

    font-size: 18px;

    line-height: 1.25;

}


.about-content p {

    max-width: 540px;

    margin-top: 25px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.8;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 35px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--text);

    font-size: 12px;

    font-weight: 700;

}


.text-link span {

    color: var(--gold);

    font-size: 16px;

    transition:
        transform var(--transition);

}


.text-link:hover span {

    transform:
        translate(3px,-3px);

}


/* =========================================================
   WHY US
========================================================= */

.why-section {

    background: var(--bg);

}


.centered {

    margin-inline: auto;

    text-align: center;

}


.centered .eyebrow {

    justify-content: center;

}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 65px;

}


.why-card {

    min-height: 300px;

    padding: 30px;

    border-top: 1px solid var(--border);

    border-right: 1px solid var(--border);

    transition:
        background var(--transition);

}


.why-card:first-child {

    border-left: 1px solid var(--border);

}


.why-card:hover {

    background: white;

}


.why-card > span {

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

}


.why-card h3 {

    margin-top: 70px;

    font-family: var(--font-display);

    font-size: 22px;

}


.why-card p {

    margin-top: 13px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    background: white;

}


.process-intro {

    display: grid;

    grid-template-columns:
        1fr .7fr;

    align-items: end;

    gap: 100px;

}


.process-intro > p {

    max-width: 430px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.8;

}


.process-list {

    margin-top: 80px;

    border-top: 1px solid var(--border);

}


.process-item {

    display: grid;

    grid-template-columns:
        120px 1fr;

    align-items: center;

    gap: 40px;

    min-height: 150px;

    border-bottom: 1px solid var(--border);

    transition:
        padding-left var(--transition),
        background var(--transition);

}


.process-item:hover {

    padding-left: 15px;

    background: var(--bg);

}


.process-number {

    color: var(--gold);

    font-family: var(--font-display);

    font-size: 14px;

    font-weight: 800;

}


.process-item h3 {

    font-family: var(--font-display);

    font-size: 25px;

}


.process-item p {

    margin-top: 6px;

    color: var(--text-soft);

    font-size: 13px;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    position: relative;

    overflow: hidden;

    padding: 150px 0;

    background: var(--dark);

    color: white;

}


.cta-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -180px;

    top: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

}


.cta-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -70px;

    top: -70px;

    border-radius: 50%;

    border: 1px solid rgba(177,138,74,.25);

}


.cta-inner {

    position: relative;

    z-index: 2;

}


.cta-section .eyebrow {

    color: rgba(255,255,255,.5);

}


.cta-section h2 {

    max-width: 900px;

    margin-top: 28px;

    font-family: var(--font-display);

    font-size:
        clamp(55px, 7vw, 105px);

    line-height: .93;

    letter-spacing: -.065em;

}


.cta-section h2 em {

    color: var(--gold-light);

    font-style: normal;

}


.cta-section p {

    margin-top: 25px;

    color: rgba(255,255,255,.55);

    font-size: 16px;

}


.cta-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 40px;

}


.button-white {

    background: white;

    color: var(--dark);

}


.button-white:hover {

    background: var(--gold-light);

}


.button-outline-white {

    border: 1px solid rgba(255,255,255,.3);

    color: white;

}


.button-outline-white:hover {

    border-color: white;

    background: rgba(255,255,255,.06);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #151519;

    color: white;

    padding:
        80px 0 30px;

}


.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 80px;

    padding-bottom: 70px;

}


.footer-logo .logo-mark {

    background: white;

    color: var(--dark);

}


.footer-logo .logo-text strong {

    color: white;

}


.footer-logo .logo-text small {

    color: rgba(255,255,255,.4);

}


.footer-brand > p {

    max-width: 260px;

    margin-top: 25px;

    color: rgba(255,255,255,.45);

    font-size: 13px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 13px;

}


.footer-column > span:first-child {

    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .17em;

}


.footer-column a,
.footer-column span:not(:first-child) {

    color: rgba(255,255,255,.6);

    font-size: 12px;

    transition:
        color var(--transition);

}


.footer-column a:hover {

    color: white;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.35);

    font-size: 10px;

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s
        cubic-bezier(.22,1,.36,1);

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {


    .container {

        width:
            min(
                calc(100% - 50px),
                var(--container)
            );

    }


    .desktop-nav {

        gap: 20px;

    }


    .hero-grid {

        gap: 45px;

    }


    .hero-image-wrap {

        min-height: 560px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .why-card {

        border-left: 1px solid var(--border);

    }


    .about-grid {

        gap: 55px;

    }


    .about-image,
    .about-image img {

        min-height: 550px;

    }


}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {


    .container {

        width:
            calc(100% - 36px);

    }


    .header-inner {

        min-height: 72px;

    }


    .desktop-nav,
    .header-button {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .mobile-menu {

        display: block;

        position: fixed;

        inset:
            72px 0 0;

        padding: 35px 18px;

        background: var(--dark);

        color: white;

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-15px);

        transition:
            opacity .35s ease,
            transform .35s ease,
            visibility .35s ease;

    }


    .mobile-menu.active {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

    }


    .mobile-menu nav {

        display: flex;

        flex-direction: column;

    }


    .mobile-menu a {

        padding: 22px 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.1);

        font-family: var(--font-display);

        font-size: 30px;

        font-weight: 700;

    }


    /* HERO */

    .hero {

        min-height: auto;

        padding:
            130px 0 60px;

    }


    .hero-grid {

        display: flex;

        flex-direction: column;

        gap: 50px;

    }


    .hero h1 {

        font-size:
            clamp(55px, 18vw, 90px);

    }


    .hero-description {

        font-size: 15px;

        margin-top: 25px;

    }


    .hero-actions {

        margin-top: 30px;

    }


    .button {

        min-height: 50px;

    }


    .hero-meta {

        margin-top: 45px;

        gap: 25px;

    }


    .hero-image-wrap {

        min-height: 480px;

        border-radius: 22px;

    }


    .hero-badge {

        right: 15px;

        bottom: 15px;

    }


    .hero-caption {

        left: 18px;

        bottom: 18px;

    }


    /* TRUST */

    .trust-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .trust-item {

        padding: 20px 15px;

        border-bottom:
            1px solid var(--border);

    }


    .trust-item:first-child {

        border-left: 0;

    }


    .trust-item:nth-child(3) {

        border-left: 0;

    }


    /* SECTIONS */

    .section {

        padding:
            90px 0;

    }


    .section-heading h2,
    .about-content h2,
    .process-intro h2 {

        font-size:
            clamp(42px, 12vw, 62px);

    }


    .section-heading p {

        font-size: 14px;

    }


    /* SERVICES */

    .services-grid {

        grid-template-columns: 1fr;

        margin-top: 50px;

    }


    .service-card {

        min-height: 285px;

        padding: 25px;

    }


    .service-icon {

        margin-bottom: 45px;

    }


    /* ABOUT */

    .about-grid {

        display: flex;

        flex-direction: column;

        gap: 50px;

    }


    .about-image,
    .about-image img {

        min-height: 470px;

    }


    /* WHY */

    .why-grid {

        grid-template-columns: 1fr;

        margin-top: 45px;

    }


    .why-card {

        min-height: auto;

        padding:
            25px 0;

        border-left: 0;

    }


    .why-card:first-child {

        border-left: 0;

    }


    .why-card h3 {

        margin-top: 35px;

    }


    /* PROCESS */

    .process-intro {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

    }


    .process-list {

        margin-top: 50px;

    }


    .process-item {

        grid-template-columns:
            55px 1fr;

        gap: 15px;

        min-height: 135px;

    }


    .process-item h3 {

        font-size: 20px;

    }


    /* CTA */

    .cta-section {

        padding:
            100px 0;

    }


    .cta-section h2 {

        font-size:
            clamp(50px, 14vw, 75px);

    }


    /* FOOTER */

    .site-footer {

        padding-top: 60px;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 50px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 10px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .button {

        width: 100%;

    }


    .hero-meta {

        justify-content: space-between;

    }


    .trust-item {

        align-items: flex-start;

    }


    .trust-icon {

        width: 31px;

        height: 31px;

    }


    .trust-item strong {

        font-size: 10px;

    }


    .trust-item div span {

        font-size: 9px;

    }


}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}