/* Base Styles */
.btn {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    border: 1px solid #ececec;
    text-decoration: none;
    cursor: pointer;
}
.btn-primary { background: #ececec; color: #0b081c; }
.btn-primary:hover { background: #101534; color: #ececec; }
.btn-secondary { background: transparent; }
.btn-secondary:hover { background: #ececec; color: #0b081c; }
.container { max-width: 75rem; margin: 0 auto; padding: 0 1.25rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }

/* Navigation */
.navbar {
    background: #101534;
    padding: 1.3rem 7.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.navbar-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 5.5rem;
    height: 1.5rem;
    object-fit: cover;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    padding: 0.3rem 0.75rem;
    position: relative;
    line-height: 150%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease-in-out;
}
.nav-link:hover::after { width: 100%; }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #101534;
    padding: 7.5rem 7.875rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0.063rem;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    left: 0%;
}
.hero-shape {
    position: absolute;
    top: 4.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 45.688rem;
    max-height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 60rem;
    margin: 0 auto;
}
.hero-title {
    font-size: 3rem;
    line-height: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1rem;
    line-height: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 37.5rem;
    margin: 0 auto 4rem;
}

/* Tab System */
.tabs { margin-bottom: 2rem; }
.tab-list {
    background: rgba(16,21,52,0.4);
    border-radius: 10px;
    padding: 0.25rem 0.75rem;
    display: inline-flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.tab {
    padding: 0.375rem 0.625rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    line-height: 1.125rem;
    white-space: nowrap;
}
.tab.active {
    background: white;
    color: #0b081c;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}
.tab-content {
    background: #FAFAFA;
    border-radius: 24px;
    height: 31.438rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0.5px 0 rgba(255,255,255,0.5) inset, 0 -2px 10px rgba(233,223,255,0.3),
    0 -2px 40px rgba(187,155,255,0.15);
}
.tab-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Features Section */
.features {
    padding: 5rem 7.875rem;
    text-align: left;
}
.section-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}
.section-subtitle {
    font-size: 1.125rem;
    line-height: 160%;
    margin: 0 auto 2rem;
    text-align: center;
    width: 40%;
}
.features-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.feature-card {
    flex: 1;
    padding: 3.75rem;
    border-radius: 20px;
    text-align: left;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    box-shadow: 0 -2px 10px rgba(233,223,255,0.3), 0 -2px 40px rgba(187,155,255,0.15),
    0 0.5px 0 rgba(255,255,255,0.5) inset;
}
.feature-icon {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-55.62deg, #242c5d, #45a3fc);
    box-shadow: 0 0 36.45px #3068b2;
}
.feature-icon-image {
    width: 2.3rem;
    height: 2.3rem;
}
.feature-title {
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
}
.feature-text {
    font-size: 0.875rem;
    line-height: 150%;
}
.features-row {
    display: flex;
    gap: 1rem;
    padding: 3.75rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    box-shadow: 0 -2px 10px rgba(233,223,255,0.3), 0 -2px 40px rgba(187,155,255,0.15),
    0 0.5px 0 rgba(255,255,255,0.5) inset;
}
.features-row .feature-content { flex: 1; }
.features-row .feature-image {
    width: 29.188rem;
    height: 18.75rem;
    border-radius: 20px;
    background: #d9d9d9;
    box-shadow: 0 0.5px 0 rgba(255,255,255,0.5) inset, 0 -2px 10px rgba(233,223,255,0.3),
    0 -2px 40px rgba(187,155,255,0.15);
}

/* Getting Started Section */
.getting-started {
    background: #101534;
    padding: 3.75rem 7.875rem;
    font-family: Raleway, sans-serif;
}
.getting-started-content {
    display: flex;
    gap: 11.875rem;
    align-items: flex-start;
}
.getting-started-left { flex: 0.9; }
.getting-started-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.getting-started-subtitle {
    font-size: 1.125rem;
    line-height: 160%;
    color: #b6b6b6;
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.cta-btn {
    background: #0284c7;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: Montserrat, sans-serif;
}
.steps {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 1.437rem;
}
.step {
    display: flex;
    gap: 1.312rem;
    padding: 0.625rem 3.25rem 1.25rem 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
}
.step-icon {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    margin-top: 0.6rem;
}
.step-content { flex: 1; }
.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.875rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}
.step-desc {
    color: #b6b6b6;
    line-height: 1.5rem;
}

/* Pricing Section */
.pricing {
    background: #101534;
    padding: 3.75rem 1.25rem;
    text-align: left;
}
.pricing-header { margin-bottom: 4rem; }
.pricing-title {
    font-size: 3.144rem;
    font-weight: 600;
    line-height: 3.9rem;
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
}
.pricing-subtitle {
    color: rgba(255,255,255,0.6);
    line-height: 1.5rem;
    text-align: center;
}
.pricing-cards {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    max-width: 63rem;
    margin: 0 auto;
}
.pricing-card {
    width: 20.5rem;
    background: #131939;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 1.563rem;
    position: relative;
    overflow: hidden;
}
.pricing-card.featured { border-color: #0284c7; }
.pricing-card.featured::before {
    content: "";
    position: absolute;
    top: -20.312rem;
    left: -20.312rem;
    width: 40.75rem;
    height: 40.75rem;
    opacity: 0.15;
    background: radial-gradient(50% 50% at 50% 50%, #0284c7, rgba(181,212,242,0));
}
.coming-soon {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 1rem;
    border-radius: 0 0 0 20px;
}
.plan-name {
    font-size: 0.763rem;
    letter-spacing: 2.51px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
}
.plan-name.featured { color: #0284c7; }
.plan-price {
    font-size: 3.144rem;
    font-weight: 600;
    line-height: 3.9rem;
    min-height: 7.8rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.plan-price.featured {
    background: linear-gradient(180deg, #0284c7, #b5d4f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plan-desc {
    margin-bottom: 2rem;
    line-height: 1.5rem;
    min-height: 4.5rem;
}
.plan-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 60%;
    margin-bottom: 2rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(#1E1B27, #1E1B27) padding-box,
    linear-gradient(180deg, #8F92A1, #3A3E59) border-box;
    border-radius: 50px;
    border: 1px solid transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.plan-btn.disabled {
    pointer-events: none;
    opacity: 0.5;
}
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.plan-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* FAQ Section */
.faq { padding: 4rem 0; }
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}
.faq-tab:hover { background: rgba(255,255,255,0.08); }
.faq-tab.active {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}
.faq-list {
    max-width: 63rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.faq-item {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item:hover { background: rgba(255,255,255,0.02); }
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.faq-question {
    font-size: 1.2rem;
    font-weight: 500;
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 0 0 0;
    margin-top: 0;
    opacity: 0;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem 0 0 0;
    margin-top: 1rem;
    opacity: 1;
}
.faq-answer p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 1rem;
}

/* Footer */
.footer { padding: 4rem 7.875rem; }
.footer-content {
    display: flex;
    justify-content: space-between;
}
.footer-col { flex: 1; }
.footer-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.footer-link {
    font-size: 1.125rem;
    font-weight: 300;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.375rem;
    font-weight: bold;
}
.footer-copyright {
    color: #939393;
    margin-top: 2.5rem;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 1rem 1.25rem;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(16, 21, 52, 0.98);
        flex-direction: column;
        padding: 2rem 1.25rem;
        gap: 1.5rem;
    }
    .nav-menu.active {
        display: flex;
        z-index: 3;
    }
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 1.25rem 3rem;
    }
    .hero-shape {
        width: 90%;
        max-width: 25rem;
        top: 3rem;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 2.2rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    .tab-list {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    .tab-content {
        height: 20rem;
    }

    /* Features Section */
    .features {
        padding: 3rem 1.25rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        width: 100%;
        font-size: 1rem;
    }
    .features-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .feature-card {
        padding: 2rem;
    }
    .feature-title {
        font-size: 1.5rem;
    }
    .features-row {
        flex-direction: column;
        padding: 2rem;
    }
    .features-row .feature-image {
        width: 100%;
        height: 12rem;
    }

    /* Getting Started */
    .getting-started {
        padding: 3rem 1.25rem;
    }
    .getting-started-content {
        flex-direction: column;
        gap: 3rem;
    }
    .getting-started-title {
        font-size: 1.8rem;
    }
    .step {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .step-icon {
        margin-top: 0;
    }

    /* Pricing */
    .pricing {
        padding: 3rem 1.25rem;
    }
    .pricing-title {
        font-size: 2rem;
        line-height: 2.2rem;
    }
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .pricing-card {
        width: 100%;
        max-width: 20.5rem;
    }

    /* FAQ */
    .faq-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .faq-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .faq-question {
        font-size: 1rem;
        padding-right: 1rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 1.25rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-col:last-child {
        text-align: center;
    }
}

/* TABLET RESPONSIVE STYLES */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 1.3rem 3rem;
    }
    .hero {
        padding: 7rem 3rem 4rem;
    }
    .features {
        padding: 4rem 3rem;
    }
    .getting-started {
        padding: 3rem 3rem;
    }
    .getting-started-content {
        gap: 4rem;
    }
    .footer {
        padding: 4rem 3rem;
    }
    .section-subtitle {
        width: 60%;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }
    .tab {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .feature-title {
        font-size: 1.3rem;
    }
    .step {
        padding: 0.75rem;
    }
    .pricing-title {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }
}
