.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent-premium);
    border-radius: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-eyebrow {
    display: block;
    margin-bottom: 0.85rem;
}

.section-header .section-eyebrow::before {
    display: none;
}

.section-header .section-title {
    display: block;
    width: 100%;
    font-size: 2.5rem;
    padding-bottom: 1.5rem;
    margin: 0;
    line-height: 1.15;
}

.section-header .section-title::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 3px;
}

.section-header p {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.75;
}

.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.25);
    color: #6ee7a0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.nav-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
    animation: live-pulse 2s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.2);
    color: #ff8a8f;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-trust {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.hero-trust-item i {
    font-size: 0.9rem;
}

.hero-trust-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.avatar-stack {
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
}

.avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -10px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.app-mockup {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.mockup-window {
    background: linear-gradient(160deg, #141418 0%, #0a0a0d 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    overflow: hidden;
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-room-name {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.mockup-body {
    display: grid;
    grid-template-columns: 1fr 140px;
    min-height: 280px;
}

.mockup-video {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.mockup-play {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.5);
}

.mockup-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.mockup-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.mockup-progress-fill {
    width: 62%;
    height: 100%;
    background: var(--accent-red);
    border-radius: 3px;
}

.mockup-progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
}

.mockup-chat {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    background: rgba(0, 0, 0, 0.25);
}

.mockup-msg {
    font-size: 0.62rem;
    line-height: 1.45;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
}

.mockup-msg strong {
    color: #ff8a8f;
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.58rem;
}

.mockup-float {
    position: absolute;
    padding: 0.65rem 0.9rem;
    border-radius: 14px;
    background: rgba(12, 12, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float-badge 4s ease-in-out infinite;
}

.mockup-float.sync {
    top: 12%;
    left: -8%;
    color: #6ee7a0;
}

.mockup-float.users {
    bottom: 8%;
    right: -6%;
    animation-delay: 1s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.platform-strip {
    text-align: center;
    padding: 1rem 0 0;
}

.platform-strip p {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.video-showcase {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    position: relative;
}

.video-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 12%, transparent 88%, var(--bg-primary) 100%);
    pointer-events: none;
    z-index: 2;
}

.video-showcase video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.75;
}

.feature-spec {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.15);
    color: #ff9ea2;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.features-grid-pro {
    grid-template-columns: repeat(3, 1fr);
}

.steps-section {
    background: linear-gradient(180deg, transparent 0%, rgba(229, 9, 20, 0.03) 50%, transparent 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2.25rem 1.75rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 9, 20, 0.18);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent-red);
    margin: 0 auto 1.1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

.profile-showcase-section {
    background: radial-gradient(circle at center, rgba(229, 9, 20, 0.05) 0%, var(--bg-primary) 70%);
}

.profile-showcase-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
}

.profile-showcase-img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 30px 100px rgba(229, 9, 20, 0.12), 0 0 0 1px rgba(229, 9, 20, 0.12);
}

.live-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.live-pulse-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ff6b6b;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 0.35rem;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.room-tag {
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.room-progress {
    margin-top: 0.75rem;
}

.room-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.room-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.room-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), #ff6b35);
    border-radius: 4px;
}

.viewer-count {
    font-variant-numeric: tabular-nums;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 9, 20, 0.14);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 0.72rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-quote {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(229, 9, 20, 0.2);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--card-border);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--card-bg);
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(229, 9, 20, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.15rem 1.4rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question i {
    color: var(--accent-red);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s ease;
    padding: 0 1.4rem;
}

.faq-item.open .faq-answer {
    max-height: 220px;
    padding: 0 1.4rem 1.15rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.75;
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--accent-red);
    padding: 5px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.download-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--accent-red);
}

.download-section-inner {
    text-align: center;
}

.download-section-inner h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    line-height: 1.15;
}

.download-section-inner p {
    color: var(--text-secondary);
    margin-bottom: 2.75rem;
    font-size: 1.05rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.download-actions {
    display: flex;
    justify-content: center;
    margin-top: 0.25rem;
}

.download-meta {
    margin-top: 1.75rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.site-footer-pro {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--card-border);
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.1rem;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-align: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav-outline {
    border: 1px solid rgba(229, 9, 20, 0.35);
    color: var(--accent-red);
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

.btn-nav-primary {
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
}

@media (max-width: 992px) {
    .features-grid-pro,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mockup-body {
        grid-template-columns: 1fr 110px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.75rem;
    }

    .app-mockup {
        margin: 0 auto;
    }

    .mockup-float.sync { left: 0; }
    .mockup-float.users { right: 0; }

    .features-grid-pro,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
