/* ========================================
   EXPLORE TOUR CSS
   Styles for individual tour pages
   Based on strona-wycieczki-v2.html
   Fonts: DM Serif Display + Inter (not Playfair)
   Theme: Dark premium with gold accents
   ======================================== */

/* This file assumes explore-base.css is loaded */

/* Apply dark theme to body */
body {
    background-color: var(--color-bg);
    color: var(--color-text);
}

/* ===== HERO SECTION WITH IMAGE ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 8% 10vh;
    max-width: 800px;
}

.hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__breadcrumb a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

.hero__breadcrumb a:hover {
    color: var(--color-gold-light);
}

.hero__city {
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: relative;
    z-index: 10;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    max-width: 1600px;
    margin: 0 auto;
}

.stats-bar__items {
    display: flex;
    gap: 4rem;
    padding: 1.5rem 0;
}

.stats-bar__item {
    text-align: center;
}

.stats-bar__value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 500;
}

.stats-bar__label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
}

.stats-bar__cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-play:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn-download {
    background: var(--color-gold);
    color: var(--color-bg);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-download:hover {
    background: var(--color-gold-light);
}

/* ===== ABOUT SECTION (SPLIT LAYOUT) ===== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.about__content {
    padding: 8% 8% 8% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about__text {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature__icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature__label {
    font-size: 0.9rem;
    color: var(--color-text);
}

.feature__value {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.about__image-wrapper {
    position: relative;
    overflow: hidden;
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ===== TIMELINE SECTION (DIAGONAL/STAGGERED) ===== */
.timeline {
    padding: 10vh 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.timeline::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.timeline::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.timeline__header {
    text-align: center;
    padding: 0 8% 8vh;
    position: relative;
    z-index: 2;
}

.timeline__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    animation: timelineFadeIn 0.8s ease-out forwards;
}

.timeline__subtitle {
    color: var(--color-text-muted);
    margin-top: 1rem;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(20px);
    animation: timelineFadeIn 0.8s ease-out 0.2s forwards;
}

@keyframes timelineFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Diagonal Timeline Items */
.timeline__items {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Vertical line with gradient and animation */
.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-gold) 5%,
        var(--color-gold) 95%,
        transparent 100%
    );
    transform: translateX(-50%);
    opacity: 0.4;
}

/* Animated glow on line */
.timeline__line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    height: 100px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--color-gold),
        transparent
    );
    animation: lineGlow 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes lineGlow {
    0%, 100% {
        top: 0%;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: calc(100% - 100px);
        opacity: 0;
    }
}

.timeline__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 10vh;
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline__item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline__item:nth-child(odd) {
    direction: rtl;
}

.timeline__item:nth-child(odd) > * {
    direction: ltr;
}

/* Staggered animation delays */
.timeline__item:nth-child(1) { transition-delay: 0s; }
.timeline__item:nth-child(2) { transition-delay: 0.1s; }
.timeline__item:nth-child(3) { transition-delay: 0.15s; }
.timeline__item:nth-child(4) { transition-delay: 0.2s; }
.timeline__item:nth-child(5) { transition-delay: 0.25s; }

.timeline__item-content {
    padding: 2rem;
    position: relative;
}

.timeline__item-number {
    font-family: var(--font-display);
    font-size: 6rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 169, 98, 0.2);
    line-height: 1;
    margin-bottom: -2.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    user-select: none;
}

.timeline__item:hover .timeline__item-number {
    -webkit-text-stroke: 1px rgba(201, 169, 98, 0.4);
    transform: scale(1.05);
}

.timeline__item-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.timeline__item:hover .timeline__item-title {
    color: var(--color-gold);
}

.timeline__item-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline__item-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.timeline__item-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(201, 169, 98, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.timeline__item-meta span svg {
    color: var(--color-gold);
    opacity: 0.8;
}

.timeline__item:hover .timeline__item-meta span {
    background: rgba(201, 169, 98, 0.15);
}

.timeline__item-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline__item:hover .timeline__item-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.timeline__item-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline__item:hover .timeline__item-image img {
    transform: scale(1.08);
}

/* Image overlay gradient */
.timeline__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 98, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.timeline__item:hover .timeline__item-overlay {
    opacity: 1;
}

.timeline__item-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    z-index: 3;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(201, 169, 98, 0.6);
    }
}

/* Timeline dot/connector - Enhanced */
.timeline__dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--color-bg);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(201, 169, 98, 0);
}

.timeline__item:hover .timeline__dot {
    transform: translate(-50%, -50%) scale(1.15);
    border-color: var(--color-gold-light);
    box-shadow: 0 0 0 8px rgba(201, 169, 98, 0.15);
}

.timeline__dot-number {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.timeline__item:hover .timeline__dot-number {
    color: var(--color-gold-light);
    transform: scale(1.1);
}

/* Connector lines from dot to content */
.timeline__dot::before,
.timeline__dot::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.3;
    transition: all 0.4s ease;
}

.timeline__dot::before {
    right: 100%;
    width: 30px;
    transform: translateY(-50%);
}

.timeline__dot::after {
    left: 100%;
    width: 30px;
    transform: translateY(-50%);
}

.timeline__item:hover .timeline__dot::before,
.timeline__item:hover .timeline__dot::after {
    opacity: 0.6;
    width: 50px;
}

/* ===== WHAT'S INCLUDED ===== */
.included {
    background: var(--color-bg-alt);
    padding: 10vh 8%;
}

.included__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.included__header {
    text-align: center;
    margin-bottom: 5vh;
}

.included__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 500;
}

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

.included__item {
    background: var(--color-surface);
    padding: 2rem;
    border: 1px solid var(--color-border);
    transition: border-color var(--transition);
}

.included__item:hover {
    border-color: var(--color-gold);
}

.included__icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.included__item-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.included__item-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== AUDIO PREVIEW ===== */
.audio-preview {
    padding: 10vh 8%;
    background: var(--color-bg);
}

.audio-preview__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.audio-preview__content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.audio-preview__content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.audio-player {
    background: var(--color-surface);
    padding: 1.5rem 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}

.audio-player:hover {
    border-color: var(--color-gold);
}

.audio-player__label {
    font-size: 0.7rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.audio-player__title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.audio-player__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audio-player__play {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.audio-player__play:hover {
    transform: scale(1.1);
    background: var(--color-gold-light);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
}

.audio-player__play:active {
    transform: scale(0.95);
}

.audio-player__play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.audio-player__play:active::before {
    width: 100%;
    height: 100%;
}

.audio-player__play svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition);
}

.audio-player__progress {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: height var(--transition-fast);
}

.audio-player__progress:hover {
    height: 8px;
}

.audio-player__progress-fill {
    width: 0%;
    height: 100%;
    background: var(--color-gold);
    border-radius: 3px;
    position: relative;
    transition: background var(--transition);
    pointer-events: none;
}

.audio-player__progress:hover .audio-player__progress-fill {
    background: var(--color-gold-light);
}

.audio-player__progress-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.audio-player__progress:hover .audio-player__progress-fill::after {
    opacity: 1;
}

.audio-player__time {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    min-width: 100px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

/* Ukryj domyślny element audio */
.audio-player audio {
    display: none;
}

.audio-preview__visual {
    position: relative;
}

.audio-preview__waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 200px;
}

.waveform-bar {
    width: 4px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: waveform 1s ease-in-out infinite;
    animation-play-state: paused;
    height: 20%;
    opacity: 0.3;
}

@keyframes waveform {
    0%, 100% { height: 20%; opacity: 0.3; }
    50% { height: 100%; opacity: 1; }
}

.waveform-bar:nth-child(1) { animation-delay: 0s; }
.waveform-bar:nth-child(2) { animation-delay: 0.05s; }
.waveform-bar:nth-child(3) { animation-delay: 0.1s; }
.waveform-bar:nth-child(4) { animation-delay: 0.15s; }
.waveform-bar:nth-child(5) { animation-delay: 0.2s; }
.waveform-bar:nth-child(6) { animation-delay: 0.25s; }
.waveform-bar:nth-child(7) { animation-delay: 0.3s; }
.waveform-bar:nth-child(8) { animation-delay: 0.35s; }
.waveform-bar:nth-child(9) { animation-delay: 0.4s; }
.waveform-bar:nth-child(10) { animation-delay: 0.45s; }
.waveform-bar:nth-child(11) { animation-delay: 0.5s; }
.waveform-bar:nth-child(12) { animation-delay: 0.55s; }
.waveform-bar:nth-child(13) { animation-delay: 0.6s; }
.waveform-bar:nth-child(14) { animation-delay: 0.65s; }
.waveform-bar:nth-child(15) { animation-delay: 0.7s; }
.waveform-bar:nth-child(16) { animation-delay: 0.75s; }
.waveform-bar:nth-child(17) { animation-delay: 0.8s; }
.waveform-bar:nth-child(18) { animation-delay: 0.85s; }
.waveform-bar:nth-child(19) { animation-delay: 0.9s; }
.waveform-bar:nth-child(20) { animation-delay: 0.95s; }

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 15vh 8%;
    text-align: center;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.cta-section__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-section__text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-section__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-text);
    color: var(--color-bg);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: transform var(--transition);
}

.btn-store:hover {
    transform: translateY(-3px);
}

.btn-store img {
    height: 24px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-bg-alt);
    padding: 4rem 8%;
    text-align: center;
    border-top: 1px solid var(--color-border-light);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about__image-wrapper {
        height: 50vh;
        order: -1;
    }

    .timeline__items {
        padding: 0 5%;
    }

    .timeline__item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 6vh;
        padding-left: 60px;
    }

    .timeline__item:nth-child(odd) {
        direction: ltr;
    }

    /* Mobile: vertical line on left side */
    .timeline__line {
        left: 25px;
        transform: none;
    }

    .timeline__dot {
        left: 25px;
        top: 0;
        transform: translate(-50%, 0);
        width: 36px;
        height: 36px;
    }

    .timeline__item:hover .timeline__dot {
        transform: translate(-50%, 0) scale(1.1);
    }

    .timeline__dot::before,
    .timeline__dot::after {
        display: none;
    }

    .timeline__item-content {
        padding: 0;
        order: 2;
    }

    .timeline__item-image {
        order: 1;
    }

    .timeline__item-number {
        font-size: 3rem;
        margin-bottom: -1rem;
    }

    .timeline__item-image img {
        height: 250px;
    }

    .audio-preview__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .included__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero adjustments */
    .hero {
        min-height: 500px;
    }

    .hero__content {
        padding: 0 5% 8vh;
    }

    /* Stats bar */
    .stats-bar__inner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }

    .stats-bar__items {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-bar__cta {
        width: 100%;
        justify-content: center;
    }

    /* Hide features section on mobile */
    .about__features {
        display: none;
    }

    /* Hide included section on mobile */
    .included {
        display: none;
    }

    .cta-section__buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Audio player mobile adjustments */
    .audio-player {
        padding: 1.25rem 1.5rem;
    }

    .audio-player__controls {
        gap: 0.75rem;
    }

    .audio-player__play {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .audio-player__time {
        font-size: 0.8rem;
        min-width: 80px;
    }

    .audio-player__progress {
        height: 8px;
    }

    .audio-player__progress:hover {
        height: 8px;
    }

    .audio-player__progress-fill::after {
        opacity: 1;
        width: 10px;
        height: 10px;
    }
}

/* ===== MOBILE BREAKPOINT (480px) ===== */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        min-height: 400px;
    }

    .hero__content {
        padding: 0 20px 6vh;
    }

    /* Stats bar */
    .stats-bar__value {
        font-size: 1.4rem;
    }

    .stats-bar__items {
        gap: 1rem;
    }

    .stats-bar__cta {
        flex-direction: column;
        width: 100%;
    }

    .stats-bar__cta .btn-play,
    .stats-bar__cta .btn-download {
        width: 100%;
        justify-content: center;
    }

    /* Timeline */
    .timeline__item-image img {
        height: 200px;
    }

    .timeline__item-number {
        font-size: 2.5rem;
    }

    /* CTA buttons */
    .cta-section__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-store {
        width: 100%;
        justify-content: center;
    }
}
