:root {
    --navy: #0f172a;
    --navy-soft: #1e293b;
    --slate: #475569;
    --muted: #64748b;
    --paper: #ffffff;
    --surface: #f8fafc;
    --line: rgba(15, 23, 42, 0.1);
    --gold: #f59e0b;
    --orange: #fb923c;
    --gold-soft: #fff7ed;
    --blue-soft: #e0f2fe;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    --radius: 8px;
    --font-body: "Inter", "Segoe UI", Arial, sans-serif;
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--navy);
    background: var(--paper);
    font-family: var(--font-body);
    line-height: 1.65;
}

a {
    color: var(--navy);
}

a:hover {
    color: #0b1223;
    text-decoration: none;
}

.container {
    max-width: 1160px;
}

.navbar {
    padding: 0.95rem 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.navbar-brand {
    padding: 0;
}

.brand-logo {
    display: block;
    width: 214px;
    max-width: 62vw;
    height: auto;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--navy-soft);
    font-size: 0.92rem;
    font-weight: 700;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--gold);
}

.nav-cta {
    margin-left: 0.4rem;
    color: var(--navy) !important;
    background: var(--gold);
    border-radius: var(--radius);
}

.nav-cta:hover,
.nav-cta:focus {
    color: var(--navy) !important;
    background: #fbbf24;
}

.hero {
    position: relative;
    min-height: 92vh;
    padding: 9.25rem 0 5.5rem;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.9) 48%, rgba(124, 45, 18, 0.58) 100%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.28), transparent 34%),
        linear-gradient(120deg, #0f172a, #111827);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-size: clamp(2.55rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.02;
}

.hero-lead {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.16rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.btn {
    border-radius: var(--radius);
    font-weight: 800;
    letter-spacing: 0;
}

.btn-primary-custom {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.28);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    color: var(--navy);
    background: #fbbf24;
    border-color: #fbbf24;
}

.btn-outline-custom {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.48);
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
    color: var(--navy);
    background: #ffffff;
    border-color: #ffffff;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    margin: 1.6rem 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    list-style: none;
    font-weight: 700;
}

.hero-proof i {
    color: var(--gold);
}

.hero-panel {
    width: min(100%, 430px);
    margin-left: auto;
    padding: 1.15rem;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.panel-label {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.panel-top strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.25rem 0.65rem;
    color: #713f12;
    background: #fef3c7;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.channel-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.channel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.channel-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--slate);
    font-weight: 700;
}

.channel-row i {
    color: var(--gold);
}

.channel-row strong {
    color: var(--navy);
    font-size: 0.82rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.metric {
    min-height: 104px;
    padding: 1rem;
    background: linear-gradient(180deg, #ffffff, var(--gold-soft));
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: var(--radius);
}

.metric strong {
    display: block;
    color: var(--navy);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 0.45rem;
    color: var(--slate);
    font-size: 0.84rem;
    font-weight: 700;
}

section {
    padding: 5.5rem 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 3rem;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 1rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
}

.section-copy {
    max-width: 720px;
    margin: 0 auto;
    color: var(--slate);
    font-size: 1.05rem;
}

.services {
    background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 430px;
    padding: 1.35rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.42);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.13);
}

.featured-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 1.15rem;
    color: #ffffff;
    background: #2563eb;
    border-radius: var(--radius);
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.22);
}

.icon-box.warm {
    color: var(--navy);
    background: var(--gold);
    box-shadow: 0 14px 26px rgba(245, 158, 11, 0.24);
}

.icon-box.dark {
    background: var(--navy);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.22);
}

.icon-box.gold {
    color: var(--navy);
    background: var(--orange);
    box-shadow: 0 14px 26px rgba(251, 146, 60, 0.24);
}

.service-card h3,
.why-item h3,
.step h3 {
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
}

.service-card p {
    color: var(--slate);
}

.service-list {
    display: grid;
    gap: 0.58rem;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--slate);
    font-size: 0.93rem;
    font-weight: 650;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.service-list li::before {
    position: absolute;
    top: 0.42rem;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    content: "";
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.marketplaces {
    background: #ffffff;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.market-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 168px;
    padding: 1.15rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.market-card img {
    display: block;
    max-width: 118px;
    height: 34px;
    object-fit: contain;
    object-position: left center;
}

.market-card span {
    display: block;
    margin-top: 1.25rem;
    color: var(--slate);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

.why-us {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94)),
        linear-gradient(120deg, #0f172a, #1e293b);
    color: #ffffff;
}

.why-us .section-copy {
    color: rgba(255, 255, 255, 0.74);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.why-item {
    min-height: 204px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.why-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    color: var(--navy);
    background: var(--gold);
    border-radius: var(--radius);
}

.why-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.process {
    background: linear-gradient(180deg, var(--surface) 0%, #ffffff 100%);
}

.process-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.step {
    position: relative;
    min-height: 230px;
    padding: 1.2rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 1.1rem;
    color: var(--navy);
    background: #fef3c7;
    border-radius: var(--radius);
    font-weight: 900;
}

.step p {
    margin: 0;
    color: var(--slate);
    font-size: 0.93rem;
}

.contact {
    background: #ffffff;
}

.cta-panel {
    padding: 1.25rem;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.94)),
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 34%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-copy {
    height: 100%;
    padding: 1.25rem;
}

.contact-copy h2 {
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
}

.contact-method {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-method i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--navy);
    background: var(--gold);
    border-radius: var(--radius);
}

.contact-method strong,
.contact-method span {
    display: block;
}

.contact-method strong {
    margin-bottom: 0.15rem;
    font-weight: 800;
}

.contact-method span {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    position: relative;
    height: 100%;
    padding: 1.4rem;
    color: var(--navy);
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: var(--radius);
}

.contact-form label {
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form .form-control {
    min-height: 50px;
    color: var(--navy);
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: var(--radius);
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 152px;
    resize: vertical;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.16);
}

.contact-form .form-control.is-invalid,
.contact-form .form-control.is-invalid:focus {
    border-color: #b42318;
    box-shadow: 0 0 0 0.2rem rgba(180, 35, 24, 0.12);
}

.contact-form .invalid-feedback {
    margin-top: 0.4rem;
    font-weight: 700;
}

.contact-form .btn:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 1.5rem;
    margin: 1rem 0 0;
    color: var(--slate);
    font-weight: 800;
}

.form-status[data-state="success"] {
    color: #047857;
}

.form-status[data-state="pending"] {
    color: var(--slate);
}

.form-status[data-state="error"] {
    color: #b42318;
}

footer {
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.7);
    background: var(--navy);
}

footer strong {
    color: #ffffff;
}

@media (max-width: 1199.98px) {
    .marketplace-grid,
    .process-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 0.75rem;
    }

    .navbar-light .navbar-nav .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .nav-cta {
        display: inline-flex;
        margin: 0.35rem 0 0;
        padding: 0.55rem 0.8rem !important;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 4.5rem;
    }

    .hero-panel {
        margin: 2.5rem 0 0;
    }

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

@media (max-width: 767.98px) {
    section {
        padding: 4.25rem 0;
    }

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

    .market-card,
    .step,
    .why-item {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .brand-logo {
        width: 176px;
    }

    .hero {
        padding: 6.5rem 0 3.75rem;
    }

    .eyebrow,
    .section-kicker {
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: 2.3rem;
        overflow-wrap: anywhere;
    }

    .hero-lead,
    .section-copy {
        font-size: 1rem;
    }

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

    .hero-panel,
    .contact-form,
    .contact-copy,
    .cta-panel {
        padding: 1rem;
    }

    .channel-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

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

    footer {
        text-align: center;
    }
}

@media (max-width: 359.98px) {
    .brand-logo {
        width: 154px;
    }

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