/**
 * Rezer Unique Design
 * Brand color: #ff6000 (Orange)
 */

:root {
    --rezer-orange: #ff6000;
    --rezer-orange-dark: #e55500;
    --rezer-orange-light: #ff7a26;
    --rezer-dark: #0a0a0a;
    --rezer-gray: #52525b;
    --rezer-light-gray: #f4f4f5;
    --rezer-white: #ffffff;
    --rezer-border: #e4e4e7;
}

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

body {
    font-family: 'Matter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--rezer-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--rezer-orange) 0%, var(--rezer-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.rezer-hero {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #fff 0%, var(--rezer-light-gray) 100%);
    text-align: center;
}

.hero-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 96, 0, 0.1);
    border: 1px solid rgba(255, 96, 0, 0.2);
    border-radius: 50px;
    color: var(--rezer-orange);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--rezer-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {opacity: 1;}
    50% {opacity: 0.5;}
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--rezer-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-box strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rezer-dark);
    line-height: 1;
}

.stat-box span {
    font-size: 0.875rem;
    color: var(--rezer-gray);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--rezer-border);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--rezer-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--rezer-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 96, 0, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--rezer-dark);
    border: 2px solid var(--rezer-border);
}

.btn-secondary:hover {
    border-color: var(--rezer-orange);
    color: var(--rezer-orange);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.hero-visual {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hero-mockup {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.rezer-features {
    padding: 6rem 0;
    background: white;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--rezer-gray);
}

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

.feature-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--rezer-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--rezer-orange);
    box-shadow: 0 15px 40px rgba(255, 96, 0, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--rezer-orange) 0%, var(--rezer-orange-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--rezer-dark);
}

.feature-card p {
    color: var(--rezer-gray);
    line-height: 1.7;
}

/* Showcase Section */
.rezer-showcase {
    padding: 6rem 0;
    background: var(--rezer-light-gray);
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-row.reverse {
    direction: rtl;
}

.showcase-row.reverse > * {
    direction: ltr;
}

.showcase-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 96, 0, 0.1);
    color: var(--rezer-orange);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.125rem;
    color: var(--rezer-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    font-size: 1.0625rem;
    color: var(--rezer-dark);
    font-weight: 500;
}

.showcase-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.rezer-cta {
    padding: 6rem 0;
    background: white;
}

.cta-box {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--rezer-orange) 0%, var(--rezer-orange-light) 100%);
    border-radius: 32px;
    color: white;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-box h2 .gradient-text {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box .btn-primary {
    background: white;
    color: var(--rezer-orange);
}

.cta-box .btn-primary:hover {
    background: var(--rezer-light-gray);
}

.cta-box .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-box .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .showcase-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-row.reverse {
        direction: ltr;
    }

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

    .showcase-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .rezer-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 350px;
    }

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

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

    .cta-box {
        padding: 3rem 2rem;
    }

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

/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}
