* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 :root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --border-color: rgba(255, 255, 255, 0.08);
    --teal: #2dd4bf;
    --teal-dark: #14b8a6;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}


/* Navbar Styling */

.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 12px;
    transition: color 0.3s;
}

.nav-link.active {
    color:#2dd4bf !important;
}

.nav-link:hover {
    color: var(--text-primary) !important;
}

.btn-teal {
    background-color: var(--teal);
    color: #000;
    border: none;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-teal:hover {
    background-color: var(--teal-dark);
    transform: translateY(-1px);
    color: #000;
}

.btn-white {
    background-color: #fff;
    color: #000;
    border: none;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 6px;
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}


/* a.navbar-brand img {
            width: 75px;
        } */


/* Hero Section */

.hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: radial-gradient(circle at top right, #00000085 0%, #26262682 40%);
}

.badge-trust {
    background-color: rgba(45, 212, 191, 0.1);
    color: var(--teal);
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 24px;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(90deg, #00D5BE 0%, #00D3F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: #99A1AF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    max-width: 750px;
    margin: 36px auto 36px;
}

.hero-features {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    max-width: 600px;
    margin: 36px auto;
}

.hero-features .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 50%;
    max-width: 50%;
}

.hero-feature-item i {
    color: var(--teal);
    font-size: 1.1rem;
}


/* Image Composition */

.image-composition {
    position: relative;
}

.img-box {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.img-box-1 {
    top: 0;
    right: 0;
    width: 65%;
    height: 55%;
    z-index: 2;
}

.img-box-2 {
    bottom: 0;
    left: 0;
    width: 70%;
    height: 60%;
    z-index: 1;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.ai-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.brain-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0.6;
}


/* Core Features Section */

.core-features {
    background-color: #05080f;
    padding: 64px 0;
    border-top: 1px solid var(--border-color);
}

.section-label {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.feature-card-large {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.feature-card-large:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(45, 212, 191, 0.3);
    transform: translateY(-4px);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-meta {
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 500;
}


/* Heal Section */

.heal-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.feature-card-small {
    border-radius: 14px;
    border: 1px solid #364153;
    background: rgba(30, 41, 57, 0.50);
    padding: 32px;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card-small:hover {
    background-color: rgba(255, 255, 255, 0.04);
}


/* Stats Section */

.stats-section {
    padding: 64px 0;
    background: linear-gradient(135deg, rgba(11, 79, 74, 0.20) 0%, rgba(16, 78, 100, 0.20) 100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}


/* Steps Section */

.steps-section {
    padding: 64px 0;
    background: linear-gradient(180deg, #101828 0%, #031012 100%);
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0 20px;
}

.connector-line {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(45, 212, 191, 0.3), transparent);
    transform: translateX(0);
    z-index: 0;
}


/* Testimonials */

.testimonials-section {
    padding: 100px 0;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.stars {
    color: var(--teal);
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
}


/* CTA Section */

.cta-section {
    padding: 0 0 100px 0;
}

.cta-box {
    padding: 80px 40px;
    text-align: center;
    position: relative;
    transform: translateY(10%);
    border-radius: 24px;
    border: 1px solid rgba(0, 206, 209, 0.30);
    background: linear-gradient(90deg, rgba(0, 206, 209, 0.10) 0%, rgba(32, 178, 170, 0.10) 100%);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.cta-icon {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 24px;
}

.cta-icon img {
    width: 100%;
    max-width: 84px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.1rem;
}


/* Footer */

footer {
    background-color: #020202;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--teal);
}

.footer-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.step-icon {
    display: flex;
    gap: 8px;
    align-items: center;
}

.step-icon span.step-number {
    color: #00BBA7;
    font-weight: 700;
    font-size: 92px;
    opacity: 0.2;
}

.top-banner-section {
    padding: 64px 0px 0px;
}

a.create-free-account {
    border-radius: 8px;
    background: linear-gradient(90deg, #00CED1 0%, #06CBCD 10%, #0BC8C9 20%, #10C6C5 30%, #13C3C1 40%, #16C0BD 50%, #18BDB9 60%, #1BBAB6 70%, #1DB8B2 80%, #1EB5AE 90%, #20B2AA 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 206, 209, 0.30), 0 4px 6px -4px rgba(0, 206, 209, 0.30);
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}

a.talk-to-provider {
    border-radius: 8px;
    border: 1px solid #00CED1;
    background: #FFF;
    color: #00CED1;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

a.start-free {
    border-radius: 8px;
    background: linear-gradient(90deg, #00BBA7 0%, #00B8DB 100%);
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

a.learn-more {
    border-radius: 8px;
    border: 1px solid #00BBA7;
    background: #FFF;
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #00D5BE;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

a.btn-get-started {
    border-radius: 8px;
    background: linear-gradient(90deg, #00CED1 0%, #06CBCD 10%, #0BC8C9 20%, #10C6C5 30%, #13C3C1 40%, #16C0BD 50%, #18BDB9 60%, #1BBAB6 70%, #1DB8B2 80%, #1EB5AE 90%, #20B2AA 100%);
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .connector-line {
        display: none;
    }
    .image-composition {
        height: 400px;
        margin-top: 40px;
    }
    .step-card {
        margin-bottom: 40px;
    }
}

.feature-meta {
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-meta i {
    font-size: 1rem;
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }
    .hero-features .hero-feature-item {
        width: 100%;
        max-width: 100%;
    }
}