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

/* ================= BODY ================= */
body {
    font-family: 'DM Sans', sans-serif;
    color: #000;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: #001333;
    display: flex;
    align-items: center;
    z-index: 1000;
}

/* wrapper inside header */
.header-container {
    display: flex;
    justify-content: space-between; /* logo left, nav right */
    align-items: center;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
}

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

/* NAVIGATION */
.nav {
    display: flex;
    gap: 80px; /* spacing between links */
}

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

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

/* ================= HERO FIX ================= */
.hero {
    padding-top: 90px; /* keeps space for fixed header */
    /* all other hero styles remain unchanged */
}

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

.hero-left-container {
    width: 60%;
    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: 87px;
    line-height: 110px;
    font-weight: 400;
    letter-spacing: -7px;
    color: white;
    word-break: break-word;
    max-width: 100%;
}

.hero-highlight {
    background: #BE9B55;
    padding: 80px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 115%;
    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: black;
    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: 45%;
    height: 100%;
    position: relative;
}

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


/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Medium screens (tablet) */
@media (max-width: 1200px) {
    .hero-left h1 {
        font-size: 55px;
        line-height: 70px;
    }

    .hero-highlight {
        padding: 60px 40px;
    }
}

/* Small screens (mobile) */
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-left {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-left h1 {
        font-size: 40px;
        line-height: 50px;
        text-align: center;
    }

    .hero-highlight {
        width: 100%;
        flex-direction: column;
        align-items: center;
        border-radius: 40px;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-highlight p {
        margin: 0 0 20px 0;
    }

    .hero-btn {
        margin: 0 auto;
    }

    .hero-image {
        width: 100%;
        height: 300px;
        margin-top: 20px;
        border-radius: 80px 80px 0 0; /* top corners only for mobile */
    }
}

/* ================= BLUEPRINT ================= */
.blueprint-inner {
    display: flex;
    align-items: center;
    justify-content: center; /* center content horizontally */
    gap: 0; /* gap handled by margins */
    flex-wrap: wrap; /* for responsiveness */
}

/* IMAGE LEFT */
.blueprint-image {
    flex: 0 0 50%; /* 60% width */
    margin-left: 50px; /* left spacing */
    margin-right: 30px;
    margin-top: 80px;
    margin-bottom: 120px;
}

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

/* TEXT RIGHT */
.blueprint-text {
    flex: 0 0 35%; /* 40% width */
    margin-right: 50px; /* right spacing */
    margin-left: 30px; /* left spacing */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

/* PARAGRAPH */
.blueprint-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.5px;
    color: #001333;
    margin-top: 80px!;
    margin-bottom: 80px!;
}

.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;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .blueprint-inner {
        flex-direction: column;
        justify-content: center;
    }

    .blueprint-image,
    .blueprint-text {
        flex: 1 1 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .blueprint-image {
        margin-bottom: 30px;
    }

    .blueprint-text h2 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .blueprint-text p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .blueprint-text h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .blueprint-text p {
        font-size: 16px;
    }
}


/* ================= FEATURES ================= */
.features {
    background: none; /* remove gray background */
    padding: 100px 0; /* top & bottom spacing */
    margin: 50px 50px; /* left & right page margin */
}

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

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

/* INDIVIDUAL FEATURE BOX */
.feature-card {
    background: white;
    flex: 1 1 calc(25% - 15px); /* 4 boxes, subtract gap */
    padding: 100px 30px; /* top & bottom + inner padding */
    box-sizing: border-box;
    border-radius: 20px; /* optional rounding */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    /* DROP SHADOW */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth hover effect */
}

/* OPTIONAL: hover effect for boxes */
.feature-card:hover {
    transform: translateY(5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* SUB-HEADING IN BOX */
.feature-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: -1.5px;
    color: #001333;
    margin-bottom: 20px;
}

/* PARAGRAPH IN BOX */
.feature-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #001333;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .feature-card {
        flex: 1 1 calc(50% - 10px); /* 2 boxes per row */
    }
}

@media (max-width: 900px) {
    .features {
        margin: 0 20px;
        padding: 80px 0;
    }

    .feature-card {
        flex: 1 1 100%; /* 1 box per row */
        padding: 40px 20px;
    }

    .feature-card h3 {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: -1px;
    }

    .feature-card p {
        font-size: 16px;
    }
}

/* ================= PARTNERS ================= */
.partners {
    padding: 100px 0 100px 0; /* top 100px, bottom 150px for extra spacing */
    background: none; /* optional */
}

.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; /* same as blueprint */
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    color: #001333;
    margin-bottom: 60px;
}

/* LOGO LINES */
.logo-line {
    display: flex;
    justify-content: center; /* center logos horizontally */
    gap: 80px; /* space between logos */
    margin-bottom: 80px; /* space between lines */
    margin-left: 200px;
    margin-right: 200px;
}

/* LOGO IMAGE */
.logo-line img {
   max-width: 120px;   /* max width limit */
    max-height: 60px;   /* max height limit */
    width: auto;        /* let image scale naturally */
    height: auto;       
    object-fit: contain; /* ensures no distortion */
}

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

.split-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 50px; /* side margin */
    gap: 50px; /* space between text and image */
}

.cta-text {
    width: 40%;
}

.cta-text h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 70px; /* same as other section headlines */
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    color: #001333;
    margin-bottom: 30px;
}

.cta-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #001333;
}

.cta-btn {
    display: block;
    width: 220px; /* same as Blueprint button */
    margin: 30px auto 0 0; /* top margin + align left */
    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;
    white-space: nowrap;
    text-align: center;
}

/* ================= CTA IMAGE ================= */
.cta-image {
    width: 60%; /* original right-side width */
    height: 100%;
    position: relative;
}

.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;
}



/* CTA BUTTON - same as Blueprint */
.cta-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;
}

/* optional: hover effect, same as Blueprint */
.cta-btn:hover {
    background: transparent;
    color: black;
    border: 1px solid black;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .cta-text h2 {
        font-size: 55px;
        line-height: 65px;
    }
}

@media (max-width: 900px) {
    .split-inner {
        flex-direction: column;
    }

    .cta-text, .cta-image {
        width: 100%;
    }

    .cta-image img {
        border-radius: 80px 80px 0 0; /* adjust for stacked layout */
        height: 400px;
    }

    .cta-text h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: #001333;
    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;
}

.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;
    }
}


