:root {
    --green: #063f38;
    --green-dark: #022d29;
    --green-light: #0a5a4f;
    --gold: #d99a16;
    --gold-dark: #b97800;
    --gold-light: #f0b632;
    --white: #ffffff;
    --cream: #faf8f2;
    --dark: #12201e;
    --gray: #66716e;
    --border: #e4ebe8;
    --shadow: 0 20px 60px rgba(3, 48, 43, .12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 105px 0;
}


/* =========================================================
   LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.loader-logo strong {
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    letter-spacing: 2px;
}

.loader-mark {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 55px;
}

.loader-mark span {
    width: 9px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
}

.loader-mark span:nth-child(1) {
    height: 31px;
}

.loader-mark span:nth-child(2) {
    height: 53px;
}

.loader-mark span:nth-child(3) {
    height: 42px;
}

.loader-line {
    width: 180px;
    height: 2px;
    margin-top: 25px;
    overflow: hidden;
    background: rgba(255,255,255,.15);
}

.loader-line::after {
    content: "";
    display: block;
    width: 45%;
    height: 100%;
    background: var(--gold);
    animation: loader 1.2s infinite;
}

@keyframes loader {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(350%);
    }
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    height: 40px;
    background: var(--green-dark);
    color: rgba(255,255,255,.9);
    font-size: 11px;
}

.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar-left a {
    display: flex;
    gap: 7px;
    align-items: center;
    transition: color .25s ease;
}

.topbar-left a:hover {
    color: var(--gold-light);
}

.topbar-left span {
    color: var(--gold-light);
}

.topbar-message {
    font-weight: 600;
    letter-spacing: .4px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    height: 88px;
    background: rgba(255,255,255,.97);
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
    transition: box-shadow .3s ease;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-symbol {
    height: 55px;
    width: 43px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    position: relative;
}

.brand-symbol span {
    display: block;
    width: 8px;
    background: linear-gradient(to top, var(--gold-dark), var(--gold-light));
    border-radius: 2px 2px 0 0;
}

.brand-symbol span:nth-child(1) {
    height: 32px;
}

.brand-symbol span:nth-child(2) {
    height: 53px;
}

.brand-symbol span:nth-child(3) {
    height: 43px;
}

.brand-symbol i {
    position: absolute;
    width: 32px;
    height: 5px;
    left: 5px;
    bottom: -1px;
    background: var(--green);
    border-radius: 10px;
}

.brand-name strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    color: var(--green);
    font-size: 29px;
    line-height: .9;
    letter-spacing: 1px;
}

.brand-name small {
    display: block;
    color: #42504d;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .6px;
    margin-top: 6px;
}

.brand-name em {
    display: block;
    color: var(--gold-dark);
    font-style: normal;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 4px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 29px;
}

.nav-link {
    position: relative;
    color: #273633;
    font-size: 13px;
    font-weight: 700;
    padding: 34px 0;
    transition: color .25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 23px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-quote {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 9px;
    color: white;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 9px 20px rgba(217,154,22,.2);
    transition: transform .3s ease, box-shadow .3s ease;
}

.nav-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(217,154,22,.3);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--green);
    transition: .3s ease;
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
    transform: scale(1.03);
    animation: heroZoom 15s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2,38,34,.96) 0%,
            rgba(3,54,48,.87) 37%,
            rgba(3,54,48,.44) 67%,
            rgba(3,54,48,.18) 100%
        );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(135deg, transparent 24%, rgba(255,255,255,.4) 25%, transparent 26%),
        linear-gradient(45deg, transparent 24%, rgba(255,255,255,.4) 25%, transparent 26%);
    background-size: 60px 60px;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    padding: 90px 0 130px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 22px;
}

.eyebrow-line {
    width: 35px;
    height: 2px;
    background: var(--gold-light);
}

.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-content > p {
    max-width: 650px;
    color: rgba(255,255,255,.86);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    margin-bottom: 45px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    transition: all .3s ease;
}

.btn span {
    font-size: 17px;
}

.btn-gold {
    color: white;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: 0 12px 30px rgba(217,154,22,.25);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(217,154,22,.35);
}

.btn-glass {
    color: white;
    border: 1px solid rgba(255,255,255,.6);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    color: var(--green);
    background: white;
    border-color: white;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-mini {
    display: flex;
    align-items: center;
    gap: 9px;
}

.trust-mini-icon {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    border: 1px solid rgba(240,182,50,.55);
    font-size: 13px;
}

.trust-mini strong,
.trust-mini small {
    display: block;
}

.trust-mini strong {
    font-size: 11px;
}

.trust-mini small {
    color: rgba(255,255,255,.55);
    font-size: 10px;
    margin-top: 2px;
}

.trust-divider {
    height: 28px;
    width: 1px;
    background: rgba(255,255,255,.2);
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 95px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    min-width: 310px;
    background: rgba(2,45,40,.82);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 13px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
    animation: floatingCard 5s ease-in-out infinite;
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.floating-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(217,154,22,.17);
    font-size: 23px;
}

.hero-floating-card strong,
.hero-floating-card span {
    display: block;
}

.hero-floating-card strong {
    font-size: 13px;
}

.hero-floating-card span {
    margin-top: 4px;
    color: rgba(255,255,255,.58);
    font-size: 10px;
}

.hero-scroll {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.hero-scroll span {
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.55);
}

.scroll-line {
    width: 45px;
    height: 1px;
    background: var(--gold);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.section-label::before {
    content: "";
    width: 29px;
    height: 2px;
    background: var(--gold);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 50px;
}

.section-heading h2,
.center-heading h2 {
    font-family: "Montserrat", sans-serif;
    color: var(--green);
    font-size: clamp(34px, 4vw, 51px);
    line-height: 1.08;
}

.section-heading > p {
    max-width: 510px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 14px;
}

.center-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.center-heading .section-label {
    justify-content: center;
}

.center-heading h2 span {
    color: var(--gold-dark);
}

.center-heading p {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--gray);
    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
    transition: transform .45s ease, box-shadow .45s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-image {
    height: 195px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.09);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,.48));
}

.service-number {
    position: absolute;
    top: 17px;
    right: 18px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.service-icon {
    position: absolute;
    top: 164px;
    left: 22px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    font-size: 23px;
    z-index: 3;
    box-shadow: 0 7px 20px rgba(0,0,0,.16);
}

.service-content {
    padding: 42px 22px 26px;
}

.service-content h3 {
    color: var(--green);
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 11px;
}

.service-content p {
    min-height: 79px;
    color: var(--gray);
    font-size: 12.5px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
}

.service-link span {
    transition: transform .25s ease;
}

.service-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: var(--green);
    color: white;
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    min-height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(255,255,255,.17);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-icon {
    color: var(--gold-light);
    font-size: 26px;
}

.stat-text strong,
.stat-text > span {
    display: block;
}

.stat-text strong {
    font-family: "Montserrat", sans-serif;
    font-size: 23px;
}

.stat-text > span {
    margin-top: 3px;
    color: rgba(255,255,255,.65);
    font-size: 10px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 500px;
}

.about-main-photo {
    width: 83%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-main-photo img,
.about-small-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-small-photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 205px;
    padding: 7px;
    background: white;
    border-radius: 17px;
    box-shadow: var(--shadow);
}

.about-experience {
    position: absolute;
    left: 22px;
    bottom: 32px;
    padding: 15px 20px;
    border-radius: 9px;
    color: white;
    background: var(--gold);
    box-shadow: 0 12px 30px rgba(217,154,22,.3);
}

.about-experience strong,
.about-experience span {
    display: block;
}

.about-experience strong {
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
}

.about-experience span {
    margin-top: 3px;
    font-size: 9px;
    font-weight: 600;
}

.about-content h2 {
    color: var(--green);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.08;
    margin-bottom: 22px;
}

.about-content h2 span {
    color: var(--gold-dark);
}

.about-content > p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
    margin: 30px 0 34px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: var(--gold);
    font-size: 11px;
}

.about-feature strong,
.about-feature span {
    display: block;
}

.about-feature strong {
    color: var(--green);
    font-size: 12px;
}

.about-feature span {
    color: var(--gray);
    font-size: 10px;
    line-height: 1.5;
    margin-top: 4px;
}


/* =========================================================
   WHY
========================================================= */

.why-section {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    padding: 30px 25px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: .4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(217,154,22,.4);
}

.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.why-card-top > span {
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.why-card-top > div {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fbf3df;
    font-size: 21px;
}

.why-card h3 {
    color: var(--green);
    font-size: 17px;
    margin-bottom: 11px;
}

.why-card p {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   LARGE CTA
========================================================= */

.large-cta {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.large-cta-background {
    position: absolute;
    inset: 0;
    background:
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.large-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,43,38,.95), rgba(3,55,49,.72));
}

.large-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.section-label.light {
    color: var(--gold-light);
}

.large-cta h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.05;
}

.large-cta h2 span {
    color: var(--gold-light);
}

.large-cta p {
    max-width: 570px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    font-size: 13px;
    margin-top: 14px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-information h2 {
    color: var(--green);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(35px, 4vw, 51px);
    line-height: 1.08;
    margin-bottom: 20px;
}

.contact-information h2 span {
    color: var(--gold-dark);
}

.contact-information > p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 14px;
    max-width: 520px;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 11px;
    transition: .3s ease;
}

.contact-detail:hover {
    transform: translateX(5px);
    border-color: rgba(217,154,22,.5);
}

.contact-detail-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbf3df;
    color: var(--gold-dark);
    border-radius: 9px;
}

.contact-detail small,
.contact-detail strong {
    display: block;
}

.contact-detail small {
    color: var(--gray);
    font-size: 9px;
    margin-bottom: 3px;
}

.contact-detail strong {
    color: var(--green);
    font-size: 12px;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 15px 18px;
    border-left: 3px solid var(--gold);
    background: var(--cream);
}

.contact-note > span {
    font-size: 25px;
}

.contact-note strong {
    display: block;
    color: var(--green);
    font-size: 11px;
}

.contact-note p {
    color: var(--gray);
    font-size: 9px;
    margin-top: 3px;
}

.contact-form-wrapper {
    padding: 38px;
    background: var(--cream);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(3,48,43,.07);
}

.contact-form-heading > span {
    color: var(--gold-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-form-heading h3 {
    color: var(--green);
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    margin-top: 6px;
    margin-bottom: 25px;
}

.contact-form {
    display: grid;
    gap: 17px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field label {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid #dce4e1;
    outline: none;
    background: white;
    color: var(--dark);
    border-radius: 7px;
    padding: 13px 14px;
    font-size: 12px;
    transition: .25s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(217,154,22,.1);
}

.form-field textarea {
    min-height: 125px;
    resize: vertical;
}

.form-button {
    border: 0;
    width: max-content;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    color: white;
    background: var(--green-dark);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 70px 0 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-symbol {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 43px;
}

.footer-symbol span {
    display: block;
    width: 7px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
}

.footer-symbol span:nth-child(1) {
    height: 25px;
}

.footer-symbol span:nth-child(2) {
    height: 42px;
}

.footer-symbol span:nth-child(3) {
    height: 34px;
}

.footer-brand strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
}

.footer-brand small {
    display: block;
    font-size: 7px;
    letter-spacing: .7px;
    color: rgba(255,255,255,.55);
    margin-top: 5px;
}

.footer-company > p {
    max-width: 320px;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    font-size: 11px;
    margin-top: 20px;
}

.footer-tagline {
    color: var(--gold-light);
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-top: 17px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column > div {
    color: rgba(255,255,255,.55);
    font-size: 11px;
    transition: .25s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-contact a,
.footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact span {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom-inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,.4);
    font-size: 9px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {
    position: fixed;
    right: 23px;
    bottom: 23px;
    z-index: 2500;
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #20c76a;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
    transition: .3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-icon {
    font-size: 23px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
    background: var(--green-dark);
    font-size: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: .25s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .8s ease,
        transform .8s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .navigation {
        gap: 18px;
    }

    .nav-link {
        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        gap: 45px;
    }

}


@media (max-width: 820px) {

    .topbar-message {
        display: none;
    }

    .topbar-left {
        width: 100%;
        justify-content: center;
    }

    .navigation {
        position: fixed;
        left: 0;
        right: 0;
        top: 128px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 25px 25px;
        background: white;
        box-shadow: 0 20px 35px rgba(0,0,0,.13);
    }

    .navigation.open {
        display: flex;
    }

    .nav-link {
        padding: 15px 5px;
        border-bottom: 1px solid #edf0ef;
    }

    .nav-link::after {
        display: none;
    }

    .nav-quote {
        margin-top: 12px;
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: 700px;
    }

    .hero-floating-card {
        right: 20px;
        bottom: 45px;
    }

    .hero-scroll {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 65px;
    }

    .contact-grid {
        gap: 50px;
    }

    .large-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .topbar {
        height: 36px;
    }

    .topbar-left {
        gap: 12px;
        font-size: 9px;
    }

    .topbar-left a:nth-child(2) {
        display: none;
    }

    .navbar {
        height: 76px;
    }

    .navigation {
        top: 112px;
    }

    .brand-name strong {
        font-size: 24px;
    }

    .brand-name small {
        font-size: 7px;
    }

    .brand-name em {
        font-size: 5.5px;
    }

    .brand-symbol {
        transform: scale(.88);
        transform-origin: left center;
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: 720px;
    }

    .hero-background {
        background-position: 63% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2,38,34,.94),
                rgba(3,54,48,.62)
            );
    }

    .hero-content {
        padding: 75px 0 190px;
    }

    .hero-eyebrow {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 270px;
    }

    .hero-trust {
        gap: 10px;
    }

    .trust-divider {
        height: 23px;
    }

    .trust-mini strong {
        font-size: 9px;
    }

    .trust-mini small {
        font-size: 8px;
    }

    .hero-floating-card {
        left: 14px;
        right: 14px;
        bottom: 28px;
        min-width: 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 35px;
    }

    .section-heading > p {
        margin-top: 17px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 220px;
    }

    .service-icon {
        top: 188px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 16px 5px;
    }

    .stat-text strong {
        font-size: 19px;
    }

    .about-visual {
        min-height: 390px;
    }

    .about-main-photo {
        height: 350px;
        width: 90%;
    }

    .about-small-photo {
        height: 160px;
        width: 47%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .large-cta {
        min-height: 470px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px 18px;
    }

    .form-button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 55px 0 40px;
    }

    .footer-bottom-inner {
        min-height: 80px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        text-align: center;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}