:root {
    --primary: #2DD4BF;
    --primary-glow: rgba(45, 212, 191, 0.3);
    --bg: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
}

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

/* Navigation */
.sticky-nav {
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.sticky-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
}

.brand-accent {
    color: var(--primary);
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(ellipse at 20% 50%, rgba(45, 212, 191, 0.04) 0%, transparent 60%);
}

/* Page-wide cursor glow */
.cursor-glow {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.06) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: left 0.12s ease-out, top 0.12s ease-out;
}

/* Hero Badges */
.hero-badge {
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.3s, transform 0.3s;
}

.hero-badge:hover {
    background: rgba(45, 212, 191, 0.2);
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    gap: 0.8rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
}

.product-preview {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.product-preview img {
    width: 100%;
    display: block;
}

/* Benefits (Bento) */
.benefits {
    padding: 100px 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(45, 212, 191, 0.03) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s;
}

.bento-item:hover {
    border-color: var(--primary);
    background: rgba(45, 212, 191, 0.02);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item.medium {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-item .icon {
    font-size: 2rem;
    margin-bottom: auto;
}

.bento-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.bento-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.bento-detail-block {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.bento-tag {
    font-size: 0.75rem;
    font-family: 'Inter', monospace;
    background: rgba(45, 212, 191, 0.08);
    color: var(--primary);
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

/* How it Works */
.how-it-works {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

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

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
}

/* Export Formats Section */
.exports-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(45, 212, 191, 0.03) 0%, transparent 55%);
}

.exports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.export-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.export-card:hover {
    border-color: var(--primary);
    background: rgba(45, 212, 191, 0.02);
    transform: translateY(-2px);
}

.export-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.export-mp4    { background: rgba(45, 212, 191, 0.15); color: var(--primary); }
.export-fcp    { background: rgba(255, 255, 255, 0.08); color: #fff; }
.export-davinci{ background: rgba(255, 77, 77, 0.15); color: #ff6b6b; }
.export-premiere{ background: rgba(133, 101, 255, 0.15); color: #a78bfa; }
.export-luma   { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.export-shotcut{ background: rgba(74, 222, 128, 0.15); color: #4ade80; }

.export-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.export-card p {
    color: var(--text-dim);
    font-size: 0.875rem;
    line-height: 1.5;
}

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

.price-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.price-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--primary);
    background: rgba(45, 212, 191, 0.02);
    transform: scale(1.05);
    position: relative;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.price span {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 400;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-dim);
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    margin-bottom: 0.2rem;
}

.price-card .btn {
    margin-bottom: 2rem;
    text-align: center;
}

.price-card ul {
    list-style: none;
    text-align: left;
}

.price-card li {
    margin-bottom: 0.8rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.price-card li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

.price-card li.feature-excluded {
    opacity: 0.4;
    text-decoration: line-through;
}

.price-card li.feature-excluded::before {
    content: '✗';
    color: var(--text-dim);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: 0 8px 30px rgba(45, 212, 191, 0.06);
}

.stars {
    color: var(--primary);
    margin-bottom: 1rem;
}

.user {
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* FAQ */
.faq {
    padding: 100px 0;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    list-style: none;
}

.faq-item p {
    color: var(--text-dim);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, #2DD4BF 0%, #0891B2 100%);
    padding: 4rem;
    border-radius: 32px;
    text-align: center;
    color: #000;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-box .btn-primary {
    background: #000;
    color: #fff;
}

.cta-box .btn-secondary {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
    border: 2px solid rgba(0,0,0,0.4);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-dim);
    margin-top: 1rem;
}

.footer-links h4,
.footer-newsletter h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 28px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-item.large,
    .bento-item.medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .exports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid,
    .testimonial-grid,
    .exports-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .sticky-nav {
        height: auto;
        padding: 0.6rem 0;
    }

    .sticky-nav .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .nav-links a {
        margin-left: 0.6rem;
        margin-right: 0.6rem;
        font-size: 0.8rem;
    }

    .hero-badges {
        justify-content: center !important;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .price-grid {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        max-width: 100%;
    }

    .price-card.featured {
        transform: none;
    }

    .container {
        padding: 0 1.2rem;
    }

    .export-card {
        flex-direction: column;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero visual slide-in from right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: slideInRight 1s ease-out 0.4s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Why Croppa Section */
.why-croppa-section {
    padding: 80px 0;
}

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

.why-croppa h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.why-croppa p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 0.95rem;
}

.why-croppa p + p {
    margin-top: 1.2rem;
}

/* Hero social proof line */
.hero p.hero-social-proof {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 0.75rem;
    margin-bottom: 0;
    max-width: none;
    opacity: 0.7;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* FAQ accordion (details/summary) */
.faq-item {
    list-style: none;
}

.faq-item summary {
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    margin-bottom: 0.5rem;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .fade-up,
    .fade-in-right {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }

    .fade-up.visible {
        opacity: 1;
        transform: none;
    }

    .btn-primary:hover,
    .hero-badge:hover,
    .bento-item:hover,
    .testimonial-card:hover,
    .export-card:hover {
        transform: none;
    }

    .cursor-glow {
        display: none;
    }
}
