/* === GLOBAL RESET & VARIABLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cosmic Color Palette */
    --cosmic-blue: #0a0e27;
    --deep-purple: #1a0b2e;
    --midnight-purple: #2d1b4e;
    --celestial-gold: #f4c430;
    --stardust-gold: #ffd700;
    --soft-purple: #4a3065;
    --gradient-start: #0f0c29;
    --gradient-mid: #302b63;
    --gradient-end: #24243e;
    
    /* Fonts */
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
}

body {
    font-family: var(--font-sans);
    color: #ffffff;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === FLOATING CTA BUTTON === */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, var(--celestial-gold), var(--stardust-gold));
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: glowPulse 2s infinite;
}

.countdown-mini {
    font-size: 12px;
    font-weight: 600;
    color: var(--cosmic-blue);
    text-align: center;
}

.cta-button-mini {
    background: var(--cosmic-blue);
    color: var(--celestial-gold);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-button-mini:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(10, 14, 39, 0.5);
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(244, 196, 48, 0.5);
    }
    50% {
        box-shadow: 0 8px 40px rgba(244, 196, 48, 0.8);
    }
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

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

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(244, 196, 48, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.cosmic-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.2), transparent);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--celestial-gold);
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(244, 196, 48, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease;
}

/* Price Box */
.price-box {
    background: rgba(26, 11, 46, 0.7);
    border: 2px solid var(--celestial-gold);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1.6s ease;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 10px;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--celestial-gold);
    margin-bottom: 20px;
    text-shadow: 0 3px 15px rgba(244, 196, 48, 0.6);
}

.cta-button-main {
    background: linear-gradient(135deg, var(--celestial-gold), var(--stardust-gold));
    color: var(--cosmic-blue);
    border: none;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.5);
}

.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244, 196, 48, 0.7);
}

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

.instant-download {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--celestial-gold);
}

/* Countdown Timer */
.countdown-timer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 196, 48, 0.3);
}

.countdown-text {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--celestial-gold);
    font-family: 'Courier New', monospace;
}

/* Cosmic Background Stars */
.stars, .stars2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.stars {
    background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/><circle cx="150" cy="150" r="1.5" fill="white" opacity="0.6"/><circle cx="300" cy="100" r="1" fill="white" opacity="0.7"/><circle cx="500" cy="200" r="1.5" fill="white" opacity="0.5"/><circle cx="700" cy="150" r="1" fill="white" opacity="0.8"/><circle cx="850" cy="300" r="1.5" fill="white" opacity="0.6"/></svg>') repeat;
    animation: twinkle 3s infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="300" r="1" fill="%23f4c430" opacity="0.5"/><circle cx="400" cy="500" r="1.5" fill="%23ffd700" opacity="0.4"/><circle cx="600" cy="400" r="1" fill="%23f4c430" opacity="0.6"/><circle cx="900" cy="600" r="1.5" fill="%23ffd700" opacity="0.5"/></svg>') repeat;
    animation: twinkle 4s infinite reverse;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

/* === SECTION 2: HOW IT WORKS === */
.how-it-works {
    padding: var(--section-padding);
    background: rgba(10, 14, 39, 0.5);
}

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

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--celestial-gold);
    margin-bottom: 30px;
    text-align: center;
}

.left-content .section-title {
    text-align: left;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--celestial-gold), var(--stardust-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(244, 196, 48, 0.4);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--cosmic-blue);
}

.feature-text h3 {
    font-size: 1.3rem;
    color: var(--celestial-gold);
    margin-bottom: 8px;
}

.feature-text p {
    color: #c0c0c0;
}

.prosperity-desc {
    font-style: italic;
    line-height: 1.7;
}

.feature-breakdown {
    margin-top: 30px;
    padding: 20px;
    background: rgba(26, 11, 46, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--celestial-gold);
}

.feature-breakdown h4 {
    color: var(--celestial-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-breakdown p {
    color: #c0c0c0;
    margin-bottom: 15px;
}

/* User Journey */
.user-journey {
    margin-top: 40px;
    padding: 25px;
    background: rgba(244, 196, 48, 0.1);
    border-radius: 15px;
    border: 2px dashed var(--celestial-gold);
}

.user-journey h3 {
    color: var(--celestial-gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.journey-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.journey-step {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--celestial-gold), var(--stardust-gold));
    color: var(--cosmic-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 10px;
}

.journey-step p {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.journey-arrow {
    color: var(--celestial-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ritual-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(244, 196, 48, 0.3);
}

/* === SECTION 3: ORIGIN STORY === */
.origin-story {
    padding: var(--section-padding);
    background: rgba(26, 11, 46, 0.3);
}

.cosmic-title {
    font-size: 2.8rem;
    text-shadow: 0 5px 25px rgba(244, 196, 48, 0.5);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-align: center;
    font-style: italic;
}

.timeline-results {
    background: rgba(10, 14, 39, 0.5);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.timeline-results h3 {
    color: var(--celestial-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.timeline-item {
    background: rgba(244, 196, 48, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--celestial-gold);
}

.timeline-badge {
    background: linear-gradient(135deg, var(--celestial-gold), var(--stardust-gold));
    color: var(--cosmic-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.timeline-item p {
    color: #c0c0c0;
}

.yogic-insight {
    background: rgba(244, 196, 48, 0.1);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid var(--celestial-gold);
    margin-bottom: 30px;
}

.yogic-insight h3 {
    color: var(--celestial-gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.yogic-insight p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-conclusion {
    text-align: center;
    font-size: 1.2rem;
    color: var(--celestial-gold);
    font-weight: 600;
}

/* === SECTION 4: INSIDE THE AUDIO === */
.inside-audio {
    padding: var(--section-padding);
    background: rgba(10, 14, 39, 0.7);
}

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

.audio-card {
    background: rgba(26, 11, 46, 0.6);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.audio-card:hover {
    border-color: var(--celestial-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(244, 196, 48, 0.3);
}

.audio-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.audio-card h3 {
    color: var(--celestial-gold);
    font-size: 1.1rem;
}

/* === SECTION 5: SOUND SCIENCE & PHILOSOPHY === */
.sound-science {
    padding: var(--section-padding);
    background: rgba(26, 11, 46, 0.4);
}

.philosophy-content {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.principle-box, .science-box, .integration-box {
    background: rgba(10, 14, 39, 0.6);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--celestial-gold);
}

.principle-box h3, .science-box h3, .integration-box h3 {
    color: var(--celestial-gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.principle-box p, .science-box p, .integration-box p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

/* === SECTION 6: 3-STEP GUIDE === */
.step-guide {
    padding: var(--section-padding);
    background: rgba(10, 14, 39, 0.5);
}

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

.step-card {
    background: rgba(26, 11, 46, 0.6);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid var(--celestial-gold);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--celestial-gold), var(--stardust-gold));
    color: var(--cosmic-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-icon {
    font-size: 3rem;
    color: var(--celestial-gold);
    margin: 20px 0;
}

.step-card h3 {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.expected-results {
    margin-top: 50px;
    text-align: center;
}

.expected-results h3 {
    color: var(--celestial-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.results-timeline {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.result-badge {
    background: linear-gradient(135deg, var(--celestial-gold), var(--stardust-gold));
    color: var(--cosmic-blue);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* === SECTION 7: TESTIMONIALS === */
.testimonials {
    padding: var(--section-padding);
    background: rgba(26, 11, 46, 0.3);
}

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

.testimonial-card {
    background: rgba(10, 14, 39, 0.7);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--celestial-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(244, 196, 48, 0.3);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--celestial-gold);
    margin-bottom: 15px;
    object-fit: cover;
}

.rating {
    color: var(--celestial-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: var(--celestial-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* === SECTION 8: TODAY'S OFFER === */
.todays-offer {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.1), rgba(26, 11, 46, 0.5));
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(10, 14, 39, 0.8);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    border: 3px solid var(--celestial-gold);
    box-shadow: 0 15px 60px rgba(244, 196, 48, 0.4);
}

.offer-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--celestial-gold);
    margin-bottom: 30px;
    line-height: 1.4;
}

.pricing-display {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.8rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 10px;
}

.new-price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--celestial-gold);
    text-shadow: 0 5px 20px rgba(244, 196, 48, 0.6);
    margin-bottom: 15px;
}

.offer-tag {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.cta-button-offer {
    background: linear-gradient(135deg, var(--celestial-gold), var(--stardust-gold));
    color: var(--cosmic-blue);
    border: none;
    padding: 20px 50px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(244, 196, 48, 0.5);
    margin: 20px 0;
}

.cta-button-offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(244, 196, 48, 0.7);
}

.mini-quotes {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 196, 48, 0.3);
}

.mini-quotes p {
    color: #c0c0c0;
    font-size: 0.95rem;
    margin: 8px 0;
    font-style: italic;
}

/* === SECTION 9: WHAT YOU GET === */
.what-you-get {
    padding: var(--section-padding);
    background: rgba(10, 14, 39, 0.6);
}

.checklist {
    max-width: 600px;
    margin: 40px auto 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(26, 11, 46, 0.5);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    border-left: 4px solid var(--celestial-gold);
}

.check-item i {
    color: var(--celestial-gold);
    font-size: 1.5rem;
}

.check-item span {
    color: #e0e0e0;
    font-size: 1.1rem;
}

/* === SECTION 10: BONUSES === */
.bonuses {
    padding: var(--section-padding);
    background: rgba(26, 11, 46, 0.4);
}

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

.bonus-card {
    background: rgba(10, 14, 39, 0.7);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--celestial-gold);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(244, 196, 48, 0.4);
}

.bonus-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.bonus-card h3 {
    color: var(--celestial-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bonus-card p {
    color: #c0c0c0;
    line-height: 1.6;
}

/* === SECTION 11: FAQ === */
.faq {
    padding: var(--section-padding);
    background: rgba(10, 14, 39, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: rgba(26, 11, 46, 0.6);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--celestial-gold);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 39, 0.5);
}

.faq-question h3 {
    color: var(--celestial-gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--celestial-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 25px;
    color: #e0e0e0;
    line-height: 1.8;
}

/* === SECTION 12: FOOTER === */
.footer {
    padding: 60px 20px 30px;
    background: rgba(10, 14, 39, 0.9);
    border-top: 2px solid var(--celestial-gold);
}

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

.footer-brand h3 {
    color: var(--celestial-gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #c0c0c0;
}

.footer-links h4, .footer-contact h4 {
    color: var(--celestial-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--celestial-gold);
}

.footer-contact p {
    color: #c0c0c0;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(244, 196, 48, 0.2);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* === PURCHASE POPUP === */
.purchase-popup {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: rgba(10, 14, 39, 0.95);
    border: 2px solid var(--celestial-gold);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.4);
    z-index: 9998;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    max-width: 300px;
}

.purchase-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.purchase-popup p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 968px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-display {
        font-size: 1.5rem;
        gap: 15px;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-steps {
        flex-direction: column;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
    }
    
    .floating-cta {
        bottom: 10px;
        right: 10px;
        padding: 12px 15px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .cta-button-main {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .new-price {
        font-size: 3rem;
    }
    
    .cta-button-offer {
        font-size: 1.2rem;
        padding: 15px 35px;
    }
}
