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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #2c3e50;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
header {
    background: white;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.1s;
}

nav a:hover {
    color: #2ea3f2;
}

.client-login-btn {
    background: #f08e00;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s;
}

.client-login-btn:hover {
    background: #D87F00;
    color: white !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0 90px;
    text-align: center;
    color: white;
    background-image: url('/static/img/globe.png');
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero .subtitle-line {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero .hero-stat {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

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

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 150%;
    background-color: #2c3e50;
    opacity: 0.87;
}

/* Main Content */
.main-content {
    padding: 120px 0 60px;
    color: white;
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Two Paths Section (Homepage) */
.paths-section {
    background: white;
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.path-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    border: 3px solid #e9ecef;
    transition: all 0.3s;
}

.path-card:hover {
    border-color: #2ea3f2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.path-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.path-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.path-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.path-features {
    list-style: none;
    margin-bottom: 2rem;
}

.path-features li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.95rem;
}

.path-features li:before {
    content: "✓";
    color: #00b894;
    font-weight: bold;
    margin-right: 10px;
}

.path-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.card-button {
    display: inline-block;
    background: #2ea3f2;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.card-button:hover {
    background: #2992D9;
    box-shadow: 0 5px 15px rgba(46, 163, 242, 0.3);
}

.orange-button {
    display: inline-block;
    background: #f08e00;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.orange-button:hover {
    background: #D87F00;
    box-shadow: 0 5px 15px rgba(253, 203, 110, 0.3);
}

.cta-button {
    padding: 15px 30px;
    border-radius: 25px;
}

.module-button {
    padding: 12px 25px;
    border-radius: 4px;
}

/* Platform Partners */
.partners {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.partners h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-top: 2rem;
}

.partner-logo {
    background: white;
    padding: 15px 10px;
    border-radius: 10px;
    font-weight: 600;
    color: black;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 0.9rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-logo img {
    width: 100%;
}

.partner-logo:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* New for 2026 row */
.partners-new {
    grid-template-columns: repeat(4, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partners-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partners-label.new-label {
    color: #f08e00;
    margin-top: 0;
}

/* Bottom CTA (Homepage) */
.bottom-cta {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.bottom-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.bottom-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* How It Works (Providers) */
.how-it-works {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    color: #333;
}

.how-it-works h2 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #f08e00;
    position: relative;
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f08e00;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h3 {
    margin-top: 15px;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Distribution Block (Providers) */
.distribution-block {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.distribution-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.distribution-block p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Products Section (Providers) */
.products-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    color: #333;
}

.products-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.product-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: #f08e00;
    box-shadow: 0 10px 30px rgba(240, 142, 0, 0.15);
}

.product-card h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Compliance Note (Providers) */
.compliance-note {
    text-align: center;
    padding: 25px 40px;
    margin-bottom: 40px;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Value Props (Aggregators) */
.value-props {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    color: #333;
}

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

.prop-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #f08e00;
}

.prop-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.prop-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: white;
    color: #2c3e50;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Login Section */
.login-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.login-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.login-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.login-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
    margin-bottom: 20px;
}

.login-options a {
    text-decoration: none;
}

.login-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s;
    text-align: center;
}

.login-option:hover {
    border-color: #2ea3f2;
    box-shadow: 0 10px 30px rgba(46, 163, 242, 0.2);
}

.login-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.login-option p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.highlight-option {
    border-color: #f08e00;
    background: #fff8ee;
}

.highlight-option:hover {
    border-color: #f08e00;
    box-shadow: 0 10px 30px rgba(240, 142, 0, 0.2);
}

/* Contact Section */
.contact-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    color: #333;
}

.contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.contact-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: black;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Inline Links (within body text) */
.inline-link {
    color: #f08e00;
    text-decoration: underline;
    font-weight: 600;
}

.inline-link:hover {
    color: #D87F00;
}

.main-content .inline-link {
    color: #f08e00;
}

/* Links on dark backgrounds (hero sections) */
.hero-link {
    color: #f08e00;
    text-decoration: underline;
    font-weight: 600;
}

.hero-link:hover {
    color: #ffb347;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding-bottom: 40px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle-line {
        font-size: 1.5rem;
    }

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

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

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

    .login-options {
        grid-template-columns: 1fr;
    }

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

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .client-login-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

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

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo {
        font-size: 0.8rem;
        padding: 12px 8px;
        height: 50px;
    }

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

    .path-card {
        padding: 25px;
    }
}