/**
 * Roomzic Landing Page V2 - Styles
 */

@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;600;700&family=Satoshi:wght@400;500;700;900&display=swap');

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

:root {
    --primary: #FF3D71;
    --secondary: #7C3AED;
    --accent: #FCD34D;
    --success: #10B981;
    --dark: #0F0F23;
    --dark-lighter: #1a1a35;
    --light: #FAFAFA;
    --gray: #9CA3AF;
    --gradient: linear-gradient(135deg, #FF3D71 0%, #7C3AED 100%);
    --glow: 0 0 40px rgba(255, 61, 113, 0.3);
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background decoration */
.bg-decoration {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    right: -150px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    bottom: -200px;
    left: -200px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 40%;
    right: 5%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.15); }
    66% { transform: translate(-30px, 30px) scale(0.85); }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Navigation */
nav {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-family: 'Clash Display', sans-serif;
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: white;
}

.lang-sep {
    color: rgba(255,255,255,0.2);
    font-size: 14px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0 80px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -3px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(19px, 3vw, 26px);
    color: rgba(250, 250, 250, 0.75);
    max-width: 750px;
    margin: 0 auto 48px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: white;
    padding: 20px 48px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 61, 113, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 61, 113, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Integration Logos */
.integrations {
    padding: 60px 0 100px;
    text-align: center;
}

.integrations-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    font-weight: 700;
    margin-bottom: 32px;
}

.integration-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.integration-logo {
    font-size: 18px;
    font-weight: 700;
    color: rgba(250, 250, 250, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.integration-logo:hover {
    color: var(--light);
    transform: scale(1.1);
}

.integration-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.spotify { background: #1DB954; }
.deezer { background: #FF0092; }
.apple { background: #FA243C; }
.youtube { background: #FF0000; }
.soundcloud { background: #FF5500; }

/* Problem Section */
.problem {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(38px, 7vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 32px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 61, 113, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.problem-icon {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
}

.problem-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.05) 100%);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.how-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Clash Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 61, 113, 0.3);
}

.how-step h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.how-step p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1;
}

.feature-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 61, 113, 0.05) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    padding: 48px 40px;
    border-radius: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.premium {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 61, 113, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
}

.pricing-card.premium:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 61, 113, 0.2);
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pricing-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-subtitle {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.pricing-price {
    font-family: 'Clash Display', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 24px;
    color: var(--gray);
    font-weight: 500;
}

.pricing-period {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    background: var(--gradient);
    color: white;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 61, 113, 0.4);
}

.pricing-cta.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.pricing-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray);
    text-align: center;
}

/* CTA Section */
.final-cta {
    padding: 140px 0;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.final-cta h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.final-cta p {
    font-size: 22px;
    color: var(--gray);
    margin-bottom: 56px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 26px 72px;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(255, 61, 113, 0.4);
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 61, 113, 0.5);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer p {
    color: var(--gray);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 60px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .integration-logos {
        gap: 24px;
    }

    .problem-cards,
    .how-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 80px 0;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .integration-logo {
        font-size: 15px;
    }

    .integration-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

/* =============================================
   INLINE CTA BLOCKS (mid-page)
   ============================================= */
.cta-inline {
    text-align: center;
    padding: 40px 0 80px;
}

.cta-inline-box {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 61, 113, 0.06);
    border: 1px solid rgba(255, 61, 113, 0.2);
    padding: 24px 40px;
    border-radius: 20px;
    flex-wrap: wrap;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.cta-inline-box:hover {
    border-color: rgba(255, 61, 113, 0.4);
}

.cta-inline-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
}

.cta-inline-text strong {
    color: var(--light);
}

.cta-inline-btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 61, 113, 0.25);
}

.cta-inline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 61, 113, 0.4);
}

/* =============================================
   SOLUTION VALUE PROPS
   ============================================= */
.solution-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 56px;
    margin-bottom: 80px;
}

.solution-prop {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    border-radius: 18px;
    transition: border-color 0.3s ease;
}

.solution-prop:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.solution-prop-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.solution-prop h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.solution-prop p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
}

/* =============================================
   FEATURES — GROUPED WITH BADGES
   ============================================= */
.features-group-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gray);
    margin: 48px 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.features-group-label:first-of-type {
    margin-top: 64px;
}

.features-group-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.feature-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gradient);
    color: white;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.feature-card.is-premium {
    border-color: rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.03);
}

.feature-card.is-premium:hover {
    border-color: var(--secondary);
}

/* =============================================
   SOCIAL PROOF SECTION
   ============================================= */
.social-proof {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 61, 113, 0.04) 50%, transparent 100%);
}

.stats-bar {
    display: flex;
    justify-content: center;
    margin: 64px auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    max-width: 780px;
}

.stat-item {
    flex: 1;
    padding: 32px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Clash Display', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
    text-align: left;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 61, 113, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(250, 250, 250, 0.82);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 15px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray);
    margin-top: 2px;
}

/* =============================================
   PRICING — 3 COLUMNS
   ============================================= */
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1100px;
}

.pricing-card.per-use {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.05);
}

.pricing-card.per-use:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
}

.pricing-savings {
    margin-top: 16px;
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
    text-align: center;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
    padding: 100px 0;
    text-align: center;
}

.faq-grid {
    max-width: 780px;
    margin: 64px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(255, 61, 113, 0.25);
}

.faq-item summary {
    list-style: none;
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: color 0.2s ease;
}

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

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

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

.faq-answer {
    padding: 0 28px 22px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.75;
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

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

    .solution-props {
        grid-template-columns: 1fr;
    }

    .cta-inline-box {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .cta-inline-btn {
        width: 100%;
        text-align: center;
    }
}
