/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-nav {
    background: var(--gradient);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.badge {
    display: inline-block;
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.feature-item .icon {
    font-size: 1.5rem;
}

/* Music Card */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.music-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.music-card-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.album-art {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.music-card-header h4 {
    margin: 0;
    font-size: 1.125rem;
}

.music-card-header p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.waveform {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.waveform span {
    width: 4px;
    background: var(--gradient);
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 20%; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 100%; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.waveform span:nth-child(7) { height: 60%; animation-delay: 0.6s; }
.waveform span:nth-child(8) { height: 40%; animation-delay: 0.7s; }
.waveform span:nth-child(9) { height: 70%; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 50%; animation-delay: 0.9s; }
.waveform span:nth-child(11) { height: 90%; animation-delay: 1s; }
.waveform span:nth-child(12) { height: 65%; animation-delay: 1.1s; }
.waveform span:nth-child(13) { height: 45%; animation-delay: 1.2s; }
.waveform span:nth-child(14) { height: 75%; animation-delay: 1.3s; }
.waveform span:nth-child(15) { height: 30%; animation-delay: 1.4s; }

@keyframes wave {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 4rem;
}

/* How It Works */
.how-it-works {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.step {
    text-align: center;
}

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

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

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

.ai-disclaimer {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-left: 4px solid var(--primary);
}

.ai-disclaimer svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* Music Styles */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.style-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border);
    cursor: pointer;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.style-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.style-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.style-card p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Order Section */
.order-section {
    background: var(--bg-light);
}

/* Upsells Section */
.upsells-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.upsells-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.upsell-option {
    display: block;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.upsell-option input[type="checkbox"] {
    display: none;
}

.upsell-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--bg-light);
    transition: all 0.3s;
}

.upsell-option:hover .upsell-content {
    border-color: var(--primary);
    background: white;
}

.upsell-option input[type="checkbox"]:checked ~ .upsell-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.upsell-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
}

.upsell-option input[type="checkbox"]:checked ~ .upsell-content .upsell-icon {
    background: var(--gradient);
    filter: grayscale(0);
}

.upsell-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.upsell-text strong {
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.upsell-text span {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.upsell-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.upsell-option.popular {
    position: relative;
}

.upsell-option.popular .upsell-content {
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.popular-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-top: 0.25rem;
    display: inline-block;
}

.premium-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-top: 0.25rem;
    display: inline-block;
}

.upsell-option.premium .upsell-content {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.upsell-option.premium:hover .upsell-content {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.total-price {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
}

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

.order-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

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

/* Order Form */
.order-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.order-form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
    flex: 1;
}

.radio-label:hover {
    border-color: var(--primary);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.radio-label input[type="radio"]:checked + span {
    color: var(--primary);
    font-weight: 600;
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    align-items: flex-start;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    position: relative;
}

.btn-loader {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* FAQ */
.faq-section {
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-gray);
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-gray);
}

.footer-bottom div {
    display: flex;
    gap: 2rem;
}

.footer-bottom a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Social Proof */
.social-proof {
    margin-top: 2rem;
}

.trust-badges {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-stars {
    font-size: 1.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.urgency-icon {
    font-size: 1.5rem;
}

.urgency-text {
    font-weight: 500;
}

/* Bundle Packages */
.bundles-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.bundle-option {
    cursor: pointer;
}

.bundle-option input[type="radio"] {
    display: none;
}

.bundle-content {
    background: white;
    border: 3px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bundle-option:hover .bundle-content {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bundle-option input[type="radio"]:checked ~ .bundle-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.popular-bundle .bundle-content {
    border-color: #f59e0b;
    position: relative;
}

.popular-bundle::before {
    content: '🔥 Nejvýhodnější';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.premium-bundle .bundle-content {
    border-color: #8b5cf6;
}

.bundle-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bundle-icon {
    font-size: 2.5rem;
}

.bundle-header > div {
    flex: 1;
}

.bundle-header strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.save-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
}

.save-badge.gold {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.save-badge.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.bestseller-badge {
    display: block;
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.bundle-features {
    list-style: none;
    margin: 1rem 0;
    flex: 1;
}

.bundle-features li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.bundle-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1rem;
}

.new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--border);
}

.divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Audio Samples */
.audio-samples {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sample-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.sample-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sample-card h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sample-card audio {
    width: 100%;
    height: 40px;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured {
    border: 3px solid var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    margin: 0;
    font-size: 1.125rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--text-dark);
    line-height: 1.7;
    flex: 1;
}

.testimonial-date {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Live Ticker */
.live-ticker {
    background: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    animation: slideIn 0.5s ease-out;
}

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

.ticker-icon {
    color: #ef4444;
    font-size: 1.25rem;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.ticker-content {
    font-weight: 500;
    color: var(--text-dark);
}

/* Guarantee Section */
.guarantee-section {
    background: var(--bg-white);
}

.guarantee-card {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
}

.guarantee-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

.guarantee-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.guarantee-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.check-icon {
    color: var(--success);
    font-size: 1.5rem;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.countdown-card {
    text-align: center;
    padding: 2rem 0;
}

.countdown-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    min-width: 100px;
}

.time-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.time-separator {
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.countdown-text {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Exit Popup */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

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

.exit-popup-content {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    max-width: 500px;
    position: relative;
    text-align: center;
    animation: slideUp 0.3s;
}

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

.exit-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s;
}

.exit-close:hover {
    color: var(--text-dark);
}

.exit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.exit-popup-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.exit-popup-content h3 {
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.exit-popup-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.exit-form input {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
}

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

.exit-note {
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
    transition: all 0.3s;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.whatsapp-widget:hover {
    background: #20BA5A;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .styles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .order-wrapper {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        gap: 1rem;
        font-size: 0.875rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* New responsive styles */
    .bundles-wrapper {
        grid-template-columns: 1fr;
    }
    
    .samples-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .guarantee-features {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 1rem;
        min-width: 70px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 2rem;
    }
    
    .whatsapp-widget span {
        display: none;
    }
    
    .whatsapp-widget {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .order-form-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-loader::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}
