:root {
    /* Primary Colors */
    --color-primary: #28355F;
    --color-secondary: #4A5568;
    
    /* Neutral Backgrounds */
    --color-bg-main: #FDF8F2;
    --color-bg-alt: #F5F5F5;
    --color-text-main: #2D3748;
    
    /* Accent Colors */
    --color-accent-gold: #C0A062;
    --color-accent-gold-hover: #B18E4C;
    --color-accent-teal: #4C8C8C;
    
    /* Supporting Shades */
    --color-hover-navy: #1E2A50;
    --color-border: #E2E8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--color-text-main);
    line-height: 1.7;
    background: var(--color-bg-main);
    -webkit-overflow-scrolling: touch;
}

nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e2e8f0;
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #718096;
}

.lang-toggle {
    padding: 0.7rem 1.3rem;
    border: none;
    border-radius: 50px;
    background: #9ca3af;
    color: white;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.2);
}

.lang-toggle:hover {
    background: #718096;
    transform: translateY(-1px);
}

.hero {
    position: relative;
    color: white;
    padding: 160px 3rem 100px;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
    min-height: 520px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 53, 95, 0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero .subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.trust-line {
    color: #fff;
    opacity: 0.9;
    margin-top: 1rem;
    font-size: 1rem;
}

.cta-button {
    background: var(--color-accent-gold);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(192, 160, 98, 0.3);
    min-height: 48px;
    min-width: 48px;
}

.cta-button:hover {
    background: var(--color-accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 160, 98, 0.4);
}

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 26px;
    border-radius: 5px;
}

.emotional {
    background: white;
    text-align: center;
    padding: 80px 3rem;
}

.emotional h2 {
    font-size: 2.3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.emotional p {
    max-width: 700px;
    margin: 1rem auto;
    color: var(--color-secondary);
    font-size: 1.05rem;
}

.audio-showcase {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--color-border);
}

.audio-showcase-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.audio-showcase-info {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    font-style: italic;
}

.guarantee {
    background: #f7f9fc;
    padding: 80px 3rem;
    text-align: center;
}

.guarantee h2 {
    font-size: 2.3rem;
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guarantee p {
    max-width: 700px;
    margin: 1rem auto;
    color: #718096;
    font-size: 1.05rem;
}

.testimonial {
    padding: 70px 3rem;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #fafbfc;
    padding: 2rem 1.8rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-name {
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 600;
}

.author-location {
    color: #64748b;
    font-size: 0.85rem;
}

.author-genre {
    color: #4a5568;
    font-size: 0.8rem;
    font-weight: 500;
}

.listen-btn {
    background: var(--color-accent-gold);
    color: white;
    padding: 0.6rem 1.3rem;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
}

.listen-btn:hover {
    background: var(--color-accent-gold-hover);
    transform: translateY(-1px);
}

.about-section {
    padding: 70px 3rem;
    background: #f7f9fc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    font-weight: 600;
}

.about-text p {
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.features {
    padding: 70px 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-hover-navy) 100%);
    position: relative;
}

.features .section-title {
    color: white;
}

.features .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
    text-align: center;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-align: center;
}

.process-section {
    padding: 70px 3rem;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.step-number {
    background: linear-gradient(135deg, #718096 0%, #9ca3af 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(113, 128, 150, 0.3);
}

.process-step h3 {
    margin-bottom: 0.8rem;
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 600;
}

.process-step p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.9rem;
}

.delivery-tag {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.final-cta {
    text-align: center;
    padding: 100px 3rem;
    background: linear-gradient(135deg, #667eea 0%, #9ca3af 100%);
    color: #fff;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    margin: 1rem auto;
    max-width: 600px;
    font-size: 1.1rem;
}

.genres-section {
    padding: 70px 3rem;
    background: #f7f9fc;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.genre-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    text-align: center;
}

.genre-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.genre-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.genre-card h3 {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.genre-card p {
    color: #9ca3af;
    font-size: 0.8rem;
}

.form-section {
    padding: 70px 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-hover-navy) 100%);
}

.form-intro {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-intro p {
    font-size: 1.05rem;
    opacity: 0.95;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 3.5rem 3.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1.2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #4a5568;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    min-height: 44px;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 3px rgba(192, 160, 98, 0.1);
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.choice-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.choice-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.choice-group label:hover {
    background: #f7f9fc;
    border-color: #cbd5e0;
}

.choice-group input {
    margin-right: 1rem;
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
    accent-color: #9ca3af;
}

.genre-grid-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.genre-grid-form label {
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.genre-grid-form label:hover {
    background: #f7f9fc;
    border-color: #cbd5e0;
}

.genre-grid-form input {
    margin-right: 0.8rem;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
    accent-color: #9ca3af;
    flex-shrink: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: #fafbfc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-3px);
    border-color: #9ca3af;
    box-shadow: 0 4px 20px rgba(156, 163, 175, 0.15);
}

.pricing-card input[type="radio"] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.2em;
    height: 1.2em;
    accent-color: #9ca3af;
}

.pricing-card.selected {
    background: #f0f4f8;
    border-color: #9ca3af;
    border-width: 2px;
}

.pricing-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #718096;
    margin-bottom: 1rem;
}

.package-description {
    color: #9ca3af;
    margin-bottom: 1.3rem;
    font-size: 0.9rem;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0 0;
}

.pricing-features li {
    padding: 0.4rem 0;
    color: #718096;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.pricing-features li:before {
    content: "✓";
    color: #9ca3af;
    font-weight: 600;
    flex-shrink: 0;
}

.popular-badge {
    background: #9ca3af;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.btn {
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--color-accent-gold);
    color: white;
    min-height: 48px;
    min-width: 48px;
}

.btn-primary:hover {
    background: var(--color-accent-gold-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-border);
    min-height: 48px;
    min-width: 48px;
}

.btn-secondary:hover {
    background: var(--color-bg-alt);
}

.progress-bar {
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #9ca3af;
    transition: width 0.4s ease;
}

footer {
    background: #4a5568;
    color: #cbd5e0;
    padding: 3rem 3rem 2rem;
    text-align: center;
}

.footer-logo {
  height: 50px;
  width: auto;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact {
    margin: 1.5rem 0;
}

.footer-contact a {
    color: #cbd5e0;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-powered {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 1rem;
}

.audio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.audio-modal.active {
    display: flex;
}

.audio-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.audio-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.3s;
}

.audio-modal-close:hover {
    color: #718096;
}

.audio-modal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.audio-modal-info {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

audio {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .genres-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }

    .form-container {
        padding: 2.5rem 2rem;
    }

    .navigation-buttons {
        flex-direction: column;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .genres-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-contact a {
        display: block;
        margin: 0.5rem 0;
    }
}

