@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* ==================================================
   Base
================================================== */

html {
    box-sizing: border-box;
    overflow-x: hidden;
}

body,
header,
main,
footer,
section,
article,
aside,
nav,
div,
span,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
form,
label,
input,
textarea,
select,
button,
table,
thead,
tbody,
tfoot,
tr,
th,
td,
img,
figure,
figcaption {
    box-sizing: inherit;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: #101113;
    background: #ffffff;
    font-family: Manrope, Arial, sans-serif;
    line-height: 1.65;
}

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

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

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

.container {
    width: calc(100% - 40px);
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

/* ==================================================
   Header
================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 4px 18px rgba(16, 17, 19, 0.05);
}

.nav {
    position: relative;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand img {
    width: 190px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    position: relative;
}

.nav-links a:not(.portal)::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: #c69a42;
    transition: right 0.25s ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
    right: 0;
}

.portal,
.btn-primary {
    padding: 13px 19px;
    color: #ffffff;
    background: linear-gradient(135deg, #e3bd68, #a97822);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(171, 125, 40, 0.22);
}

/* ==================================================
   Mobile menu
================================================== */

.menu {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 8px;
    color: #000000;
    background: transparent;
    border: 0;
    border-radius: 6px;
    box-shadow: none;
    outline: none;
    font-family: inherit;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.menu:hover,
.menu:focus,
.menu:active {
    color: #000000;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.menu:focus {
    outline: 2px solid #c69a42;
    outline-offset: 3px;
}

.menu svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
}

.menu i {
    color: inherit;
}

/* ==================================================
   Hero
================================================== */

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
}

.hero-image {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    overflow: hidden;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 40%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.45) 64%,
        rgba(255, 255, 255, 0) 78%
    );
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: -8%;
    bottom: -90px;
    left: -8%;
    height: 165px;
    box-sizing: border-box;
    background: #101113;
    border-top-width: 12px;
    border-top-style: solid;
    border-top-color: #c69a42;
    transform: rotate(-2.7deg);
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    width: 55%;
    max-width: 610px;
    padding: 70px 0 120px;
}

.eyebrow {
    color: #9a7024;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 16px 0 22px;
    font-size: 72px;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero h1 span {
    color: #c69a42;
}

.hero p {
    max-width: 570px;
    color: #484b50;
    font-size: 18px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 21px;
    font-weight: 700;
    border: 1px solid #101113;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-secondary {
    background: #ffffff;
}

/* ==================================================
   Trust strip
================================================== */

.trust-strip {
    padding: 45px 0;
    color: #ffffff;
    background: #101113;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.trust-item {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:first-child {
    border-left: 0;
}

.trust-item strong {
    display: block;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.trust-item span {
    color: #b7b8bb;
    font-size: 12px;
}

.icon {
    margin-bottom: 9px;
    color: #c69a42;
    font-size: 27px;
}

/* ==================================================
   Sections
================================================== */

.section {
    padding: 90px 0;
}

.section.alt {
    background: #f7f4ee;
}

.section-head {
    max-width: 700px;
    margin-bottom: 44px;
}

.section-head h2 {
    margin: 10px 0 14px;
    font-size: 48px;
    line-height: 1.12;
}

.section-head p {
    color: #62666d;
}

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

.card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e7e3db;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(15, 16, 17, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(16, 17, 19, 0.1);
}

.card h3 {
    margin: 10px 0 8px;
    font-size: 21px;
}

.card p {
    color: #62666d;
    font-size: 14px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.split img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(16, 17, 19, 0.1);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.stat {
    padding: 20px;
    background: #ffffff;
    border-left: 3px solid #c69a42;
}

.stat strong {
    display: block;
    font-size: 29px;
}

.stat span {
    color: #62666d;
    font-size: 13px;
}

/* ==================================================
   Call to action
================================================== */

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 55px;
    color: #ffffff;
    background: linear-gradient(135deg, #15171a, #26292e);
    border-radius: 18px;
}

.cta h2 {
    margin: 0 0 8px;
    font-size: 36px;
}

.cta p {
    margin: 0;
    color: #c7c8ca;
}

/* ==================================================
   Inner pages
================================================== */

.page-hero {
    padding: 85px 0 75px;
    background: linear-gradient(135deg, #f8f5ef, #ffffff);
    border-bottom: 1px solid #e7e3db;
}

.page-hero h1 {
    margin-bottom: 14px;
    font-size: 56px;
}

.page-hero p {
    max-width: 720px;
    color: #62666d;
    font-size: 18px;
}

.breadcrumb {
    color: #8b6a2f;
    font-size: 13px;
    font-weight: 700;
}

.content {
    padding: 75px 0;
}

.prose {
    max-width: 860px;
}

.prose h2 {
    margin-top: 44px;
    font-size: 31px;
}

.prose h3 {
    margin-top: 30px;
    font-size: 22px;
}

.prose p,
.prose li {
    color: #555a60;
}

/* ==================================================
   Approval steps
================================================== */

.steps {
    display: grid;
    gap: 18px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 25px 25px 25px 82px;
    background: #ffffff;
    border: 1px solid #e7e3db;
    border-radius: 13px;
    counter-increment: step;
}

.step::before {
    content: counter(step);
    position: absolute;
    top: 24px;
    left: 24px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #c69a42;
    border-radius: 50%;
    font-weight: 800;
}

.notice {
    padding: 20px 24px;
    background: #f7f4ee;
    border-left: 4px solid #c69a42;
    border-radius: 0 10px 10px 0;
}

/* ==================================================
   Coming soon
================================================== */

.coming {
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coming-box {
    max-width: 650px;
}

.coming-icon {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #c69a42;
    background: #f7f4ee;
    border-radius: 50%;
    font-size: 34px;
}

.coming h1 {
    margin: 0 0 12px;
    font-size: 48px;
}

.coming p {
    color: #62666d;
}

/* ==================================================
   Search
================================================== */

.searchbox {
    display: flex;
    gap: 10px;
    max-width: 680px;
    margin-top: 25px;
}

.searchbox input {
    flex: 1;
    min-width: 0;
    padding: 15px;
    border: 1px solid #d8d6d1;
    border-radius: 8px;
}

/* ==================================================
   FAQ
================================================== */

.faq {
    border-top: 1px solid #e7e3db;
}

.faq button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    background: transparent;
    border: 0;
    text-align: left;
    font: 700 16px Manrope, Arial, sans-serif;
    cursor: pointer;
}

.faq .answer {
    display: none;
    padding: 0 0 20px;
    color: #62666d;
}

.faq.open .answer {
    display: block;
}

/* ==================================================
   Footer
================================================== */

.site-footer {
    padding: 70px 0 25px;
    color: #d7d8da;
    background: #111316;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1.15fr 1fr;
    gap: 45px;
}

.footer-brand {
    min-width: 0;
}

.footer-brand a {
    display: inline-block;
    max-width: 100%;
}

.footer-brand img {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
}

.footer-brand p {
    color: #aaaeb3;
    font-size: 14px;
}

.site-footer h4 {
    margin: 0 0 18px;
    color: #e3bd68;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: #d0d1d3;
    font-size: 13px;
}

.site-footer a:hover {
    color: #e3bd68;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 45px;
    padding-top: 22px;
    color: #999999;
    border-top: 1px solid #303238;
    font-size: 12px;
}

/* ==================================================
   Badges and tables
================================================== */

.badge {
    display: inline-block;
    padding: 6px 10px;
    color: #815f21;
    background: #f4ead6;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
}

.table-wrap {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 15px;
    border-bottom: 1px solid #e7e3db;
    text-align: left;
}

.table th {
    background: #f7f4ee;
}

/* ==================================================
   Medium desktop
================================================== */

@media (max-width: 1100px) {
    .hero h1 {
        font-size: 58px;
    }

    .page-hero h1 {
        font-size: 52px;
    }
}

/* ==================================================
   Tablet
================================================== */

@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 88px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 24px;
        background: #ffffff;
        border-bottom: 1px solid #e7e3db;
        box-shadow: 0 20px 30px rgba(16, 17, 19, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
    }

    .nav-links a:not(.portal)::after {
        display: none;
    }

    .nav-links .portal {
        width: auto;
    }

    .menu {
        display: inline-flex;
        color: #000000;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        object-position: center;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.82);
    }

    .hero-content {
        width: 100%;
        max-width: none;
        padding: 55px 0 120px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-head h2 {
        font-size: 40px;
    }

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

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

    .split {
        gap: 30px;
    }

    .split img {
        height: 360px;
    }

    .footer-grid {
        gap: 30px;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .page-hero h1 {
        font-size: 44px;
    }
}

/* ==================================================
   Mobile
================================================== */

@media (max-width: 560px) {
    .container {
        width: calc(100% - 26px);
        max-width: 1180px;
    }

    .nav {
        height: 76px;
    }

    .brand img {
        width: 155px;
    }

    .nav-links {
        top: 76px;
    }

    .menu {
        color: #000000;
    }

    .hero {
        min-height: 620px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        object-position: center;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.86);
    }

    .hero-content {
        width: 100%;
        max-width: none;
        padding: 55px 0 115px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-head h2 {
        font-size: 32px;
    }

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

    .trust-item {
        padding: 16px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .trust-item:first-child {
        border-top: 0;
    }

    .grid-3,
    .stats {
        grid-template-columns: 1fr;
    }

    .split img {
        height: 260px;
    }

    .section {
        padding: 65px 0;
    }

    .cta {
        padding: 35px 25px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .page-hero {
        padding: 65px 0 55px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .coming h1 {
        font-size: 38px;
    }

    .footer-brand img {
        width: 175px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .searchbox {
        flex-direction: column;
    }
}