
:root {
    --primary-blue: #0066FF;
    --primary-dark: #0052cc;
    --teal: #00C9A7;
    --teal-dark: #00b894;
    --navy: #0B1B3D;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-section: #f0f4ff;
    --white: #ffffff;
    --border-light: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --gradient-blue: linear-gradient(135deg, #0066FF 0%, #00C9A7 100%);
    --gradient-stats: linear-gradient(90deg, #0066FF 0%, #00C9A7 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    padding: 0.75rem 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy);
}

.brand-icon {
    /*width: 40px;*/
    height: 37px;
    /*background: var(--gradient-blue);*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

/*
.brand-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: -4px;
}*/

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--primary-blue) !important;
    }

.dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.15em;
}

.btn-primary-custom {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-primary-custom:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0,102,255,0.3);
        color: white;
    }

.btn-outline-custom {
    background: transparent;
    color: var(--primary-blue);
    border: 1.5px solid var(--primary-blue);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .btn-outline-custom:hover {
        background: var(--primary-blue);
        color: white;
    }

.phone-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -5%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 70%);
        border-radius: 50%;
    }

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

    .hero-title span {
        color: var(--teal);
    }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 0;
}

.trusted-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.avatar-group {
    display: flex;
}

    .avatar-group img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid white;
        margin-left: -10px;
        object-fit: cover;
    }

        .avatar-group img:first-child {
            margin-left: 0;
        }

.trusted-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

    .trusted-text strong {
        color: var(--primary-blue);
        background: rgba(0,102,255,0.1);
        padding: 0.2rem 0.5rem;
        border-radius: 20px;
        font-size: 0.75rem;
    }

.hero-visual {
    position: relative;
}

.dashboard-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.06);
}

.support-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.support-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,201,167,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.2rem;
}

.analyzer-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.analyzer-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,102,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.badge-text h6 {
    font-size: 0.8rem;
    margin: 0;
    font-weight: 700;
}

.badge-text p {
    font-size: 0.7rem;
    margin: 0;
    color: var(--teal);
    font-weight: 600;
}

.badge-text small {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.mobile-mockup {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 160px;
    z-index: 20;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

/* Stats Bar */
.stats-bar {
    background: var(--gradient-stats);
    padding: 1.5rem 0;
    margin-top: 3rem;
    position: relative;
}

    .stats-bar::before,
    .stats-bar::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 20px;
        background: inherit;
    }

    .stats-bar::before {
        top: -10px;
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }

    .stats-bar::after {
        bottom: -10px;
        border-radius: 0 0 50% 50% / 0 0 100% 100%;
    }

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    justify-content: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
}

.stat-content p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-size: 2rem;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

        .section-header h2 span {
            color: var(--teal);
        }

    .section-header p {
        color: var(--text-muted);
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* Solutions Section */
.solutions-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.solution-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
    height: 100%;
}

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.solution-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f7f4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.solution-card h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.solution-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.explore-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

    .explore-link:hover {
        gap: 0.5rem;
    }

/* Why Choose Section */
.why-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

    .why-content h2 span {
        color: var(--primary-blue);
    }

.why-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f7f4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.feature-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    .features-section::before {
        content: '';
        position: absolute;
        right: -10%;
        top: 10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0,102,255,0.04) 0%, transparent 70%);
        border-radius: 50%;
    }

.features-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

    .features-content h2 span {
        color: var(--teal);
    }

.features-content > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-dark);
    }

        .feature-list li i {
            color: var(--teal);
            font-size: 1.1rem;
        }

.features-img-wrapper {
    position: relative;
}

.features-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.dna-decoration {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    font-size: 12rem;
    color: var(--primary-blue);
    pointer-events: none;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    height: 100%;
    transition: all 0.3s;
}

    .testimonial-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

.author-info h6 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--navy);
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    opacity: 0.3;
    border: none;
    margin: 0 4px;
}

    .carousel-indicators button.active {
        opacity: 1;
    }

/* Trusted Logos */
.trusted-logos {
    padding: 3rem 0;
    background: var(--white);
}

    .trusted-logos h4 {
        text-align: center;
        font-size: 1.1rem;
        color: var(--navy);
        margin-bottom: 2rem;
    }

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

    .logo-item:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    .logo-item img {
        max-height: 40px;
        width: auto;
    }

.logo-placeholder {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    letter-spacing: 1px;
}

/* Insights Section */
.insights-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.insight-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    height: 100%;
    transition: all 0.3s;
}

    .insight-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-5px);
    }

.insight-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.insight-body {
    padding: 1.5rem;
}

.insight-date {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.insight-body h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0066FF 0%, #00C9A7 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.cta-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.95rem;
}

.cta-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .btn-white:hover {
        background: var(--navy);
        color: white;
    }

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .btn-outline-white:hover {
        background: white;
        color: var(--primary-blue);
        border-color: white;
    }

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

    .social-links a {
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        transition: all 0.3s;
    }

        .social-links a:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
        }

.footer h5 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-links a {
        color: rgba(255,255,255,0.7);
        font-size: 0.9rem;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--teal);
        }

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--teal);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

    .newsletter-form input {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.15);
        color: white;
        padding: 0.6rem 1rem;
        border-radius: 8px;
        font-size: 0.9rem;
        flex: 1;
    }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }

    .newsletter-form button {
        background: var(--primary-blue);
        color: white;
        border: none;
        padding: 0.6rem 1.25rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.85rem;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-bottom p {
        color: rgba(255,255,255,0.5);
        font-size: 0.85rem;
        margin: 0;
    }

.cert-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

    .cert-badges span {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.5);
    }

/* Floating Buttons */
.float-btn {
    position: fixed;
    right: 20px;
    z-index: 1040;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s;
}

    .float-btn:hover {
        transform: scale(1.1);
    }

.float-whatsapp {
    bottom: 90px;
    background: #25D366;
}

.float-call {
    bottom: 30px;
    background: var(--primary-blue);
}

/* Responsive */
@@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .stat-divider {
        display: none;
    }

    .stats-bar .row > div {
        margin-bottom: 1.5rem;
    }

        .stats-bar .row > div:last-child {
            margin-bottom: 0;
        }

    .mobile-mockup {
        width: 120px;
        right: 0;
    }

    .dna-decoration {
        display: none;
    }
}

@@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .feature-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .mobile-mockup {
        display: none;
    }

    .support-badge,
    .analyzer-badge {
        display: none;
    }
}

/* Animations */
@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}




/*-------------*/


.page-header {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

    .page-title span {
        color: var(--teal);
    }

.content-section {
    padding: 4rem 0;
    background: var(--white);
}

.alt-section {
    background: var(--bg-light);
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

    .section-header h2 span {
        color: var(--teal);
    }

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: all 0.3s;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

    .feature-card i {
        font-size: 2.5rem;
        color: var(--primary-blue);
        margin-bottom: 1rem;
        display: block;
    }

    .feature-card h5 {
        font-size: 1.1rem;
        color: var(--navy);
    }

    .feature-card p {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

.img-slot {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Pricing Section Styles */
.pricing-section {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 0.25rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-light);
}

    .pricing-toggle button {
        background: transparent;
        border: none;
        padding: 0.6rem 2rem;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--text-muted);
        transition: all 0.3s;
        cursor: pointer;
    }

        .pricing-toggle button.active {
            background: var(--teal);
            color: white;
            box-shadow: var(--shadow-sm);
        }

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

    .pricing-card.recommended {
        border: 2px solid var(--teal);
        background: var(--white);
    }

        .pricing-card.recommended .recommended-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #F59E0B;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

    .pricing-card h4 {
        font-size: 1.25rem;
        color: var(--navy);
        margin-bottom: 1.5rem;
    }

    .pricing-card .price {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .pricing-card .price span {
            font-size: 1.2rem;
            font-weight: 600;
            margin-right: 0.25rem;
        }

        .pricing-card .price small {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
        }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2.5rem;
    text-align: left;
    width: 100%;
}

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.9rem;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

        .pricing-features li i {
            color: var(--teal);
            font-size: 1.1rem;
        }

.pricing-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

    .pricing-btn.outline {
        border: 1.5px solid var(--primary-blue);
        color: var(--primary-blue);
        background: transparent;
    }

        .pricing-btn.outline:hover {
            background: var(--primary-blue);
            color: white;
        }

    .pricing-btn.solid {
        border: none;
        background: var(--teal);
        color: white;
    }

        .pricing-btn.solid:hover {
            background: var(--teal-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,201,167,0.3);
        }

/* Toggle functionality hidden class */
.pricing-period {
    display: none;
}

    .pricing-period.active {
        display: block;
    }




