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

/* ================= BODY - FULL WHITE BACKGROUND ================= */
body {
    font-family: 'DM Sans', sans-serif;
    color: #000000;
    background: #ffffff;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 70px;
    padding-right: 50px;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 80px;
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #BE9B55;
}

/* ================= HERO ================= */
.hero {
    padding-top: 90px;
    height: 112vh;
    display: flex;
    position: relative;
    background: #ffffff;
}

.hero-left-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 40px 80px 80px 0px;
    z-index: 2;
}

.hero-headline-container {
    max-width: 100%;
    padding: 20px 0px 67px 60px;
}

.hero-headline {
    font-size: 70px;
    line-height: 80px;
    font-weight: 400;
    letter-spacing: -5px;
    word-break: break-word;
    max-width: 100%;
    color: #000000;
}

.hero-highlight {
    background: #BE9B55;
    padding: 80px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 150%;
    margin-top: auto;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero-highlight p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: #000000;
    flex: 1;
    margin: 0 20px;
}

.hero-btn {
    background: black;
    color: white;
    padding: 25px 25px;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 80px;
    white-space: nowrap;
    margin-left: 20px;
}

.hero-btn:hover {
    background: #BE9B55;
    color: black;
    border: 1px solid black;
}

.hero-image {
    width: 50%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 105%;
    object-fit: cover;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

/* ================= BLUEPRINT ================= */
.blueprint-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding-top: 50px;
}

.blueprint-image {
    flex: 0 0 50%;
    margin-left: 50px;
    margin-right: 30px;
    margin-top: 120px;
    margin-bottom: 120px;
}

.blueprint-image img {
    width: 100%;
    height: auto;
    border-radius: 100px;
    object-fit: cover;
}

.blueprint-text {
    flex: 0 0 35%;
    margin-right: 50px;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blueprint-text h2,
.blueprint-text p {
    color: #000000;
}

.blueprint-text h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.blueprint-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.5px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.blueprint-btn {
    display: block;
    width: 220px;
    margin: 30px auto 0;
    background: black;
    color: white;
    padding: 25px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 80px;
    text-align: center;
}

.blueprint-btn:hover {
    background: transparent;
    color: black;
    border: 1px solid black;
}

/* ================= FEATURES ================= */
.features {
    background: #ffffff;
    padding: 100px 0;
    margin: 50px 50px;
}

.features .section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    color: #000000;
    margin-bottom: 60px;
    text-align: center;
}

.features-grid {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.feature-card {
    background: #ffffff;
    flex: 1 1 calc(25% - 15px);
    padding: 100px 30px;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.feature-card p {
    color: #000000;
    font-size: 18px;
}

/* ================= PARTNERS ================= */
.partners {
    background: #ffffff;
    padding: 100px 0 100px 0;
}

.partners-inner {
    margin: 0 50px; /* 50px margin on both sides */
    text-align: center;
}

.partners-inner .section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    color: #000000;
    margin-bottom: 60px;
}

.logo-line {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
    margin-left: 200px;
    margin-right: 200px;
}

.logo-line img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ================= CTA ================= */
.cta.split {
    background: #ffffff;
    padding: 100px 0;
}

.split-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 50px;
    gap: 50px;
}

.cta-text {
    width: 40%;
}

.cta-text h2,
.cta-text p {
    color: #000000;
}

.cta-text h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.cta-btn {
    display: block;
    width: 220px;
    margin: 30px auto 0 0;
    background: black;
    color: white;
    padding: 25px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 80px;
    text-align: center;
}

.cta-btn:hover {
    background: transparent;
    color: black;
    border: 1px solid black;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
}

/* ================= FOOTER ================= */
.footer {
    background: #1F1F1F;
    color: white;
    padding: 80px 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.5;
}

/* FLEX GRID */
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px; /* space between columns */
}

/* LEFT COLUMN: LOGO + TEXT + COPYRIGHT */
.footer-left {
    flex: 2; /* takes roughly twice the space of each right column */
    min-width: 250px;
}

.footer-left .footer-logo {
    width: 200px;
    margin-bottom: 30px;
    margin-left: 5px;
}

.footer-left p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    padding-right: 100px;
    padding-left: 10px;
}

/* RIGHT COLUMNS */
.footer-right {
    flex: 1;
    display: flex;

    min-width: 200px;
}

/* NAVIGATION COLUMN */
.footer-nav, .footer-alliance-legal {
    display: flex;
    flex-direction: column;
    margin-right: 100px;
}

.footer-nav h4, .footer-alliance h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-nav h4, .footer-legal h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.footer-nav a, .footer-alliance a {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer-nav a, .footer-legal a {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}


.footer-nav a:hover, .footer-alliance, .footer-legal a:hover {
    color: #BE9B55;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-left, .footer-right {
        flex: 0 0 100%;
    }

    .footer-right {
        flex-direction: row;
        gap: 50px;
        margin-top: 40px;
    }

    .footer-nav, .footer-alliance, .footer-legal {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .footer-right {
        flex-direction: column;
        gap: 40px;
    }
}


