/* ========================================
   ESPY MUSIC - MAIN STYLESHEET
   Brand Colors:
   - Canada Snow: #F1F0F0
   - Dark Charcoal: #2F2F2F
   - Espy Red: #F9423A
======================================== */

:root {
    --canada-snow: #F1F0F0;
    --dark-charcoal: #2F2F2F;
    --espy-red: #F9423A;
    --espy-red-hover: #e63830;
    --white: #FFFFFF;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); background-color: var(--dark-charcoal); color: var(--canada-snow); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--light { background-color: var(--canada-snow); color: var(--dark-charcoal); }
.text-red { color: var(--espy-red); }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { font-size: 1rem; color: var(--gray-400); }
.section--light p { color: var(--gray-600); }

.subtitle { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--espy-red); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.subtitle::before { content: ''; width: 12px; height: 12px; background-color: var(--espy-red); flex-shrink: 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; font-size: 1rem; font-weight: 600; border-radius: 4px; transition: var(--transition-medium); }
.btn--primary { background-color: var(--espy-red); color: var(--white); }
.btn--primary:hover { background-color: var(--espy-red-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--secondary { background-color: transparent; color: var(--canada-snow); border: 2px solid var(--canada-snow); }
.btn--secondary:hover { background-color: var(--canada-snow); color: var(--dark-charcoal); }
.btn--large { padding: 20px 48px; font-size: 1.125rem; }

/* Announcement Bar */
.announcement-bar { background-color: var(--espy-red); color: var(--white); padding: 12px 24px; text-align: center; font-weight: 600; font-size: 0.9rem; overflow: hidden; }
.announcement-bar__content { display: flex; animation: marquee 25s linear infinite; white-space: nowrap; }
.announcement-bar__text { display: flex; align-items: center; gap: 24px; padding-right: 48px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background-color: rgba(47, 47, 47, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); transition: var(--transition-medium); }
.header--solid { background-color: var(--dark-charcoal); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1400px; margin: 0 auto; }
.header__logo-text { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; }
.header__logo-accent, .footer__logo-accent { font-style: italic; font-weight: 400; }
.header__nav { display: flex; align-items: center; gap: 40px; }
.header__nav-links { display: flex; gap: 32px; }
.header__nav-links a { font-weight: 500; color: var(--gray-300); position: relative; }
.header__nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background-color: var(--espy-red); transition: var(--transition-fast); }
.header__nav-links a:hover { color: var(--white); }
.header__nav-links a:hover::after { width: 100%; }
.header__mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 10px; }
.header__mobile-toggle span { width: 24px; height: 2px; background-color: var(--white); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 140px; padding-bottom: 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 150%; background: radial-gradient(ellipse, rgba(249, 66, 58, 0.08) 0%, transparent 70%); pointer-events: none; }
.hero__content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background-color: rgba(249, 66, 58, 0.1); border: 1px solid rgba(249, 66, 58, 0.3); padding: 8px 16px; border-radius: 100px; font-size: 0.875rem; font-weight: 500; color: var(--espy-red); margin-bottom: 24px; animation: fadeInUp 0.6s ease forwards; }
.hero__title { margin-bottom: 24px; animation: fadeInUp 0.6s ease 0.1s forwards; opacity: 0; }
.hero__description { font-size: 1.25rem; color: var(--gray-300); margin-bottom: 48px; animation: fadeInUp 0.6s ease 0.2s forwards; opacity: 0; }
.hero__stats { display: flex; gap: 48px; justify-content: center; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); animation: fadeInUp 0.6s ease 0.5s forwards; opacity: 0; }
.hero__stat-number { font-size: 2.5rem; font-weight: 700; color: var(--white); }
.hero__stat-label { font-size: 0.875rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }

/* Search Box */
.search-box { background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-charcoal) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; max-width: 600px; margin: 0 auto; animation: fadeInUp 0.6s ease 0.3s forwards; opacity: 0; }
.search-box--modal { animation: none; opacity: 1; background: var(--dark-charcoal); }
.search-box__header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-weight: 600; color: var(--white); }
.search-box__spotify-logo { height: 24px; width: auto; }
.search-box__input-wrapper { position: relative; display: flex; align-items: center; }
.search-box__icon { position: absolute; left: 16px; width: 20px; height: 20px; color: var(--gray-400); }
.search-box__input { width: 100%; padding: 16px 48px; font-size: 1rem; font-family: var(--font-primary); background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--white); transition: var(--transition-fast); }
.search-box__input:focus { outline: none; border-color: var(--espy-red); background-color: rgba(255,255,255,0.08); }
.search-box__input::placeholder { color: var(--gray-500); }
.search-box__clear { position: absolute; right: 16px; width: 24px; height: 24px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: var(--white); font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.search-box__results { margin-top: 8px; max-height: 300px; overflow-y: auto; border-radius: 8px; }
.search-box__result-item { display: flex; align-items: center; gap: 16px; padding: 12px; border-radius: 8px; cursor: pointer; transition: var(--transition-fast); }
.search-box__result-item:hover { background-color: rgba(255,255,255,0.05); }
.search-box__result-image { width: 48px; height: 48px; background: linear-gradient(135deg, #333, #1a1a1a); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; overflow: hidden; }
.search-box__result-image img { width: 100%; height: 100%; object-fit: cover; }
.search-box__result-title { font-weight: 600; color: var(--white); }
.search-box__result-artist { font-size: 0.875rem; color: var(--gray-400); }

/* Trust Bar */
.trust-bar { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.trust-bar__title { text-align: center; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 32px; }
.trust-bar__logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; opacity: 0.6; }
.trust-bar__logo { font-size: 1.125rem; font-weight: 700; color: var(--gray-400); }

/* Results Carousel */
.results { padding: 100px 0; overflow: hidden; }
.results__header { text-align: center; margin-bottom: 60px; }
.results__header h2 { margin-bottom: 16px; }
.results__header p { max-width: 600px; margin: 0 auto; font-size: 1.125rem; }
.results__carousel { display: flex; gap: 24px; animation: scroll 35s linear infinite; width: max-content; }
.results__carousel:hover { animation-play-state: paused; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.results__card { flex-shrink: 0; width: 280px; background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-charcoal) 100%); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition-medium); }
.results__card:hover { transform: translateY(-5px); border-color: var(--espy-red); }
.results__card-image { height: 180px; background: linear-gradient(135deg, #333 0%, #1a1a1a 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.results__card-content { padding: 20px; }
.results__card-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 4px; color: var(--white); }
.results__card-stats { font-size: 0.875rem; color: var(--espy-red); font-weight: 600; }
.results__card-desc { font-size: 0.8rem; color: var(--gray-400); margin-top: 8px; }

/* How It Works */
.how-it-works__header { text-align: center; margin-bottom: 80px; }
.how-it-works__header h2 { margin-bottom: 16px; }
.how-it-works__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.how-it-works__step { position: relative; }
.how-it-works__step-number { width: 48px; height: 48px; background-color: var(--espy-red); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; }
.how-it-works__step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.how-it-works__step-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }
.how-it-works__connector { position: absolute; top: 24px; left: 60px; right: -20px; height: 2px; background: linear-gradient(90deg, var(--espy-red), transparent); }
.how-it-works__step:last-child .how-it-works__connector { display: none; }

/* Why Espy */
.why-espy { padding: 100px 0; }
.why-espy__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-espy__content h2 { margin-bottom: 20px; }
.why-espy__content > p { margin-bottom: 32px; font-size: 1.1rem; color: var(--gray-300); }
.why-espy__list { margin-bottom: 32px; }
.why-espy__list li { display: flex; align-items: center; gap: 16px; padding: 12px 0; color: var(--gray-200); font-size: 1rem; }
.why-espy__check { width: 24px; height: 24px; background-color: rgba(249, 66, 58, 0.2); color: var(--espy-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.comparison-table { background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-charcoal) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; }
.comparison-table__header, .comparison-table__row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; padding: 16px 24px; }
.comparison-table__header { background-color: rgba(255,255,255,0.05); font-weight: 600; color: var(--white); }
.comparison-table__row { border-top: 1px solid rgba(255,255,255,0.05); color: var(--gray-300); }
.comparison-table__us { color: var(--espy-red); text-align: center; font-weight: 600; }
.comparison-table__them { color: var(--gray-500); text-align: center; }

/* Testimonials */
.testimonials__header { text-align: center; margin-bottom: 60px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial__card { background-color: var(--white); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-md); transition: var(--transition-medium); }
.testimonial__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.testimonial__quote { font-size: 1rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 24px; }
.testimonial__author { display: flex; align-items: center; gap: 16px; }
.testimonial__avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--espy-red), #ff6b5b); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.25rem; }
.testimonial__name { font-weight: 600; color: var(--dark-charcoal); }
.testimonial__role { font-size: 0.875rem; color: var(--gray-500); }
.testimonial__stats { font-size: 0.75rem; color: var(--espy-red); font-weight: 600; }

/* FAQ */
.faq__header { text-align: center; margin-bottom: 60px; }
.faq__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.faq__item { background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-charcoal) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; }
.faq__question { width: 100%; padding: 24px; display: flex; justify-content: space-between; align-items: center; background: none; color: var(--white); font-size: 1rem; font-weight: 600; text-align: left; transition: var(--transition-fast); }
.faq__question:hover { background-color: rgba(255,255,255,0.02); }
.faq__question::after { content: '+'; font-size: 1.5rem; color: var(--espy-red); transition: var(--transition-fast); }
.faq__item.active .faq__question::after { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__answer-content { padding: 0 24px 24px; font-size: 0.9rem; color: var(--gray-400); line-height: 1.7; }
.faq__item.active .faq__answer { max-height: 200px; }

/* CTA */
.cta { background-color: var(--espy-red); color: var(--white); text-align: center; padding: 100px 24px; }
.cta h2 { margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.8); font-size: 1.25rem; max-width: 600px; margin: 0 auto 40px; }
.cta .btn--secondary { border-color: var(--white); color: var(--white); }
.cta .btn--secondary:hover { background-color: var(--white); color: var(--espy-red); }

/* Footer */
.footer { background-color: #1a1a1a; padding: 80px 24px 40px; }
.footer--simple { padding: 40px 24px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand-desc { color: var(--gray-400); margin-top: 16px; font-size: 0.9rem; max-width: 300px; }
.footer__logo { font-size: 1.75rem; font-weight: 700; color: var(--white); }
.footer__title { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 24px; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { color: var(--gray-400); font-size: 0.9rem; }
.footer__links a:hover { color: var(--espy-red); }
.footer__bottom { max-width: 1200px; margin: 40px auto 0; display: flex; justify-content: space-between; align-items: center; color: var(--gray-500); font-size: 0.875rem; }
.footer--simple .footer__bottom { margin-top: 0; }
.footer__links-inline { display: flex; gap: 24px; }
.footer__links-inline a { color: var(--gray-500); }
.footer__links-inline a:hover { color: var(--espy-red); }
.footer__socials { display: flex; gap: 16px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--gray-400); transition: var(--transition-fast); }
.footer__socials a:hover { border-color: var(--espy-red); color: var(--espy-red); }

/* Packages Page */
.packages-page { padding-top: 100px; padding-bottom: 60px; min-height: 100vh; }
.progress-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 48px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.progress-step__number { width: 40px; height: 40px; border-radius: 50%; background-color: rgba(255,255,255,0.1); color: var(--gray-500); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.progress-step--active .progress-step__number, .progress-step--completed .progress-step__number { background-color: var(--espy-red); color: var(--white); }
.progress-step__label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.progress-step--active .progress-step__label { color: var(--white); }
.progress-step__line { width: 80px; height: 2px; background-color: rgba(255,255,255,0.1); margin: 0 16px; margin-bottom: 24px; }
.progress-step__line--active { background-color: var(--espy-red); }

.selected-song { display: flex; align-items: center; gap: 20px; background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-charcoal) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; margin-bottom: 32px; }
.selected-song__image { width: 80px; height: 80px; background: linear-gradient(135deg, #333, #1a1a1a); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; overflow: hidden; }
.selected-song__image img { width: 100%; height: 100%; object-fit: cover; }
.selected-song__info { flex: 1; }
.selected-song__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--espy-red); margin-bottom: 4px; }
.selected-song__title { font-size: 1.25rem; color: var(--white); margin-bottom: 4px; }
.selected-song__artist { color: var(--gray-400); font-size: 0.9rem; }
.selected-song__change { color: var(--espy-red); font-weight: 600; font-size: 0.875rem; }
.selected-song__change:hover { text-decoration: underline; }

.add-songs { background: rgba(255,255,255,0.02); border: 1px dashed rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; margin-bottom: 48px; }
.add-songs__header { margin-bottom: 16px; }
.add-songs__header h3 { color: var(--white); margin-bottom: 4px; }
.add-songs__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.add-songs__item { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 12px; }
.add-songs__item-image { width: 40px; height: 40px; background: linear-gradient(135deg, #333, #1a1a1a); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.add-songs__item-info { flex: 1; }
.add-songs__item-title { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.add-songs__item-artist { font-size: 0.8rem; color: var(--gray-400); }
.add-songs__item-remove { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--gray-400); font-size: 1.25rem; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.add-songs__item-remove:hover { background: var(--espy-red); color: var(--white); }
.add-songs__btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px; background: transparent; border: 1px dashed rgba(255,255,255,0.2); border-radius: 8px; color: var(--gray-300); font-weight: 600; }
.add-songs__btn:hover { border-color: var(--espy-red); color: var(--espy-red); }
.add-songs__bonus { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; padding: 12px; background: rgba(249, 66, 58, 0.1); border-radius: 8px; font-size: 0.875rem; color: var(--espy-red); }

.packages-section { margin-bottom: 48px; }
.packages-header { text-align: center; margin-bottom: 48px; }
.packages-header h2 { margin-bottom: 12px; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card { background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-charcoal) 100%); border: 2px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; position: relative; transition: var(--transition-medium); }
.package-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); }
.package-card--featured { border-color: var(--espy-red); background: linear-gradient(135deg, rgba(249, 66, 58, 0.1) 0%, #1a1a1a 100%); }
.package-card--selected { border-color: var(--espy-red); box-shadow: 0 0 0 2px var(--espy-red); }
.package-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background-color: var(--espy-red); color: var(--white); padding: 6px 20px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.package-card__header { margin-bottom: 24px; }
.package-card__name { font-size: 1.5rem; color: var(--white); margin-bottom: 4px; }
.package-card__desc { font-size: 0.875rem; color: var(--gray-400); }
.package-card__price { margin-bottom: 8px; display: flex; align-items: baseline; }
.package-card__currency { font-size: 1.5rem; color: var(--white); }
.package-card__amount { font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.package-card__period { font-size: 1rem; color: var(--gray-400); margin-left: 4px; }
.package-card__streams { font-size: 0.9rem; color: var(--espy-red); font-weight: 600; margin-bottom: 24px; }
.package-card__features { margin-bottom: 32px; }
.package-card__features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--gray-300); }
.package-card__features .check { color: var(--espy-red); font-weight: 700; }
.package-card__btn { width: 100%; }

.order-summary { position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(180deg, transparent 0%, var(--dark-charcoal) 20%); padding: 24px; z-index: 100; }
.order-summary__inner { max-width: 600px; margin: 0 auto; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; }
.order-summary__title { font-size: 1rem; color: var(--white); margin-bottom: 16px; }
.order-summary__song { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; color: var(--gray-300); }
.order-summary__song-artist { color: var(--gray-500); }
.order-summary__package { display: flex; justify-content: space-between; padding: 12px 0; color: var(--gray-300); }
.order-summary__divider { height: 1px; background: rgba(255,255,255,0.1); margin: 12px 0; }
.order-summary__total { display: flex; justify-content: space-between; font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.order-summary__checkout { width: 100%; margin-bottom: 12px; }
.order-summary__guarantee { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: var(--gray-500); }

.guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.guarantee { display: flex; align-items: flex-start; gap: 16px; }
.guarantee__icon { font-size: 1.5rem; }
.guarantee strong { display: block; color: var(--white); margin-bottom: 4px; }
.guarantee p { font-size: 0.875rem; }

/* Modal */
.modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition-medium); }
.modal--open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); }
.modal__content { position: relative; background: var(--dark-charcoal); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; width: 90%; max-width: 500px; transform: translateY(20px); transition: var(--transition-medium); }
.modal--open .modal__content { transform: translateY(0); }
.modal__close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.modal__close:hover { background: var(--espy-red); }
.modal__content h3 { color: var(--white); margin-bottom: 8px; }
.modal__content > p { margin-bottom: 24px; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .hero__stats { flex-wrap: wrap; gap: 32px; }
    .how-it-works__grid { grid-template-columns: repeat(2, 1fr); }
    .how-it-works__connector { display: none; }
    .why-espy__grid { grid-template-columns: 1fr; gap: 48px; }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .faq__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .guarantees { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .header__nav-links, .header__nav .btn { display: none; }
    .header__mobile-toggle { display: flex; }
    .hero { padding-top: 120px; }
    .hero__stats { flex-direction: column; align-items: center; gap: 24px; }
    .how-it-works__grid { grid-template-columns: 1fr; }
    .trust-bar__logos { gap: 32px; }
    .footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom { flex-direction: column; gap: 24px; text-align: center; }
    .footer__links-inline { flex-wrap: wrap; justify-content: center; }
    .selected-song { flex-direction: column; text-align: center; }
    .progress-steps { transform: scale(0.85); }
}
