:root {
    --gold: #d4af37;
    --gold-light: #f2d675;
    --black: #070707;
    --panel: #111111;
    --muted: #aaaaaa;
    --cream: #f6f2e8;
    --white: #ffffff;
    --whatsapp-green: #25d366;
    --max-width: 1180px;
}

/* =========================================================
   RESET AND GLOBAL STYLES
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #171717;
    background: var(--black);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min( var(--max-width), calc(100% - 40px) );
    margin-inline: auto;
}

/* =========================================================
   HEADER AND NAVIGATION
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(6, 6, 6, 0.86);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

    .brand img {
        display: block;
        width: 240px;
        height: 76px;
        object-fit: contain;
        object-position: left center;
    }

.nav-links {
    display: flex;
    gap: 25px;
    margin-left: auto;
}

    .nav-links a {
        color: #dddddd;
        font-size: 0.9rem;
        transition: color 0.2s ease;
    }

        .nav-links a:hover {
            color: var(--gold);
        }

.menu-toggle {
    display: none;
    padding: 4px;
    color: var(--white);
    font-size: 1.6rem;
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 23px;
    color: #080808;
    font-weight: 800;
    background: linear-gradient( 135deg, var(--gold-light), var(--gold) );
    border: 1px solid var(--gold);
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(212, 175, 55, 0.2);
    }

.btn-small {
    padding: 10px 16px;
    font-size: 0.85rem;
}

.btn-outline {
    color: var(--white);
    background: transparent;
}

.dark-btn {
    color: var(--white);
    background: #080808;
    border-color: #080808;
}

/* =========================================================
   SHARED SECTIONS
   ========================================================= */

.section {
    padding: 110px 0;
}

.section-dark {
    color: var(--white);
    background: #080808;
}

.section h2 {
    margin: 18px 0 22px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.1;
}

.section-copy p {
    color: #555555;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 50px;
}

    .section-heading p {
        color: var(--muted);
    }

.light-section {
    background: var(--cream);
}

.dark-heading {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dark {
    color: #8b6a00;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: #7b5c00;
    font-weight: 800;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 720px;
    padding-top: 145px;
    padding-bottom: 80px;
    overflow: hidden;
    background: radial-gradient( circle at 80% 15%, #2b230d 0, transparent 34% ), #080808;
}
    .hero .eyebrow {
        margin-top: 0;
        margin-bottom: 18px;
    }

.hero-glow {
    position: absolute;
    top: 160px;
    right: -180px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.08);
}

.hero-grid,
.split-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 25px;
    max-width: 700px;
}

    .hero h1 span {
        color: var(--gold);
    }

.hero p {
    max-width: 650px;
    color: #bbbbbb;
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 34px 0;
}

.trust-row {
    display: flex;
    gap: 22px;
    color: #bbbbbb;
    font-size: 0.84rem;
}

/* =========================================================
   HERO DASHBOARD
   ========================================================= */

.hero-visual {
    position: relative;
}

.dashboard-card {
    padding: 18px;
    background: linear-gradient( 145deg, #171717, #0b0b0b );
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    transform: perspective(900px) rotateY(-5deg);
    animation: dashboardEnter 0.9s ease-out;
}

@keyframes dashboardEnter {
    from {
        opacity: 0;
        transform: perspective(900px) rotateY(-5deg) translateY(35px);
    }

    to {
        opacity: 1;
        transform: perspective(900px) rotateY(-5deg) translateY(0);
    }
}

.dash-top {
    display: flex;
    gap: 7px;
    padding-bottom: 13px;
    border-bottom: 1px solid #2a2a2a;
}

    .dash-top span {
        width: 9px;
        height: 9px;
        background: #555555;
        border-radius: 50%;
    }

        .dash-top span:first-child {
            background: var(--gold);
        }

.dash-body {
    padding: 25px;
}

.metric small,
.mini-grid small {
    color: #888888;
}

.metric strong {
    display: block;
    color: var(--gold-light);
    font-size: 2.8rem;
}

.metric i {
    display: block;
    width: 72%;
    height: 5px;
    background: linear-gradient( 90deg, var(--gold), #46390f );
    border-radius: 5px;
}

.chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 190px;
    padding: 25px 0;
}

    .chart b {
        flex: 1;
        background: linear-gradient( var(--gold-light), #5e4c13 );
        border-radius: 6px 6px 0 0;
        transform-origin: bottom;
        animation: growBar 1.2s ease-out forwards;
    }

        .chart b:nth-child(1) {
            animation-delay: 0.1s;
        }

        .chart b:nth-child(2) {
            animation-delay: 0.2s;
        }

        .chart b:nth-child(3) {
            animation-delay: 0.3s;
        }

        .chart b:nth-child(4) {
            animation-delay: 0.4s;
        }

        .chart b:nth-child(5) {
            animation-delay: 0.5s;
        }

        .chart b:nth-child(6) {
            animation-delay: 0.6s;
        }

@keyframes growBar {
    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .mini-grid div {
        padding: 16px;
        background: #161616;
        border: 1px solid #282828;
        border-radius: 10px;
    }

    .mini-grid strong {
        display: block;
    }

/*
   The floating labels were causing the "flying buttons"
   shown in the screenshot. Keep them disabled.
*/

.floating-tag {
    display: none;
}

/* =========================================================
   STATISTICS
   ========================================================= */

.stats-bar {
    padding: 26px 0;
    background: var(--gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

    .stats-grid div {
        border-right: 1px solid rgba(0, 0, 0, 0.25);
    }

        .stats-grid div:last-child {
            border-right: 0;
        }

    .stats-grid strong,
    .stats-grid span {
        display: block;
    }

    .stats-grid strong {
        font-size: 1.2rem;
    }

    .stats-grid span {
        font-size: 0.8rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

/* =========================================================
   VALUES
   ========================================================= */

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    .values-grid article {
        padding: 25px;
        background: var(--white);
        border: 1px solid #e6ddc9;
    }

    .values-grid span {
        color: var(--gold);
        font-weight: 800;
    }

    .values-grid h3 {
        margin: 8px 0;
    }

    .values-grid p {
        color: #666666;
        font-size: 0.9rem;
    }

/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background: linear-gradient( 180deg, #090909, #101010 );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    padding: 32px;
    background: #141414;
    border: 1px solid #292929;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
    }

    .service-card.featured {
        background: linear-gradient( 145deg, #211b0b, #111111 );
        border-color: #6e5a1b;
    }

    .service-card .icon {
        color: var(--gold);
        font-size: 2rem;
    }

    .service-card p,
    .service-card li {
        color: var(--muted);
    }

    .service-card ul {
        padding-left: 18px;
    }

/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

    .process-grid article {
        padding-top: 20px;
        border-top: 2px solid var(--gold);
    }

    .process-grid b {
        color: var(--gold);
        font-size: 2.4rem;
    }

    .process-grid p {
        color: #666666;
    }

/* =========================================================
   SOLUTIONS SHOWCASE
   ========================================================= */

.showcase-section {
    color: var(--white);
    background: #101010;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 18px;
}

.solution-card {
    min-height: 240px;
    padding: 35px;
    background: radial-gradient( circle at 90% 10%, #392f10, transparent 38% ), #171717;
    border: 1px solid #333333;
}

    .solution-card.large {
        display: flex;
        flex-direction: column;
        grid-row: span 2;
        justify-content: flex-end;
        min-height: 500px;
    }

    .solution-card span {
        color: var(--gold);
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .solution-card h3 {
        margin: 10px 0;
        font-family: "Playfair Display", serif;
        font-size: 2.5rem;
    }

    .solution-card p {
        color: var(--muted);
    }

    .solution-card a {
        color: var(--gold);
        font-weight: 700;
    }

/* =========================================================
   CALL TO ACTION
   ========================================================= */

.cta-section {
    padding: 70px 0;
    background: var(--gold);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .cta-box h2 {
        max-width: 750px;
        margin: 8px 0;
        font-family: "Playfair Display", serif;
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    background: radial-gradient( circle at 20% 50%, #271f0a, transparent 38% ), #080808;
}

.contact-list {
    margin-top: 35px;
}

    .contact-list > a,
    .contact-list > div {
        display: flex;
        flex-direction: column;
        padding: 16px 0;
        border-bottom: 1px solid #292929;
    }

    .contact-list b {
        color: var(--gold);
        font-size: 0.8rem;
        text-transform: uppercase;
    }

.contact-form {
    padding: 35px;
    background: #151515;
    border: 1px solid #333333;
}

    .contact-form label {
        display: block;
        margin-bottom: 16px;
        color: #cccccc;
        font-size: 0.83rem;
    }

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 14px;
    color: var(--white);
    font: inherit;
    background: #0b0b0b;
    border: 1px solid #393939;
    border-radius: 4px;
}

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        outline: 1px solid var(--gold);
    }

.contact-form .btn {
    width: 100%;
}

.contact-form small {
    display: block;
    margin-top: 10px;
    color: #777777;
    text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 60px 0 20px;
    color: #999999;
    background: #030303;
    border-top: 1px solid #222222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-brand img {
    width: 230px;
    height: 80px;
    object-fit: contain;
    object-position: left center;
}

.footer-grid h4 {
    color: var(--white);
}

.footer-grid a {
    display: block;
    margin: 8px 0;
    font-size: 0.9rem;
}

    .footer-grid a:hover {
        color: var(--gold);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 20px;
    font-size: 0.8rem;
    border-top: 1px solid #222222;
}

/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--whatsapp-green);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .whatsapp:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 14px 38px rgba(37, 211, 102, 0.3);
    }

.whatsapp img {
    width: 30px;
    height: 30px;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links.open {
        position: absolute;
        top: 96px;
        left: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 25px 20px;
        background: #080808;
    }

    .hero-grid,
    .split-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 125px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        max-width: 650px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {
    .container {
        width: min( calc(100% - 28px), var(--max-width) );
    }

    .section {
        padding: 80px 0;
    }

    .nav-wrap {
        height: 82px;
    }

    .brand {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

        .brand img {
            display: block;
            width: 195px;
            height: auto;
            max-height: 72px;
            object-fit: contain;
            transform: none;
        }

    .nav-links.open {
        top: 82px;
    }

    .hero {
        padding-top: 110px;
    }

        .hero h1 {
            font-size: 3rem;
        }

    .hero-actions,
    .trust-row,
    .cta-box,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

        .stats-grid div:nth-child(2) {
            border-right: 0;
        }

    .services-grid,
    .process-grid,
    .showcase-grid,
    .values-grid,
    .footer-grid,
    .field-row {
        grid-template-columns: 1fr;
    }

    .solution-card.large {
        grid-row: auto;
        min-height: 350px;
    }

    .contact-form {
        padding: 22px;
    }

    .whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }
}
