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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    padding: 80px 0 0;
    background: linear-gradient(135deg, #0A1628 0%, #1E1B4B 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(174, 68, 191, 0.15), transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(174, 68, 191, 0.1), transparent 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(174, 68, 191, 0.1);
    border: 1px solid rgba(174, 68, 191, 0.2);
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 40px;
    color: #AE44BF;
    font-weight: 600;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 20px;
}

.hero-title-top {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-main {
    display: block;
    font-size: 80px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 32px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-desc {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.hero-features i {
    color: #AE44BF;
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #AE44BF;
    color: white;
    text-decoration: none;
    padding: 20px 48px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-primary:hover {
    background: #8E37A0;
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(174, 68, 191, 0.08), transparent 70%),
        radial-gradient(circle at 0% 0%, rgba(174, 68, 191, 0.05), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(174, 68, 191, 0.05), transparent 50%);
    pointer-events: none;
}

.features-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 64px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(174, 68, 191, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 48px rgba(174, 68, 191, 0.2);
}

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

.feature-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    background: rgba(174, 68, 191, 0.1);
    color: #AE44BF;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.feature-card.new-feature .feature-badge {
    background: linear-gradient(135deg, #AE44BF, #8E37A0);
    color: white;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(174, 68, 191, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #AE44BF;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: #AE44BF;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0A1628;
    margin: 0;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #1E293B;
    margin: 0;
    flex-grow: 1;
}

.feature-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: auto;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat .number {
    font-size: 24px;
    font-weight: 700;
    color: #AE44BF;
    line-height: 1;
}

.stat .label {
    font-size: 14px;
    color: #64748B;
}

/* Video Section */
.hero-video {
    margin-top: 64px;
    width: 100%;
    background: linear-gradient(to bottom, transparent, #0A1628);
    padding: 0 24px 48px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.3);
    position: relative;
}

.video-preview {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    transition: background 0.2s ease;
}

.video-preview:hover::after {
    background: rgba(0,0,0,0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #AE44BF;
    color: white;
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(174, 68, 191, 0.4);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 24px rgba(174, 68, 191, 0.5);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-title-main {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    .hero-badge {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .hero-title-main {
        font-size: 48px;
    }
    .hero-subtitle {
        font-size: 24px;
    }
    .hero-features {
        gap: 16px;
    }
    .hero-features span {
        font-size: 14px;
    }
    .btn-primary {
        display: inline-flex;
        width: auto;
        min-width: 200px;
        text-align: center;
        justify-content: center;
        padding: 16px 32px;
    }

    .features {
        padding: 80px 0;
    }

    .features-title {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 32px;
    }

    .feature-badge {
        top: 16px;
        right: 16px;
        font-size: 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 15px;
    }

    .stat .number {
        font-size: 20px;
    }

    .stat .label {
        font-size: 12px;
    }

    .hero-video {
        margin-top: 48px;
    }

    .play-button {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(174, 68, 191, 0.08), transparent 70%),
        radial-gradient(circle at 0% 0%, rgba(174, 68, 191, 0.05), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(174, 68, 191, 0.05), transparent 50%);
    pointer-events: none;
}

.benefits-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.benefits h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 64px;
    color: #0A1628;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.benefit-item {
    padding: 32px;
    background: #AE44BF;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(174, 68, 191, 0.15);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(174, 68, 191, 0.25);
}

.emoji {
    font-size: 40px;
    margin-bottom: 24px;
    display: block;
}

.benefit-item p {
    font-size: 20px;
    line-height: 1.5;
    color: white;
}

.benefit-item strong {
    color: white;
}

.benefits-explanation {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.benefits-explanation p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #1E293B;
}

.benefits-explanation .emphasis {
    font-size: 24px;
    color: #0A1628;
    margin-bottom: 32px;
}

.benefits-explanation .highlight {
    font-size: 24px;
    color: #AE44BF;
    text-align: center;
    padding: 32px;
    background: rgba(174, 68, 191, 0.05);
    border-radius: 16px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .benefits {
        padding: 80px 0;
    }

    .benefits h2 {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .benefits-list {
        gap: 24px;
        margin-bottom: 64px;
    }

    .benefit-item {
        padding: 24px;
    }

    .emoji {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .benefit-item p {
        font-size: 18px;
    }

    .benefits-explanation p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .benefits-explanation .emphasis,
    .benefits-explanation .highlight {
        font-size: 20px;
    }

    .benefits-explanation .highlight {
        padding: 24px;
        margin-top: 40px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A1628 0%, #1E1B4B 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(174, 68, 191, 0.15), transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(174, 68, 191, 0.1), transparent 70%);
    pointer-events: none;
}

.how-it-works .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 80px;
    color: white;
    position: relative;
}

.steps-grid {
    display: grid;
    gap: 48px;
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 48px;
    width: 48px;
    height: 48px;
    background: #AE44BF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 20px rgba(174, 68, 191, 0.3);
}

.step-content {
    display: grid;
    gap: 24px;
}

.step-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.step-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.step-content .btn-primary {
    justify-self: start;
    margin-top: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(174, 68, 191, 0.08), transparent 70%),
        radial-gradient(circle at 0% 0%, rgba(174, 68, 191, 0.05), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(174, 68, 191, 0.05), transparent 50%);
    pointer-events: none;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(174, 68, 191, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 48px rgba(174, 68, 191, 0.2);
}

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

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.testimonials-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 32px;
}

.testimonials-header .subtitle {
    font-size: 24px;
    color: #AE44BF;
    font-weight: 600;
    margin-bottom: 24px;
}

.testimonials-header p {
    font-size: 20px;
    line-height: 1.6;
    color: #1E293B;
    margin-bottom: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(174, 68, 191, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(174, 68, 191, 0.15);
}

/* Make the last two testimonials wider */
.testimonial-card:nth-last-child(-n+2) {
    grid-column: span 3;
}

@media (min-width: 768px) {
    .testimonial-card:nth-last-child(-n+2) {
        grid-column: span 3;
    }
    .testimonials-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .testimonial-card:not(:nth-last-child(-n+2)) {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .testimonial-card {
        grid-column: 1 / -1 !important;
        width: 100%;
    }
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(174, 68, 191, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #AE44BF;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A1628;
    margin: 0;
}

.testimonial-info .company {
    font-size: 16px;
    color: #64748B;
    margin: 4px 0;
}

.rating {
    color: #AE44BF;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1E293B;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .how-it-works,
    .testimonials {
        padding: 80px 0;
    }

    .how-it-works .section-title,
    .testimonials-header h2 {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .step-card {
        padding: 32px;
    }

    .step-content h3 {
        font-size: 24px;
    }

    .step-content p {
        font-size: 16px;
    }

    .testimonials-header .subtitle {
        font-size: 20px;
    }

    .testimonials-header p {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    background: rgba(174, 68, 191, 0.1);
    color: #AE44BF;
    border-radius: 50%;
    border: 2px solid rgba(174, 68, 191, 0.2);
}

@media (max-width: 768px) {
    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }

    .avatar-placeholder {
        font-size: 16px;
    }
}

.features-detail {
    padding: 120px 0;
    background: #201C47;
    position: relative;
    overflow: hidden;
}

.features-detail-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 64px;
    line-height: 1.2;
}

.features-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.feature-detail-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(174, 68, 191, 0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-detail-card.full-width {
    /* Remove the max-width constraint to match other cards */
}

.feature-detail-card.full-width .feature-detail-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 48px;
}

@media (min-width: 1024px) {
    .feature-detail-card {
        display: flex;
        align-items: stretch;
    }

    .feature-detail-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .feature-detail-image {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 24px;
    }

    .feature-detail-content {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Override for the full-width card content */
    .feature-detail-card.full-width .feature-detail-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 64px;
    }
}

@media (max-width: 1023px) {
    .feature-detail-card {
        display: flex;
        flex-direction: column;
    }

    .feature-detail-image {
        width: 100%;
        padding: 24px 24px 0 24px;
    }

    .feature-detail-content {
        padding: 32px 24px;
    }
}

.feature-detail-image {
    width: 100%;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-detail-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.feature-detail-content {
    padding: 40px;
}

.feature-detail-content.no-image {
    padding: 48px;
}

.feature-detail-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0A1628;
    margin: 0 0 24px 0;
}

.feature-detail-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-detail-benefits span {
    background: rgba(174, 68, 191, 0.08);
    color: #AE44BF;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-detail-benefits i {
    font-size: 14px;
}

.feature-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin: 16px 0;
}

.feature-detail-content p strong {
    color: #0A1628;
}

@media (max-width: 768px) {
    .features-detail {
        padding: 80px 0;
    }

    .features-detail-title {
        font-size: 36px;
        margin-bottom: 48px;
        padding: 0 24px;
    }

    .feature-detail-card.full-width .feature-detail-content {
        padding: 32px 24px;
    }

    .features-detail-grid {
        gap: 32px;
    }

    .feature-detail-image {
        height: 200px;
    }

    .feature-detail-content,
    .feature-detail-content.no-image {
        padding: 32px 24px;
    }

    .feature-detail-content h3 {
        font-size: 24px;
        margin: 0 0 20px 0;
    }

    .feature-detail-benefits {
        gap: 12px;
        margin-bottom: 24px;
    }

    .feature-detail-benefits span {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    position: relative;
    background: #fff;
    border-top: 8px solid #6B46C1;  /* Adding a thick purple separator */
}

.pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(174, 68, 191, 0.08), transparent 70%),
        radial-gradient(circle at 0% 0%, rgba(174, 68, 191, 0.05), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(174, 68, 191, 0.05), transparent 50%);
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.pricing-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 32px;
}

.pricing-timer {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(174, 68, 191, 0.1);
    padding: 24px 48px;
    border-radius: 16px;
}

.timer-label {
    font-size: 20px;
    font-weight: 600;
    color: #AE44BF;
}

.countdown {
    display: flex;
    gap: 16px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.time {
    font-size: 36px;
    font-weight: 700;
    color: #0A1628;
    min-width: 60px;
    text-align: center;
}

.time-block .label {
    font-size: 14px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(174, 68, 191, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #0A1628 0%, #1E1B4B 100%);
    color: white;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 48px;
    background: #AE44BF;
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 160px;
}

.price {
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    color: #AE44BF;
    line-height: 1;
}

.period {
    font-size: 20px;
    color: #64748B;
    margin-top: -4px;
}

.savings {
    font-size: 20px;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.save-text {
    color: #AE44BF;
    font-weight: 600;
}

.featured .price .amount {
    color: white;
}

.featured .period,
.featured .savings {
    color: rgba(255, 255, 255, 0.7);
}

.featured .save-text {
    color: white;
}

.pricing-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.feature-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-group ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-group li {
    font-size: 16px;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
}

.feature-group li.indented {
    padding-left: 16px;
}

.feature-group li strong {
    color: #0A1628;
    font-weight: 700;
}

.featured .feature-group li.indented {
    color: rgba(255, 255, 255, 0.9);
}

.feature-group li i {
    color: #AE44BF;
}

.featured h3 {
    color: white;
}

.featured .price .amount {
    color: white;
}

.featured .price .period {
    color: rgba(255, 255, 255, 0.7);
}

.featured .then-price, 
.featured .savings {
    color: rgba(255, 255, 255, 0.7);
}

.featured .save-text {
    color: white;
}

.featured .feature-group h4 {
    color: rgba(255, 255, 255, 0.7);
}

.featured .feature-group li {
    color: rgba(255, 255, 255, 0.9);
}

.featured .feature-group li strong {
    color: white;
}

.featured .feature-group li i {
    color: white;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
}

.featured .btn-primary {
    background: white;
    color: #0A1628;
}

.featured .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-purple {
    background: #AE44BF !important;
    color: white !important;
}

.btn-purple:hover {
    background: #8E37A0 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .pricing {
        padding: 40px 0;
    }

    .pricing-header h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .pricing-timer {
        padding: 16px 24px;
    }

    .timer-label {
        font-size: 16px;
    }

    .time {
        font-size: 28px;
        min-width: 48px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-badge {
        right: 24px;
        font-size: 12px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .price .amount {
        font-size: 36px;
    }

    .price .period {
        font-size: 16px;
    }

    .pricing-card-header {
        min-height: 140px;
        gap: 6px;
    }

    .price .amount {
        font-size: 36px;
    }

    .period {
        font-size: 16px;
    }

    .savings {
        font-size: 18px;
    }
}

/* Revolutionary Model Section */
.revolutionary-model {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.revolutionary-model::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(174, 68, 191, 0.08), transparent 70%),
        radial-gradient(circle at 0% 0%, rgba(174, 68, 191, 0.05), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(174, 68, 191, 0.05), transparent 50%);
    pointer-events: none;
}

.revolutionary-model h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 64px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-item {
    text-align: center;
    padding: 32px;
    background: rgba(174, 68, 191, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-4px);
    background: rgba(174, 68, 191, 0.08);
}

.achievement-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.achievement-item p {
    font-size: 20px;
    color: #0A1628;
    font-weight: 600;
}

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

.value-proposition p {
    font-size: 20px;
    line-height: 1.6;
    color: #1E293B;
    margin-bottom: 24px;
}

.value-proposition .highlight {
    font-size: 24px;
    color: #AE44BF;
    font-weight: 600;
    padding: 24px;
    background: rgba(174, 68, 191, 0.05);
    border-radius: 16px;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1628 0%, #1E1B4B 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(174, 68, 191, 0.15), transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(174, 68, 191, 0.1), transparent 70%);
    pointer-events: none;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guarantee-content h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
}

.guarantee-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Tiers */
.pricing-tiers {
    margin-top: 80px;
    text-align: center;
}

.pricing-tiers h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 32px;
}

.tier-options {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.tier-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(174, 68, 191, 0.2);
}

.tier-card.featured {
    background: linear-gradient(135deg, #0A1628 0%, #1E1B4B 100%);
    color: white;
}

.tier-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tier-price {
    font-size: 36px;
    font-weight: 800;
    color: #AE44BF;
    margin-bottom: 8px;
}

.tier-price span {
    font-size: 18px;
    font-weight: 600;
    color: #64748B;
}

.tier-card.featured .tier-price,
.tier-card.featured .tier-price span {
    color: white;
}

.tier-desc {
    font-size: 16px;
    color: #64748B;
}

.tier-card.featured .tier-desc {
    color: rgba(255, 255, 255, 0.7);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #AE44BF;
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .revolutionary-model {
        padding: 80px 0;
    }

    .revolutionary-model h2 {
        font-size: 36px;
        margin-bottom: 48px;
        padding: 0 24px;
    }

    .achievements-grid {
        gap: 24px;
        padding: 0 24px;
    }

    .achievement-item {
        padding: 24px;
    }

    .achievement-icon {
        font-size: 32px;
    }

    .achievement-item p {
        font-size: 18px;
    }

    .value-proposition p {
        font-size: 18px;
        padding: 0 24px;
    }

    .value-proposition .highlight {
        font-size: 20px;
        margin: 0 24px;
    }

    .guarantee-content {
        padding: 0 24px;
    }

    .guarantee-content h3 {
        font-size: 28px;
    }

    .guarantee-content p {
        font-size: 18px;
    }

    .pricing-tiers {
        margin-top: 64px;
        padding: 0 24px;
    }

    .tier-options {
        flex-direction: column;
    }

    .tier-card {
        padding: 24px;
    }

    .tier-card h4 {
        font-size: 20px;
    }

    .tier-price {
        font-size: 32px;
    }
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: #64748B;
    margin-top: 32px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pricing-note {
        font-size: 13px;
        margin-top: 24px;
        padding: 0 24px;
    }
}

.faq-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(99, 102, 241, 0.05) 0%, rgba(99, 102, 241, 0) 100%);
    pointer-events: none;
}

.faq-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 48px;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.accordion-title {
    padding: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.accordion-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}

.accordion-icon {
    color: #64748B;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    display: none;
    padding: 0 24px 24px;
    color: #64748B;
    line-height: 1.6;
}

.accordion-content p {
    margin: 0 0 16px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.accordion-content li {
    margin-bottom: 8px;
    color: #64748B;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 48px 24px;
    }

    .faq-section h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .accordion-title {
        padding: 16px;
    }

    .accordion-title h3 {
        font-size: 16px;
    }

    .accordion-content {
        padding: 0 16px 16px;
    }
}

.order-progress {
    background: #f8fafc;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.progress-container {
    max-width: 600px;
    margin: 0 auto 20px;
    background: #e2e8f0;
    height: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: width 0.5s ease;
}

.order-status {
    margin-bottom: 24px;
}

.order-status h2 {
    color: #22c55e;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.order-status p {
    color: #64748b;
    font-size: 16px;
}

.special-offer {
    padding: 20px 0;
}

.special-offer h1 {
    color: #1e293b;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.special-offer p {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .order-progress {
        padding: 16px;
    }

    .progress-container {
        max-width: 100%;
        margin: 0 auto 16px;
    }

    .special-offer h1 {
        font-size: 24px;
        padding: 0 16px;
    }

    .special-offer p {
        font-size: 16px;
        padding: 0 16px;
    }
}

.languages-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #0A1628 0%, #1E1B4B 100%);
    overflow: hidden;
}

.languages-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(174, 68, 191, 0.15), transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(174, 68, 191, 0.1), transparent 70%);
    pointer-events: none;
}

.languages-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 48px;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.language-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #1E293B;
}

.language-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.language-item img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.site-footer {
    background: #1E293B;
    padding: 24px 0;
    text-align: center;
    color: #E2E8F0;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
}

.site-footer a {
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .languages-section {
        padding: 48px 0;
    }

    .languages-section h2 {
        font-size: 32px;
        margin-bottom: 32px;
        padding: 0 24px;
    }

    .languages-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
        padding: 0 16px;
    }

    .language-item {
        padding: 8px 12px;
        font-size: 12px;
    }

    .language-item img {
        width: 16px;
    }
}

.btn-primary-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    cursor: pointer;
}

.video-container video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Style video controls */
.video-container video::-webkit-media-controls-panel {
    padding: 0 10px;
}

.video-container video::-webkit-media-controls-play-button,
.video-container video::-webkit-media-controls-volume-slider,
.video-container video::-webkit-media-controls-mute-button,
.video-container video::-webkit-media-controls-timeline {
    cursor: pointer;
}

.sound-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 4;
    transition: opacity 0.3s ease;
}

.sound-toggle.hidden {
    opacity: 0;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        margin: 15px auto;
    }
    
    .sound-toggle {
        font-size: 12px;
        padding: 6px 12px;
        top: 10px;
        right: 10px;
    }
}