/* Script Page Specific Styles */

/* Main Content */
main {
    padding-top: 80px;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Segoe UI Black', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 .gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(74, 158, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--primary);
}

.feature-text {
    color: var(--text-primary);
    font-size: 14px;
}

.hero-cta {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4);
}

.hero-visual {
    position: relative;
    min-height: 540px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding-bottom: 0;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 55%;
    background: rgba(74, 158, 255, 0.18);
    filter: blur(90px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

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

/* Single Hero Image Styles */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    text-align: center;
}

.hero-image-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--text-tertiary);
    margin-bottom: 20px;
}

.hero-image-placeholder p {
    font-size: 14px;
    margin: 0;
}

.hero-image[src]:not([src=""]) {
    display: block;
}

.hero-image[src]:not([src=""]) ~ .hero-image-placeholder {
    display: none;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slideshow-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.slide-placeholder {
    text-align: center;
    color: var(--text-tertiary);
}

.slide-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--text-tertiary);
    margin-bottom: 20px;
}

.slide-image[src]:not([src=""]) {
    display: block;
}

.slide-image[src]:not([src=""]) ~ .slide-placeholder {
    display: none;
}

/* Navigation Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary);
}

.slide-prev {
    left: 20px;
}

.slide-next {
    right: 20px;
}

/* Dots Indicator */
.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Status Indicator */
.status-indicator {
    background: rgba(0, 212, 170, 0.08);
    border-left: 3px solid #00D4AA;
    padding: 12px 24px;
    margin-top: 16px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00D4AA;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.6);
}

@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.status-text {
    font-size: 11px;
    color: #00D4AA;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Segoe UI Black', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: rgba(74, 158, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

/* Version Toggle */
.version-toggle-container {
    text-align: center;
    margin: 40px auto 50px;
}

.toggle-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    font-weight: 500;
}

.version-toggle {
    display: inline-flex;
    gap: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.version-btn {
    padding: 7px 16px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    position: relative;
}

.version-btn:last-child {
    border-right: none;
}

.version-btn svg {
    width: 12px;
    height: 12px;
    stroke-width: 2;
    transition: all 0.2s ease;
}

.version-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
}

.version-btn.active {
    background: rgba(74, 158, 255, 0.1);
    color: var(--primary);
    font-weight: 600;
}

.version-btn.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary);
}

/* Special Purple Animation for Private Tab */
.version-btn[data-version="private"].active {
    background: rgba(123, 97, 255, 0.15);
    color: #a78bfa;
    animation: privatePulse 2s ease-in-out infinite;
    box-shadow:
        0 0 20px rgba(123, 97, 255, 0.3),
        0 0 40px rgba(123, 97, 255, 0.15),
        inset 0 0 15px rgba(123, 97, 255, 0.1);
}

.version-btn[data-version="private"].active::before {
    background: linear-gradient(90deg, #7B61FF, #a78bfa, #7B61FF);
    background-size: 200% 100%;
    animation: privateShimmer 2s linear infinite;
    height: 2px;
}

.version-btn[data-version="private"].active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.1), rgba(167, 139, 250, 0.05));
    pointer-events: none;
    border-radius: inherit;
}

@keyframes privatePulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(123, 97, 255, 0.3),
            0 0 40px rgba(123, 97, 255, 0.15),
            inset 0 0 15px rgba(123, 97, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 25px rgba(123, 97, 255, 0.5),
            0 0 50px rgba(123, 97, 255, 0.25),
            inset 0 0 20px rgba(123, 97, 255, 0.15);
    }
}

@keyframes privateShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-duration {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.pricing-price sup {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Black Friday Sale Styles */
.sale-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: salePulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
}

@keyframes salePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 68, 68, 0.6);
    }
}

.pricing-original {
    font-size: 18px;
    color: var(--text-tertiary);
    text-decoration: line-through;
    margin-bottom: 4px;
    opacity: 0.7;
}

.pricing-price.sale {
    color: #ff4444;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.pricing-period {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    min-height: 60px;
}

.pricing-highlight {
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 12px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

/* Extended hover area for easier interaction */
.pricing-cta::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: 1;
}

.pricing-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    color: white;
}

.pricing-card.featured .pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4);
}

/* Features Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-header-cell {
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    text-align: center;
}

.comparison-header-cell:first-child {
    text-align: left;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.01);
}

.comparison-cell {
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

.comparison-cell:first-child {
    text-align: left;
    color: var(--text-primary);
}

.comparison-check {
    color: var(--success);
    font-size: 16px;
}

/* Payment Methods - Lethality-Inspired Glassy Style */
.payment-section {
    padding: 80px 0 60px;
    background: transparent;
}

.payment-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
}

.payment-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.payment-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.payment-method {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    cursor: pointer;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.payment-method svg {
    width: 32px;
    height: 32px;
    fill: rgba(255, 255, 255, 0.7);
}

.payment-method i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.payment-method:hover i {
    color: rgba(255, 255, 255, 0.95);
}

.payment-icon-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.payment-note {
    font-size: 12px;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.payment-note::before {
    content: '';
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234A9EFF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* ===== Public Pricing Cards - Simple Blue Theme ===== */
#public-pricing .pricing-card {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.04) 0%, rgba(123, 97, 255, 0.02) 100%);
    border: 1px solid rgba(74, 158, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.08);
}

#public-pricing .pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.15);
}

#public-pricing .pricing-card.featured {
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.12);
}

#public-pricing .pricing-card.featured:hover {
    box-shadow: 0 12px 35px rgba(74, 158, 255, 0.2);
}

/* Move badges inside card for public pricing */
#public-pricing .pricing-badge {
    top: 10px;
}

#public-pricing .sale-badge {
    top: 10px;
}

/* ===== Private Pricing Cards - Premium Purple Theme ===== */
#private-pricing .pricing-card {
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.08) 0%, rgba(167, 139, 250, 0.05) 100%);
    border: 1px solid rgba(123, 97, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 5px 20px rgba(123, 97, 255, 0.15);
    animation: privateBorderPulse 3s ease-in-out infinite;
}

#private-pricing .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(123, 97, 255, 0.12) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    animation: privateShimmerCard 4s ease-in-out infinite;
}

#private-pricing .pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 15px 40px rgba(123, 97, 255, 0.3);
}

/* Staggered animation delays for each card */
#private-pricing .pricing-card:nth-child(1)::before {
    animation-delay: 0s;
}

#private-pricing .pricing-card:nth-child(2)::before {
    animation-delay: 1.3s;
}

#private-pricing .pricing-card:nth-child(3)::before {
    animation-delay: 2.6s;
}

/* Featured card gets extra purple glow */
#private-pricing .pricing-card.featured {
    border-color: rgba(167, 139, 250, 0.5);
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.12) 0%, rgba(167, 139, 250, 0.06) 100%);
    box-shadow: 0 5px 25px rgba(123, 97, 255, 0.25);
}

#private-pricing .pricing-card.featured:hover {
    box-shadow: 0 15px 45px rgba(123, 97, 255, 0.35);
}

/* Move badges inside card to work with overflow:hidden */
#private-pricing .pricing-badge {
    top: 10px;
}

#private-pricing .sale-badge {
    top: 10px;
}

#private-pricing .xmas-badge {
    top: 10px;
    right: 10px;
}

#private-pricing .pricing-card.featured .pricing-badge {
    background: linear-gradient(135deg, #7B61FF 0%, #a78bfa 100%);
    box-shadow: 0 0 15px rgba(123, 97, 255, 0.4);
}

/* Purple themed CTA buttons for private */
#private-pricing .pricing-cta {
    border-color: #a78bfa;
    color: #a78bfa;
    transition: all 0.25s ease;
}

#private-pricing .pricing-cta:hover {
    background: linear-gradient(135deg, #7B61FF 0%, #a78bfa 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(123, 97, 255, 0.4);
}

#private-pricing .pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, #7B61FF 0%, #a78bfa 100%);
    border: none;
    color: white;
}

#private-pricing .pricing-card.featured .pricing-cta:hover {
    box-shadow: 0 8px 25px rgba(123, 97, 255, 0.5);
}

/* Purple sale price color */
#private-pricing .pricing-price.sale {
    color: #a78bfa;
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.3);
}

/* Optimized animations - GPU accelerated */
@keyframes privateBorderPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(123, 97, 255, 0.15);
    }
    50% {
        box-shadow: 0 5px 30px rgba(123, 97, 255, 0.25);
    }
}

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

.pricing-card.sold-out {
    opacity: 0.5;
    animation: none !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}
.pricing-card.sold-out::before { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-image-container,
    .slideshow-container {
        height: 360px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 680px;
    }

    .comparison-table {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 70px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-container {
        padding: 0 20px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-visual {
        min-height: 260px;
    }

    .hero-image-container,
    .slideshow-container {
        height: 260px;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
    }

    .section-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .features-section,
    .pricing-section,
    .comparison-section,
    .payment-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    .version-toggle-container {
        margin: 24px auto 36px;
    }

    .comparison-header-cell,
    .comparison-cell {
        padding: 10px 12px;
        font-size: 12px;
    }

    .payment-methods {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-method {
        font-size: 28px;
    }

    .slide-arrow {
        padding: 8px;
    }

    .pricing-card {
        padding: 24px;
    }

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