/* ========================================
   Brand Colors (from logo)
   ======================================== */
:root {
    /* Primary - Navy Blue (from logo speech bubble) */
    --color-navy: #2E5077;
    --color-navy-dark: #243D5C;
    --color-navy-light: #3A6491;

    /* Secondary - Mint Green (from logo speech bubble) */
    --color-mint: #7DD3A8;
    --color-mint-dark: #5FC492;
    --color-mint-light: #A8E4C4;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-bg: #F8FAFB;
    --color-text: #2E4A62;
    --color-text-light: #5D7A8C;
    --color-border: #E2E8F0;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(46, 80, 119, 0.08);
    --shadow-md: 0 4px 12px rgba(46, 80, 119, 0.12);
    --shadow-lg: 0 8px 24px rgba(46, 80, 119, 0.16);
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo {
    height: 120px;
    width: auto;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.2s;
}

.navbar-link:hover {
    color: var(--color-navy);
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: var(--color-navy);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.navbar-cta:hover {
    background: var(--color-navy-dark);
    transform: translateY(-1px);
}

.navbar-login {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-navy);
}

.navbar-login:hover {
    text-decoration: underline;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-text);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 9rem 1.5rem 5rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 100%);
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-mint);
    color: var(--color-navy);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.2s;
    box-shadow: var(--shadow-md);
}

.hero-cta:hover {
    background: var(--color-mint-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    padding: 5rem 1.5rem;
    background: var(--color-white);
}

.benefits-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--color-mint-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-navy);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.benefit-text {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

.pricing-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-mint);
}

.pricing-label {
    display: inline-block;
    background: var(--color-mint-light);
    color: var(--color-navy);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
}

.pricing-amount span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.pricing-period {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-mint-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature span {
    color: var(--color-text);
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--color-navy);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    text-align: center;
    transition: background 0.2s;
}

.pricing-cta:hover {
    background: var(--color-navy-dark);
}

/* ========================================
   Built For Section (homepage)
   ======================================== */
.built-for {
    padding: 4rem 1.5rem;
    background: var(--color-bg);
}

.built-for-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.built-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.built-for-card {
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    display: block;
}

.built-for-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.built-for-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.built-for-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .built-for {
        padding: 3rem 1.25rem;
    }

    .built-for-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .built-for-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Trust Section
   ======================================== */
.trust {
    padding: 4rem 1.5rem;
    background: var(--color-white);
}

.trust-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-mint-dark);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 3rem 1.5rem;
    background: var(--color-navy);
    color: var(--color-white);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 1;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 10rem 1.25rem 3rem;
    }

    .benefits {
        padding: 3rem 1.25rem;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .pricing {
        padding: 3rem 1.25rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-amount {
        font-size: 3rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
