:root {
    --bg: #090908;
    --bg2: #10100e;
    --panel: #151411;

    --cream: #f3eadb;
    --white: #fffaf2;

    --gold: #c99a52;
    --gold2: #efc77e;

    --red: #821f1a;

    --muted: #aaa196;
    --border: rgba(255,255,255,.10);

    --radius: 28px;

    --max: 1280px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--bg);

    color: var(--white);

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


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


button,
input,
select,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


img {
    display: block;
    max-width: 100%;
}


.container {
    width: min(92%, var(--max));

    margin-inline: auto;
}


section {
    padding: 115px 0;
}


/* =====================================================
   PROGRESS
===================================================== */

#progress {
    position: fixed;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    z-index: 5000;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold2),
            var(--red)
        );
}


/* =====================================================
   NAV
===================================================== */

.nav {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    transition: .3s ease;
}


.nav.scrolled {
    background:
        rgba(9,9,8,.88);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid var(--border);
}


.nav-inner {
    min-height: 96px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


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


.logo-img {
    height: 80px;
    width: auto;

    object-fit: contain;
}


.nav-links {
    display: flex;
    align-items: center;

    gap: 26px;
}


.nav-links a {
    color: #cec6bb;

    font-size: .86rem;

    transition: color .2s;
}


.nav-links a:hover,
.nav-links .active-link {
    color: var(--gold2);
}


.nav-order {
    padding: 12px 18px;

    border-radius: 999px;

    background: var(--cream);

    color: #17130f !important;

    font-weight: 800;
}


.menu-btn {
    display: none;

    width: 48px;
    height: 48px;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255,255,255,.03);

    color: white;
}


/* =====================================================
   TYPOGRAPHY
===================================================== */

.label,
.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--gold2);

    font-size: .7rem;
    font-weight: 850;

    letter-spacing: .2em;

    text-transform: uppercase;
}


.label {
    margin-bottom: 20px;
}


.label::before,
.eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    background: currentColor;
}


.title {
    font-size:
        clamp(
            2.8rem,
            6vw,
            5.8rem
        );

    line-height: .95;

    letter-spacing: -.06em;
}


.title em {
    color: var(--gold2);

    font-family: Georgia, serif;

    font-weight: 400;
    font-style: italic;
}


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

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;
}


.hero-bg {
    position: absolute;
    inset: 0;

    background:
        url("../images/hero3.webp")
        center / cover
        no-repeat;

    transform: scale(1.04);

    animation:
        heroMove
        12s ease-in-out infinite alternate;
}


@keyframes heroMove {
    to {
        transform: scale(1.09);
    }
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,4,.98) 0%,
            rgba(5,5,4,.89) 36%,
            rgba(5,5,4,.58) 68%,
            rgba(5,5,4,.28) 100%
        ),
        linear-gradient(
            0deg,
            var(--bg),
            transparent 50%
        );
}


.hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 80px;

    align-items: center;

    padding-top: 130px;
}


.hero-copy h1 {
    max-width: 850px;

    margin-top: 22px;

    font-size:
        clamp(
            4.2rem,
            9vw,
            8.7rem
        );

    line-height: .82;

    letter-spacing: -.075em;
}


.hero-copy h1 em {
    display: block;

    margin-top: 27px;

    color: var(--gold2);

    font-family: Georgia, serif;

    font-weight: 400;
    font-style: italic;
}


.hero-copy > p {
    max-width: 610px;

    margin-top: 36px;

    color: #c9c0b5;

    font-size: 1.1rem;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}


.btn {
    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 999px;

    border:
        1px solid transparent;

    font-weight: 800;

    transition:
        transform .2s,
        background .2s;
}


.btn:hover {
    transform: translateY(-3px);
}


.btn-gold {
    background: var(--gold2);

    color: #17130e;
}


.btn-outline {
    border-color:
        rgba(255,255,255,.25);

    background:
        rgba(255,255,255,.04);

    backdrop-filter:
        blur(10px);
}


.hero-card {
    padding: 35px;

    border-radius: var(--radius);

    border:
        1px solid
        rgba(239,199,126,.26);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.02)
        );

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 35px 80px
        rgba(0,0,0,.30);
}


.hero-card-label {
    color: var(--gold2);

    font-size: .65rem;
    font-weight: 850;

    letter-spacing: .17em;
}


.hero-card h2 {
    margin:
        8px 0 26px;

    font-size: 2rem;
}


.hero-card-points {
    display: grid;

    gap: 10px;
}


.hero-card-points > div {
    padding: 14px;

    display: grid;

    grid-template-columns:
        35px 1fr;

    gap: 12px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(0,0,0,.18);
}


.hero-card-points span {
    color: var(--gold2);

    font-family: Georgia, serif;
}


.hero-card-points p {
    color: #d2c9bd;
}


/* =====================================================
   SECTION HEAD
===================================================== */

.section-head {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;
}


.section-head > p {
    max-width: 450px;

    color: var(--muted);
}


/* =====================================================
   PARTNERS
===================================================== */

.partner-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}


.partner-card {
    position: relative;

    min-height: 390px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    transition:
        transform .3s,
        border-color .3s;
}


.partner-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(239,199,126,.38);
}


.partner-card.featured {
    background:
        linear-gradient(
            145deg,
            rgba(201,154,82,.13),
            rgba(130,31,26,.10)
        );

    border-color:
        rgba(239,199,126,.25);
}


.partner-number {
    position: absolute;

    right: 24px;
    top: 22px;

    color:
        rgba(255,255,255,.08);

    font-family: Georgia, serif;

    font-size: 3.5rem;
}


.partner-icon {
    margin-bottom: 45px;

    font-size: 2.5rem;
}


.partner-card h3 {
    font-size: 2rem;

    letter-spacing: -.04em;
}


.partner-card p {
    margin-top: 14px;

    color: var(--muted);

    line-height: 1.75;
}


.partner-card a {
    position: absolute;

    left: 30px;
    bottom: 28px;

    color: var(--gold2);

    font-size: .82rem;

    font-weight: 800;
}


/* =====================================================
   WHY
===================================================== */

.why-irgo {
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(130,31,26,.15),
            transparent 35%
        ),
        var(--bg2);
}


.why-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;
}


.why-copy p {
    max-width: 590px;

    margin-top: 25px;

    color: var(--muted);
}


.why-list {
    display: grid;
}


.why-item {
    padding: 24px 0;

    display: grid;

    grid-template-columns:
        70px 1fr;

    gap: 20px;

    border-bottom:
        1px solid var(--border);
}


.why-item > strong {
    color: var(--gold2);

    font-family: Georgia, serif;

    font-size: 1.35rem;

    font-weight: 400;
}


.why-item h3 {
    font-size: 1.2rem;
}


.why-item p {
    margin-top: 5px;

    color: var(--muted);
}


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

.process {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}


.process-step {
    padding: 26px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(255,255,255,.02);
}


.process-step > span {
    color: var(--gold2);

    font-family: Georgia, serif;

    font-size: 2rem;
}


.process-step h3 {
    margin:
        35px 0 10px;

    font-size: 1.15rem;
}


.process-step p {
    color: var(--muted);

    font-size: .86rem;
}


/* =====================================================
   FORM
===================================================== */

.form-section {
    background:
        linear-gradient(
            180deg,
            var(--bg2),
            var(--bg)
        );
}


.form-layout {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 70px;

    align-items: start;
}


.form-intro {
    position: sticky;

    top: 140px;
}


.form-intro > p {
    max-width: 500px;

    margin-top: 25px;

    color: var(--muted);
}


.lead-preview {
    margin-top: 35px;

    padding: 20px;

    display: grid;

    border:
        1px solid
        rgba(239,199,126,.22);

    border-radius: 16px;

    background:
        rgba(201,154,82,.07);
}


.lead-preview small {
    color: var(--gold2);

    letter-spacing: .15em;
}


.lead-preview strong {
    margin-top: 6px;
}


.lead-preview span {
    margin-top: 8px;

    color: #8ed6a5;

    font-size: .72rem;
}


.b2b-form {
    position: relative;

    padding: 32px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            #171613,
            #11100f
        );

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.24);
}


.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 17px;
}


.form-grid label,
.form-grid fieldset {
    display: grid;

    gap: 8px;

    color: #c8c1b7;

    font-size: .78rem;
}


.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background: #0e0e0d;

    color: white;

    outline: none;

    transition:
        border-color .2s,
        box-shadow .2s;
}


.form-grid input,
.form-grid select {
    min-height: 47px;

    padding: 0 13px;
}


.form-grid textarea {
    padding: 13px;

    resize: vertical;
}


.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color:
        rgba(239,199,126,.65);

    box-shadow:
        0 0 0 3px
        rgba(239,199,126,.07);
}


.full {
    grid-column: 1/-1;
}


fieldset {
    padding: 0;

    border: 0;
}


fieldset legend {
    margin-bottom: 10px;
}


.checkbox-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 9px;
}


.checkbox {
    min-height: 48px;

    padding: 0 13px;

    display: flex !important;

    align-items: center;

    gap: 10px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255,255,255,.02);
}


.checkbox input,
.privacy input {
    width: auto;
}


.privacy {
    display: flex !important;

    grid-template-columns: none !important;

    align-items: flex-start;

    gap: 10px !important;

    color: #8f887f !important;

    font-size: .7rem !important;
}


.form-actions {
    margin-top: 5px;
}


.submit-btn {
    width: 100%;

    min-height: 58px;

    padding: 0 22px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            90deg,
            var(--gold2),
            #c79446
        );

    color: #17120d;

    font-weight: 900;
}


.submit-btn b {
    font-size: 1.3rem;

    transition:
        transform .2s;
}


.submit-btn:hover b {
    transform: translateX(5px);
}


.form-success {
    display: none;

    min-height: 450px;

    align-content: center;

    justify-items: center;

    text-align: center;
}


.form-success.active {
    display: grid;
}


.form-success.active + * {
    display: none;
}


.success-icon {
    width: 80px;
    height: 80px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(98,196,134,.12);

    border:
        1px solid
        rgba(98,196,134,.35);

    color: #82daa1;

    font-size: 2rem;
}


.form-success h3 {
    margin-top: 20px;

    font-size: 2rem;
}


.form-success p {
    max-width: 450px;

    margin-top: 10px;

    color: var(--muted);
}


/* =====================================================
   FINAL
===================================================== */

.final-cta {
    padding: 150px 0;

    text-align: center;
}


.final-cta small {
    color: var(--gold2);

    letter-spacing: .18em;
}


.final-cta h2 {
    margin:
        12px auto 35px;

    max-width: 950px;

    font-size:
        clamp(
            3rem,
            7vw,
            6.5rem
        );

    line-height: .9;

    letter-spacing: -.065em;
}


.final-cta h2 em {
    display: block;

    margin-top: 15px;

    color: var(--gold2);

    font-family: Georgia, serif;

    font-weight: 400;
}


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

footer {
    padding: 55px 0;

    border-top:
        1px solid var(--border);

    background: #070706;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr .7fr .7fr;

    gap: 50px;
}


.footer-logo {
    width: 120px;
}


.footer-grid > div > p,
.footer-grid a {
    margin-top: 8px;

    display: block;

    color: #817a71;

    font-size: .82rem;
}


.footer-grid strong {
    color: var(--gold2);

    font-size: .72rem;

    letter-spacing: .14em;
}


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

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    filter:
        blur(5px);

    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.16,1,.3,1),
        filter .75s ease;
}


.reveal.visible {
    opacity: 1;

    transform: none;

    filter: none;
}


/* =====================================================
   TOAST
===================================================== */

.toast {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 6000;

    padding: 13px 17px;

    border:
        1px solid
        rgba(239,199,126,.35);

    border-radius: 10px;

    background: #171613;

    opacity: 0;

    transform:
        translateY(20px);

    transition: .25s;
}


.toast.show {
    opacity: 1;

    transform: none;
}


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

@media(max-width:950px) {

    .nav-links {
        position: fixed;

        inset: 0;

        padding: 50px;

        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        background:
            rgba(8,8,7,.98);

        transform:
            translateX(100%);

        transition: .3s;
    }


    .nav-links.open {
        transform: none;
    }


    .nav-links a {
        font-size: 1.5rem;
    }


    .menu-btn {
        display: block;

        position: relative;

        z-index: 1001;
    }


    .hero-grid,
    .why-grid,
    .form-layout {
        grid-template-columns: 1fr;
    }


    .hero-card {
        max-width: 600px;
    }


    .section-head {
        align-items: flex-start;

        flex-direction: column;
    }


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


    .process {
        grid-template-columns:
            repeat(2,1fr);
    }


    .form-intro {
        position: static;
    }

}


@media(max-width:650px) {

    section {
        padding: 80px 0;
    }


    .hero-grid {
        padding-top: 140px;
        padding-bottom: 80px;
    }


    .hero-copy h1 {
        font-size:
            clamp(
                4rem,
                18vw,
                6rem
            );
    }


    .hero-card {
        padding: 24px;
    }


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


    .form-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }


    .full {
        grid-column: auto;
    }


    .b2b-form {
        padding: 22px;
    }


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

}