:root {
    --primary-navy: #0f172a;
    --text-gray: #64748b;
    --light-gray: #f1f5f9;
    --border-gray: #e2e8f0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1e293b;
    background-color: #fff;
}

/* NAVBAR STYLES */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid var(--border-gray);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-navy) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.nav-link {
    color: #64748b !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-navy) !important;
}

/* BUTTON STYLES */
.btn-cta {
    background-color: var(--primary-navy);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #1e293b;
    color: white;
    text-decoration: none;
}

.btn-cta-secondary {
    background-color: white;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    background-color: var(--light-gray);
    color: var(--primary-navy);
    text-decoration: none;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: #f1f5f9;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

/* SERVICES SECTION */
.services-section {
    padding: 4rem 0;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.service-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card a {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #475569;
}

/* HOW IT WORKS */
.how-it-works {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 3rem;
    text-align: center;
}

.step-circle {
    width: 64px;
    height: 64px;
    background-color: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-item {
    text-align: center;
}

.step-item h3 {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* TRUST SECTION */
.trust-section {
    padding: 4rem 0;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* PLANS SECTION */
.plans-section {
    padding: 4rem 0;
}

.plans-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.plans-section > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.plan-card {
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem;
    background-color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card.featured {
    border-color: var(--primary-navy);
    background-color: var(--light-gray);
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 1.5rem 0;
}

.plan-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
    padding: 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li:before {
    content: '✓';
    color: var(--primary-navy);
    font-weight: bold;
    font-size: 1.1rem;
}

.plan-scope {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    margin: 1rem 0;
}

/* FORM SECTION */
.form-section {
    padding: 4rem 0;
}

.form-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.form-section > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
    outline: none;
}

.form-check {
    margin-top: 1.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.form-check-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-left: 0.5rem;
}

/* CONTENT PAGE */
.content-page {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.content-page h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-page li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* FOOTER */
.footer {
    background-color: var(--primary-navy);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-right: 1.5rem;
}

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

    .hero-section p {
        font-size: 1rem;
    }

    .services-section h2,
    .how-it-works h2,
    .plans-section h2 {
        font-size: 1.75rem;
    }

    .plan-card {
        margin-bottom: 2rem;
    }
}
