/* ===== VIDEO EDITING PAGE - STYLES ===== */

/* Accent overrides – warm orange/amber for video editing */
.video-editing-page {
    --ve-accent: #ff6b35;
    --ve-accent-rgb: 255, 107, 53;
    --ve-accent-secondary: #ffa726;
    --ve-accent-glow: rgba(255, 107, 53, 0.15);
}

/* Extra Background Orb */
.bg-gradient-orb-3 {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ve-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: ve-float-up 15s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 20s;
}

@keyframes ve-float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ===== HERO SECTION ===== */
.ve-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    gap: 60px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 60%);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ve-pulse-glow 4s ease-in-out infinite;
}

@keyframes ve-pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--ve-accent);
    margin-bottom: 32px;
}

.hero-badge.pulse {
    animation: ve-badge-pulse 2s ease-in-out infinite;
}

@keyframes ve-badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

.badge-icon {
    font-size: 20px;
}

/* Hero Title */
.ve-hero .hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.ve-hero .highlight {
    background: linear-gradient(135deg, var(--ve-accent), var(--ve-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ve-hero .hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.ve-hero .hero-subtitle strong {
    color: var(--ve-accent);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-check {
    color: var(--ve-accent);
    font-weight: 600;
}

/* Hero CTA */
.ve-hero .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ve-accent), var(--ve-accent-secondary)) !important;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: ve-shine 3s infinite;
}

@keyframes ve-shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--ve-accent);
    background: rgba(255, 107, 53, 0.1);
}

/* ===== HERO VISUAL — NLE Preview ===== */
.hero-visual {
    flex: 1;
    max-width: 520px;
    z-index: 1;
}

.nle-preview {
    position: relative;
    perspective: 1000px;
}

.nle-window {
    background: #1e1e2e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: ve-float 6s ease-in-out infinite;
}

@keyframes ve-float {

    0%,
    100% {
        transform: translateY(0) rotateX(0);
    }

    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

.nle-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #15151f;
}

.nle-dots {
    display: flex;
    gap: 6px;
}

.nle-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.nle-dot:nth-child(1) {
    background: #ff5f56;
}

.nle-dot:nth-child(2) {
    background: #ffbd2e;
}

.nle-dot:nth-child(3) {
    background: #27c93f;
}

.nle-title {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Preview Monitor */
.nle-monitor {
    position: relative;
    background: #000;
    margin: 12px;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nle-monitor-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.3) 0%,
            rgba(255, 167, 38, 0.2) 30%,
            rgba(30, 30, 46, 0.8) 60%,
            rgba(255, 107, 53, 0.15) 100%);
    animation: ve-monitor-shift 8s ease-in-out infinite;
}

@keyframes ve-monitor-shift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
        background-position: 100% 50%;
    }
}

.nle-play-btn {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nle-play-btn svg {
    width: 20px;
    height: 20px;
    color: white;
    margin-left: 3px;
}


/* Timeline Tracks */
.nle-timeline {
    padding: 12px;
    background: #1a1a28;
}

.nle-ruler {
    display: flex;
    justify-content: space-between;
    padding: 0 4px 8px;
    font-size: 9px;
    color: #555;
    font-family: 'Courier New', monospace;
}

.nle-playhead {
    position: relative;
    height: 4px;
    margin-bottom: 8px;
}

.nle-playhead-line {
    position: absolute;
    left: 35%;
    top: -4px;
    width: 2px;
    height: calc(100% + 80px);
    background: var(--ve-accent);
    z-index: 2;
    animation: ve-playhead-move 6s ease-in-out infinite;
}

.nle-playhead-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    background: var(--ve-accent);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@keyframes ve-playhead-move {
    0% {
        left: 10%;
    }

    50% {
        left: 65%;
    }

    100% {
        left: 10%;
    }
}

.nle-tracks {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nle-track {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 28px;
}

.nle-track-label {
    font-size: 9px;
    color: #666;
    width: 20px;
    text-align: right;
    flex-shrink: 0;
}

.nle-track-clips {
    flex: 1;
    display: flex;
    gap: 3px;
    height: 100%;
    position: relative;
}

.nle-clip {
    height: 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.nle-clip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 8px,
            rgba(0, 0, 0, 0.15) 8px,
            rgba(0, 0, 0, 0.15) 9px);
}

/* Video tracks */
.nle-clip.video-1 {
    width: 35%;
    background: linear-gradient(90deg, #e65100, #ff6b35);
}

.nle-clip.video-2 {
    width: 25%;
    background: linear-gradient(90deg, #ff6b35, #ffa726);
}

.nle-clip.video-3 {
    width: 30%;
    background: linear-gradient(90deg, #e65100, #ff8a50);
}

/* Audio tracks */
.nle-clip.audio-1 {
    width: 40%;
    background: linear-gradient(90deg, #1565c0, #42a5f5);
}

.nle-clip.audio-2 {
    width: 50%;
    background: linear-gradient(90deg, #1e88e5, #64b5f6);
}

/* Effects track */
.nle-clip.fx-1 {
    width: 20%;
    margin-left: 15%;
    background: linear-gradient(90deg, #7b1fa2, #ba68c8);
}

.nle-clip.fx-2 {
    width: 15%;
    background: linear-gradient(90deg, #9c27b0, #ce93d8);
}

/* ===== SECTION SHARED ===== */
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--ve-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header .highlight {
    background: linear-gradient(135deg, var(--ve-accent), var(--ve-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ===== TOOLS SECTION ===== */
.tools-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(var(--ve-accent-rgb), 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card:hover {
    border-color: var(--ve-accent);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(var(--ve-accent-rgb), 0.1);
}

.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 auto 16px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* Premiere Pro — deep indigo/purple */
.tool-icon-pr {
    background: linear-gradient(135deg, #00005b 0%, #31009b 100%);
    color: #e8c8ff;
    box-shadow: 0 4px 20px rgba(49, 0, 155, 0.4);
}

/* After Effects — deep blue/violet */
.tool-icon-ae {
    background: linear-gradient(135deg, #00005b 0%, #1f0078 100%);
    color: #d8b4fe;
    box-shadow: 0 4px 20px rgba(31, 0, 120, 0.4);
}

/* CapCut — black/white modern */
.tool-icon-cc {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Final Cut Pro — dark with subtle purple */
.tool-icon-fc {
    background: linear-gradient(135deg, #1a1a2e 0%, #3a1078 100%);
    color: #c084fc;
    box-shadow: 0 4px 20px rgba(58, 16, 120, 0.4);
}

.tool-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.tool-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
}

.tool-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    background: rgba(var(--ve-accent-rgb), 0.1);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--ve-accent);
    position: relative;
}

/* ===== NLE TIMECODE ANIMATION ===== */
.nle-timecode {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 1;
    animation: ve-timecode 6s linear infinite;
}

@keyframes ve-timecode {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        opacity: 0.5;
    }
}

/* ===== PRICING COMPARISON TABLE ===== */
.pricing-comparison {
    margin-top: 60px;
}

.comparison-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table thead {
    background: rgba(var(--ve-accent-rgb), 0.06);
}

.comparison-table th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table tbody tr:hover {
    background: rgba(var(--ve-accent-rgb), 0.03);
}

.comparison-table .featured-col {
    background: rgba(var(--ve-accent-rgb), 0.06);
    position: relative;
}

.comparison-table thead .featured-col {
    color: var(--ve-accent);
    background: rgba(var(--ve-accent-rgb), 0.1);
}

.cmp-yes {
    color: var(--ve-accent);
    font-weight: 700;
    font-size: 16px;
}

.cmp-no {
    color: var(--text-muted);
    opacity: 0.5;
}

.price-row {
    border-top: 2px solid var(--border-color);
}

.price-row td {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.price-row .featured-col {
    color: var(--ve-accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ve-hero .hero-content {
        flex-direction: column;
    }

    .hero-visual {
        max-width: 100%;
    }

    .features-bento {
        grid-template-columns: 1fr 1fr;
    }

    .bento-card.bento-large,
    .bento-card.bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .tools-grid {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-table-wrap {
        margin: 0 -12px;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .bento-card.bento-large,
    .bento-card.bento-wide {
        grid-column: span 1;
    }
}

/* ===== FEATURES BENTO GRID ===== */
.features-showcase {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: var(--transition-normal);
}

.bento-card:hover {
    border-color: rgba(var(--ve-accent-rgb), 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(var(--ve-accent-rgb), 0.03) 100%);
}

.bento-card.bento-large {
    grid-column: span 2;
}

.bento-card.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: var(--ve-accent);
}

.bento-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px rgba(var(--ve-accent-rgb), 0.3));
}

.bento-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-visual {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.format-tag {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

/* ===== WORKFLOW TIMELINE ===== */
.workflow-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--ve-accent), rgba(var(--ve-accent-rgb), 0.1));
}

.timeline-item {
    position: relative;
    padding: 0 0 48px 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -30px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--ve-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-icon svg {
    width: 18px;
    height: 18px;
    color: var(--ve-accent);
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-explanation {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--ve-accent-rgb), 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-card.featured {
    border-color: var(--ve-accent);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.featured-glow {
    background: radial-gradient(circle at center, rgba(var(--ve-accent-rgb), 0.08) 0%, transparent 50%) !important;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--ve-accent), var(--ve-accent-secondary));
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    color: var(--ve-accent);
}

.pricing-icon svg {
    width: 100%;
    height: 100%;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 800;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.price-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.price-type {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.price-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.custom-price {
    flex-direction: column;
    gap: 0;
}

.custom-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--ve-accent);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features .check {
    color: var(--ve-accent);
    font-weight: 600;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* ===== FAQ ===== */
.faq-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(var(--ve-accent-rgb), 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--ve-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== CTA SECTION ===== */
.ve-cta-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ve-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.ve-cta-section p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .ve-hero {
        flex-direction: column;
        padding: 120px 24px 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .ve-hero .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        max-width: 100%;
        width: 100%;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .bento-card.bento-large,
    .bento-card.bento-wide {
        grid-column: span 1;
    }
}