/* ========================================
   Rocketura Growth Desk OS Page Updates
   Premium Video Section & Enhanced Styling
   ======================================== */

/* Video Section - Vertical Stacked Layout */
.video-section {
    padding: 100px 0;
    background: var(--white);
}

/* Video Player Wrapper - Centered and Prominent */
.video-player-wrapper {
    max-width: 900px;
    margin: 60px auto 80px;
}

.video-placeholder {
    position: relative;
    background: linear-gradient(135deg, #0A0E27 0%, #111827 100%);
    border-radius: 20px;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 113, 227, 0.1) 0%, transparent 70%);
}

.video-label {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 107, 0, 0.9);
    padding: 8px 16px;
    border-radius: 8px;
    z-index: 2;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-blue);
    border: none;
    border-radius: 50%;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2;
}

.video-play-btn:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.3);
}

.video-play-btn svg {
    margin-left: 4px;
}

/* Key Points Section - Clean Layout Below Video */
.key-points-section {
    max-width: 900px;
    margin: 0 auto;
}

.key-points-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--accent-dark);
    text-align: center;
}

.key-points-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.key-point-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-point-item:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.12);
    transform: translateY(-2px);
}

.key-point-header {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.key-point-header:hover {
    background: var(--light-gray);
}

.point-number {
    width: 40px;
    height: 40px;
    background: #FF6B00;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--accent-dark);
}

.expand-icon {
    width: 32px;
    height: 32px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.key-point-header[aria-expanded="true"] .expand-icon {
    transform: rotate(45deg);
    background: var(--accent-blue);
    color: var(--white);
}

.key-point-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.key-point-header[aria-expanded="true"] + .key-point-content {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.key-point-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 56px;
}

/* OS Intro Styling */
.os-intro {
    max-width: 800px;
    margin: 48px auto;
    text-align: center;
}

.os-intro p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.os-intro strong {
    color: var(--accent-dark);
    font-weight: 600;
}

.os-emphasis {
    font-size: 1.125rem !important;
    color: var(--accent-blue) !important;
    font-weight: 600 !important;
    margin-top: 24px !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-player-wrapper {
        max-width: 800px;
        margin: 48px auto 64px;
    }
    
    .key-points-section {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 80px 0;
    }
    
    .video-player-wrapper {
        margin: 40px auto 56px;
    }
    
    .video-play-btn {
        width: 72px;
        height: 72px;
    }
    
    .video-play-btn svg {
        width: 48px;
        height: 48px;
    }
    
    .key-points-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    
    .point-title {
        font-size: 0.9375rem;
    }
    
    .key-point-content p {
        font-size: 0.9375rem;
        padding-left: 0;
    }
}

/* ========================================
   Dark Section Updates
   ======================================== */

.desk-cta-section {
    text-align: center;
    margin-top: 48px;
}

.desk-cta-secondary {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Turnkey Cards with Emoji Icons */
.turnkey-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
}

.turnkey-card {
    transition: var(--transition-fast);
}

.turnkey-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* What's Included Section - Wider Subtitle */
.whats-included .section-subtitle {
    max-width: 950px;
}

/* ========================================
   Package Toggle System
   ======================================== */

.package-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: 48px 0;
}

.package-toggle {
    display: inline-flex;
    background: var(--light-gray);
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
}

.toggle-btn {
    padding: 12px 32px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.toggle-btn:hover {
    color: var(--accent-dark);
}

.toggle-btn.active {
    background: var(--white);
    color: var(--accent-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Tab Content */
.package-tab-content {
    display: none;
}

.package-tab-content.active {
    display: block;
}

/* Performance Section Intro */
.performance-intro {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.performance-intro p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.performance-note {
    font-size: 0.9375rem !important;
    color: var(--accent-blue) !important;
    font-weight: 600 !important;
    font-style: italic;
}

/* Performance Card Enhancements */
.performance-badge {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C33 100%);
}

.package-promise {
    font-size: 1rem;
    line-height: 1.6;
    margin: 16px 0;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid #FF6B00;
}

.package-structure {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 12px 0;
}

.package-footnote {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--medium-gray);
    line-height: 1.5;
}

/* Responsive Toggle */
@media (max-width: 768px) {
    .package-toggle {
        width: 100%;
        max-width: 400px;
    }
    
    .toggle-btn {
        flex: 1;
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

