:root {
    --bg-main: #fafafa;
    --text-main: #1e293b;
    --text-muted: #64748b;
    
    /* Gradients & Colors */
    --accent-primary: #a67c00;
    --accent-secondary: #d4af37;
    --accent-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --surface-color: rgba(255, 255, 255, 0.85);
    --surface-border: rgba(0, 0, 0, 0.05);
    --surface-hover: rgba(255, 255, 255, 1);

    /* Fonts */
    --font-title: 'Marcellus', serif;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: var(--font-title);
    line-height: 1.2;
    font-weight: 400;
}

h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Background Glow */
.glow-bg {
    position: fixed;
    top: -30%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(166, 124, 0, 0.1) 40%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

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

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

.glass-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: #fff;
    color: var(--text-main);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    border-color: rgba(0,0,0,0.15);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-left: 1.5rem;
}

.logo span {
    color: var(--accent-secondary);
}

.logo-img {
    height: 110px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    background: white;
    border: 1px solid var(--surface-border);
}

/* Base sections */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.badge {
    background: rgba(166, 124, 0, 0.1);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(166, 124, 0, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Features Component */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(166, 124, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(166, 124, 0, 0.08);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Genre Filters */
.genre-filter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--surface-border);
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.search-bar input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-main);
}

.search-bar svg {
    color: var(--text-muted);
}

.voice-toggle-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.voice-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
}

.voice-toggle {
    display: flex;
    background: white;
    border: 1px solid var(--surface-border);
    border-radius: 999px;
    padding: 0.35rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.voice-btn {
    padding: 0.6rem 2.5rem;
    border: none;
    background: transparent;
    border-radius: 999px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-btn.active {
    background: var(--accent-primary);
    color: white;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    width: 100%;
}

.genre-btn {
    background: white;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.genre-btn:hover {
    border-color: var(--accent-secondary);
    background: #fff;
    box-shadow: 0 4px 8px rgba(166, 124, 0, 0.1);
    transform: translateY(-1px);
}

.genre-btn.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(166, 124, 0, 0.15);
}

@media (max-width: 900px) {
    .genre-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .genre-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .voice-toggle-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Featured Samples */
.featured-samples {
    padding-top: 4rem;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sample-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sample-info {
    margin-bottom: 2rem;
}

.sample-badge {
    display: inline-block;
    background: rgba(166, 124, 0, 0.1);
    color: var(--accent-primary);
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sample-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.sample-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Audio Player */
.audio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid var(--surface-border);
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}

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

.progress-container {
    flex: 1;
    height: 6px;
    background: rgba(0,0,0,0.05);
    border-radius: 999px;
    cursor: pointer;
    position: relative;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-primary);
    border-radius: 999px;
    width: 0%;
    pointer-events: none;
}

.time {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    min-width: 35px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
}

.pricing-card.highlight {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 20px 40px rgba(166, 124, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-gradient);
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.period {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    background: transparent;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 3rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) transparent;
}

.testimonial-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonial-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 999px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 999px;
}

.testimonial-card {
    min-width: 320px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
    background: white;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--accent-secondary);
    letter-spacing: 2px;
    font-size: 1.3rem;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    line-height: 0.5;
    font-family: serif;
    margin-top: 0.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.05rem;
    flex: 1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.testimonial-badge {
    align-self: flex-start;
    background: rgba(166, 124, 0, 0.1);
    color: var(--accent-primary);
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    overflow: hidden;
    background: transparent;
    border-bottom: 1px solid var(--surface-border);
}

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

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--accent-primary);
}

.accordion-item.open .accordion-header {
    color: var(--accent-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.accordion-item.open .accordion-content {
    max-height: 200px;
}

.accordion-item.open .accordion-header .icon {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid var(--surface-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    background: white;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-content .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-content .section-subtitle {
    margin-bottom: 2rem;
}

/* Form Styles */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-control {
    padding: 0.8rem 1rem;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
    color: var(--text-main);
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(166, 124, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .modal-content {
        padding: 2rem 1.5rem;
    }
}

/* Relation Buttons */
.relation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.relation-btn {
    background: white;
    border: 1px solid var(--surface-border);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.relation-btn:hover {
    border-color: var(--accent-secondary);
    background: #fff;
    box-shadow: 0 2px 8px rgba(166, 124, 0, 0.1);
}

.relation-btn.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(166, 124, 0, 0.15);
}

/* Wizard Styles */
.wizard-content {
    padding-top: 2rem;
}

.wizard-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--surface-border);
}

.wizard-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.wizard-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--surface-border);
    border-radius: 999px;
    overflow: hidden;
}

.wizard-progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-border);
}

.genre-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
}

.genre-grid-modal::-webkit-scrollbar {
    width: 6px;
}
.genre-grid-modal::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 999px;
}
.genre-grid-modal::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 999px;
}

.genre-btn-selectable {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.genre-btn-selectable:hover {
    border-color: var(--accent-secondary);
    box-shadow: 0 2px 8px rgba(166, 124, 0, 0.1);
}

.genre-btn-selectable.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    box-shadow: 0 4px 12px rgba(166, 124, 0, 0.15);
}

.voice-btn-modal {
    padding: 0.5rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 999px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-btn-modal.active {
    background: var(--accent-primary);
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--surface-border);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; 
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animations & Effects */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

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

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Pulse animation for the glow-bg */
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
}

.glow-bg {
    animation: pulseGlow 12s ease-in-out infinite;
}

/* Subtle micro-animation for the music note icon or play buttons */
.play-btn svg {
    transition: transform 0.3s ease;
}

.play-btn:hover svg {
    transform: scale(1.15);
}

/* Legal Pages */
.legal-header {
    padding-top: 10rem;
    padding-bottom: 4rem;
    text-align: center;
    background: var(--surface-color);
    border-bottom: 1px solid var(--surface-border);
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--text-main);
}

.legal-content p, .legal-content ul {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-last-updated {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: -3rem;
    margin-bottom: 4rem;
}

/* Checkout Page Styles */
.checkout-page {
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.checkout-header {
    text-align: center;
    padding: 2rem 0;
    background: transparent;
}

.checkout-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem 4rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.checkout-card {
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 20px;
}

.checkout-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-card-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-heading);
}

.edit-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
}

.edit-link:hover {
    color: var(--text-main);
}

.order-details-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--surface-border);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    font-weight: 500;
    color: var(--text-main);
    text-align: right;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--surface-border);
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.total-value {
    color: var(--accent-primary);
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: #f1f5f9;
    padding: 0.25rem;
    border-radius: 12px;
}

.payment-method-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-method-btn input {
    display: none;
}

.payment-method-btn.active {
    background: white;
    color: var(--text-main);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.payment-method-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-info-box {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.payment-info-box svg {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.payment-info-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.terms-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
    line-height: 1.4;
    text-align: center;
}

.checkout-btn {
    height: 54px;
    font-size: 1.1rem;
    background: #402f1d;
    box-shadow: none;
    margin-bottom: 1rem;
}
.checkout-btn:hover {
    background: #2a1f13;
    transform: translateY(-1px);
}

.security-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    border: 1px solid var(--surface-border);
}

.pix-notification {
    background: #ecfdf5;
    color: #065f46;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
    border: 1px solid #a7f3d0;
}

/* Success Page Styles */
.success-page {
    background: #fbfbfb;
    min-height: 100vh;
}

.success-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem 1rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-header-section {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e6f8f1;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.1);
}

.success-icon svg {
    width: 30px;
    height: 30px;
}

.success-title {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.success-email {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.alert-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 3rem;
}

.alert-banner svg {
    color: #d97706;
    flex-shrink: 0;
}

.alert-banner p {
    color: #92400e;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

.steps-timeline {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-wrapper::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 3rem;
    background: #e2e8f0;
    z-index: -1;
}

.step-wrapper:last-child::after {
    display: none;
}

.step-number {
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: -18px;
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.step-card {
    width: 100%;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.dark-card {
    background: #503d2b;
    color: white;
    border: 1px solid #6b523a;
}

.dark-card .step-title {
    color: white;
}

.dark-card .step-desc {
    color: rgba(255, 255, 255, 0.9);
}

.light-card {
    background: white;
    border: 1px solid #e2e8f0;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.step-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.step-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-save-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.warning-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fcd34d;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.link-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: monospace;
    word-break: break-all;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-note {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Review Section */
.notice-box {
    background: #fff8f1;
    border: 1px dashed #fcd34d;
    color: #b45309;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
}

.review-section {
    margin-bottom: 2rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: 0.5rem;
}

.review-header span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}
.btn-dark {
    background: #1e293b;
    color: white;
}
.btn-dark:hover {
    background: #0f172a;
}

.review-value {
    font-weight: 500;
    color: var(--text-main);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.review-long-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* Badges */
.badge-optional {
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Phone Input */
.phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    background: white;
    overflow: hidden;
}

.country-code {
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-right: 1px solid var(--surface-border);
    font-size: 0.95rem;
    color: var(--text-main);
}

.phone-input-group input {
    border: none;
    border-radius: 0;
}
.phone-input-group input:focus {
    box-shadow: none;
}

/* Includes */
.includes-section {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Timeline specific */
.timeline-list {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 2px solid #cbd5e1;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-top: 2px;
    background: white;
}

.timeline-item:nth-child(2) .timeline-icon {
    border-color: #fcd34d;
    color: #d97706;
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.email-sent-badge {
    text-align: center;
    padding: 1.5rem;
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 12px;
    color: #065f46;
    font-size: 0.95rem;
}

/* Social Buttons */
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
}
.btn-instagram:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-tiktok {
    background: black;
    color: white;
    border: none;
}
.btn-tiktok:hover {
    background: #111;
    transform: translateY(-2px);
}
