.bg-primary-dark {
  background-color: #2e5266;
}

.card {
    border-radius: 12px;
}

form .form-control {
    border-radius: 8px;
    padding: 10px;
}

.btn-primary {
    background-color: #2e5266;
    border-color: #2e5266;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1e3a5f;
    border-color: #1e3a5f;
}

.btn-primary:focus,
.btn-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(46, 82, 102, 0.5);
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: #1b324e;
    border-color: #1b324e;
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #2e5266;
    border-color: #2e5266;
    opacity: 0.65;
    pointer-events: none;
}


body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    line-height: 1.5;
    color: #2c2c2c;
    background: #ffffff;
    font-weight: 300;
}

/* Header */
header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 30px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 300;
    color: #1e3a5f;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.login-button {
    background: #2e5266;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.login-button:hover {
    background: white;
    color: #1e3a5f;
}

/* Hero Section */
.hero {
    background: #f8f8f8;
    padding: 100px 0;
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 200;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #1e3a5f;
}

.hero p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a4a4a;
    line-height: 1.6;
}

.beta-badge {
    display: inline-block;
    background: #ffffff;
    padding: 6px 14px;
    border: 1px solid #d0d0d0;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: #2e5266;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border: 1px solid #2e5266;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #1e3a5f;
    border-color: #1e3a5f;
}

/* Main Content */
.main-content {
    background: white;
    padding: 80px 0;
}

.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 28px;
    color: #1e3a5f;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.2;
}

.section h3 {
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 400;
}

.section p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.benefit-card {
    padding: 0;
    background: transparent;
    border: none;
}

.benefit-card h4 {
    font-size: 16px;
    color: #2e5266;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.trust-point {
    text-align: left;
    padding: 0;
}

.trust-point h4 {
    font-size: 16px;
    color: #2e5266;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-point p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Beta Section */
.beta-section {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 50px;
    margin: 60px 0;
}

.beta-section h3 {
    color: #1e3a5f;
    margin-bottom: 25px;
    font-weight: 400;
}

.beta-section p {
    margin-bottom: 20px;
}

/* Final CTA */
.final-cta {
    background: #2e5266;
    color: white;
    text-align: left;
    padding: 100px 0;
}

.final-cta h2 {
    color: white;
    margin-bottom: 25px;
    font-weight: 300;
}

.final-cta p {
    font-size: 16px;
    margin-bottom: 50px;
    color: #cccccc;
    max-width: 500px;
}

.cta-button-white {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border: 1px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-white:hover {
    background: white;
    color: #1e3a5f;
}

/* Footer */
footer {
    background: #f8f8f8;
    color: #666;
    text-align: left;
    padding: 60px 0;
    font-size: 14px;
}

.email-link {
    color: #2e5266;
    text-decoration: none;
    font-weight: 400;
}

.email-link:hover {
    text-decoration: underline;
}

/* Typography refinements */
strong {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 0;
        text-align: center;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-points {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .beta-section {
        padding: 30px;
    }

    .final-cta {
        text-align: center;
        padding: 60px 0;
    }
}