/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #ffffff;
    color: #111111;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* Header after scrolling */

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.06);
}


/* =========================================
   NAVBAR
========================================= */

.navbar {

    width: min(1240px, calc(100% - 48px));

    height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* =========================================
   BRAND
========================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}


.brand-mark {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #111111;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 800;

    position: relative;

    overflow: hidden;
}


/* Small accent */

.brand-mark::after {

    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #c7f36b;

    top: 5px;
    right: 5px;
}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}


.brand-text strong {

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: -0.04em;
}


.brand-text small {

    margin-top: 5px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #777777;
}


/* =========================================
   NAV MENU
========================================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 32px;

    margin-left: auto;
}


.nav-link {

    position: relative;

    font-size: 14px;

    font-weight: 600;

    color: #555555;

    padding: 8px 0;

    transition:
        color 0.25s ease;
}


.nav-link:hover,
.nav-link.active {

    color: #111111;
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: #111111;

    transition: width 0.25s ease;
}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;
}


/* =========================================
   NAV ACTIONS
========================================= */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 12px;
}


/* Call */

.call-action {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    border-radius: 12px;

    transition:
        background 0.25s ease;
}


.call-action:hover {

    background: #f5f5f5;
}


.call-icon {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f2f2f2;

    font-size: 14px;
}


.call-action span:last-child {

    display: flex;

    flex-direction: column;

    line-height: 1.1;
}


.call-action small {

    font-size: 9px;

    color: #888888;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.call-action strong {

    margin-top: 4px;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp-action {

    padding: 12px 18px;

    border-radius: 10px;

    background: #111111;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.whatsapp-action:hover {

    transform: translateY(-2px);

    background: #222222;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 10px;

    background: #f5f5f5;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}


.menu-toggle span {

    width: 19px;
    height: 2px;

    background: #111111;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* Hamburger → X */

.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================
   MOBILE ACTIONS
========================================= */

.mobile-actions {

    display: none;
}


/* =========================================
   TEMPORARY HERO
========================================= */

.temporary-hero {

    min-height: 100vh;

    padding:
        160px 24px
        80px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #f5f6f2,
            #ffffff
        );
}


.temporary-hero > div {

    width: min(1000px, 100%);

    text-align: center;
}


.eyebrow {

    display: inline-block;

    margin-bottom: 24px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.14em;

    color: #777777;
}


.temporary-hero h1 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 7vw, 92px);

    line-height: 0.95;

    letter-spacing: -0.065em;

    font-weight: 800;
}


.temporary-hero p {

    max-width: 620px;

    margin: 28px auto 0;

    font-size: 18px;

    line-height: 1.7;

    color: #666666;
}


.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 35px;
}


.primary-button,
.secondary-button {

    padding: 15px 23px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;
}


.primary-button {

    background: #111111;

    color: #ffffff;
}


.secondary-button {

    background: #eeeeee;

    color: #111111;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .nav-menu {

        gap: 20px;
    }

    .call-action {

        display: none;
    }

}


@media (max-width: 850px) {

    .navbar {

        height: 74px;

        width: min(
            100% - 32px,
            700px
        );
    }


    .nav-actions {

        display: none;
    }


    .menu-toggle {

        display: flex;
    }


    .nav-menu {

        position: fixed;

        top: 74px;

        left: 16px;
        right: 16px;

        margin: 0;

        padding: 24px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        background: #ffffff;

        border: 1px solid rgba(0, 0, 0, 0.07);

        border-radius: 18px;

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.12);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-12px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    .nav-menu.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    .nav-link {

        padding: 14px 10px;

        border-radius: 8px;
    }


    .nav-link:hover {

        background: #f7f7f7;
    }


    .nav-link::after {

        display: none;
    }


    .mobile-actions {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;

        margin-top: 15px;

        padding-top: 18px;

        border-top:
            1px solid #eeeeee;
    }


    .mobile-call,
    .mobile-whatsapp {

        display: flex;

        align-items: center;

        justify-content: center;

        padding: 13px;

        border-radius: 9px;

        font-size: 13px;

        font-weight: 700;
    }


    .mobile-call {

        background: #f2f2f2;

        color: #111111;
    }


    .mobile-whatsapp {

        background: #111111;

        color: #ffffff;
    }

}


@media (max-width: 500px) {

    .navbar {

        width: calc(100% - 24px);
    }


    .brand-mark {

        width: 38px;
        height: 38px;

        border-radius: 10px;
    }


    .brand-text strong {

        font-size: 16px;
    }


    .brand-text small {

        font-size: 8px;
    }


    .temporary-hero {

        padding:
            140px 18px
            60px;
    }


    .temporary-hero h1 {

        font-size: 48px;
    }


    .temporary-hero p {

        font-size: 16px;
    }


    .hero-buttons {

        flex-direction: column;
    }


    .primary-button,
    .secondary-button {

        width: 100%;

        text-align: center;
    }

}
/* =========================================
   HERO SECTION
========================================= */

.hero {

    position: relative;

    min-height: 100svh;

    width: 100%;

    overflow: hidden;

    display: flex;

    align-items: center;

    color: #ffffff;

    background: #111111;
}


/* =========================================
   HERO BACKGROUND
========================================= */

.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;

    background-image:
        url("../assets/hero.jpg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    transform: scale(1.02);

    animation: heroImageReveal 1.4s ease-out forwards;
}


/* =========================================
   HERO OVERLAY
========================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.60) 38%,
            rgba(0, 0, 0, 0.25) 70%,
            rgba(0, 0, 0, 0.20) 100%
        );
}


/* Bottom gradient */

.hero-overlay::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 220px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55),
            transparent
        );
}


/* =========================================
   HERO CONTAINER
========================================= */

.hero-container {

    position: relative;

    z-index: 2;

    width: min(
        1240px,
        calc(100% - 48px)
    );

    min-height: 100svh;

    margin: 0 auto;

    display: flex;

    align-items: center;

    padding-top: 82px;

    padding-bottom: 70px;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {

    max-width: 760px;

    padding-top: 30px;

    animation:
        heroContentReveal 1s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        )
        0.2s both;
}


/* =========================================
   LOCATION BADGE
========================================= */

.hero-location {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    margin-bottom: 24px;

    border:

        1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 100px;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.04em;

    color:
        rgba(255, 255, 255, 0.88);
}


.location-dot {

    width: 7px;

    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #c7f36b;

    box-shadow:
        0 0 0 4px
        rgba(199, 243, 107, 0.14);
}


/* =========================================
   HERO TITLE
========================================= */

.hero-title {

    max-width: 820px;

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            52px,
            7vw,
            92px
        );

    line-height: 0.94;

    letter-spacing: -0.065em;

    font-weight: 800;
}


.hero-title span {

    display: block;

    color: #c7f36b;
}


/* =========================================
   HERO DESCRIPTION
========================================= */

.hero-description {

    max-width: 600px;

    margin-top: 28px;

    font-size: 17px;

    line-height: 1.7;

    font-weight: 400;

    color:
        rgba(255, 255, 255, 0.76);
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 34px;
}


.hero-btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding:
        0 20px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


/* Primary */

.hero-btn-primary {

    background: #c7f36b;

    color: #111111;

    min-width: 170px;
}


.hero-btn-primary:hover {

    transform:
        translateY(-3px);

    background: #d5ff82;
}


.btn-arrow {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    font-size: 14px;

    transition:
        transform 0.3s ease;
}


.hero-btn-primary:hover
.btn-arrow {

    transform:
        rotate(45deg);
}


/* Secondary */

.hero-btn-secondary {

    border:
        1px solid
        rgba(255, 255, 255, 0.25);

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    color: #ffffff;
}


.hero-btn-secondary:hover {

    transform:
        translateY(-3px);

    background:
        rgba(255, 255, 255, 0.15);

    border-color:
        rgba(255, 255, 255, 0.4);
}


.phone-symbol {

    font-size: 14px;
}


/* =========================================
   HERO TRUST
========================================= */

.hero-trust {

    display: flex;

    align-items: center;

    margin-top: 50px;

    gap: 24px;
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 10px;
}


.trust-icon {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(199, 243, 107, 0.14);

    border:
        1px solid
        rgba(199, 243, 107, 0.3);

    color: #c7f36b;

    font-size: 12px;

    font-weight: 800;
}


.trust-item div:last-child {

    display: flex;

    flex-direction: column;
}


.trust-item strong {

    font-size: 11px;

    font-weight: 700;

    color: #ffffff;
}


.trust-item span {

    margin-top: 3px;

    font-size: 9px;

    color:
        rgba(255, 255, 255, 0.52);
}


.trust-divider {

    width: 1px;

    height: 28px;

    background:
        rgba(255, 255, 255, 0.18);
}


/* =========================================
   SCROLL INDICATOR
========================================= */

.hero-scroll {

    position: absolute;

    right: 0;

    bottom: 38px;

    display: flex;

    align-items: center;

    gap: 14px;

    transform:
        rotate(-90deg);

    transform-origin:
        right center;
}


.hero-scroll span {

    font-size: 8px;

    letter-spacing: 0.18em;

    font-weight: 700;

    color:
        rgba(255, 255, 255, 0.55);

    white-space: nowrap;
}


.scroll-line {

    width: 50px;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.45);
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes heroImageReveal {

    from {

        opacity: 0;

        transform:
            scale(1.08);
    }

    to {

        opacity: 1;

        transform:
            scale(1.02);
    }
}


@keyframes heroContentReveal {

    from {

        opacity: 0;

        transform:
            translateY(35px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .hero-container {

        width:
            min(
                100% - 32px,
                700px
            );

        padding-top: 100px;

        padding-bottom: 70px;
    }


    .hero-background {

        background-position:
            58% center;
    }


    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.78),
                rgba(0, 0, 0, 0.50)
            );
    }


    .hero-title {

        font-size:
            clamp(
                48px,
                9vw,
                72px
            );
    }


    .hero-description {

        font-size: 16px;

        max-width: 560px;
    }


    .hero-scroll {

        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .hero {

        min-height: 100svh;
    }


    .hero-container {

        width:
            calc(100% - 28px);

        min-height:
            100svh;

        padding-top: 105px;

        padding-bottom: 45px;

        align-items: center;
    }


    .hero-background {

        background-position:
            62% center;
    }


    .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.58) 0%,
                rgba(0, 0, 0, 0.70) 65%,
                rgba(0, 0, 0, 0.82) 100%
            );
    }


    .hero-content {

        padding-top: 0;
    }


    .hero-location {

        margin-bottom: 20px;

        padding: 7px 10px;

        font-size: 9px;
    }


    .hero-title {

        font-size:
            clamp(
                43px,
                13vw,
                62px
            );

        line-height: 0.95;
    }


    .hero-description {

        margin-top: 22px;

        font-size: 15px;

        line-height: 1.6;
    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

        margin-top: 28px;

        gap: 9px;
    }


    .hero-btn {

        width: 100%;

        min-height: 50px;
    }


    .hero-trust {

        flex-wrap: wrap;

        gap: 14px;

        margin-top: 32px;
    }


    .trust-divider {

        display: none;
    }


    .trust-item {

        width: calc(50% - 7px);
    }


    .trust-item:last-child {

        width: 100%;
    }


    .hero-scroll {

        display: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .hero-title {

        font-size: 42px;
    }


    .hero-description {

        font-size: 14px;
    }


    .hero-trust {

        margin-top: 25px;
    }


    .trust-item {

        width: 100%;
    }

}
/* =========================================
   TRUST STRIP
========================================= */

.trust-strip {

    position: relative;

    width: 100%;

    background: #111111;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);

    overflow: hidden;
}


.trust-strip-container {

    width: min(
        1240px,
        calc(100% - 48px)
    );

    min-height: 112px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    gap: 28px;
}


/* =========================================
   TRUST ITEM
========================================= */

.trust-strip-item {

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 0;
}


.trust-strip-number {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(199, 243, 107, 0.28);

    border-radius: 50%;

    color: #c7f36b;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 10px;

    font-weight: 800;
}


.trust-strip-content {

    min-width: 0;
}


.trust-strip-content h3 {

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 13px;

    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;
}


.trust-strip-content p {

    margin-top: 5px;

    font-size: 10px;

    line-height: 1.4;

    color:
        rgba(255, 255, 255, 0.48);
}


/* =========================================
   DIVIDER
========================================= */

.trust-strip-line {

    width: 1px;

    height: 36px;

    background:
        rgba(255, 255, 255, 0.12);
}


/* =========================================
   HOVER
========================================= */

.trust-strip-item {

    transition:
        transform 0.3s ease;
}


.trust-strip-item:hover {

    transform:
        translateY(-2px);
}


.trust-strip-item:hover
.trust-strip-number {

    background:
        rgba(199, 243, 107, 0.08);

    border-color:
        rgba(199, 243, 107, 0.55);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .trust-strip-container {

        grid-template-columns:
            1fr auto
            1fr;

        padding:
            24px 0;

        gap: 22px;
    }


    .trust-strip-item:nth-of-type(3) {

        display: none;
    }


    .trust-strip-line:nth-of-type(3) {

        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .trust-strip-container {

        width:
            calc(100% - 28px);

        grid-template-columns:
            1fr 1fr;

        gap: 0;

        padding:
            8px 0;
    }


    .trust-strip-item {

        min-height: 90px;

        padding:
            14px 10px;

        gap: 10px;
    }


    .trust-strip-item:nth-of-type(3) {

        display: flex;
    }


    .trust-strip-line {

        display: none;
    }


    .trust-strip-item:nth-child(1),
    .trust-strip-item:nth-child(5) {

        border-right:
            1px solid
            rgba(255, 255, 255, 0.10);
    }


    .trust-strip-item:nth-child(5) {

        border-right: 0;
    }


    .trust-strip-number {

        width: 30px;

        height: 30px;

        font-size: 8px;
    }


    .trust-strip-content h3 {

        font-size: 11px;
    }


    .trust-strip-content p {

        font-size: 9px;

        line-height: 1.35;
    }

}
/* =========================================
   SERVICES SECTION
========================================= */

.services-section {

    position: relative;

    padding:
        140px 0
        130px;

    background: #f5f6f2;

    overflow: hidden;
}


.services-container {

    width: min(
        1240px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================
   SERVICES HEADER
========================================= */

.services-header {

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}


.section-eyebrow {

    display: block;

    margin-bottom: 20px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.18em;

    color: #777777;
}


.services-heading h2 {

    max-width: 700px;

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            6vw,
            78px
        );

    line-height: 0.95;

    letter-spacing: -0.065em;

    font-weight: 800;

    color: #111111;
}


.services-heading h2 span {

    color: #858585;
}


.services-intro {

    padding-bottom: 4px;
}


.services-intro p {

    max-width: 410px;

    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color: #666666;
}


.services-header-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding-bottom: 7px;

    border-bottom:
        1px solid #111111;

    font-size: 12px;

    font-weight: 700;

    color: #111111;

    transition:
        gap 0.3s ease;
}


.services-header-link:hover {

    gap: 18px;
}


.services-header-link span {

    font-size: 16px;
}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {

    position: relative;

    min-height: 430px;

    display: block;

    overflow: hidden;

    border-radius: 14px;

    background: #222222;

    isolation: isolate;

    transition:
        transform 0.4s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.service-card-large {

    grid-column: span 2;

    grid-row: span 2;

    min-height: 560px;
}


.service-card:hover {

    transform:
        translateY(-7px);
}


/* =========================================
   SERVICE IMAGE
========================================= */

.service-image {

    position: absolute;

    inset: 0;

    z-index: -2;

    overflow: hidden;
}


.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.8s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.service-card:hover
.service-image img {

    transform:
        scale(1.08);
}


/* =========================================
   SERVICE OVERLAY
========================================= */

.service-overlay {

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.12) 30%,
            rgba(0, 0, 0, 0.78) 100%
        );
}


/* =========================================
   SERVICE NUMBER
========================================= */

.service-number {

    position: absolute;

    top: 20px;

    left: 20px;

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.28);

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.15);

    backdrop-filter:
        blur(8px);

    font-size: 9px;

    font-weight: 700;

    color:
        rgba(255, 255, 255, 0.85);
}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-content {

    position: absolute;

    left: 22px;

    right: 22px;

    bottom: 22px;
}


.service-tag {

    display: inline-block;

    margin-bottom: 11px;

    padding: 5px 8px;

    border-radius: 4px;

    background: #c7f36b;

    color: #111111;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.12em;
}


.service-content h3 {

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 25px;

    line-height: 1.02;

    letter-spacing: -0.045em;

    font-weight: 800;

    color: #ffffff;
}


.service-card-large
.service-content h3 {

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );
}


.service-content p {

    max-width: 310px;

    margin-top: 12px;

    font-size: 11px;

    line-height: 1.55;

    color:
        rgba(255, 255, 255, 0.68);
}


/* =========================================
   SERVICE ARROW
========================================= */

.service-arrow {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 39px;

    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #111111;

    font-size: 17px;

    transition:
        transform 0.35s ease;
}


.service-card:hover
.service-arrow {

    transform:
        rotate(45deg);
}


/* =========================================
   ACCENT CARD
========================================= */

.service-card-accent {

    display: flex;

    align-items: flex-end;

    min-height: 430px;

    background: #c7f36b;

    color: #111111;
}


.service-accent-content {

    position: relative;

    width: 100%;

    padding: 22px;
}


.service-card-accent
.service-number {

    position: static;

    margin-bottom: 65px;

    border-color:
        rgba(17, 17, 17, 0.22);

    background:
        rgba(17, 17, 17, 0.06);

    color: #111111;
}


.service-card-accent
.service-tag {

    margin-bottom: 12px;

    padding: 0;

    background: transparent;

    color:
        rgba(17, 17, 17, 0.55);

    font-size: 8px;
}


.service-card-accent h3 {

    max-width: 230px;

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 32px;

    line-height: 1;

    letter-spacing: -0.05em;

    font-weight: 800;
}


.service-card-accent p {

    max-width: 250px;

    margin-top: 14px;

    font-size: 11px;

    line-height: 1.55;

    color:
        rgba(17, 17, 17, 0.62);
}


.service-accent-arrow {

    position: absolute;

    right: 22px;

    bottom: 22px;

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    font-size: 20px;

    transition:
        transform 0.35s ease;
}


.service-card-accent:hover
.service-accent-arrow {

    transform:
        rotate(-45deg);
}


/* =========================================
   SERVICES BOTTOM
========================================= */

.services-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 35px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(17, 17, 17, 0.12);
}


.services-bottom p {

    font-size: 12px;

    color: #777777;
}


.services-bottom a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 700;

    color: #111111;

    transition:
        gap 0.3s ease;
}


.services-bottom a:hover {

    gap: 16px;
}


.services-bottom a span {

    font-size: 17px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .services-section {

        padding:
            110px 0;
    }


    .services-header {

        grid-template-columns:
            1fr;

        gap: 30px;

        margin-bottom: 45px;
    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .service-card-large {

        grid-column: span 2;

        min-height: 500px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .services-section {

        padding:
            85px 0;
    }


    .services-container {

        width:
            calc(100% - 28px);
    }


    .services-header {

        margin-bottom: 35px;
    }


    .services-heading h2 {

        font-size: 46px;

        line-height: 0.96;
    }


    .services-intro p {

        font-size: 14px;
    }


    .services-grid {

        grid-template-columns:
            1fr;

        gap: 10px;
    }


    .service-card,
    .service-card-large,
    .service-card-accent {

        grid-column: auto;

        grid-row: auto;

        min-height: 400px;
    }


    .service-card-large {

        min-height: 480px;
    }


    .service-card-large
    .service-content h3 {

        font-size: 39px;
    }


    .service-content h3 {

        font-size: 27px;
    }


    .services-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-image img,
    .service-arrow,
    .service-accent-arrow {

        transition: none;
    }

}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section {

    position: relative;

    padding:
        150px 0
        140px;

    background: #ffffff;

    overflow: hidden;
}


.about-container {

    width: min(
        1240px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 100px;

    align-items: center;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {

    max-width: 520px;
}


.about-content h2 {

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            5.5vw,
            72px
        );

    line-height: 0.96;

    letter-spacing: -0.065em;

    font-weight: 800;

    color: #111111;
}


.about-content h2 span {

    color: #8a8a8a;

    display: block;
}


/* =========================================
   ABOUT TEXT
========================================= */

.about-lead {

    margin-top: 28px;

    font-size: 18px;

    line-height: 1.55;

    font-weight: 600;

    color: #222222;
}


.about-description {

    max-width: 470px;

    margin-top: 15px;

    font-size: 14px;

    line-height: 1.75;

    color: #6b6b6b;
}


/* =========================================
   ABOUT FEATURES
========================================= */

.about-features {

    margin-top: 42px;

    border-top:
        1px solid #e8e8e8;
}


.about-feature {

    display: grid;

    grid-template-columns:
        40px
        1fr;

    gap: 17px;

    padding:
        19px 0;

    border-bottom:
        1px solid #e8e8e8;

    transition:
        padding 0.3s ease;
}


.about-feature:hover {

    padding-left: 7px;
}


.about-feature-number {

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f2f3ee;

    color: #555555;

    font-size: 8px;

    font-weight: 800;
}


.about-feature-content h3 {

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 14px;

    line-height: 1.2;

    font-weight: 700;

    color: #111111;
}


.about-feature-content p {

    max-width: 370px;

    margin-top: 6px;

    font-size: 11px;

    line-height: 1.55;

    color: #777777;
}


/* =========================================
   ABOUT CTA
========================================= */

.about-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 32px;

    padding:
        13px 17px;

    border-radius: 8px;

    background: #111111;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.about-link:hover {

    transform:
        translateY(-3px);

    background: #242424;
}


.about-link-arrow {

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #c7f36b;

    color: #111111;

    font-size: 13px;

    transition:
        transform 0.3s ease;
}


.about-link:hover
.about-link-arrow {

    transform:
        rotate(45deg);
}


/* =========================================
   ABOUT VISUAL
========================================= */

.about-visual {

    position: relative;
}


.about-image-wrapper {

    position: relative;

    height: 650px;

    overflow: hidden;

    border-radius: 16px;

    background: #eeeeee;
}


.about-image-wrapper img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.about-image-wrapper:hover img {

    transform:
        scale(1.04);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.about-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.42)
        );
}


/* =========================================
   FLOATING CARD
========================================= */

.about-floating-card {

    position: absolute;

    left: 24px;

    bottom: 24px;

    width: 245px;

    padding: 22px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.94);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.14);
}


.floating-card-label {

    display: block;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.15em;

    color: #777777;
}


.about-floating-card strong {

    display: block;

    margin-top: 11px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 27px;

    line-height: 0.98;

    letter-spacing: -0.05em;

    color: #111111;
}


.about-floating-card strong span {

    color: #829d39;
}


.about-floating-card p {

    margin-top: 10px;

    font-size: 10px;

    line-height: 1.5;

    color: #777777;
}


/* =========================================
   IMAGE NUMBER
========================================= */

.about-image-number {

    position: absolute;

    top: 22px;

    right: 22px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.15);

    backdrop-filter:
        blur(10px);

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;
}


/* =========================================
   VISUAL FOOTER
========================================= */

.about-visual-footer {

    display: flex;

    justify-content: space-between;

    margin-top: 13px;

    padding:
        0 2px;
}


.about-visual-footer span {

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.12em;

    color: #999999;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .about-section {

        padding:
            110px 0;
    }


    .about-container {

        grid-template-columns:
            1fr;

        gap: 65px;
    }


    .about-content {

        max-width: 700px;
    }


    .about-description {

        max-width: 600px;
    }


    .about-image-wrapper {

        height: 600px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .about-section {

        padding:
            85px 0;
    }


    .about-container {

        width:
            calc(100% - 28px);

        gap: 45px;
    }


    .about-content h2 {

        font-size: 46px;

        line-height: 0.96;
    }


    .about-lead {

        margin-top: 22px;

        font-size: 16px;
    }


    .about-description {

        font-size: 13px;

        line-height: 1.7;
    }


    .about-features {

        margin-top: 32px;
    }


    .about-feature {

        grid-template-columns:
            34px
            1fr;

        gap: 12px;

        padding:
            17px 0;
    }


    .about-feature-content h3 {

        font-size: 13px;
    }


    .about-feature-content p {

        font-size: 10px;
    }


    .about-image-wrapper {

        height: 500px;

        border-radius: 12px;
    }


    .about-floating-card {

        left: 15px;

        bottom: 15px;

        width: 205px;

        padding: 18px;
    }


    .about-floating-card strong {

        font-size: 23px;
    }


    .about-image-number {

        top: 15px;

        right: 15px;
    }


    .about-visual-footer span {

        font-size: 7px;
    }

}
/* =========================================
   PROCESS SECTION
========================================= */

.process-section {

    position: relative;

    padding:
        145px 0
        130px;

    background: #111111;

    color: #ffffff;

    overflow: hidden;
}


.process-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -250px;

    right: -150px;

    border-radius: 50%;

    background:
        rgba(199, 243, 107, 0.04);

    filter: blur(10px);

    pointer-events: none;
}


.process-container {

    position: relative;

    z-index: 1;

    width: min(
        1240px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================
   PROCESS HEADER
========================================= */

.process-header {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 80px;
}


.process-header .section-eyebrow {

    color:
        rgba(255, 255, 255, 0.42);
}


.process-header h2 {

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            5.7vw,
            76px
        );

    line-height: 0.95;

    letter-spacing: -0.065em;

    font-weight: 800;
}


.process-header h2 span {

    display: block;

    color: #c7f36b;
}


.process-header > p {

    max-width: 420px;

    margin-left: auto;

    font-size: 14px;

    line-height: 1.75;

    color:
        rgba(255, 255, 255, 0.55);
}


/* =========================================
   PROCESS LIST
========================================= */

.process-list {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}


/* =========================================
   PROCESS STEP
========================================= */

.process-step {

    position: relative;

    min-height: 350px;

    padding-right: 15px;
}


.process-step-top {

    display: flex;

    align-items: center;

    width: 100%;
}


.process-number {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    font-size: 9px;

    font-weight: 800;

    color:
        rgba(255, 255, 255, 0.7);
}


.process-line {

    width: 100%;

    height: 1px;

    margin-left: 15px;

    background:
        rgba(255, 255, 255, 0.12);
}


.process-icon {

    width: 48px;

    height: 48px;

    margin-top: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.06);

    color:
        rgba(255, 255, 255, 0.72);
}


.process-icon svg {

    width: 22px;

    height: 22px;
}


.process-icon-accent {

    background:
        rgba(199, 243, 107, 0.12);

    color: #c7f36b;
}


/* =========================================
   PROCESS TEXT
========================================= */

.process-step h3 {

    max-width: 220px;

    margin-top: 25px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 22px;

    line-height: 1.02;

    letter-spacing: -0.04em;

    font-weight: 700;
}


.process-step h3 span {

    display: block;

    color:
        rgba(255, 255, 255, 0.42);
}


.process-step p {

    max-width: 230px;

    margin-top: 14px;

    font-size: 11px;

    line-height: 1.65;

    color:
        rgba(255, 255, 255, 0.45);
}


/* =========================================
   PROCESS CTA
========================================= */

.process-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    margin-top: 55px;

    padding:
        30px 32px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.035);
}


.process-cta-content > span {

    display: block;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.16em;

    color:
        rgba(255, 255, 255, 0.38);
}


.process-cta-content h3 {

    max-width: 470px;

    margin-top: 9px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 25px;

    line-height: 1.05;

    letter-spacing: -0.04em;

    font-weight: 700;
}


.process-cta-actions {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.process-call {

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 155px;

    min-height: 52px;

    padding:
        0 16px;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.04);

    color: #ffffff;

    transition:
        background 0.3s ease;
}


.process-call:hover {

    background:
        rgba(255, 255, 255, 0.08);
}


.process-call span {

    font-size: 8px;

    color:
        rgba(255, 255, 255, 0.4);

    text-transform: uppercase;

    letter-spacing: 0.1em;
}


.process-call strong {

    margin-top: 4px;

    font-size: 12px;

    font-weight: 700;
}


.process-whatsapp {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding:
        0 18px;

    border-radius: 9px;

    background: #c7f36b;

    color: #111111;

    font-size: 11px;

    font-weight: 800;

    transition:
        transform 0.3s ease;
}


.process-whatsapp:hover {

    transform:
        translateY(-3px);
}


.process-whatsapp span {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .process-section {

        padding:
            110px 0;
    }


    .process-header {

        grid-template-columns:
            1fr;

        gap: 25px;

        margin-bottom: 60px;
    }


    .process-header > p {

        margin-left: 0;
    }


    .process-list {

        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 50px;
    }


    .process-step {

        min-height: 300px;
    }


    .process-cta {

        align-items: flex-start;

        flex-direction: column;
    }


    .process-cta-actions {

        width: 100%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .process-section {

        padding:
            85px 0;
    }


    .process-container {

        width:
            calc(100% - 28px);
    }


    .process-header {

        margin-bottom: 45px;
    }


    .process-header h2 {

        font-size: 46px;
    }


    .process-header > p {

        font-size: 13px;

        line-height: 1.7;
    }


    .process-list {

        grid-template-columns:
            1fr;

        gap: 0;
    }


    .process-step {

        min-height: auto;

        padding:
            0 0 42px 52px;
    }


    .process-step-top {

        position: absolute;

        left: 0;

        top: 0;

        width: 38px;
    }


    .process-step-top
    .process-line {

        position: absolute;

        top: 38px;

        left: 18px;

        width: 1px;

        height: calc(100% + 42px);

        margin: 0;

        background:
            rgba(255, 255, 255, 0.12);
    }


    .process-step-last
    .process-line {

        display: none;
    }


    .process-icon {

        margin-top: 0;
    }


    .process-step h3 {

        font-size: 21px;

        margin-top: 19px;
    }


    .process-step p {

        max-width: 300px;

        font-size: 11px;
    }


    .process-cta {

        margin-top: 15px;

        padding:
            23px 20px;

        gap: 25px;
    }


    .process-cta-content h3 {

        font-size: 22px;
    }


    .process-cta-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .process-call,
    .process-whatsapp {

        width: 100%;
    }

}
/* =========================================
   PACKAGES SECTION
========================================= */

.packages-section {

    position: relative;

    padding:
        145px 0
        130px;

    background: #f5f6f2;

    overflow: hidden;
}


.packages-container {

    width: min(
        1240px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================
   PACKAGES HEADER
========================================= */

.packages-header {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 65px;
}


.packages-header h2 {

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            5.7vw,
            76px
        );

    line-height: 0.95;

    letter-spacing: -0.065em;

    font-weight: 800;

    color: #111111;
}


.packages-header h2 span {

    display: block;

    color: #8a8a8a;
}


.packages-header > p {

    max-width: 420px;

    margin-left: auto;

    font-size: 14px;

    line-height: 1.75;

    color: #666666;
}


/* =========================================
   PACKAGE GRID
========================================= */

.packages-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    align-items: stretch;
}


/* =========================================
   PACKAGE CARD
========================================= */

.package-card {

    position: relative;

    min-height: 590px;

    display: flex;

    flex-direction: column;

    padding: 28px;

    border:
        1px solid
        rgba(17, 17, 17, 0.10);

    border-radius: 14px;

    background: #ffffff;

    overflow: hidden;

    transition:
        transform 0.4s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        box-shadow 0.4s ease;
}


.package-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.08);
}


/* =========================================
   FEATURED CARD
========================================= */

.package-card-featured {

    background: #111111;

    color: #ffffff;

    border-color: #111111;

    transform:
        translateY(-12px);
}


.package-card-featured:hover {

    transform:
        translateY(-19px);
}


/* =========================================
   POPULAR BADGE
========================================= */

.package-popular {

    position: absolute;

    top: 0;

    right: 0;

    padding:
        8px 13px;

    border-radius:
        0 0 0 9px;

    background: #c7f36b;

    color: #111111;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.13em;
}


/* =========================================
   PACKAGE TOP
========================================= */

.package-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.package-number {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(17, 17, 17, 0.12);

    border-radius: 50%;

    font-size: 9px;

    font-weight: 800;

    color: #666666;
}


.package-card-featured
.package-number {

    border-color:
        rgba(255, 255, 255, 0.20);

    color:
        rgba(255, 255, 255, 0.65);
}


.package-label {

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.16em;

    color: #999999;
}


.package-card-featured
.package-label {

    color:
        rgba(255, 255, 255, 0.45);
}


/* =========================================
   PACKAGE HEADING
========================================= */

.package-heading {

    margin-top: 55px;
}


.package-heading h3 {

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 43px;

    line-height: 0.95;

    letter-spacing: -0.06em;

    font-weight: 800;

    color: #111111;
}


.package-card-featured
.package-heading h3 {

    color: #ffffff;
}


.package-heading p {

    max-width: 275px;

    margin-top: 14px;

    font-size: 11px;

    line-height: 1.6;

    color: #777777;
}


.package-card-featured
.package-heading p {

    color:
        rgba(255, 255, 255, 0.48);
}


/* =========================================
   DIVIDER
========================================= */

.package-divider {

    width: 100%;

    height: 1px;

    margin-top: 30px;

    background:
        rgba(17, 17, 17, 0.10);
}


.package-card-featured
.package-divider {

    background:
        rgba(255, 255, 255, 0.12);
}


/* =========================================
   INCLUDES
========================================= */

.package-includes {

    margin-top: 25px;
}


.package-includes > span {

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.15em;

    color: #999999;
}


.package-card-featured
.package-includes > span {

    color:
        rgba(255, 255, 255, 0.35);
}


.package-includes ul {

    margin-top: 17px;

    padding: 0;

    list-style: none;
}


.package-includes li {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 7px 0;

    font-size: 11px;

    color: #555555;
}


.package-card-featured
.package-includes li {

    color:
        rgba(255, 255, 255, 0.65);
}


.package-includes li span {

    color: #78902f;

    font-size: 11px;

    font-weight: 800;
}


.package-card-featured
.package-includes li span {

    color: #c7f36b;
}


/* =========================================
   PACKAGE BUTTON
========================================= */

.package-button {

    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: auto;

    padding:
        0 15px;

    border:
        1px solid
        rgba(17, 17, 17, 0.12);

    border-radius: 8px;

    background: #f5f6f2;

    color: #111111;

    font-size: 11px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.package-button:hover {

    transform:
        translateY(-2px);

    background: #e9eae5;
}


.package-button > span:last-child {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    font-size: 14px;

    transition:
        transform 0.3s ease;
}


.package-button:hover
> span:last-child {

    transform:
        rotate(45deg);
}


/* Featured button */

.package-button-dark {

    border-color:
        rgba(255, 255, 255, 0.12);

    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;
}


.package-button-dark:hover {

    background:
        rgba(255, 255, 255, 0.14);
}


.package-button-dark
> span:last-child {

    background: #c7f36b;

    color: #111111;
}


/* =========================================
   PACKAGE BOTTOM
========================================= */

.packages-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 25px;

    padding:
        22px 0;

    border-top:
        1px solid
        rgba(17, 17, 17, 0.10);

    border-bottom:
        1px solid
        rgba(17, 17, 17, 0.10);
}


.packages-note {

    display: flex;

    align-items: flex-start;

    gap: 10px;
}


.packages-note-icon {

    width: 18px;

    height: 18px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111111;

    color: #c7f36b;

    font-size: 10px;

    font-weight: 800;
}


.packages-note p {

    max-width: 520px;

    font-size: 9px;

    line-height: 1.55;

    color: #888888;
}


.packages-custom {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    font-size: 10px;

    font-weight: 700;

    color: #111111;
}


.packages-custom span {

    color: #78902f;

    transition:
        margin 0.3s ease;
}


.packages-custom:hover span {

    margin-left: 5px;
}


/* =========================================
   SPECIALIZED SERVICES
========================================= */

.package-services {

    display: grid;

    grid-template-columns:
        0.7fr
        1.3fr;

    gap: 90px;

    margin-top: 110px;
}


.package-services-heading > span {

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.16em;

    color: #999999;
}


.package-services-heading h3 {

    max-width: 350px;

    margin-top: 18px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 32px;

    line-height: 1;

    letter-spacing: -0.05em;

    font-weight: 800;

    color: #111111;
}


.package-services-heading h3 span {

    display: block;

    color: #8a8a8a;
}


/* =========================================
   SERVICE LIST
========================================= */

.package-service-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-top:
        1px solid
        rgba(17, 17, 17, 0.12);
}


.package-service-list a {

    min-height: 68px;

    display: grid;

    grid-template-columns:
        30px
        1fr
        25px;

    align-items: center;

    gap: 10px;

    padding:
        0 5px;

    border-bottom:
        1px solid
        rgba(17, 17, 17, 0.12);

    font-size: 11px;

    font-weight: 700;

    color: #333333;

    transition:
        padding 0.3s ease,
        color 0.3s ease;
}


.package-service-list a:nth-child(odd) {

    border-right:
        1px solid
        rgba(17, 17, 17, 0.12);

    padding-right: 20px;
}


.package-service-list a:nth-child(even) {

    padding-left: 20px;
}


.package-service-list a:hover {

    padding-left: 10px;

    color: #78902f;
}


.package-service-list a:nth-child(even):hover {

    padding-left: 25px;
}


.package-service-list a > span {

    font-size: 8px;

    color: #999999;
}


.package-service-list strong {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 23px;

    height: 23px;

    border-radius: 50%;

    background: #eeeeeb;

    font-size: 12px;

    font-weight: 400;

    color: #111111;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .packages-section {

        padding:
            110px 0;
    }


    .packages-header {

        grid-template-columns:
            1fr;

        gap: 25px;

        margin-bottom: 50px;
    }


    .packages-header > p {

        margin-left: 0;
    }


    .packages-grid {

        grid-template-columns:
            1fr;
    }


    .package-card {

        min-height: 500px;
    }


    .package-card-featured {

        transform: none;
    }


    .package-card-featured:hover {

        transform:
            translateY(-7px);
    }


    .package-services {

        grid-template-columns:
            1fr;

        gap: 45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .packages-section {

        padding:
            85px 0;
    }


    .packages-container {

        width:
            calc(100% - 28px);
    }


    .packages-header h2 {

        font-size: 46px;
    }


    .packages-header > p {

        font-size: 13px;

        line-height: 1.7;
    }


    .package-card {

        min-height: 520px;

        padding: 22px;
    }


    .package-heading {

        margin-top: 45px;
    }


    .package-heading h3 {

        font-size: 38px;
    }


    .packages-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .packages-custom {

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }


    .package-services {

        margin-top: 75px;
    }


    .package-services-heading h3 {

        font-size: 28px;
    }


    .package-service-list {

        grid-template-columns:
            1fr;
    }


    .package-service-list a:nth-child(odd) {

        border-right: 0;

        padding-right: 5px;
    }


    .package-service-list a:nth-child(even) {

        padding-left: 5px;
    }


    .package-service-list a:nth-child(even):hover {

        padding-left: 10px;
    }

}
/* =========================================
   FAQ SECTION
========================================= */

.faq-section {

    position: relative;

    padding:
        145px 0
        130px;

    background: #ffffff;

    overflow: hidden;
}


.faq-container {

    width: min(
        1050px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================
   FAQ HEADER
========================================= */

.faq-header {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}


.faq-header h2 {

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            5.5vw,
            72px
        );

    line-height: 0.95;

    letter-spacing: -0.065em;

    font-weight: 800;

    color: #111111;
}


.faq-header h2 span {

    display: block;

    color: #8a8a8a;
}


.faq-header-content {

    padding-bottom: 4px;
}


.faq-header-content p {

    max-width: 350px;

    font-size: 13px;

    line-height: 1.7;

    color: #707070;
}


.faq-header-content > a {

    display: inline-flex;

    flex-direction: column;

    gap: 5px;

    margin-top: 20px;

    font-size: 10px;

    font-weight: 700;

    color: #111111;
}


.faq-header-content > a span {

    color: #78902f;

    transition:
        margin 0.3s ease;
}


.faq-header-content > a:hover span {

    margin-left: 5px;
}


/* =========================================
   FAQ LIST
========================================= */

.faq-list {

    border-top:
        1px solid
        #dededb;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {

    border-bottom:
        1px solid
        #dededb;
}


/* =========================================
   FAQ QUESTION
========================================= */

.faq-question {

    width: 100%;

    min-height: 86px;

    display: grid;

    grid-template-columns:
        55px
        1fr
        42px;

    align-items: center;

    gap: 20px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #111111;

    text-align: left;

    cursor: pointer;
}


.faq-number {

    font-size: 9px;

    font-weight: 800;

    color: #999999;
}


.faq-title {

    font-family:
        "Manrope",
        sans-serif;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -0.025em;
}


.faq-icon {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        #ddddda;

    border-radius: 50%;

    font-size: 18px;

    font-weight: 400;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}


/* =========================================
   FAQ ANSWER
========================================= */

.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.4s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.faq-answer-inner {

    overflow: hidden;
}


.faq-answer p {

    max-width: 700px;

    padding:
        0 60px
        0 75px;

    font-size: 13px;

    line-height: 1.8;

    color: #737373;

    opacity: 0;

    transform:
        translateY(-8px);

    transition:
        opacity 0.25s ease,
        transform 0.35s ease,
        padding 0.4s ease;
}


/* =========================================
   ACTIVE FAQ
========================================= */

.faq-item.active
.faq-answer {

    grid-template-rows: 1fr;
}


.faq-item.active
.faq-answer p {

    padding-bottom: 28px;

    opacity: 1;

    transform:
        translateY(0);
}


.faq-item.active
.faq-icon {

    transform:
        rotate(45deg);

    background: #c7f36b;

    border-color: #c7f36b;

    color: #111111;
}


/* =========================================
   HOVER
========================================= */

.faq-question:hover
.faq-title {

    color: #78902f;
}


.faq-question:hover
.faq-icon {

    border-color:
        rgba(120, 144, 47, 0.4);
}


/* =========================================
   BOTTOM CTA
========================================= */

.faq-bottom {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 28px;

    padding:
        17px 18px;

    border-radius: 10px;

    background: #f5f6f2;
}


.faq-bottom-icon {

    width: 35px;

    height: 35px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111111;

    color: #c7f36b;

    font-size: 14px;

    font-weight: 800;
}


.faq-bottom-content {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.faq-bottom-content strong {

    font-size: 11px;

    font-weight: 700;

    color: #111111;
}


.faq-bottom-content span {

    font-size: 9px;

    color: #888888;
}


.faq-bottom-button {

    margin-left: auto;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    min-height: 38px;

    padding:
        0 13px;

    border-radius: 7px;

    background: #111111;

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    transition:
        transform 0.3s ease;
}


.faq-bottom-button:hover {

    transform:
        translateY(-2px);
}


.faq-bottom-button span {

    color: #c7f36b;

    font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .faq-section {

        padding:
            110px 0;
    }


    .faq-header {

        grid-template-columns:
            1fr;

        gap: 25px;

        margin-bottom: 50px;
    }


    .faq-header-content > a {

        margin-top: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .faq-section {

        padding:
            85px 0;
    }


    .faq-container {

        width:
            calc(100% - 28px);
    }


    .faq-header h2 {

        font-size: 46px;
    }


    .faq-header-content p {

        font-size: 12px;
    }


    .faq-question {

        min-height: 75px;

        grid-template-columns:
            28px
            1fr
            34px;

        gap: 10px;
    }


    .faq-number {

        font-size: 8px;
    }


    .faq-title {

        font-size: 13px;

        line-height: 1.35;
    }


    .faq-icon {

        width: 29px;

        height: 29px;

        font-size: 15px;
    }


    .faq-answer p {

        padding:
            0 0 0 38px;

        font-size: 11px;

        line-height: 1.7;
    }


    .faq-item.active
    .faq-answer p {

        padding-bottom: 23px;
    }


    .faq-bottom {

        align-items: flex-start;

        flex-wrap: wrap;

        padding: 15px;
    }


    .faq-bottom-button {

        width: 100%;

        margin-left: 50px;

        justify-content: center;
    }

}
/* =========================================
   FOOTER
========================================= */

.site-footer {

    position: relative;

    background: #111111;

    color: #ffffff;

    overflow: hidden;
}


.footer-container {

    width: min(
        1240px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        0.9fr
        1fr;

    gap: 70px;

    padding:
        85px 0
        70px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {

    display: inline-flex;

    align-items: center;

    gap: 11px;
}


.footer-brand-mark {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #c7f36b;

    color: #111111;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 20px;

    font-weight: 800;
}


.footer-brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}


.footer-brand-text strong {

    font-family:
        "Manrope",
        sans-serif;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: -0.04em;
}


.footer-brand-text small {

    margin-top: 5px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.10em;

    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.42);
}


/* =========================================
   FOOTER DESCRIPTION
========================================= */

.footer-description {

    max-width: 310px;

    margin-top: 23px;

    font-size: 12px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.46);
}


/* =========================================
   LOCATION
========================================= */

.footer-location {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 23px;

    padding:
        8px 11px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 100px;

    font-size: 9px;

    font-weight: 600;

    color:
        rgba(255, 255, 255, 0.60);
}


.footer-location-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #c7f36b;

    box-shadow:
        0 0 0 4px
        rgba(199, 243, 107, 0.08);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column-title {

    display: block;

    margin-bottom: 22px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.17em;

    color:
        rgba(255, 255, 255, 0.34);
}


.footer-column ul {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-column li a {

    font-size: 11px;

    color:
        rgba(255, 255, 255, 0.58);

    transition:
        color 0.25s ease,
        padding 0.25s ease;
}


.footer-column li a:hover {

    padding-left: 4px;

    color: #c7f36b;
}


/* =========================================
   FOOTER CONTACT
========================================= */

.footer-contact {

    display: flex;

    flex-direction: column;
}


.footer-contact-item {

    display: flex;

    flex-direction: column;

    gap: 5px;

    margin-bottom: 16px;
}


.footer-contact-item > span {

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.14em;

    color:
        rgba(255, 255, 255, 0.28);
}


.footer-contact-item a {

    width: fit-content;

    font-size: 11px;

    color:
        rgba(255, 255, 255, 0.68);

    transition:
        color 0.25s ease;
}


.footer-contact-item a:hover {

    color: #c7f36b;
}


/* =========================================
   FOOTER CTA
========================================= */

.footer-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding:
        65px 0;
}


.footer-cta-content > span {

    display: block;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.18em;

    color:
        rgba(255, 255, 255, 0.34);
}


.footer-cta-content h2 {

    max-width: 620px;

    margin-top: 13px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            36px,
            4.5vw,
            60px
        );

    line-height: 0.96;

    letter-spacing: -0.06em;

    font-weight: 800;
}


.footer-cta-content h2 span {

    display: block;

    color: #c7f36b;
}


/* =========================================
   FOOTER CTA BUTTONS
========================================= */

.footer-cta-actions {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.footer-call-button {

    min-width: 150px;

    min-height: 52px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        0 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.04);

    color: #ffffff;

    transition:
        background 0.3s ease;
}


.footer-call-button:hover {

    background:
        rgba(255, 255, 255, 0.08);
}


.footer-call-button span {

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.35);
}


.footer-call-button strong {

    margin-top: 4px;

    font-size: 12px;

    font-weight: 700;
}


.footer-whatsapp-button {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding:
        0 18px;

    border-radius: 9px;

    background: #c7f36b;

    color: #111111;

    font-size: 10px;

    font-weight: 800;

    transition:
        transform 0.3s ease;
}


.footer-whatsapp-button:hover {

    transform:
        translateY(-3px);
}


.footer-whatsapp-button span {

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    font-size: 13px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {

    min-height: 72px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.09);
}


.footer-bottom p {

    font-size: 8px;

    color:
        rgba(255, 255, 255, 0.32);
}


.footer-legal {

    display: flex;

    align-items: center;

    gap: 20px;
}


.footer-legal a {

    font-size: 8px;

    color:
        rgba(255, 255, 255, 0.35);

    transition:
        color 0.25s ease;
}


.footer-legal a:hover {

    color: #c7f36b;
}


.footer-credit {

    text-align: right;

    font-size: 8px;

    color:
        rgba(255, 255, 255, 0.25);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .footer-main {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 45px;
    }


    .footer-contact {

        grid-column: span 1;
    }


    .footer-cta {

        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }


    .footer-bottom {

        grid-template-columns:
            1fr
            auto;
    }


    .footer-credit {

        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .footer-container {

        width:
            calc(100% - 28px);
    }


    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 45px 25px;

        padding:
            65px 0
            50px;
    }


    .footer-brand-column {

        grid-column:
            span 2;
    }


    .footer-description {

        max-width: 400px;

        font-size: 11px;
    }


    .footer-column-title {

        margin-bottom: 18px;
    }


    .footer-column ul {

        gap: 10px;
    }


    .footer-column li a {

        font-size: 10px;
    }


    .footer-contact {

        grid-column:
            span 2;
    }


    .footer-cta {

        padding:
            55px 0;
    }


    .footer-cta-content h2 {

        font-size: 40px;
    }


    .footer-cta-actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    .footer-call-button,
    .footer-whatsapp-button {

        width: 100%;
    }


    .footer-bottom {

        min-height: auto;

        grid-template-columns:
            1fr;

        gap: 14px;

        padding:
            22px 0;
    }


    .footer-legal {

        gap: 15px;
    }


    .footer-bottom p,
    .footer-legal a {

        font-size: 8px;
    }

}