:root {
    --color-primary: #ec4899;
    --color-primary-dark: #db2777;
    --color-secondary: #8b5cf6;
    --color-accent: #f093fb;
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f97316;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-border: #e5e7eb;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

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

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

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

.nav-credits {
    padding: 6px 12px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-secondary {
    background: var(--color-bg-alt);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #f0f9ff 100%);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 0 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-icon {
    font-size: 24px;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.2s;
}

.input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-note {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 10px;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    text-align: center;
    margin-bottom: 50px;
}

.example-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.example-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 400px;
    margin: 0 auto;
}

.example-cover {
    width: 300px;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.example-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-info {
    text-align: center;
}

.example-title {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 5px;
}

.example-artist {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.audio-player {
    width: 100%;
    max-width: 300px;
}

.how-it-works {
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: var(--color-text-light);
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-section .btn {
    background: white;
    color: var(--color-primary);
}

.footer {
    padding: 60px 0 30px;
    background: #1f2937;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-company {
    color: #9ca3af;
    font-size: 14px;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header .container {
        height: 60px;
    }

    .nav {
        gap: 10px;
    }

    .hero {
        padding: 50px 0;
    }

    .signup-form {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .steps {
        gap: 20px;
    }
}

.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-shell {
    background: linear-gradient(135deg, #fff1f2 0%, #fdf4ff 50%, #eef2ff 100%);
}

.app-header {
    position: static;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: none;
    border-bottom-color: rgba(255, 255, 255, 0.95);
}

.app-logo {
    gap: 10px;
}

.app-logo-icon {
    width: 20px;
    height: 20px;
    color: #f43f5e;
    flex-shrink: 0;
}

.app-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.app-main {
    flex: 1;
    padding: 40px 0;
}

.app-shell .app-main {
    padding: 32px 0 56px;
}

.app-shell .app-main > .container {
    padding-left: 0;
    padding-right: 0;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.step-indicator .step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: var(--color-bg-alt);
    color: var(--color-text-light);
    border: 2px solid var(--color-border);
}

.step-indicator .step-dot.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.step-indicator .step-dot.completed {
    background: var(--color-success);
    color: white;
    border-color: transparent;
}

.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.app-shell .card {
    box-shadow: 0 24px 45px -32px rgba(30, 41, 59, 0.45), 0 18px 30px -28px rgba(236, 72, 153, 0.45);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group .input,
.form-group select,
.form-group textarea {
    width: 100%;
}

textarea.input {
    min-height: 120px;
    resize: vertical;
}

select.input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

.btn-secondary .loading-spinner {
    border-color: rgba(79, 70, 229, 0.3);
    border-top-color: #4f46e5;
}

.photo-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.photo-upload-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    margin-bottom: 0;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-body);
    background: linear-gradient(to right, #f43f5e, #6366f1);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.photo-upload-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -8px rgba(79, 70, 229, 0.45);
}

.photo-file-name {
    color: var(--color-text-light);
    font-size: 14px;
}

.photo-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.note-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 18px;
    overflow: hidden;
}

.floating-note {
    font-size: 32px;
    animation: floatNote 2.4s ease-in-out infinite;
    opacity: 0;
}

.floating-note:nth-child(1) { color: #ff6b9d; }
.floating-note:nth-child(2) { color: #c084fc; }
.floating-note:nth-child(3) { color: #f472b6; }
.floating-note:nth-child(4) { color: #a78bfa; }
.floating-note:nth-child(5) { color: #fb7185; }

@keyframes floatNote {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    15% {
        opacity: 1;
    }
    50% {
        transform: translateY(-60px) rotate(-8deg);
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(8deg);
    }
}

.lyrics-editor {
    font-family: 'Source Code Pro', monospace;
    font-size: 14px;
    line-height: 1.8;
    min-height: 400px;
}

.app-shell .lyrics-editor {
    min-height: 460px;
}

.lyrics-assist-note {
    color: #4b5563;
    font-size: 0.96rem;
    line-height: 1.5;
    margin: 0 0 14px;
}

.lyrics-assist {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.lyrics-assist .input {
    flex: 1;
    min-width: 0;
}

.lyrics-assist .btn {
    flex-shrink: 0;
}

.btn-ai {
    color: #fff;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
}

.step2-primary-actions {
    margin-top: 20px;
}

.step2-primary-actions .btn {
    width: 100%;
}

.step2-secondary-actions {
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.step2-secondary-actions .btn {
    min-width: 150px;
}

@media (max-width: 768px) {
    .app-shell .app-main {
        padding: 24px 0 36px;
    }

    .app-shell .app-main > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .app-shell .header .container {
        min-height: 60px;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .app-shell .nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .app-shell .card {
        padding: 20px;
    }

    .app-shell .step-indicator {
        gap: 12px;
        margin-bottom: 24px;
    }

    .app-shell .step-indicator .step-dot {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .app-shell .form-row {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .app-shell .lyrics-editor {
        min-height: 52vh;
        max-height: 560px;
    }

    .app-shell .lyrics-assist {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
    }

    .app-shell .photo-upload {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .app-shell .photo-upload-trigger {
        width: 100%;
    }

    .app-shell .lyrics-assist .input,
    .app-shell .lyrics-assist .btn,
    .app-shell .step2-secondary-actions .btn {
        width: 100%;
    }

    .app-shell .step2-primary-actions {
        margin-top: 26px;
    }

    .app-shell .step2-secondary-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
    }
}

@media (min-width: 768px) {
    .app-logo-text {
        font-size: 24px;
    }
}

.result-card {
    text-align: center;
}

.result-cover {
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.result-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 10px;
}

.result-artist {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--color-primary);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-card .price-note {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 600;
}

.hidden {
    display: none !important;
}

/* ============================================
   Landing Page - React Design Adaptation
   ============================================ */

.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff1f2 0%, #fdf4ff 50%, #eef2ff 100%);
}

.gradient-text {
    background: linear-gradient(to right, #f43f5e, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section - Two Column Layout */
.hero-new {
    padding: 32px 0 80px;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1f2937;
    text-decoration: none;
}

.hero-logo svg {
    width: 20px;
    height: 20px;
    color: #f43f5e;
}

.hero-nav {
    display: flex;
    gap: 1.5rem;
}

.hero-nav a {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-nav a:hover {
    color: #f43f5e;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    padding-bottom: 4px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #374151;
    font-weight: 600;
}

/* Feature Checkmarks */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

@media (max-width: 767.98px) {
    .hero-left {
        gap: 12px;
    }

    .hero-title {
        padding-bottom: 0;
    }

    .hero-subtitle {
        margin: 0;
    }

    .feature-list {
        min-height: 0;
        gap: 6px;
    }

    .feature-item {
        gap: 6px;
    }
}

.feature-check {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.125rem;
}

.feature-text {
    color: #1f2937;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .feature-check,
    .feature-text {
        font-size: 1.125rem;
    }
}

/* CTA Button */
.btn-cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(to right, #f43f5e, #6366f1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background: linear-gradient(to right, #e11d48, #4f46e5);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .btn-cta {
        padding: 20px 24px;
    }
}

.social-proof {
    text-align: center;
    font-size: 0.875rem;
    color: #4b5563;
    margin-top: 12px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    font-size: 0.875rem;
    color: #4b5563;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item svg {
    width: 20px;
    height: 20px;
}

/* Hero Right - Song Player */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.song-player-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.song-cover {
    position: relative;
    cursor: pointer;
}

.song-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.song-cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.song-cover:hover .song-cover-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    opacity: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 16px;
    transition: opacity 0.2s;
}

.song-cover:hover .play-button {
    opacity: 1;
}

.play-button svg {
    display: block;
    width: 32px;
    height: 32px;
    color: #f43f5e;
}

/* Custom Audio Player */
.audio-player-custom {
    background: linear-gradient(to right, #fdf2f8, #f3e8ff, #eef2ff);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.audio-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(to right, #f43f5e, #6366f1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.audio-play-btn:hover {
    transform: scale(1.05);
}

.audio-play-btn svg {
    width: 20px;
    height: 20px;
    color: white;
}

.audio-progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.audio-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.audio-progress {
    width: 100%;
    height: 6px;
    background: #d1d5db;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.audio-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #f43f5e, #6366f1);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

.audio-time {
    font-size: 0.75rem;
    color: #6b7280;
}

.song-link {
    text-align: center;
    padding-top: 8px;
}

.song-link a {
    color: #4f46e5;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s;
}

.song-link a:hover {
    color: #4338ca;
}

/* How It Works - New Design */
.how-it-works-new {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.how-it-works-new .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    text-align: center;
}

.step-image {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.step-image img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .step-image img {
        width: 350px;
        height: 350px;
    }
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.step-card p {
    font-size: 1.125rem;
    color: #4b5563;
}

/* CTA Section */
.cta-simple {
    padding: 48px 0;
    text-align: center;
}

/* Languages Section */
.languages-section {
    padding: 48px 0;
}

.languages-section .section-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.languages-section .section-subtitle {
    text-align: center;
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .languages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .languages-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1024px) {
    .languages-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.language-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    transition: all 0.3s;
}

.language-card:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.language-flag {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.language-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
}

.languages-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Vibes & Genres Section */
.vibes-genres-section {
    padding: 48px 0;
    background: rgba(255, 255, 255, 0.3);
}

.vibes-genres-section .section-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.vibes-genres-section .section-subtitle {
    text-align: center;
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.tags-section {
    margin-bottom: 32px;
}

.tags-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .tags-section h3 {
        text-align: left;
    }
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 768px) {
    .tags-container {
        justify-content: flex-start;
    }
}

.tag-vibe {
    padding: 8px 16px;
    background: linear-gradient(to right, #ffe4e6, #fce7f3);
    color: #be123c;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: all 0.3s;
    cursor: default;
}

.tag-vibe:hover {
    background: linear-gradient(to right, #fecdd3, #fbcfe8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.tag-genre {
    padding: 8px 16px;
    background: linear-gradient(to right, #e0e7ff, #f3e8ff);
    color: #4338ca;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: all 0.3s;
    cursor: default;
}

.tag-genre:hover {
    background: linear-gradient(to right, #c7d2fe, #e9d5ff);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.vibes-genres-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    padding: 64px 16px;
    background: linear-gradient(135deg, #eef2ff 0%, #faf5ff 50%, #fff1f2 100%);
}

.testimonials-section .section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.testimonials-section .section-subtitle {
    text-align: center;
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 48px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.testimonial-image {
    width: 100%;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

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

.testimonial-content {
    padding: 24px;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.testimonial-location .flag {
    font-size: 1.125rem;
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    border-left: 4px solid #fb7185;
    padding-left: 16px;
    margin-bottom: 16px;
}

.testimonial-audio {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 48px;
}

.testimonials-cta p {
    color: #4b5563;
    margin-bottom: 16px;
}

/* Footer - New Design */
.footer-new {
    background: #111827;
    color: white;
    padding: 40px 0;
}

.footer-content-new {
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #fda4af;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 0.875rem;
}

.footer-links-new a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-new a:hover {
    color: #fda4af;
}

/* Container - wider for landing page */
.container-wide {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-6xl {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-7xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Occasions Section */
.occasions-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.occasion-card {
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.occasion-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.occasion-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.occasion-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.occasions-more {
    text-align: center;
    margin-top: 32px;
    color: var(--color-text-light);
}

.occasions-more a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.occasions-more a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .occasion-card {
        padding: 24px 16px;
    }

    .occasion-icon {
        font-size: 36px;
    }
}

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

/* Footer Occasions - Internal Linking for SEO */
.footer-occasions {
    margin-bottom: 24px;
    text-align: center;
}
.footer-occasions-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}
.footer-occasions-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
}
.footer-occasions-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-occasions-links a:hover {
    color: #fda4af;
}
