/* =========================================================
   RÄUMKLAR SERVICE
   style.css
   Modernes Premium-Webdesign
   ========================================================= */


/* =========================================================
   01. ROOT / VARIABLES
   ========================================================= */

:root {

    /* Brand */
    --navy: #092942;
    --navy-dark: #061d31;
    --navy-light: #123d5d;

    --green: #76bd22;
    --green-light: #93d52d;
    --green-dark: #5b9b14;

    --blue: #1878bd;
    --blue-light: #3c9cdd;

    /* Backgrounds */
    --white: #ffffff;
    --off-white: #f7f9f7;
    --light: #eef3f1;
    --light-green: #f1f8e8;

    /* Text */
    --text: #243542;
    --text-light: #66757f;
    --text-muted: #8a989f;

    /* Borders */
    --border: #e2e9e6;
    --border-dark: #cbd7d2;

    /* Effects */
    --shadow-sm:
        0 5px 20px rgba(6, 29, 49, .07);

    --shadow:
        0 15px 45px rgba(6, 29, 49, .10);

    --shadow-lg:
        0 30px 80px rgba(6, 29, 49, .16);

    --shadow-green:
        0 15px 40px rgba(118, 189, 34, .25);

    /* Radius */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    /* Container */
    --container: 1240px;

    /* Transition */
    --transition:
        all .35s cubic-bezier(.22, 1, .36, 1);

}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


img {
    display: block;
    width: 100%;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
    cursor: pointer;
}


ul {
    list-style: none;
}


::selection {
    background: var(--green);
    color: var(--white);
}


/* =========================================================
   03. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   04. PRELOADER
   ========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: grid;
    place-items: center;

    background: var(--navy-dark);

    transition:
        opacity .7s ease,
        visibility .7s ease;
}


.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}


.preloader-inner {
    text-align: center;
}


.loader-logo {
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--white);
}


.loader-logo strong {
    color: var(--green);
}


.loader-line {
    width: 180px;
    height: 3px;
    margin: 20px auto 12px;

    overflow: hidden;

    background: rgba(255,255,255,.12);
    border-radius: 99px;
}


.loader-line span {
    display: block;
    width: 45%;
    height: 100%;

    background: var(--green);

    animation: loader 1.2s infinite ease-in-out;
}


.preloader p {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}


@keyframes loader {

    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(450%);
    }

}


/* =========================================================
   05. TOPBAR
   ========================================================= */

.topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,.75);

    font-size: 13px;
}


.topbar-inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}


.topbar span,
.topbar a {
    display: flex;
    align-items: center;
    gap: 8px;
}


.topbar i {
    color: var(--green);
}


.topbar a {
    transition: var(--transition);
}


.topbar a:hover {
    color: var(--white);
}


/* =========================================================
   06. HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,.96);

    border-bottom: 1px solid rgba(9,41,66,.07);

    backdrop-filter: blur(20px);

    transition: var(--transition);
}


.site-header.scrolled {
    box-shadow: 0 10px 35px rgba(6,29,49,.09);
}


.nav-container {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   07. BRAND
   ========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}


.brand-icon {
    position: relative;

    width: 51px;
    height: 51px;

    display: grid;
    place-items: center;

    color: var(--navy);

    border: 3px solid var(--navy);

    border-radius: 12px;

    transform: rotate(-2deg);
}


.brand-icon i:first-child {
    position: absolute;
    top: 7px;
    font-size: 19px;
}


.brand-icon i:last-child {
    position: absolute;
    right: -9px;
    bottom: 5px;

    padding: 3px 5px;

    font-size: 17px;

    color: var(--white);
    background: var(--green);

    border-radius: 6px;

    transform: rotate(2deg);
}


.brand-text {
    line-height: 1;
}


.brand-name {
    font-family: "Manrope", sans-serif;

    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1.5px;

    color: var(--navy);
}


.brand-name span {
    color: var(--green);
}


.brand-subtitle {
    margin-top: 5px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 5px;

    color: var(--navy);

    text-align: center;
}


/* =========================================================
   08. NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}


.nav-link {
    position: relative;

    padding: 32px 0;

    color: var(--text);
    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}


.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 21px;

    height: 2px;

    background: var(--green);

    transform: scaleX(0);
    transform-origin: center;

    transition: var(--transition);
}


.nav-link:hover,
.nav-link.active {
    color: var(--green-dark);
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   09. NAV ACTIONS
   ========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--navy);
}


.nav-phone > i {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    color: var(--green);
    background: var(--light-green);

    border-radius: 50%;
}


.nav-phone span {
    display: flex;
    flex-direction: column;

    line-height: 1.2;

    font-size: 13px;
    font-weight: 700;
}


.nav-phone small {
    margin-bottom: 3px;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   10. BUTTONS
   ========================================================= */

.btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}


.btn i {
    transition: transform .3s ease;
}


.btn:hover i {
    transform: translateX(3px);
}


.btn-primary {
    color: var(--white);
    background: var(--green);

    box-shadow: 0 8px 25px rgba(118,189,34,.20);
}


.btn-primary:hover {
    background: var(--green-dark);

    transform: translateY(-3px);

    box-shadow: var(--shadow-green);
}


.btn-dark {
    color: var(--white);
    background: var(--navy);
}


.btn-dark:hover {
    background: var(--navy-dark);

    transform: translateY(-3px);

    box-shadow: var(--shadow);
}


.btn-outline {
    color: var(--white);

    border: 1px solid rgba(255,255,255,.4);

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(10px);
}


.btn-outline:hover {
    color: var(--navy);
    background: var(--white);

    border-color: var(--white);

    transform: translateY(-3px);
}


.btn-white {
    color: var(--navy);
    background: var(--white);

    box-shadow: var(--shadow);
}


.btn-white:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow-lg);
}


.btn-outline-white {
    color: var(--white);

    border: 1px solid rgba(255,255,255,.5);

    background: transparent;
}


.btn-outline-white:hover {
    color: var(--navy);

    background: var(--white);
}


.btn-outline-dark {
    color: var(--navy);

    border: 1px solid var(--navy);

    background: transparent;
}


.btn-outline-dark:hover {
    color: var(--white);

    background: var(--navy);

    transform: translateY(-3px);
}


.btn-large {
    min-height: 58px;
    padding-inline: 28px;

    font-size: 15px;
}


.btn-full {
    width: 100%;
}


/* =========================================================
   11. MOBILE MENU
   ========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 10px;

    background: var(--light);

    border-radius: 9px;
}


.mobile-menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--navy);

    transition: var(--transition);
}


.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.mobile-navigation {
    display: none;
}


/* =========================================================
   12. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 130px);

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);
}


.hero-background {
    position: absolute;
    inset: 0;

    z-index: -2;
}


.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,25,42,.96) 0%,
            rgba(4,25,42,.84) 37%,
            rgba(4,25,42,.40) 67%,
            rgba(4,25,42,.22) 100%
        );
}


.hero::after {
    content: "";

    position: absolute;

    left: -8%;
    bottom: -160px;

    width: 700px;
    height: 350px;

    background: var(--green);

    opacity: .12;

    filter: blur(90px);

    border-radius: 50%;

    pointer-events: none;
}


.hero-container {
    position: relative;

    padding-top: 100px;
    padding-bottom: 100px;
}


.hero-content {
    max-width: 700px;
}


.hero-badge {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 28px;
    padding: 9px 15px;

    color: rgba(255,255,255,.9);

    background: rgba(255,255,255,.09);

    border: 1px solid rgba(255,255,255,.16);

    border-radius: 99px;

    backdrop-filter: blur(15px);

    font-size: 12px;
    font-weight: 500;
}


.hero-badge strong {
    color: var(--green-light);
}


.badge-dot {
    width: 7px;
    height: 7px;

    background: var(--green);

    border-radius: 50%;

    box-shadow: 0 0 0 5px rgba(118,189,34,.12);
}


.hero h1 {
    max-width: 720px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 800;
}


.hero h1 span {
    display: block;
    color: var(--green);
}


.hero-text {
    max-width: 590px;

    margin-top: 28px;

    color: rgba(255,255,255,.76);

    font-size: 18px;
    line-height: 1.75;
}


.hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 38px;
}


.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 34px;
}


.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255,255,255,.7);

    font-size: 12px;
}


.trust-item i {
    color: var(--green);
}


.hero-floating-card {
    position: absolute;

    right: 3%;
    bottom: 12%;

    min-width: 245px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px;

    color: var(--navy);

    background: rgba(255,255,255,.94);

    border-radius: 14px;

    box-shadow: var(--shadow-lg);

    backdrop-filter: blur(15px);

    animation: floatCard 5s ease-in-out infinite;
}


.floating-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--white);
    background: var(--green);

    border-radius: 11px;
}


.hero-floating-card div:last-child {
    display: flex;
    flex-direction: column;
}


.hero-floating-card strong {
    font-size: 13px;
}


.hero-floating-card span {
    margin-top: 2px;

    color: var(--text-light);

    font-size: 11px;
}


@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    color: rgba(255,255,255,.6);

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;

    transform: translateX(-50%);
}


.hero-scroll i {
    color: var(--green);

    animation: scrollArrow 1.5s infinite;
}


@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =========================================================
   13. TRUST SECTION
   ========================================================= */

.trust-section {
    position: relative;
    z-index: 5;

    margin-top: -1px;

    background: var(--navy);
}


.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.trust-box {
    min-height: 105px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px;

    border-right: 1px solid rgba(255,255,255,.1);
}


.trust-box:last-child {
    border-right: 0;
}


.trust-box-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--green);

    background: rgba(118,189,34,.12);

    border-radius: 12px;
}


.trust-box strong,
.trust-box span {
    display: block;
}


.trust-box strong {
    color: var(--white);
    font-size: 14px;
}


.trust-box span {
    margin-top: 3px;

    color: rgba(255,255,255,.52);

    font-size: 11px;
}


/* =========================================================
   14. SECTION GLOBAL
   ========================================================= */

.section {
    padding: 120px 0;
}


.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 60px;
}


.section-heading.center {
    max-width: 800px;

    margin-left: auto;
    margin-right: auto;

    display: block;

    text-align: center;
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 15px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--green);
}


.center .eyebrow {
    justify-content: center;
}


.section-heading h2,
.contact-header h2,
.faq-intro h2 {
    font-family: "Manrope", sans-serif;

    color: var(--navy);

    font-size: clamp(35px, 4vw, 54px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;
}


.section-heading h2 span,
.contact-header h2 span,
.faq-intro h2 span {
    color: var(--green);
}


.section-heading > p {
    max-width: 430px;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   15. INTRO
   ========================================================= */

.intro-section {
    background: var(--off-white);
}


.intro-section .section-heading {
    margin-bottom: 50px;
}


.intro-section .section-heading p {
    margin: 18px auto 0;
}


.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.intro-card {
    position: relative;

    padding: 38px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);
}


.intro-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background: var(--green);

    transform: scaleX(0);
    transform-origin: left;

    transition: var(--transition);
}


.intro-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}


.intro-card:hover::before {
    transform: scaleX(1);
}


.intro-card.featured {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}


.intro-number {
    position: absolute;

    top: 25px;
    right: 30px;

    color: var(--green);

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 800;
}


.intro-card > i {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    color: var(--green);

    background: var(--light-green);

    border-radius: 15px;

    font-size: 21px;
}


.intro-card.featured > i {
    color: var(--white);
    background: rgba(118,189,34,.18);
}


.intro-card h3 {
    margin-bottom: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 22px;
    font-weight: 800;
}


.intro-card p {
    color: var(--text-light);

    font-size: 14px;
}


.intro-card.featured p {
    color: rgba(255,255,255,.62);
}


.intro-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 25px;

    color: var(--green-dark);

    font-size: 12px;
    font-weight: 800;
}


.intro-card.featured a {
    color: var(--green-light);
}


.intro-card a i {
    transition: var(--transition);
}


.intro-card a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   16. SERVICES
   ========================================================= */

.services-section {
    background: var(--white);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


.service-card {
    position: relative;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}


.service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}


.service-card.service-large {
    grid-row: span 2;
}


.service-image {
    position: relative;

    height: 290px;

    overflow: hidden;
}


.service-card.service-large .service-image {
    height: 370px;
}


.service-image img {
    height: 100%;
    object-fit: cover;

    transition: transform .7s cubic-bezier(.22,1,.36,1);
}


.service-card:hover .service-image img {
    transform: scale(1.06);
}


.service-number {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    color: var(--white);

    background: rgba(9,41,66,.85);

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    backdrop-filter: blur(10px);

    font-size: 12px;
    font-weight: 800;
}


.service-content {
    padding: 30px;
}


.service-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    color: var(--green);

    background: var(--light-green);

    border-radius: 12px;
}


.service-content h3 {
    margin-bottom: 9px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 23px;
    font-weight: 800;
}


.service-content > p {
    color: var(--text-light);

    font-size: 14px;
    line-height: 1.7;
}


.service-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 9px;

    margin-top: 20px;
}


.service-content li {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--text);

    font-size: 12px;
}


.service-content li i {
    color: var(--green);
    font-size: 10px;
}


.service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 24px;

    color: var(--navy);

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}


.service-link:hover {
    color: var(--green-dark);
}


.service-link i {
    transition: var(--transition);
}


.service-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   17. WHY US
   ========================================================= */

.why-section {
    background: var(--off-white);
}


.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;
}


.why-images {
    position: relative;

    min-height: 600px;
}


.why-image-main {
    position: absolute;

    top: 0;
    left: 0;

    width: 78%;
    height: 500px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);
}


.why-image-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.why-image-small {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 280px;

    overflow: hidden;

    border: 10px solid var(--off-white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);
}


.why-image-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.experience-badge {
    position: absolute;

    left: -20px;
    bottom: 90px;

    width: 140px;
    height: 140px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--green);

    border: 8px solid var(--off-white);

    border-radius: 50%;

    text-align: center;

    box-shadow: var(--shadow-green);

    transform: rotate(-8deg);
}


.experience-badge strong {
    font-family: "Manrope", sans-serif;

    font-size: 18px;
    line-height: 1;
}


.experience-badge strong span {
    color: var(--navy);
}


.experience-badge small {
    margin-top: 8px;

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.why-content .lead {
    max-width: 570px;

    margin: 25px 0 35px;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.8;
}


.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    margin-bottom: 38px;
}


.benefit {
    display: flex;
    align-items: flex-start;

    gap: 13px;
}


.benefit-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--green);

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 11px;
}


.benefit h3 {
    margin-bottom: 3px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 800;
}


.benefit p {
    color: var(--text-light);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   18. NUMBERS
   ========================================================= */

.numbers-section {
    padding: 65px 0;

    background: var(--navy);
}


.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 10px 25px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.12);
}


.number-item:last-child {
    border-right: 0;
}


.number-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 14px;

    color: var(--green);

    background: rgba(118,189,34,.1);

    border-radius: 50%;
}


.number-item strong {
    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 30px;
    line-height: 1;
}


.number-item span {
    margin-top: 7px;

    color: rgba(255,255,255,.5);

    font-size: 11px;
}


/* =========================================================
   19. PROCESS
   ========================================================= */

.process-section {
    background: var(--white);
}


.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;
}


.process-step {
    position: relative;

    padding: 25px;

    text-align: center;
}


.process-number {
    position: absolute;

    top: 5px;
    right: 15px;

    color: var(--border-dark);

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 800;
}


.process-icon {
    width: 74px;
    height: 74px;

    display: grid;
    place-items: center;

    margin: 0 auto 22px;

    color: var(--green);

    background: var(--light-green);

    border: 7px solid var(--white);

    border-radius: 50%;

    box-shadow:
        0 0 0 1px var(--border),
        0 12px 30px rgba(6,29,49,.07);

    font-size: 22px;

    transition: var(--transition);
}


.process-step:hover .process-icon {
    color: var(--white);
    background: var(--green);

    transform: translateY(-5px) scale(1.05);
}


.process-step h3 {
    margin-bottom: 8px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 16px;
    font-weight: 800;
}


.process-step p {
    color: var(--text-light);

    font-size: 12px;
    line-height: 1.7;
}


.process-line {
    width: 70px;
    height: 1px;

    background:
        repeating-linear-gradient(
            90deg,
            var(--green) 0 6px,
            transparent 6px 12px
        );

    opacity: .6;
}


/* =========================================================
   20. CTA
   ========================================================= */

.cta-section {
    position: relative;

    padding: 130px 0;

    overflow: hidden;

    color: var(--white);
}


.cta-background {
    position: absolute;
    inset: 0;

    z-index: -2;
}


.cta-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,25,42,.97),
            rgba(4,25,42,.82)
        );
}


.cta-content {
    max-width: 850px;

    text-align: center;
}


.cta-content .eyebrow {
    color: var(--green-light);
}


.cta-content .eyebrow::before {
    background: var(--green);
}


.cta-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 5vw, 66px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;
}


.cta-content h2 span {
    color: var(--green);
}


.cta-content > p {
    max-width: 650px;

    margin: 25px auto 0;

    color: rgba(255,255,255,.67);

    font-size: 16px;
    line-height: 1.8;
}


.cta-buttons {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-top: 35px;
}


.cta-note {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: rgba(255,255,255,.5);

    font-size: 11px;
}


.cta-note i {
    color: var(--green);
}


/* =========================================================
   21. GALLERY
   ========================================================= */

.gallery-section {
    background: var(--off-white);
}


.gallery-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    grid-template-rows: 260px 220px;

    gap: 16px;
}


.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--navy);
}


.gallery-item.gallery-large {
    grid-row: span 2;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        opacity .4s ease;
}


.gallery-item:hover img {
    transform: scale(1.07);
    opacity: .85;
}


.gallery-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 25px;

    color: var(--white);

    background:
        linear-gradient(
            transparent,
            rgba(4,25,42,.9)
        );

    transform: translateY(8px);

    transition: var(--transition);
}


.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


.gallery-overlay span {
    display: block;

    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.gallery-overlay strong {
    display: block;

    margin-top: 4px;

    font-family: "Manrope", sans-serif;

    font-size: 18px;
}


/* =========================================================
   22. TESTIMONIALS
   ========================================================= */

.testimonials-section {
    background: var(--white);
}


.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.testimonial-card {
    padding: 34px;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: var(--transition);
}


.testimonial-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}


.testimonial-card.featured {
    color: var(--white);

    background: var(--navy);

    border-color: var(--navy);

    transform: translateY(-10px);
}


.testimonial-card.featured:hover {
    transform: translateY(-16px);
}


.stars {
    color: var(--green);

    font-size: 16px;
    letter-spacing: 3px;
}


.testimonial-card blockquote {
    min-height: 100px;

    margin: 20px 0 25px;

    color: var(--text);

    font-family: "Manrope", sans-serif;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.65;
}


.testimonial-card.featured blockquote {
    color: var(--white);
}


.testimonial-author {
    display: flex;
    align-items: center;

    gap: 11px;

    padding-top: 20px;

    border-top: 1px solid var(--border);
}


.testimonial-card.featured .testimonial-author {
    border-color: rgba(255,255,255,.12);
}


.author-avatar {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    color: var(--white);
    background: var(--green);

    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;
}


.testimonial-author strong,
.testimonial-author span {
    display: block;
}


.testimonial-author strong {
    color: var(--navy);

    font-size: 12px;
}


.testimonial-card.featured .testimonial-author strong {
    color: var(--white);
}


.testimonial-author span {
    color: var(--text-muted);

    font-size: 10px;
}


/* =========================================================
   23. FAQ
   ========================================================= */

.faq-section {
    background: var(--off-white);
}


.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

    align-items: start;
}


.faq-intro > p {
    max-width: 430px;

    margin: 22px 0 30px;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.8;
}


.faq-contact-box {
    max-width: 390px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}


.faq-contact-box > i {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--green);

    background: var(--light-green);

    border-radius: 12px;
}


.faq-contact-box strong,
.faq-contact-box span,
.faq-contact-box a {
    display: block;
}


.faq-contact-box strong {
    color: var(--navy);

    font-size: 12px;
}


.faq-contact-box span {
    margin-top: 2px;

    color: var(--text-light);

    font-size: 10px;
}


.faq-contact-box a {
    width: fit-content;

    margin-top: 7px;

    color: var(--green-dark);

    font-size: 10px;
    font-weight: 800;
}


.faq-list {
    border-top: 1px solid var(--border-dark);
}


.faq-item {
    border-bottom: 1px solid var(--border-dark);
}


.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 5px;

    color: var(--navy);

    cursor: pointer;

    font-size: 15px;
    font-weight: 700;

    list-style: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary i {
    color: var(--green);

    transition: var(--transition);
}


.faq-item[open] summary i {
    transform: rotate(45deg);
}


.faq-answer {
    padding: 0 40px 25px 5px;
}


.faq-answer p {
    color: var(--text-light);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   24. CONTACT
   ========================================================= */

.contact-section {
    background: var(--white);
}


.contact-header {
    max-width: 700px;

    margin-bottom: 55px;
}


.contact-header > p {
    max-width: 550px;

    margin-top: 20px;

    color: var(--text-light);

    font-size: 15px;
}


.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 35px;

    align-items: stretch;
}


.contact-info {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.contact-card {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 17px;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: 13px;

    transition: var(--transition);
}


.contact-card:hover {
    transform: translateX(5px);

    border-color: rgba(118,189,34,.4);
}


.contact-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--green);

    background: var(--white);

    border-radius: 11px;
}


.contact-card > div:last-child {
    display: flex;
    flex-direction: column;
}


.contact-card span {
    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.contact-card a,
.contact-card strong {
    margin-top: 2px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 800;
}


.contact-card a:hover {
    color: var(--green-dark);
}


.contact-card small {
    margin-top: 2px;

    color: var(--text-light);

    font-size: 9px;
}


.map-wrapper {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    background: var(--light);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);
}


.map-wrapper iframe {
    width: 100%;
    height: 100%;

    min-height: 520px;

    display: block;

    border: 0;
}


.map-overlay-card {
    position: absolute;

    left: 20px;
    bottom: 20px;

    max-width: 300px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px;

    background: rgba(255,255,255,.96);

    border-radius: 13px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(10px);
}


.map-pin {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--white);

    background: var(--green);

    border-radius: 10px;
}


.map-overlay-card strong,
.map-overlay-card span {
    display: block;
}


.map-overlay-card strong {
    color: var(--navy);

    font-size: 12px;
}


.map-overlay-card span {
    color: var(--text-light);

    font-size: 9px;
}


/* =========================================================
   25. FINAL CTA
   ========================================================= */

.final-cta {
    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            var(--light-green),
            #ffffff
        );
}


.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.final-cta h2 {
    font-family: "Manrope", sans-serif;

    color: var(--navy);

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 800;
}


.final-cta h2 span {
    color: var(--green);
}


.final-cta p {
    max-width: 620px;

    margin-top: 12px;

    color: var(--text-light);

    font-size: 14px;
}


.final-cta-actions {
    display: flex;
    flex-shrink: 0;

    gap: 10px;
}


/* =========================================================
   26. FOOTER
   ========================================================= */

.footer {
    padding-top: 75px;

    color: rgba(255,255,255,.65);

    background: var(--navy-dark);
}


.footer-main {
    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;

    gap: 60px;

    padding-bottom: 60px;
}


.footer .brand-name {
    color: var(--white);
}


.footer .brand-subtitle {
    color: rgba(255,255,255,.65);
}


.footer .brand-icon {
    color: var(--white);
    border-color: rgba(255,255,255,.7);
}


.footer-brand > p {
    max-width: 330px;

    margin-top: 25px;

    color: rgba(255,255,255,.48);

    font-size: 13px;
    line-height: 1.8;
}


.social-links {
    display: flex;
    gap: 8px;

    margin-top: 25px;
}


.social-links a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: rgba(255,255,255,.65);

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 9px;

    transition: var(--transition);
}


.social-links a:hover {
    color: var(--white);
    background: var(--green);

    transform: translateY(-3px);
}


.footer-column h3 {
    margin-bottom: 22px;

    color: var(--white);

    font-size: 13px;
    font-weight: 800;
}


.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}


.footer-column li a {
    color: rgba(255,255,255,.48);

    font-size: 12px;

    transition: var(--transition);
}


.footer-column li a:hover {
    padding-left: 4px;

    color: var(--green-light);
}


.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
}


.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    color: rgba(255,255,255,.52);

    font-size: 11px;

    line-height: 1.6;

    transition: var(--transition);
}


.footer-contact a:hover {
    color: var(--green-light);
}


.footer-contact i {
    width: 16px;

    margin-top: 2px;

    color: var(--green);
}


.footer-bottom {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.08);
}


.footer-bottom p {
    color: rgba(255,255,255,.35);

    font-size: 10px;
}


.footer-legal {
    display: flex;
    gap: 20px;
}


.footer-legal a {
    color: rgba(255,255,255,.4);

    font-size: 10px;

    transition: var(--transition);
}


.footer-legal a:hover {
    color: var(--green-light);
}


/* =========================================================
   27. FLOATING ACTIONS
   ========================================================= */

.floating-actions {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 9px;
}


.floating-whatsapp {
    min-height: 44px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 14px;

    color: var(--white);

    background: #25d366;

    border-radius: 99px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);

    font-size: 11px;
    font-weight: 800;

    transition: var(--transition);
}


.floating-whatsapp i {
    font-size: 18px;
}


.floating-whatsapp:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(37,211,102,.25);
}


.floating-call {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    color: var(--white);

    background: var(--green);

    border-radius: 50%;

    box-shadow: var(--shadow-green);

    transition: var(--transition);
}


.floating-call:hover {
    transform: translateY(-4px) scale(1.05);
}


/* =========================================================
   28. BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 125px;

    z-index: 850;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--white);

    background: var(--navy);

    border-radius: 10px;

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);
}


.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--green);

    transform: translateY(-3px);
}


/* =========================================================
   29. COOKIE BANNER
   ========================================================= */

.cookie-banner {
    position: fixed;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 2000;

    max-width: 900px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 18px 20px;

    background: rgba(9,41,66,.97);

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 16px;

    box-shadow: var(--shadow-lg);

    backdrop-filter: blur(20px);

    transition:
        opacity .4s ease,
        transform .4s ease;
}


.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;

    transform: translateY(30px);
}


.cookie-content {
    display: flex;
    align-items: center;

    gap: 13px;
}


.cookie-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--green);

    background: rgba(118,189,34,.12);

    border-radius: 10px;
}


.cookie-content strong {
    display: block;

    color: var(--white);

    font-size: 12px;
}


.cookie-content p {
    max-width: 560px;

    margin-top: 3px;

    color: rgba(255,255,255,.52);

    font-size: 9px;
    line-height: 1.6;
}


.cookie-actions {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 12px;
}


.cookie-actions .btn {
    min-height: 40px;

    padding-inline: 16px;

    font-size: 11px;
}


.cookie-actions > a {
    color: rgba(255,255,255,.55);

    font-size: 9px;
}


.cookie-actions > a:hover {
    color: var(--white);
}


/* =========================================================
   30. SCROLL ANIMATION BASE
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);
}


.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   31. RESPONSIVE – 1200PX
   ========================================================= */

@media (max-width: 1200px) {

    .main-navigation {
        gap: 18px;
    }


    .nav-phone {
        display: none;
    }


    .hero-floating-card {
        right: 2%;
    }


    .why-grid {
        gap: 55px;
    }


    .faq-grid {
        gap: 60px;
    }

}


/* =========================================================
   32. RESPONSIVE – 1050PX
   ========================================================= */

@media (max-width: 1050px) {

    .main-navigation {
        display: none;
    }


    .nav-actions {
        margin-left: auto;
    }


    .mobile-menu-toggle {
        display: block;
    }


    .mobile-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;

        padding: 15px 24px 25px;

        background: rgba(255,255,255,.98);

        border-bottom: 1px solid var(--border);

        box-shadow: var(--shadow);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);
    }


    .mobile-navigation.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    .mobile-navigation > a:not(.btn) {
        padding: 13px 0;

        color: var(--navy);

        border-bottom: 1px solid var(--border);

        font-size: 14px;
        font-weight: 700;
    }


    .mobile-navigation .btn {
        margin-top: 15px;
    }


    .hero {
        min-height: 720px;
    }


    .hero-floating-card {
        display: none;
    }


    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   33. RESPONSIVE – 850PX
   ========================================================= */

@media (max-width: 850px) {

    .section {
        padding: 85px 0;
    }


    .topbar-left span:nth-child(2) {
        display: none;
    }


    .topbar-right a:last-child {
        display: none;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4,25,42,.94),
                rgba(4,25,42,.72)
            );
    }


    .hero-content {
        max-width: 620px;
    }


    .hero h1 {
        font-size: clamp(45px, 9vw, 68px);
    }


    .hero-text {
        font-size: 16px;
    }


    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .trust-box:nth-child(2) {
        border-right: 0;
    }


    .trust-box:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }


    .intro-grid {
        grid-template-columns: 1fr;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .service-card.service-large {
        grid-row: auto;
    }


    .service-card.service-large .service-image {
        height: 320px;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .why-images {
        min-height: 550px;

        max-width: 650px;

        margin: auto;
    }


    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .number-item:nth-child(2) {
        border-right: 0;
    }


    .number-item:nth-child(-n+2) {
        margin-bottom: 35px;
    }


    .number-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.12);
    }


    .process-grid {
        grid-template-columns: 1fr 1fr;

        gap: 25px;
    }


    .process-line {
        display: none;
    }


    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 300px 220px;
    }


    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: auto;
    }


    .testimonial-grid {
        grid-template-columns: 1fr;
    }


    .testimonial-card.featured {
        transform: none;
    }


    .testimonial-card.featured:hover {
        transform: translateY(-6px);
    }


    .faq-grid {
        grid-template-columns: 1fr;
    }


    .faq-intro {
        max-width: 650px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }


    .map-wrapper {
        min-height: 450px;
    }


    .map-wrapper iframe {
        min-height: 450px;
    }


    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   34. RESPONSIVE – 650PX
   ========================================================= */

@media (max-width: 650px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }


    .topbar {
        display: none;
    }


    .nav-container {
        min-height: 76px;
    }


    .nav-actions {
        display: none;
    }


    .brand-name {
        font-size: 21px;
    }


    .brand-icon {
        width: 44px;
        height: 44px;
    }


    .brand-subtitle {
        font-size: 7px;
    }


    .hero {
        min-height: 690px;
    }


    .hero-container {
        padding-top: 65px;
        padding-bottom: 70px;
    }


    .hero h1 {
        font-size: clamp(43px, 13vw, 62px);

        letter-spacing: -3px;
    }


    .hero-badge {
        align-items: flex-start;

        flex-wrap: wrap;

        border-radius: 12px;
    }


    .hero-text {
        font-size: 14px;
        line-height: 1.7;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-trust {
        flex-direction: column;

        gap: 10px;
    }


    .hero-scroll {
        display: none;
    }


    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }


    .trust-box {
        min-height: 90px;

        padding: 14px 10px;

        gap: 9px;
    }


    .trust-box-icon {
        width: 39px;
        height: 39px;
    }


    .trust-box strong {
        font-size: 11px;
    }


    .trust-box span {
        font-size: 9px;
    }


    .section {
        padding: 70px 0;
    }


    .section-heading {
        display: block;

        margin-bottom: 40px;
    }


    .section-heading > p {
        margin-top: 18px;
    }


    .section-heading h2,
    .contact-header h2,
    .faq-intro h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }


    .intro-card {
        padding: 28px;
    }


    .service-image,
    .service-card.service-large .service-image {
        height: 250px;
    }


    .service-content {
        padding: 25px;
    }


    .service-content ul {
        grid-template-columns: 1fr;
    }


    .why-images {
        min-height: 470px;
    }


    .why-image-main {
        width: 88%;
        height: 380px;
    }


    .why-image-small {
        width: 53%;
        height: 205px;
    }


    .experience-badge {
        width: 105px;
        height: 105px;

        left: -5px;
        bottom: 50px;

        border-width: 5px;
    }


    .experience-badge strong {
        font-size: 14px;
    }


    .experience-badge small {
        font-size: 7px;
    }


    .benefits {
        grid-template-columns: 1fr;
    }


    .numbers-section {
        padding: 50px 0;
    }


    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }


    .number-item {
        padding: 10px;
    }


    .number-item strong {
        font-size: 24px;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .process-step {
        padding: 20px 35px;
    }


    .gallery-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(3, 240px);
    }


    .gallery-item.gallery-large {
        grid-column: auto;
    }


    .cta-section {
        padding: 90px 0;
    }


    .cta-content h2 {
        font-size: 44px;
    }


    .cta-buttons {
        flex-direction: column;
    }


    .cta-buttons .btn {
        width: 100%;
    }


    .testimonial-card {
        padding: 27px;
    }


    .testimonial-card blockquote {
        min-height: auto;
    }


    .faq-contact-box {
        margin-bottom: 20px;
    }


    .map-wrapper {
        min-height: 380px;
    }


    .map-wrapper iframe {
        min-height: 380px;
    }


    .map-overlay-card {
        left: 12px;
        right: 12px;

        max-width: none;
    }


    .final-cta {
        padding: 60px 0;
    }


    .final-cta-actions {
        width: 100%;

        flex-direction: column;
    }


    .final-cta-actions .btn {
        width: 100%;
    }


    .footer {
        padding-top: 60px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 45px;
    }


    .footer-bottom {
        padding: 20px 0;

        flex-direction: column;
        align-items: flex-start;
    }


    .footer-legal {
        flex-wrap: wrap;
    }


    .floating-actions {
        right: 14px;
        bottom: 14px;
    }


    .floating-whatsapp span {
        display: none;
    }


    .floating-whatsapp {
        width: 47px;
        height: 47px;

        justify-content: center;

        padding: 0;

        border-radius: 50%;
    }


    .floating-call {
        display: none;
    }


    .back-to-top {
        right: 14px;
        bottom: 75px;
    }


    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;

        flex-direction: column;
        align-items: stretch;

        gap: 15px;

        padding: 16px;
    }


    .cookie-actions {
        justify-content: space-between;
    }


    .cookie-actions .btn {
        flex: 1;
    }

}


/* =========================================================
   35. RESPONSIVE – 420PX
   ========================================================= */

@media (max-width: 420px) {

    .brand-icon {
        display: none;
    }


    .brand-name {
        font-size: 20px;
    }


    .hero h1 {
        font-size: 42px;
    }


    .hero-badge {
        font-size: 10px;
    }


    .trust-box {
        flex-direction: column;

        align-items: flex-start;
    }


    .trust-box-icon {
        width: 34px;
        height: 34px;
    }


    .section-heading h2,
    .contact-header h2,
    .faq-intro h2 {
        font-size: 34px;
    }


    .why-images {
        min-height: 400px;
    }


    .why-image-main {
        height: 320px;
    }


    .why-image-small {
        height: 170px;
    }


    .experience-badge {
        width: 90px;
        height: 90px;
    }


    .experience-badge strong {
        font-size: 11px;
    }


    .service-content {
        padding: 21px;
    }


    .cta-content h2 {
        font-size: 39px;
    }


    .cookie-content {
        align-items: flex-start;
    }


    .cookie-icon {
        display: none;
    }

}


/* =========================================================
   36. ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(118,189,34,.45);
    outline-offset: 3px;
}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}


/* =========================================================
   37. PRINT
   ========================================================= */

@media print {

    .topbar,
    .site-header,
    .floating-actions,
    .back-to-top,
    .cookie-banner,
    .hero-scroll {
        display: none !important;
    }


    .section {
        padding: 30px 0;
    }

}