/* ============================================================
   CreateHit — Promo Page Styles
   ============================================================ */

:root {
    --primary:    #FF2F6D;
    --primary-dk: #d4235a;
    --secondary:  #00BFA5;
    --accent:     #FF6D00;
    --surface:    #FFF8FC;
    --on-surface: #26152E;
    --muted:      #7a5a7a;
    --border:     #f0d0e0;
    --card-bg:    #ffffff;
    --shadow:     0 4px 24px rgba(255,47,109,0.10);
    --radius:     14px;
    --radius-sm:  8px;
    --transition: 0.3s ease;
    --font-body:  'Manrope', sans-serif;
    --font-title: 'Unbounded', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--on-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-title);
    line-height: 1.2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.promo-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 10;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.logo-icon { font-size: 2rem; }
.logo-text {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
}

.nav-btn {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.nav-btn:hover {
    background: #fff;
    color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FF2F6D 0%, #FF6D00 100%);
    color: #fff;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 20s infinite linear;
}

.circle:nth-child(1) { width: 300px; height: 300px; top: -50px; left: -50px; animation-duration: 25s; }
.circle:nth-child(2) { width: 500px; height: 500px; bottom: -100px; right: -100px; animation-duration: 30s; animation-direction: reverse; }
.circle:nth-child(3) { width: 150px; height: 150px; top: 20%; right: 20%; animation-duration: 15s; }

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 99px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease-out 0.6s both, pulse-btn 2s infinite 2s;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Features Section --- */
.features {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--on-surface);
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* --- Audio Examples --- */
.audio-examples {
    padding: 80px 0;
    background: var(--surface);
}

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

.audio-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audio-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

audio {
    width: 100%;
    margin-top: auto;
}

/* --- Video Reviews --- */
.video-reviews {
    padding: 80px 0;
    background: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio for vertical videos */
    background: #000;
}

.video-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

/* --- Reviews --- */
.reviews {
    padding: 80px 0;
    background: var(--surface);
}

.reviews-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    scroll-snap-align: start;
}

.slider-btn {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    z-index: 2;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.review-name {
    font-weight: 700;
}

.review-stars {
    color: #FFD700;
}

.review-text {
    font-size: 0.95rem;
    color: var(--on-surface);
    font-style: italic;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    color: var(--muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* --- Final CTA --- */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #00BFA5 0%, #009e87 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* --- Footer --- */
.promo-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .final-cta h2 { font-size: 2.2rem; }
    
    .features-grid, .audio-grid, .video-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-btn { display: none; } /* Hide top CTA on mobile to save space */
    
    .slider-btn {
        display: none; /* Hide arrows on mobile, use swipe */
    }
}
