:root {

    --gold: #d09d4e;
    --gold-light: #ecdf77;

    --navy: #102230;

    --purple-grey: #595b72;

    --charcoal: #3e3f4f;

    --white: #ffffff;

    --light: #f7f5ef;

    --gradient:
        linear-gradient(
            135deg,
            #d09d4e 0%,
            #ecdf77 50%,
            #d09d4e 100%
        );

    --dark-gradient:
        linear-gradient(
            135deg,
            #102230 0%,
            #3e3f4f 100%
        );

    --shadow:
        0 20px 60px rgba(16,34,48,.12);

}


/* RESET */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        Inter,
        Segoe UI,
        Arial,
        sans-serif;

    color: var(--navy);

    background: var(--light);

    line-height: 1.7;

}


a {
    text-decoration: none;
    color: inherit;
}


.container {

    width: min(1140px, 92%);

    margin: auto;

}


/* HEADER */

.site-header {

    position: sticky;

    top: 0;

    z-index: 100;

    background:
        rgba(247,245,239,.90);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(16,34,48,.08);

}


.nav {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1px;

}


.brand img {

    width: 100px;

    height: 100px;

}


.brand b {

    color: var(--gold);

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 14px;

    font-weight: 600;

}


.nav-links a {

    position: relative;

    padding: 8px 0;

}


.nav-links a:not(.nav-cta)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: .3s;

}


.nav-links a:hover::after,
.nav-links a.active:not(.nav-cta)::after {

    width: 100%;

}


.nav-cta {

    background: var(--dark-gradient);

    color: white !important;

    padding: 11px 19px !important;

    border-radius: 30px;

    box-shadow:
        0 8px 20px
        rgba(16,34,48,.18);

}


.menu-toggle {

    display: none;

    border: 0;

    background: transparent;

    font-size: 27px;

    cursor: pointer;

    color: var(--navy);

}


/* HERO */

.hero {

    min-height: 680px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 85% 30%,
            rgba(236,223,119,.3),
            transparent 28%
        ),

        linear-gradient(
            135deg,
            #fbfaf6,
            #eee9dd
        );

}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.25fr .75fr;

    gap: 80px;

    align-items: center;

}


.eyebrow {

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 800;

    color: var(--gold);

    display: inline-block;

}


.hero h1,
.page-hero h1 {

    font-size:
        clamp(48px,6vw,78px);

    line-height: 1.04;

    letter-spacing: -3px;

    margin: 18px 0;

}


.hero h1 span,
.page-hero h1 span,
h2 span {

    background: var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


.hero p {

    font-size: 18px;

    max-width: 650px;

    color: var(--purple-grey);

}


.hero-actions {

    display: flex;

    gap: 14px;

    margin: 30px 0;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 14px 22px;

    border-radius: 8px;

    font-weight: 800;

    border: 1px solid transparent;

    transition: .3s;

}


.btn-primary {

    background: var(--gradient);

    color: var(--navy);

    box-shadow:
        0 12px 30px
        rgba(208,157,78,.25);

}


.btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 35px
        rgba(208,157,78,.35);

}


.btn-ghost {

    border-color:
        rgba(16,34,48,.18);

}


.btn-ghost:hover {

    background: white;

    transform:
        translateY(-3px);

}


.trust-row {

    display: flex;

    gap: 22px;

    color: var(--purple-grey);

    font-size: 13px;

    font-weight: 700;

}


/* HERO CARD */

.hero-card {

    min-height: 390px;

    border-radius: 28px;

    background: var(--dark-gradient);

    color: white;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    position: relative;

    overflow: hidden;

    box-shadow: var(--shadow);

    transform: rotate(2deg);

}


.hero-card::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    right: -70px;

    top: -70px;

    background: var(--gradient);

    opacity: .35;

}


.card-glow {

    position: absolute;

    inset: 25px;

    border:
        1px solid
        rgba(236,223,119,.25);

    border-radius: 22px;

}


.monogram {

    font-size: 100px;

    font-weight: 900;

    letter-spacing: -8px;

    background: var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    z-index: 1;

}


.hero-card p,
.hero-card strong,
.hero-card small {

    z-index: 1;

}


.hero-card strong {

    font-size: 25px;

    line-height: 1.25;

}


.mini-line {

    width: 60px;

    height: 3px;

    background: var(--gradient);

    margin: 25px 0 10px;

}


/* ORBS */

.hero-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.orb-one {

    width: 260px;

    height: 260px;

    right: 30%;

    top: -100px;

    background:
        rgba(208,157,78,.08);

}


.orb-two {

    width: 160px;

    height: 160px;

    left: -70px;

    bottom: 50px;

    background:
        rgba(236,223,119,.12);

}


/* STATS */

.stats {

    background: white;

    border-bottom:
        1px solid #e8e5dc;

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

}


.stat {

    padding: 28px 20px;

    border-right:
        1px solid #e8e5dc;

    display: flex;

    flex-direction: column;

}


.stat strong {

    font-size: 28px;

    color: var(--gold);

}


.stat span {

    font-size: 13px;

    color: var(--purple-grey);

    font-weight: 700;

}


/* SECTIONS */

.section {

    padding: 110px 0;

}


.two-col {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

}


.section-heading h2,
.dark-section h2 {

    font-size:
        clamp(38px,4vw,55px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin: 15px 0;

}


.lead {

    font-size: 20px;

    color: var(--charcoal);

}


.text-link {

    display: inline-block;

    color: var(--gold);

    font-weight: 800;

    margin-top: 12px;

}


/* DARK */

.dark-section {

    background: var(--dark-gradient);

    color: white;

}


.center {

    text-align: center;

}


/* CARDS */

.cards {

    display: grid;

    gap: 22px;

}


.three {

    grid-template-columns:
        repeat(3,1fr);

}


.service-card,
.info-card,
.solution-card {

    background: white;

    border:
        1px solid
        rgba(16,34,48,.08);

    padding: 35px;

    border-radius: 18px;

    box-shadow:
        0 12px 35px
        rgba(16,34,48,.06);

    transition: .35s;

}


.dark-section .service-card {

    background:
        rgba(255,255,255,.055);

    border-color:
        rgba(255,255,255,.1);

    box-shadow: none;

}


.service-card:hover,
.info-card:hover,
.solution-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(208,157,78,.5);

}


.icon,
.solution-icon {

    font-size: 35px;

    color: var(--gold);

}


.service-card h3,
.info-card h3 {

    font-size: 23px;

}


.service-card p,
.info-card p,
.solution-card p {

    color: var(--purple-grey);

}


.dark-section .service-card p {

    color: #c8cbd2;

}


.service-card a {

    color: var(--gold);

    font-weight: 800;

}


/* CTA */

.cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 55px;

    border-radius: 24px;

    background: var(--dark-gradient);

    color: white;

    box-shadow: var(--shadow);

}


.cta h2 {

    font-size: 38px;

    margin: 8px 0;

}


.cta p {

    color: #d3d5da;

}


/* PAGE HERO */

.page-hero {

    padding: 130px 0 110px;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(236,223,119,.25),
            transparent 30%
        ),

        var(--dark-gradient);

    color: white;

}


.page-hero p {

    max-width: 650px;

    font-size: 18px;

    color: #d4d6da;

}


/* SERVICES */

.service-list {

    max-width: 950px;

}


.service-row {

    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 35px;

    padding: 55px 0;

    border-bottom:
        1px solid #ddd9ce;

}


.service-num {

    color: var(--gold);

    font-weight: 900;

    font-size: 20px;

}


.service-row h2 {

    font-size: 32px;

    margin: 0 0 12px;

}


.service-row p {

    color: var(--purple-grey);

    font-size: 17px;

}


.service-row ul {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    padding: 0;

    list-style: none;

    color: var(--charcoal);

    font-weight: 700;

    font-size: 14px;

}


.service-row li::before {

    content: "✓";

    color: var(--gold);

    margin-right: 8px;

}


/* ABOUT */

.soft {

    background: #eeece5;

}


.number {

    color: var(--gold);

    font-weight: 900;

    font-size: 20px;

}


.highlight {

    display: flex;

    gap: 40px;

    align-items: center;

    background: white;

    border-radius: 24px;

    padding: 50px;

    box-shadow: var(--shadow);

}


.highlight-mark {

    min-width: 120px;

    height: 120px;

    border-radius: 25px;

    display: grid;

    place-items: center;

    background: var(--gradient);

    font-size: 42px;

    font-weight: 900;

}


/* SOLUTIONS */

.solution-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 24px;

}


.solution-card {

    min-height: 280px;

    position: relative;

}


.solution-card h2 {

    font-size: 29px;

}


.solution-card > span {

    position: absolute;

    right: 25px;

    bottom: 20px;

    font-size: 50px;

    font-weight: 900;

    color:
        rgba(208,157,78,.15);

}


/* CONTACT */

.contact-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 70px;

}


.contact-details h2 {

    font-size: 42px;

    margin:
        12px 0 30px;

}


.contact-item {

    display: flex;

    flex-direction: column;

    padding: 18px 0;

    border-bottom:
        1px solid #ddd9ce;

}


.contact-item b {

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--gold);

}


.contact-item a {

    font-weight: 700;

}


.contact-form {

    background: white;

    padding: 40px;

    border-radius: 20px;

    box-shadow: var(--shadow);

}


.contact-form h2 {

    font-size: 32px;

    margin-top: 0;

}


.contact-form label {

    display: block;

    font-size: 13px;

    font-weight: 800;

    margin: 18px 0;

}


.contact-form input,
.contact-form textarea {

    display: block;

    width: 100%;

    margin-top: 7px;

    padding: 14px;

    border:
        1px solid #ddd9ce;

    border-radius: 8px;

    font: inherit;

    background: #faf9f5;

    outline: none;

}


.contact-form input:focus,
.contact-form textarea:focus {

    border-color: var(--gold);

}


.contact-form button {

    cursor: pointer;

}


.form-note {

    font-size: 13px;

    color: var(--purple-grey);

}


/* FOOTER */

.footer {

    background: #0c1a24;

    color: #d7d9dc;

    padding-top: 75px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1.3fr 1.2fr;

    gap: 45px;

    padding-bottom: 55px;

}


.footer .brand {

    color: white;

}


.footer p {

    color: #9da5ad;

    font-size: 14px;

}


.footer h4 {

    color: white;

    margin-top: 0;

}


.footer-grid > div:not(:first-child) a {

    display: block;

    margin: 8px 0;

    color: #c7cbd0;

    font-size: 14px;

}


.footer-grid a:hover {

    color: var(--gold);

}


.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.1);

    padding: 20px 0;

    font-size: 12px;

    color: #8f969e;

}


.footer-bottom .container {

    display: flex;

    justify-content: space-between;

}


/* ANIMATIONS */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.reveal.visible {

    opacity: 1;

    transform: none;

}


.delay-1 {

    transition-delay: .12s;

}


.delay-2 {

    transition-delay: .24s;

}


/* RESPONSIVE */

@media(max-width:850px) {

    .menu-toggle {

        display: block;

    }


    .nav-links {

        display: none;

        position: absolute;

        top: 82px;

        left: 0;

        right: 0;

        background: white;

        padding: 20px 6%;

        flex-direction: column;

        align-items: stretch;

        gap: 8px;

        box-shadow:
            0 20px 30px
            rgba(0,0,0,.08);

    }


    .nav-links.open {

        display: flex;

    }


    .hero {

        min-height: auto;

        padding: 80px 0;

    }


    .hero-grid,
    .two-col,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .hero-card {

        max-width: 520px;

        width: 100%;

        margin: auto;

    }


    .stats-grid {

        grid-template-columns: 1fr 1fr;

    }


    .three,
    .solution-grid {

        grid-template-columns: 1fr;

    }


    .section {

        padding: 80px 0;

    }


    .cta {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }


    .footer-bottom .container {

        flex-direction: column;

        gap: 5px;

    }


    .page-hero {

        padding: 90px 0;

    }


    .service-row {

        grid-template-columns: 1fr;

        gap: 10px;

    }


    .highlight {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media(max-width:520px) {

    .hero h1,
    .page-hero h1 {

        font-size: 44px;

        letter-spacing: -2px;

    }


    .hero-actions {

        flex-direction: column;

    }


    .trust-row {

        flex-direction: column;

        gap: 5px;

    }


    .stats-grid,
    .footer-grid {

        grid-template-columns: 1fr;

    }


    .stat {

        border-right: 0;

        border-bottom:
            1px solid #e8e5dc;

    }


    .contact-form {

        padding: 25px;

    }


    .highlight {

        padding: 30px;

    }


    .hero-card {

        min-height: 330px;

    }

}