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

body {
    font-family: 'Inter', sans-serif;
    background: #0a1a2e;
    color: #e0e7ff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, #0a1a2e 0%, #16213e 50%, #1a2332 100%),
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.03) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(0, 212, 255, 0.03) 0px, transparent 1px, transparent 40px);
    z-index: -1;
    opacity: 0.5;
}

a {
    color: #00d4ff;
    text-decoration: none;
}

.navbar {
    background: rgba(10, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    margin: 1.5rem auto;
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    width: calc(100% - 12rem);
    max-width: 1100px;
    padding: 0.75rem 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(10, 26, 46, 0.95);
}

.navbar .container {
    max-width: 100%;
    padding: 0 2rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.nav-link {
    color: rgba(224, 231, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.btn-outline-custom {
    border: 2px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    color: #0a1a2e;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.5);
    color: #0a1a2e;
}

.footer {
    background: rgba(10, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(224, 231, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.footer-section-title {
    color: #00d4ff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(224, 231, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    color: rgba(224, 231, 255, 0.6);
    font-size: 0.85rem;
}

/* Mobile Menu Styles */
.navbar-toggler {
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background: #00d4ff;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #00d4ff;
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::after {
    bottom: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.navbar-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    margin-top: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar-mobile-menu.active {
    max-height: 500px;
    opacity: 1;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: rgba(224, 231, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 1.5rem);
        margin: 0.75rem auto;
    }
    .navbar.scrolled {
        width: calc(100% - 1.5rem);
    }
}

.hero-section {
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(14, 165, 233, 0.1)); */
    /* border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.3); */
    /* backdrop-filter: blur(20px); */
    position: relative;
    overflow: hidden;
    /* box-shadow:
        0 20px 60px rgba(0, 212, 255, 0.2),
        0 0 40px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    /* animation: heroImageFloat 6s ease-in-out infinite; */
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* background: repeating-linear-gradient(
        45deg,
        rgba(0, 212, 255, 0.03) 0px,
        rgba(0, 212, 255, 0.03) 20px,
        transparent 20px,
        transparent 40px
    );
    animation: movePattern 20s linear infinite; */
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent);
    border-radius: 50%;
    filter: blur(130px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-title {
    font-size: 2.9rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6));
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.features-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

/* Workflow */
.workflow-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.workflow-step {
    flex: 1 1 220px;
    max-width: 320px;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s ease;
}

.workflow-step:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.workflow-step--center {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
}

.workflow-step--center:hover {
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25);
}

.workflow-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.workflow-icon-wrap--highlight .workflow-icon svg {
    filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.6));
}

.workflow-icon {
    display: block;
    line-height: 1;
}

.workflow-icon svg {
    width: 56px;
    height: 56px;
    color: #00d4ff;
    display: block;
    margin: 0 auto;
}

.workflow-step-number {
    position: absolute;
    top: -8px;
    right: -12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.workflow-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.workflow-text {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.workflow-badges {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.workflow-badge {
    font-size: 0.72rem;
    font-weight: 500;
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    background: rgba(0, 212, 255, 0.07);
    letter-spacing: 0.02em;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 0.5rem;
    margin-top: calc(2.5rem + 1.75rem + 0.5rem);
    color: rgba(0, 212, 255, 0.5);
    gap: 0;
}

.workflow-arrow-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,212,255,0.2), rgba(0,212,255,0.6));
}

.workflow-arrow-head {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .workflow-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .workflow-step {
        max-width: 100%;
        width: 100%;
    }
    .workflow-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        margin-bottom: 0;
        padding: 0.25rem 0;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 212, 255, 0.2),
        0 0 40px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 212, 255, 0.5));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-text {
    color: #94a3b8;
    line-height: 1.8;
}

.stats-section {
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 20px rgba(0, 212, 255, 0.3));
}

.stat-label {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 1320px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
    background: rgba(0, 212, 255, 0.05);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 212, 255, 0.2),
        0 0 40px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    color: #0a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-plan-desc {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-price {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-currency {
    font-size: 2rem;
    margin-right: 0.25rem;
}

.pricing-tokens {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-per-token {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.pricing-button {
    width: 100%;
    margin-top: auto;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    font-size: 12px;
    font-weight: bold;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-icon:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
}

.modal-content {
    background: rgba(10, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.5rem 2rem;
}

.modal-title {
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.modal-footer {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 2rem;
}

.btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.7;
}

.btn-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem 0;
    }
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-image-container {
        height: 350px;
    }
    .hero-image {
        font-size: 5rem;
    }
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    .stats-section {
        padding: 3rem 0;
        margin: 3rem 0;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 0.85rem;
    }
    .pricing-section {
        padding: 4rem 0;
    }
    .pricing-title {
        font-size: 2rem;
    }
    .pricing-subtitle {
        font-size: 1rem;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
    .pricing-price {
        font-size: 3rem;
    }
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
    }
}

.modal {
    --bs-modal-width: 620px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    position: relative;
}

.faq-header {
    margin-bottom: 3rem;
}

.accordion {
    --bs-accordion-bg: rgba(255, 255, 255, 0.02);
    --bs-accordion-border-color: rgba(0, 212, 255, 0.2);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-bg: rgba(0, 212, 255, 0.05);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.accordion-button {
    color: #e0e7ff;
    background: transparent;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: rgba(224, 231, 255, 0.8);
    padding: 1.25rem 1.5rem;
    line-height: 1.7;
    background: rgba(10, 26, 46, 0.3);
    text-align: justify;
}

.accordion-collapse {
    border: none;
}
