/* Landing Page Styles */

:root {
    --accent-primary: #3b82f6;
    --accent-hover: #2563eb;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-body: #0f172a;
    --bg-section: #1e293b;
    --bg-card: #1e293b;
    --border-color: #334155;
    --drawer-expanded-width: 420px;
    --drawer-collapsed-width: 60px;
}

/* Animated Drawer */
.player-frame.dark {
    background: #0a0e1a;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

.player-body {
    height: 460px;
    display: flex;
    background: #000;
    position: relative;
}

.player-drawer {
    width: var(--drawer-expanded-width);
    min-width: var(--drawer-expanded-width);
    background: rgba(15, 23, 42, 0.98);
    border-right: 1px solid rgba(51, 65, 85, 0.8);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.player-drawer.drawer-animated {
    /* Default state */
}

/* Adjust drawer width for hero preview - use absolute positioning */
.player-preview .player-drawer {
    width: 380px;
    min-width: 380px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-preview .player-drawer.drawer-animated.drawer-open {
    transform: translateX(0);
}

.player-preview .player-drawer.drawer-animated:not(.drawer-open) {
    transform: translateX(-100%);
    border-right: none;
}

/* Collapsed state hide most content */
.player-preview .player-drawer.drawer-animated:not(.drawer-open) .player-drawer-header {
    display: none;
}

.player-preview .player-drawer.drawer-animated:not(.drawer-open) .player-playlist {
    display: none;
}

/* Show only browse icon in collapsed state */
.player-preview .player-drawer.drawer-animated:not(.drawer-open) .browse-pane {
    padding: 12px 8px;
}

.player-preview .player-drawer.drawer-animated:not(.drawer-open) .browse-header {
    display: none;
}

.player-preview .player-drawer.drawer-animated:not(.drawer-open) .browse-list {
    gap: 8px;
}

.player-preview .player-drawer.drawer-animated:not(.drawer-open) .browse-item {
    padding: 10px 8px;
    justify-content: center;
}

.player-preview .player-drawer.drawer-animated:not(.drawer-open) .browse-item .icon-folder {
    font-size: 20px;
}

.player-preview .player-drawer.drawer-animated:not(.drawer-open) .browse-item span:not(.icon-folder) {
    display: none;
}

/* Make browse pane fit in collapsed state */
.player-preview .player-drawer.drawer-animated:not(.drawer-open) .player-drawer-inner {
    padding: 8px 4px;
}

/* Collapsed state hide browse content */
.player-preview .player-drawer.drawer-animated:not(.drawer-open) .browse-pane {
    display: none;
}

/* Drawer hover zone - hidden but shows when hovered from left */
.drawer-hover-zone {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    bottom: 0;
    z-index: 20;
    pointer-events: auto;
    background: transparent;
}

.player-drawer-header {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.6);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.player-drawer-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-drawer-icon {
    font-size: 18px;
}

.player-drawer-path {
    font-size: 12px;
    color: rgba(148, 163, 184, 0.9);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-drawer-slider-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-label {
    font-size: 11px;
    color: rgba(148, 163, 184, 0.7);
    min-width: 28px;
}

.slider-track {
    flex: 1;
    height: 6px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 999px;
    position: relative;
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 999px;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.slider-value {
    font-size: 12px;
    color: rgba(148, 163, 184, 0.9);
    min-width: 18px;
    text-align: right;
}

.player-drawer-inner {
    flex: 1;
    overflow: hidden;
    display: flex;
    padding: 10px;
    gap: 10px;
}

.browse-pane {
    width: 160px;
    display: flex;
    flex-direction: column;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.browse-header {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.browse-header label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.browse-list {
    flex: 1;
    overflow-y: auto;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.browse-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 13px;
    color: rgba(226, 232, 240, 0.9);
}

.browse-item:hover {
    background: rgba(148, 163, 184, 0.1);
}

.browse-item.active {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.icon-folder {
    font-size: 14px;
}

.player-playlist {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.playlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px 8px;
}

.playlist-header label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.playlist-toggle-view {
    font-size: 14px;
    opacity: 0.6;
    cursor: pointer;
}

.playlist-toggle-view:hover {
    opacity: 1;
}

.playlist-items-thumbs {
    flex: 1;
    overflow-y: auto;
    display: grid;
    gap: 8px;
    padding: 2px 2px 2px 2px;
    align-content: start;
}

.playlist-items-thumbs.cols-10 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.playlist-thumb-card {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.playlist-thumb-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    border-color: rgba(59, 130, 246, 0.4);
}

.playlist-thumb-card.active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6, 0 8px 20px rgba(59, 130, 246, 0.3);
}

.thumb-card-img {
    position: absolute;
    inset: 0;
}

.thumb-card-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 8px 6px 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Video area */
.player-video {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.player-video-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.player-video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.player-video-content .big-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.8);
}

.hint {
    font-size: 14px;
    color: rgba(226, 232, 240, 0.9);
}

.hint-sub {
    font-size: 12px;
    color: rgba(148, 163, 184, 0.8);
}

/* Player Controls */
.player-chrome {
    padding: 16px 16px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 5;
}

.player-chrome-track {
    font-size: 13px;
    color: rgba(226, 232, 240, 0.9);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chrome-controls-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.chrome-btn {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.15s, transform 0.08s;
    font-size: 18px;
}

.chrome-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.chrome-btn:active {
    transform: scale(0.96);
}

.chrome-btn.small {
    width: 26px;
    height: 26px;
    font-size: 14px;
}

.chrome-seek-area {
    flex: 1;
    height: 24px;
    position: relative;
    margin: 0 6px;
    min-width: 60px;
}

.chrome-seek-bg {
    position: absolute;
    left: 6px;
    right: 6px;
    top: 10px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.chrome-seek-buffer {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.chrome-seek-thumb {
    position: absolute;
    left: 6px;
    right: 6px;
    top: 0;
    height: 24px;
    display: flex;
    align-items: center;
}

.chrome-seek-fill {
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 999px;
}

.chrome-seek-dot {
    position: absolute;
    top: 50%;
    left: 35%; /* Match the fill width */
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    border: 2px solid #3b82f6;
}

.chrome-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-variant-numeric: tabular-nums;
    min-width: 110px;
    text-align: right;
}

.chrome-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .player-preview {
        max-width: 100%;
    }

    .player-body {
        height: 360px;
    }

    .player-preview .player-drawer {
        width: 280px;
        min-width: 280px;
    }

    .player-preview .player-drawer.drawer-animated.drawer-open {
        width: 280px;
        min-width: 280px;
    }

    .playlist-items-thumbs.cols-10 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .browse-pane {
        width: 120px;
    }
}

@media (max-width: 600px) {
    .player-body {
        height: 320px;
    }

    .player-preview .player-drawer {
        width: 220px;
        min-width: 220px;
    }

    .player-preview .player-drawer.drawer-animated.drawer-open {
        width: 220px;
        min-width: 220px;
    }

    .playlist-items-thumbs.cols-10 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .browse-pane {
        width: 90px;
    }

    .browse-item {
        font-size: 11px;
        padding: 6px 8px;
    }
}

[data-theme="light"] {
    --bg-body: #f8fafc;
    --bg-section: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
}

body {
    background: var(--bg-body);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, #1e40af, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.5;
}

[data-theme="light"] .hero-subtitle {
    color: #475569;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
}

.hero-note {
    font-size: 14px;
    color: #64748b;
}

[data-theme="light"] .hero-note {
    color: #64748b;
}

/* Player Preview */
.player-preview {
    max-width: 500px;
    margin: 0 auto;
}

.player-frame.dark-mini {
    background: #0a0e1a;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.player-body-mini {
    height: 320px;
    background: #000;
}

.player-video-mini {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.player-video-bg-mini {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.player-video-content-mini {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.player-video-content-mini .big-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.8);
}

.player-chrome-mini {
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chrome-seek-area-mini {
    flex: 1;
    height: 8px;
    position: relative;
}

.chrome-seek-bg-mini {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    overflow: hidden;
}

.chrome-seek-buffer-mini {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.chrome-seek-thumb-mini {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.chrome-seek-fill-mini {
    height: 100%;
    background: var(--accent-primary);
    border-radius: 999px;
}

.chrome-time-mini {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-variant-numeric: tabular-nums;
}

/* Section Base */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

/* Problem Section */
.problem-section {
    background: var(--bg-section);
}

.problem-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.check-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    font-size: 18px;
    font-weight: 700;
}

.problem-conclusion {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    color: var(--text-primary);
}

/* Solution Section */
.solution-section {
    text-align: center;
}

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

.solution-highlight {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features-section {
    background: var(--bg-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

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

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Drawer Section */
.drawer-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="light"] .drawer-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.drawer-section .section-title {
    color: #ffffff;
}

[data-theme="light"] .drawer-section .section-title {
    color: var(--text-primary);
}

.drawer-subtitle,
.drawer-description {
    text-align: center;
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 8px;
}

[data-theme="light"] .drawer-subtitle,
[data-theme="light"] .drawer-description {
    color: #475569;
}

.drawer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 48px auto;
    max-width: 800px;
}

[data-theme="light"] .drawer-divider {
    background: rgba(0, 0, 0, 0.1);
}

.drawer-section-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #ffffff;
}

[data-theme="light"] .drawer-section-title {
    color: var(--text-primary);
}

.drawer-section-desc {
    text-align: center;
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 24px;
}

[data-theme="light"] .drawer-section-desc {
    color: #475569;
}

.drawer-feature-list {
    max-width: 600px;
    margin: 0 auto 24px;
    list-style: none;
    padding: 0;
}

.drawer-feature-list li {
    padding: 12px 0;
    font-size: 18px;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .drawer-feature-list li {
    color: #475569;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.drawer-feature-list li:last-child {
    border-bottom: none;
}

.drawer-section-note {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #60a5fa;
}

[data-theme="light"] .drawer-section-note {
    color: #3b82f6;
}

.dual-panel-layout {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.panel-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 48px;
    text-align: center;
}

[data-theme="light"] .panel-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
}

.panel-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.panel-item p {
    font-size: 16px;
    color: #cbd5e1;
    margin: 0;
}

[data-theme="light"] .panel-item p {
    color: #475569;
}

.minimal-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.minimal-benefits span {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

[data-theme="light"] .minimal-benefits span {
    color: var(--text-primary);
}

/* Comparison Section */
.comparison-section {
    background: var(--bg-section);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
}

.vlc-card {
    opacity: 0.7;
}

.flux-card {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary), 0 12px 40px rgba(59, 130, 246, 0.15);
}

.comparison-card h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    padding: 12px 0;
    font-size: 18px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-card li:last-child {
    border-bottom: none;
}

.vlc-card li::before {
    content: "✗ ";
    color: #ef4444;
    font-weight: 700;
}

.flux-card li::before {
    content: "✓ ";
    color: #22c55e;
    font-weight: 700;
}

.comparison-divider {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-secondary);
}

/* Use Cases Section */
.usecases-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.usecase-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.usecase-icon {
    font-size: 28px;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-section);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.pricing-note {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.pricing-period {
    font-size: 24px;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 18px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: "✓";
    color: #22c55e;
    font-weight: 800;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="light"] .trust-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.trust-section .section-title {
    color: #ffffff;
}

[data-theme="light"] .trust-section .section-title {
    color: var(--text-primary);
}

.trust-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    margin-bottom: 16px;
    color: #cbd5e1;
}

[data-theme="light"] .trust-list li {
    color: #475569;
}

.shield-icon {
    font-size: 24px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-section);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 16px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

/* Final CTA Section */
.finalcta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

[data-theme="light"] .finalcta-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.finalcta-section .section-title {
    color: #ffffff;
    margin-bottom: 16px;
}

[data-theme="light"] .finalcta-section .section-title {
    color: var(--text-primary);
}

.finalcta-subtitle {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.finalcta-benefits {
    font-size: 24px;
    color: #94a3b8;
    margin-bottom: 40px;
}

[data-theme="light"] .finalcta-benefits {
    color: #475569;
}

.finalcta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-divider {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }

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

    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }
}
