/* Landing Page V2 - Clean, Screenshot-focused Design */

/* Base Reset & Variables */
:root {
    --primary-color: #a855f7;
    --primary-hover: #9333ea;
    --secondary-color: #191414;
    --accent-color: #c084fc;
    --background-color: #0a0a0a;
    --surface-color: #141414;
    --surface-elevated: #1a1a1a;
    --surface-border: #1f1f1f;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: #27272a;
    --success-color: #22c55e;
    --error-color: #ef4444;
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    --gradient-subtle: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
    --shadow-purple: 0 8px 30px rgba(168, 85, 247, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-color);
    -webkit-font-smoothing: antialiased;
}

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

.container-full {
    max-width: 100%;
    padding: 0 48px;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-btn {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.login-btn:hover {
    color: var(--text-primary);
}

.cta-btn {
    background: var(--gradient-purple);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-purple);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.btn-primary.large {
    padding: 20px 48px;
    font-size: 1.2rem;
    border-radius: var(--radius-lg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.1);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

/* HERO SECTION */
.hero-new {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-content-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.rotating-text {
    display: block;
    height: 1.2em;
    overflow: hidden;
    position: relative;
}

.rotating-word {
    display: block;
    position: absolute;
    width: 100%;
    opacity: 0.01;
    transform: translateY(20px);
    transition: all 0.5s ease;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rotating-word.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle-new {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

/* SECTION 1: INSTANT PROOF */
.instant-proof {
    padding: 80px 0;
    background: var(--surface-color);
}

.proof-heading {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.proof-visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-screenshot {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.screenshot-placeholder {
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

.screenshot-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
}

.screenshot-placeholder span {
    font-size: 0.9rem;
}

.screenshot-placeholder.large {
    padding: 200px 40px;
}

.stat-cards-overlay {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    text-align: center;
    min-width: 200px;
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.stat-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* WHAT IS PLAYLIST PITCHING SECTION */
.what-is-pitching {
    padding: 80px 0;
    background: var(--background-color);
    text-align: center;
}

.what-is-pitching .section-subtitle {
    max-width: 600px;
    margin: 0 auto 48px;
}

.pitching-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pitching-benefit {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.pitching-benefit:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

.pitching-benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pitching-benefit-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.pitching-benefit h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.pitching-benefit p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pitching-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pitching-benefit {
        padding: 24px 20px;
    }
}

/* SECTION 2: WHAT THIS REPLACES */
.what-replaces {
    padding: 100px 0;
    background: var(--background-color);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.comparison-before,
.comparison-after {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-screenshot {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

.comparison-screenshot i {
    font-size: 2.5rem;
}

.comparison-before .comparison-screenshot {
    opacity: 0.6;
}

.comparison-after .comparison-screenshot {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.comparison-after .comparison-screenshot i {
    color: var(--primary-color);
}

.comparison-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.step-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-before {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    width: 200px;
    text-align: right;
}

.step-row i {
    color: var(--primary-color);
    font-size: 1rem;
}

.step-after {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    width: 250px;
}

/* SECTION 3: CORE VALUE STATEMENT */
.core-value {
    padding: 100px 0;
    background: var(--surface-color);
}

.playlist-cards-demo {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.playlist-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    flex: 1;
    max-width: 350px;
}

.playlist-card.bad {
    opacity: 0.7;
}

.playlist-card.good {
    border-color: var(--success-color);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

.playlist-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.playlist-icon {
    width: 40px;
    height: 40px;
    background: var(--surface-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.playlist-icon i {
    color: var(--text-secondary);
}

.playlist-card.good .playlist-icon i {
    color: var(--success-color);
}

.playlist-card-header span {
    font-weight: 600;
    font-size: 0.95rem;
}

.playlist-artists {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.artist {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.artist.small {
    background: var(--surface-color);
    color: var(--text-muted);
}

.artist.big {
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.artist.highlight {
    background: var(--gradient-purple);
    color: white;
    font-weight: 600;
}

.playlist-verdict {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.playlist-verdict.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

.playlist-verdict.good {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-color);
}

/* SECTION 4: PRODUCT REVEAL */
.product-reveal {
    padding: 100px 0;
    background: var(--background-color);
}

.product-reveal .section-title {
    margin-bottom: 48px;
}

.full-screenshot {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.screenshot-overlay-text {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    gap: 24px;
}

.screenshot-overlay-text span {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.screenshot-overlay-text i {
    color: var(--primary-color);
}

/* SECTION 5: BOT SAFETY */
.bot-safety {
    padding: 40px 0;
    background: var(--surface-color);
    text-align: center;
}

.bot-checker-screenshot {
    max-width: 700px;
    margin: 0 auto 24px;
}

/* SECTION 6: HOW IT WORKS */
.how-it-works-new {
    padding: 100px 0;
    background: var(--background-color);
}

.workflow-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.workflow-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.workflow-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}


.workflow-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.workflow-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* SECTION 7: CONTROL AND OWNERSHIP */
.control-ownership {
    padding: 100px 0;
    background: var(--surface-color);
    text-align: center;
}


/* SECTION 8: SOCIAL PROOF */
.social-proof-new {
    padding: 100px 0;
    background: var(--background-color);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
    margin-top: 16px;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* SECTION 9: DEMO VIDEO */
.demo-video {
    padding: 100px 0;
    background: var(--surface-color);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--text-muted);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 4px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-purple);
}

/* SECTION 10: FINAL CTA */
.final-cta {
    padding: 80px 0 60px;
    background: var(--background-color);
    text-align: center;
}

.final-cta .section-subtitle {
    margin-bottom: 40px;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    justify-content: flex-start;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.trust-badge-item i {
    color: #22c55e;
    font-size: 0.9rem;
}

.trust-badge-item:first-child i {
    color: #22c55e;
}

/* FAQ SECTION - Enhanced */
.faq-section {
    padding: 60px 0 80px;
    background: var(--surface-color);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.15);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.faq-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-top: 8px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-item.open {
    background: rgba(168, 85, 247, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
    gap: 12px;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 18px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* PRICING SECTION */
.pricing-new {
    padding: 100px 0;
    background: var(--surface-color);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.toggle-label.monthly-active,
.toggle-label.yearly-active {
    color: var(--text-primary);
    font-weight: 600;
}

.save-badge {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success-color);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 4px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.pricing-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card-new {
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.pricing-card-new.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-purple);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    color: var(--text-secondary);
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features-list i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}

.pricing-btn:hover {
    background: var(--surface-color);
}

.pricing-btn.primary {
    background: var(--gradient-purple);
    border: none;
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

/* FOOTER */
.footer-new {
    background: var(--background-color);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title-new {
        font-size: 3rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .playlist-cards-demo {
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-cards-overlay {
        flex-direction: column;
        align-items: center;
        margin-top: -40px;
    }
    
    .stat-card {
        min-width: 280px;
    }
    
    .comparison-steps {
        gap: 24px;
    }
    
    .step-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .step-before,
    .step-after {
        width: auto;
        text-align: center;
    }
    
    .pricing-grid-new {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .container-full {
        padding: 0 16px;
    }
    
    .screenshot-overlay-text {
        flex-direction: column;
        gap: 8px;
    }
}

/* PREMIUM MODAL SYSTEM */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(20, 8, 33, 0.95) 0%, rgba(5, 2, 7, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    padding: 40px 20px;
    overflow-y: auto;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.2s ease-out;
}

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

.modal-content {
    position: relative;
    background: linear-gradient(165deg, rgba(28, 20, 50, 0.95) 0%, rgba(15, 10, 28, 0.98) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    max-width: 520px;
    width: 95%;
    overflow: hidden;
    animation: modalSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 60px -12px rgba(0, 0, 0, 0.5),
        0 0 80px -20px rgba(168, 85, 247, 0.3);
}

.modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: radial-gradient(ellipse at top, rgba(168, 85, 247, 0.12), transparent 70%);
    pointer-events: none;
}

@keyframes modalSlideUp {
    from { transform: translateY(16px) scale(0.97); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-content > img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(168, 85, 247, 0.5);
    border-color: rgba(168, 85, 247, 0.5);
    color: white;
    transform: scale(1.08);
}

.modal-info {
    padding: 24px;
    position: relative;
}

.modal-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #faf5ff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.modal-info p {
    font-size: 0.9rem;
    color: rgba(212, 212, 216, 0.9);
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 10px;
    color: rgba(212, 212, 216, 0.95);
    font-size: 0.85rem;
    line-height: 1.4;
}

.modal-info ul li strong {
    color: #c4b5fd;
    font-weight: 600;
}

/* CLICKABLE CARDS */
.clickable-card {
    cursor: pointer;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.clickable-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: var(--radius-lg);
}

.image-overlay i {
    font-size: 2.5rem;
    color: white;
    background: rgba(168, 85, 247, 0.8);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clickable-card:hover .image-overlay {
    opacity: 1;
}

.click-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.click-hint i {
    margin-right: 4px;
}

.click-hint-small {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    opacity: 0.7;
}

.click-hint-small i {
    margin-right: 4px;
}

/* CLEAN COMPARISON SECTION */
.comparison-simple {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin-top: 48px;
}

.comparison-side {
    flex: 1;
    background: var(--surface-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid var(--border-color);
}

.comparison-side.after {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.03);
}

.comparison-header {
    margin-bottom: 16px;
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.comparison-badge.bad {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.comparison-badge.good {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.comparison-image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.comparison-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2);
}

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

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-side.before .comparison-list li i {
    color: #ef4444;
}

.comparison-side.after .comparison-list li i {
    color: #22c55e;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Video Section */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .comparison-simple {
        flex-direction: column;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }
    
    .modal-content {
        margin: 20px;
    }
    
    .modal-info {
        padding: 20px;
    }
    
    .modal-info h3 {
        font-size: 1.25rem;
    }
}

/* Trust Bar */
.trust-bar {
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}

.trust-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-bar-item i {
    font-size: 1.1rem;
    color: rgba(168, 85, 247, 0.8);
}

.trust-bar-item.highlight {
    color: #fbbf24;
}

.trust-bar-item.highlight i {
    color: #fbbf24;
}

.trust-bar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .trust-bar-content {
        gap: 16px;
    }
    
    .trust-bar-divider {
        display: none;
    }
    
    .trust-bar-item {
        font-size: 0.8rem;
    }
    
    .trust-bar-item span {
        display: none;
    }
    
    .trust-bar-item i {
        font-size: 1.3rem;
    }
}

/* As Seen On Section - Scrolling */
.as-seen-on {
    padding: 40px 0;
    background: var(--surface-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.seen-label {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 32px;
}

.logo-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-scroll-track {
    display: flex;
    gap: 64px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.seen-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.seen-logo:hover {
    color: rgba(255, 255, 255, 0.8);
}

.seen-logo i {
    font-size: 2.2rem;
}

/* Trust Badges Inline */
.trust-badges-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-badge-item i {
    font-size: 1.1rem;
    color: rgba(168, 85, 247, 0.7);
}

.trust-badge-item.highlight {
    color: #fbbf24;
}

.trust-badge-item.highlight i {
    color: #fbbf24;
}

@media (max-width: 768px) {
    .logo-scroll-track {
        gap: 48px;
    }
    
    .seen-logo i {
        font-size: 1.8rem;
    }
    
    .seen-logo span {
        display: none;
    }
    
    .trust-badges-inline {
        gap: 16px;
    }
    
    .trust-badge-item span {
        display: none;
    }
    
    .trust-badge-item i {
        font-size: 1.4rem;
    }
}

/* Section CTAs */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

.case-study-cta {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

/* Real Results Card - Horizontal Layout */
.real-results-card-horizontal {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.06) 0%, rgba(30, 215, 96, 0.02) 100%);
    border: 1px solid rgba(30, 215, 96, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
}

.results-image-side {
    flex: 1;
    min-width: 0;
}

.results-info-side {
    flex: 0 0 180px;
}

.results-info-side .results-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(30, 215, 96, 0.15);
    color: #1ed760;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.results-info-side h3 {
    font-size: 0.9rem;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.results-stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result-stat-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.result-stat-row .stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.result-stat-row.highlight .stat-number {
    color: #1ed760;
}

.result-stat-row .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.results-info-side .results-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spotify-analytics-proof {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.spotify-analytics-proof img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .real-results-card-horizontal {
        flex-direction: column;
        gap: 16px;
    }
    
    .results-info-side {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .results-stats-vertical {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .result-stat-row {
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    
    .results-info-side .results-note {
        justify-content: center;
    }
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.result-stat {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-stat.highlight {
    background: rgba(30, 215, 96, 0.1);
    border-color: rgba(30, 215, 96, 0.3);
}

.result-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.result-stat.highlight .stat-number {
    color: #1ed760;
}

.result-stat .stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.results-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.results-note i {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .real-results-card {
        padding: 20px;
    }
    
    .results-header h3 {
        font-size: 1.25rem;
    }
}

/* STEPS FLOW SECTION */
.steps-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--background-color) 0%, var(--surface-color) 100%);
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    transition: all 0.2s ease;
}

.step-item:hover {
    background: rgba(168, 85, 247, 0.12);
    transform: translateY(-2px);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.step-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 2px 0 0 0;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .steps-flow {
        gap: 12px;
    }
    
    .step-item {
        padding: 12px 18px;
    }
    
    .step-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .steps-flow {
        flex-direction: column;
        align-items: stretch;
    }
    
    .step-item {
        justify-content: flex-start;
    }
}

/* Workflow Step Numbers */
.workflow-step {
    width: 40px;
    height: 40px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

/* TRUST SECTION */
.trust-section {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--surface-color) 0%, var(--background-color) 50%, var(--surface-color) 100%);
}

/* Trusted By Logos */
.trusted-by {
    text-align: center;
    margin-bottom: 60px;
}

.trusted-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.logo-belt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.logo-item:hover {
    color: var(--primary-color);
}

.logo-item i {
    font-size: 1.1rem;
}

/* Proof Stats */
.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
}

.stat-tile.highlight {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

.stat-big {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    display: block;
    visibility: visible;
    opacity: 1;
}

.stat-tile.highlight .stat-big {
    color: #c084fc !important;
    -webkit-text-fill-color: #c084fc !important;
}

.stat-tile.highlight .stat-desc {
    color: #e4e4e7 !important;
    -webkit-text-fill-color: #e4e4e7 !important;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Scrolling Testimonials */
.testimonials-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 24px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-scroll-track {
    display: flex;
    gap: 20px;
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
}

.testimonial-card .testimonial-stars {
    margin-bottom: 8px;
}

.testimonial-card .testimonial-stars i {
    color: #fbbf24;
    font-size: 0.75rem;
    margin-right: 2px;
}

.testimonial-card .testimonial-quote {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-card .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card .testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
}

.testimonial-card .testimonial-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.testimonial-card .testimonial-role {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Premium Testimonials (legacy) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.testimonial-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

.testimonial-premium:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.testimonial-badge {
    font-size: 0.75rem;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Case Study */
.case-study {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(168, 85, 247, 0.03) 100%);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
}

.case-study-header {
    margin-bottom: 32px;
}

.case-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.case-study-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.case-metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.case-metric.highlight {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.case-metric.highlight .metric-value {
    color: #22c55e;
}

.case-quote {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.case-quote strong {
    color: var(--text-primary);
    font-style: normal;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.trust-badge:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.05);
}

.trust-badge i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.trust-badge .fa-spotify {
    color: #1DB954;
}

/* Responsive */
@media (max-width: 992px) {
    .proof-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .proof-stats {
        grid-template-columns: 1fr;
    }
    
    .logo-belt {
        gap: 20px;
    }
    
    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study {
        padding: 24px;
    }
    
    .trust-badges {
        gap: 12px;
    }
    
    .trust-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* Screenshot Images */
.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

.dashboard-screenshot .screenshot-img {
    max-width: 100%;
}

.comparison-screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.full-screenshot {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.full-screenshot-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    display: block;
}

.bot-checker-screenshot {
    max-width: 800px;
    margin: 40px auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bot-checker-screenshot .screenshot-img {
    border-radius: 0;
}

.tracker-screenshot-zoomed {
    max-width: 900px;
    margin: 40px auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.tracker-screenshot-zoomed .screenshot-img {
    border-radius: 0;
}

.workflow-screenshot {
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
}

.workflow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
