@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Monument Grotesk', 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #12122B; color: #E8E4DC; overflow-x: hidden;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0;
}

/* ===== NAV ===== */
.sp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 48px;
    background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
.sp-nav.scrolled {
    background: rgba(18, 18, 43, 0.45);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.sp-nav-logo { display: flex; align-items: center; }
.sp-nav-logo img { height: 32px; filter: brightness(0) invert(1); }
/* Nav left / right containers */
.sp-nav-left { display: flex; align-items: center; gap: 6px; }
.sp-nav-right { display: flex; align-items: center; gap: 20px; }
.sp-lang-btn {
    color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 400; text-decoration: none;
    padding: 6px 12px; border-radius: 8px; transition: all 0.2s; text-transform: lowercase;
}
.sp-lang-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.sp-lang-btn.active { color: #fff; background: rgba(255,255,255,0.15); }
.sp-nav-programs { position: relative; }
.sp-nav-programs-btn {
    background: none; border: none; cursor: pointer;
    color: #fff; font-size: 13px; font-weight: 400; font-family: inherit;
    display: flex; align-items: center; gap: 5px; padding: 6px 0;
    text-transform: uppercase; letter-spacing: 0; transition: color 0.2s;
}
.sp-nav-programs-btn:hover { color: #E8E4DC; }
.sp-nav-programs-btn svg { transition: transform 0.2s; }
.sp-nav-programs.open .sp-nav-programs-btn svg { transform: rotate(180deg); }
.sp-nav-programs-dropdown {
    display: none; position: absolute; top: calc(100% + 10px); right: 0;
    background: rgba(30,30,60,0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
    padding: 6px; min-width: 250px; z-index: 200;
}
.sp-nav-programs.open .sp-nav-programs-dropdown { display: block; }
.sp-prog-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 14px; border-radius: 10px; text-decoration: none;
    color: #E8E4DC; font-size: 13px; font-weight: 400; transition: background 0.15s;
}
.sp-prog-item:hover { background: rgba(255,255,255,0.06); }
.sp-prog-item.current { color: #9AA4FF; }
.sp-prog-item.disabled { opacity: 0.4; cursor: default; pointer-events: none; }
.sp-prog-soon {
    font-size: 10px; font-weight: 500; color: #9AA4FF;
    background: rgba(154,164,255,0.15); padding: 3px 9px; border-radius: 100px;
}
.sp-nav-link {
    color: #fff; text-decoration: none; font-size: 13px;
    font-weight: 400; letter-spacing: 0; transition: color 0.3s;
    text-transform: uppercase; min-width: auto; white-space: nowrap;
}
.sp-nav-link:hover { color: #E8E4DC; }

/* ===== HERO ===== */
.sp-hero {
    position: relative; min-height: 100vh; display: flex;
    align-items: flex-end; padding: 0 48px 140px;
    overflow: hidden;
}
.sp-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, #12122B 0%, #1a1a3a 50%, #12122B 100%);
}
.sp-hero-bg-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.9;
}
.sp-hero-overlay {
    position: absolute; inset: 0;
    /* background: linear-gradient(180deg, rgba(18,18,43,0.3) 0%, rgba(18,18,43,0.7) 60%, rgba(18,18,43,1) 100%); */
    z-index: 1;
}
.sp-hero-content {
    position: relative; z-index: 2; width: 100%;
    display: flex; justify-content: space-between; align-items: flex-end;
}
.sp-hero-left { max-width: 550px; }
.sp-hero-year {
    font-size: 13px; font-weight: 400; color: #fff;
    letter-spacing: 0; margin-bottom: 2px; text-align: end;
}
.sp-hero-title {
    font-size: clamp(42px, 5.5vw, 72px); font-weight: 400;
    line-height: 0.95; letter-spacing: 0;
    text-transform: uppercase; margin-bottom: 16px;
}
.sp-hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-hero-tag {
    padding: 6px 16px;
    border: none;
    background: #7D8AFF;
    border-radius: 100px; font-size: 12px; font-weight: 400;
    color: #fff; letter-spacing: 0;
}
.sp-hero-right {
    max-width: 420px; text-align: right;
}
.sp-hero-desc {
    font-size: 17px; font-weight: 400; color: #fff;
    line-height: 1; letter-spacing: 0; margin-bottom: 50px;
}

/* ===== FLOATING CTA ===== */
.sp-float-cta {
    position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 99; background: #fff; color: #12122B;
    padding: 16px 40px; border-radius: 100px; font-size: 17px;
    font-weight: 400; text-decoration: none; transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255,255,255,0.12), 0 2px 16px rgba(0,0,0,0.25);
    font-family: inherit; border: none; cursor: pointer;
    letter-spacing: 0;
}
.sp-btn-arrow {
    display: inline-block;
    position: relative;
    top: 2px;
    transition: transform 0.3s;
}
.sp-float-cta:hover {
    opacity: 0.9;
}
.sp-float-cta:hover .sp-btn-arrow {
    transform: translateX(4px);
}

/* ===== DAYS SECTION (horizontal scroll like Open.com) ===== */
.sp-days {
    padding: 120px 0 120px 48px; position: relative;
}
.sp-days-inner {
    display: flex; align-items: flex-start; gap: 60px;
}
.sp-days-text {
    flex-shrink: 0; width: 360px; position: sticky; top: 120px;
}
.sp-days-label {
    font-size: 11px; font-weight: 500; letter-spacing: 0;
    text-transform: uppercase; color: #8981B8;
    margin-bottom: 24px;
}
.sp-days-title {
    font-size: clamp(32px, 4vw, 52px); font-weight: 400;
    line-height: 1.05; text-transform: uppercase; margin-bottom: 24px;
}
.sp-days-desc {
    font-size: 15px; font-weight: 400; color: #8981B8;
    line-height: 1.7; max-width: 360px; letter-spacing: 0;
}
.sp-days-cards {
    display: flex; gap: 16px; overflow-x: auto;
    padding-bottom: 20px; padding-right: 48px;
    scrollbar-width: none; -ms-overflow-style: none;
}
.sp-days-cards::-webkit-scrollbar { display: none; }
.sp-day-card {
    flex-shrink: 0; width: 300px; height: 420px; border-radius: 16px; overflow: hidden;
    position: relative; transition: transform 0.3s; cursor: default;
    background: linear-gradient(135deg, #1e1e42, #2a2a55);
}
.sp-day-card:hover { transform: translateY(-4px); }
.sp-day-card img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.sp-day-card .sp-ph {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    color: rgba(232,228,220,0.1); font-size: 12px;
    letter-spacing: 0; text-transform: uppercase;
}
.sp-day-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.sp-day-card-label {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    font-size: 11px; font-weight: 500; letter-spacing: 0;
    color: rgba(232,228,220,0.7); text-transform: uppercase;
}
.sp-day-card-name {
    position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
    font-size: 22px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0; line-height: 1.15;
}

/* ===== DAILY PRACTICE (text left, phones horizontal scroll right) ===== */
.sp-practice {
    padding: 120px 0 80px 48px;
    border-top: 1px solid rgba(232,228,220,0.06);
    overflow: hidden;
}
.sp-practice-inner {
    display: flex; align-items: center; gap: 60px;
}
.sp-practice-text {
    flex-shrink: 0; width: 360px;
}
.sp-practice-title {
    font-size: clamp(36px, 5vw, 56px); font-weight: 400;
    line-height: 1.05; text-transform: uppercase; margin-bottom: 24px;
}
.sp-practice-desc {
    font-size: 15px; font-weight: 400; color: #8981B8;
    line-height: 1.7; max-width: 380px; letter-spacing: 0;
}
.sp-practice-phones {
    display: flex; gap: 20px; overflow-x: auto;
    padding-right: 48px; padding-bottom: 20px;
    scrollbar-width: none; -ms-overflow-style: none;
    align-items: center;
}
.sp-practice-phones::-webkit-scrollbar { display: none; }
.sp-practice-phone {
    flex-shrink: 0; width: 220px; border-radius: 28px;
    overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    /* border: 2px solid rgba(232,228,220,0.06); */
}
.sp-practice-phone img {
    width: 100%; height: auto; display: block;
}
.sp-practice-cta {
    display: flex; justify-content: center;
    margin-top: 60px; padding-right: 48px;
}
.sp-practice-cta a {
    display: inline-block; background: #E8E4DC; color: #12122B;
    padding: 16px 40px; border-radius: 100px; font-size: 15px;
    font-weight: 500; text-decoration: none; transition: all 0.3s;
    letter-spacing: 0;
}
.sp-practice-cta a:hover {
    background: #fff; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== WHAT CHANGES IN 7 DAYS — single editorial fullscreen card ===== */
.sp-results {
    background: #0a0a1f;
    padding: 0;
}
.sp-result {
    position: relative;
    margin: 0;
    min-height: 100vh;
    padding: 56px 64px 48px;
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.sp-result-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 38%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
    pointer-events: none;
}
.sp-result > *:not(.sp-result-overlay) { position: relative; z-index: 1; }

/* Top: tag */
.sp-result-top {
    display: flex;
    justify-content: flex-start;
}
.sp-result-tag {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Center: headline + lede */
.sp-result-body {
    margin: auto auto;
    text-align: center;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
}
.sp-result-headline {
    font-family: 'Raleway', sans-serif;
    font-size: 60px;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}
.sp-result-lede {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    max-width: 600px;
}

/* Bottom: 6 benefits in 3×2 grid */
.sp-result-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.sp-benefit {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sp-benefit-label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.sp-benefit-value {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

/* ===== QUOTE ===== */
.sp-quote {
    padding: 120px 48px;
    border-top: 1px solid rgba(232,228,220,0.06);
}
.sp-quote-inner {
    max-width: 900px; margin: 0 auto; text-align: center;
}
.sp-quote-mark {
    font-size: 64px; font-weight: 200; color: rgba(232,228,220,0.15);
    line-height: 1; margin-bottom: 24px;
}
.sp-quote-text {
    font-size: clamp(22px, 3vw, 32px); font-weight: 400;
    line-height: 1.4; font-style: italic; margin-bottom: 24px;
}
.sp-quote-author {
    font-size: 14px; color: #8981B8; font-weight: 400;
}
.sp-quote-slide {
    position: absolute; top: 0; left: 0; right: 0;
    opacity: 0; transition: opacity 0.8s ease;
    pointer-events: none;
}
.sp-quote-slide.active {
    opacity: 1; position: relative; pointer-events: auto;
}
.sp-quote-carousel {
    position: relative;
}

/* ===== PROGRAMS CAROUSEL ===== */
.sp-programs {
    padding: 120px 0 120px 48px;
    border-top: 1px solid rgba(232,228,220,0.06);
}
.sp-programs-head {
    max-width: 1300px; margin-bottom: 48px; padding-right: 48px;
}
.sp-programs-title {
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 400;
    text-transform: uppercase; margin-bottom: 16px;
}
.sp-programs-desc {
    font-size: 15px; font-weight: 400; color: #8981B8;
    line-height: 1.6; max-width: 500px; letter-spacing: 0;
}
.sp-programs-scroll {
    display: flex; gap: 16px; overflow-x: auto; padding-bottom: 20px;
    scrollbar-width: none; -ms-overflow-style: none;
}
.sp-programs-scroll::-webkit-scrollbar { display: none; }
.sp-prog-card {
    flex-shrink: 0; width: 200px; border-radius: 16px;
    overflow: hidden; position: relative; cursor: pointer;
    transition: transform 0.3s;
}
.sp-prog-card:hover { transform: scale(1.03); }
.sp-prog-card-img {
    width: 200px; height: 260px;
    background: linear-gradient(135deg, #1e1e42, #2a2a55);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.sp-prog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sp-prog-card-img .sp-ph {
    color: rgba(232,228,220,0.15); font-size: 11px;
    letter-spacing: 1px; text-transform: uppercase;
}
.sp-prog-card-title {
    position: absolute; bottom: 12px; left: 12px; right: 12px;
    font-size: 11px; font-weight: 500; text-transform: uppercase; line-height: 1.2;
}

/* ===== PRICING ===== */
.sp-pricing {
    padding: 120px 48px;
    border-top: 1px solid rgba(232,228,220,0.06);
    text-align: center;
}
.sp-pricing-inner { max-width: 600px; margin: 0 auto; }
.sp-pricing-amount {
    font-size: clamp(48px, 6vw, 72px); font-weight: 400; margin-bottom: 8px;
}
.sp-pricing-period {
    font-size: 15px; color: #8981B8; font-weight: 400;
    margin-bottom: 48px; letter-spacing: 0;
}
.sp-pricing-features {
    list-style: none; text-align: left; margin-bottom: 48px;
}
.sp-pricing-features li {
    padding: 16px 0; font-size: 15px; font-weight: 400;
    color: rgba(232,228,220,0.7);
    border-bottom: 1px solid rgba(232,228,220,0.06);
    display: flex; align-items: center; gap: 12px;
}
.sp-pricing-features li::before {
    content: ''; width: 6px; height: 6px;
    background: #E8E4DC; border-radius: 50%; flex-shrink: 0;
}
.sp-pricing-btn {
    display: inline-block; background: #E8E4DC; color: #12122B;
    padding: 18px 48px; border-radius: 100px; font-size: 16px;
    font-weight: 500; text-decoration: none; transition: all 0.3s;
    border: none; cursor: pointer; font-family: inherit;
    letter-spacing: 0;
    box-shadow: 0 10px 40px rgba(255,255,255,0.12), 0 2px 16px rgba(0,0,0,0.25);
}
.sp-pricing-btn:hover {
    opacity: 0.9;
}
.sp-pricing-btn:hover .sp-btn-arrow {
    transform: translateX(4px);
}
.sp-pricing-note {
    margin-top: 16px; font-size: 13px; color: #8981B8;
    font-weight: 400; letter-spacing: 0;
}

/* ===== FAQ ===== */
.sp-faq {
    padding: 120px 48px;
    border-top: 1px solid rgba(232,228,220,0.06);
}
.sp-faq-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 300px 1fr; gap: 80px;
    align-items: start;
}
.sp-faq-heading {
    font-size: clamp(48px, 6vw, 80px); font-weight: 400;
    position: sticky; top: 120px;
}
.sp-faq-item {
    border-bottom: 1px solid rgba(232,228,220,0.08);
}
.sp-faq-q {
    padding: 28px 0; font-size: 16px; font-weight: 500;
    cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; transition: color 0.3s;
}
.sp-faq-q:hover { color: #fff; }
.sp-faq-q::after {
    content: '+'; font-size: 22px; font-weight: 400;
    color: #8981B8; transition: all 0.3s;
    flex-shrink: 0; margin-left: 24px;
}
.sp-faq-q.active::after { transform: rotate(45deg); color: #E8E4DC; }
.sp-faq-a {
    font-size: 15px; font-weight: 400; color: #8981B8;
    line-height: 1.7; max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    letter-spacing: 0;
}
.sp-faq-a.active { max-height: 300px; padding-bottom: 28px; }

/* ===== FOOTER (adapted from main site) ===== */
.sp-footer {
    border-top: 1px solid rgba(232,228,220,0.06);
}
.sp-footer-container {
    background: #1C1C3A;
    margin: 0 44px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 48px 60px 32px;
}
.sp-footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 40px;
}
.sp-footer-logo img { height: 32px; filter: brightness(0) invert(1); }
.sp-footer-support { display: flex; flex-direction: column; }
.sp-footer-support-title {
    font-size: 16px; font-weight: 500; margin-bottom: 8px; color: #E8E4DC;
}
.sp-footer-support a {
    color: rgba(232,228,220,0.5); text-decoration: none; font-size: 14px;
    transition: color 0.3s; display: flex; align-items: center; gap: 8px;
}
.sp-footer-support a:hover { color: #E8E4DC; }
.sp-footer-social { display: flex; align-items: center; gap: 16px; }
.sp-footer-social a { transition: opacity 0.3s; }
.sp-footer-social a:hover { opacity: 0.7; }
.sp-footer-social img { width: 28px; height: 28px; filter: brightness(0) invert(1); opacity: 0.5; }
.sp-footer-bottom {
    display: flex; justify-content: space-between; align-items: baseline;
    border-top: 1px solid rgba(232,228,220,0.08);
    padding-top: 24px;
}
.sp-footer-docs { display: flex; gap: 24px; }
.sp-footer-docs a {
    color: rgba(232,228,220,0.35); text-decoration: none;
    font-size: 13px; transition: color 0.3s;
}
.sp-footer-docs a:hover { color: #E8E4DC; }
.sp-footer-legal {
    text-align: right; display: flex; flex-direction: column; gap: 4px;
}
.sp-footer-legal span {
    color: rgba(232,228,220,0.25); font-size: 13px; font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .sp-nav { padding: 16px 24px; }
    .sp-nav-left { gap: 4px; }
    .sp-lang-btn { font-size: 11px; padding: 5px 9px; }
    .sp-nav-programs-btn { font-size: 11px; }
    .sp-nav-link { font-size: 11px; min-width: auto; }
    .sp-hero { padding: 0 24px 60px; }
    .sp-hero-content { flex-direction: column; align-items: flex-start; gap: 32px; }
    .sp-hero-right { text-align: left; max-width: 100%; }
    .sp-days { padding: 80px 0 80px 24px; }
    .sp-days-inner { flex-direction: column; gap: 40px; }
    .sp-days-text { position: static; width: 100%; padding-right: 24px; }
    .sp-days-cards { padding-right: 24px; }
    .sp-day-card { width: 260px; height: 360px; }
    .sp-practice { padding: 80px 0 60px 24px; }
    .sp-practice-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
    .sp-practice-text { width: 100%; padding-right: 24px; }
    .sp-practice-phones { padding-right: 24px; }
    .sp-practice-phone { width: 190px; }
    .sp-practice-cta { padding-right: 24px; }
    .sp-results { padding: 0; }
    .sp-result { margin: 0; min-height: 100vh; padding: 32px 24px 28px; border-radius: 0; }
    .sp-result-headline { font-size: 36px; letter-spacing: 0.12em; }
    .sp-result-lede { font-size: 15px; }
    .sp-result-benefits { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
    .sp-benefit-value { font-size: 13px; }
}
@media (max-width: 580px) {
    .sp-result-benefits { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .sp-benefit { align-items: center; }
    .sp-quote { padding: 80px 24px; }
    .sp-programs { padding: 80px 0 80px 24px; }
    .sp-programs-head { padding-right: 24px; }
    .sp-pricing { padding: 80px 24px; }
    .sp-faq { padding: 80px 24px; }
    .sp-faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .sp-faq-heading { position: static; }
    .sp-footer-container { margin: 0 12px; padding: 32px 24px 24px; border-radius: 28px 28px 0 0; }
    .sp-footer-top { flex-direction: column; gap: 24px; }
    .sp-footer-bottom { flex-direction: column; gap: 16px; }
    .sp-footer-legal { text-align: left; }
    .sp-float-cta { bottom: 20px; padding: 14px 32px; font-size: 14px; }
}
@media (max-width: 580px) {
    .sp-hero-title { font-size: 36px; }
    .sp-practice-phone { width: 170px; border-radius: 22px; }
}

/* ===== DETAILS BUTTON ===== */
.sp-details-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px; padding: 14px 28px;
    background: #bdc6ff; color: #12122B;
    border: none;
    border-radius: 100px; font-size: 17px; font-weight: 400;
    font-family: inherit; cursor: pointer;
    transition: all 0.3s; letter-spacing: 0;
}
.sp-details-btn:hover { background: #cdd4ff; }
.sp-details-btn .sp-btn-arrow { transition: transform 0.3s; }
.sp-details-btn:hover .sp-btn-arrow { transform: translateX(4px); }

/* ===== DETAILS MODAL ===== */
.sp-modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(12,12,30,0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    display: flex; align-items: flex-start; justify-content: center;
    padding: 40px 20px; overflow-y: auto;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.sp-modal-overlay.open { opacity: 1; visibility: visible; }

.sp-modal {
    position: relative; width: 100%; max-width: 570px;
    background: #16162e; border-radius: 20px; overflow: hidden;
    transform: translateY(30px); transition: transform 0.3s;
}
.sp-modal-overlay.open .sp-modal { transform: translateY(0); }

.sp-modal-close {
    position: absolute; top: 14px; right: 16px; z-index: 10;
    background: rgba(0,0,0,0.4); border: none; color: #fff;
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 20px; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s;
}
.sp-modal-close:hover { background: rgba(0,0,0,0.6); }

/* Cover */
.sp-modal-cover {
    position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden;
}
.sp-modal-cover img {
    width: 100%; height: 100%; object-fit: cover;
}
.sp-modal-cover-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(22,22,46,0) 30%, rgba(22,22,46,1) 100%);
}
.sp-modal-cover-info {
    position: absolute; bottom: 16px; left: 20px; right: 20px; z-index: 2;
}
.sp-modal-cover-title {
    font-size: 22px; font-weight: 500; color: #E8E4DC; margin-bottom: 4px;
}
.sp-modal-cover-sub {
    font-size: 13px; color: #8981B8; font-weight: 400;
}

/* Description */
.sp-modal-desc {
    padding: 16px 20px 8px; font-size: 13px; line-height: 1.6;
    color: #8981B8;
}

/* Days accordion */
.sp-modal-days { padding: 8px 20px 0; }

.sp-modal-start {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; font-weight: 500; color: #E8E4DC;
    padding: 16px 0 8px;
}

.sp-modal-dots {
    display: inline-flex; gap: 6px; align-items: center;
}
.sp-modal-dots span {
    width: 22px; height: 8px; border-radius: 18px;
    background: rgba(255,255,255,0.08);
}
.sp-modal-dots span.active { background: #51CF66; }

.sp-modal-day {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.sp-modal-day-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; cursor: pointer; user-select: none;
}
.sp-modal-day-info { display: flex; flex-direction: column; gap: 2px; }
.sp-modal-day-sub {
    font-size: 15px; color: #8981B8; font-weight: 400;
}
.sp-modal-day-name {
    font-size: 22px; font-weight: 500; color: #E8E4DC; line-height: 1;
    font-family: 'Raleway', sans-serif;
}
.sp-modal-day-right {
    display: flex; align-items: center; gap: 10px;
}
.sp-modal-chevron {
    color: #8981B8; transition: transform 0.3s;
}
.sp-modal-day.open .sp-modal-chevron { transform: rotate(180deg); }

.sp-modal-day-body {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.sp-modal-day.open .sp-modal-day-body {
    max-height: 800px;
}

/* Time labels inside day */
.sp-modal-time-label {
    font-size: 12px; font-weight: 500; color: #8981B8;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 12px 0 6px;
}

/* Practice row */
.sp-modal-practice {
    display: flex; align-items: center; gap: 12px;
    height: 112px; border-radius: 24px; overflow: hidden;
    transition: opacity 0.2s; margin-bottom: 12px;
}
.sp-modal-practice.locked {
    opacity: 0.45;
}

.sp-modal-practice-img {
    position: relative; width: 100px; height: 100px; border-radius: 20px;
    overflow: hidden; flex-shrink: 0;
    background: rgba(255,255,255,0.05);
}
.sp-modal-practice-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.sp-modal-practice-img .sp-modal-lock-badge {
    position: absolute; bottom: 6px; left: 6px;
    width: 32px; height: 32px; border-radius: 10px;
    background: rgba(125,138,255,0.17);
    display: flex; align-items: center; justify-content: center;
}

.sp-modal-play {
    width: 48px; height: 48px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50%; cursor: pointer; transition: border-color 0.2s;
}
.sp-modal-play:hover { border-color: rgba(255,255,255,0.5); }

.sp-modal-practice-info {
    display: flex; flex-direction: column; justify-content: space-between;
    flex: 1; min-width: 0; padding: 10px 0; align-self: stretch;
}
.sp-modal-practice-title {
    font-size: 16px; font-weight: 600; color: #E8E4DC;
    font-family: 'Raleway', sans-serif; line-height: 1.1;
}
.sp-modal-practice-dur {
    font-size: 13px; color: #8981B8; font-weight: 500;
}
.sp-modal-practice-check {
    flex-shrink: 0; color: #51CF66;
}
.sp-modal-practice-lock { display: none; }

/* Bottom CTA */
.sp-modal-bottom {
    padding: 24px 20px 28px; text-align: left;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 16px;
}
.sp-modal-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px 24px; margin-bottom: 24px;
    background: #fff; color: #12122B;
    border: none; border-radius: 999px;
    font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; transition: transform 0.2s, opacity 0.2s;
}
.sp-modal-cta:hover { opacity: 0.9; }
.sp-modal-cta .sp-btn-arrow { transition: transform 0.3s; font-size: 16px; }
.sp-modal-cta:hover .sp-btn-arrow { transform: translateX(4px); }
.sp-modal-download-text {
    font-size: 15px; font-weight: 500; color: #E8E4DC;
    margin-bottom: 20px; font-family: 'Raleway', sans-serif;
}
.sp-modal-stores {
    display: flex; flex-direction: column; gap: 0;
}
.sp-modal-store {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #8981B8; font-size: 15px; font-weight: 400;
    text-decoration: none; transition: color 0.2s;
}
.sp-modal-store:last-child { border-bottom: none; }
.sp-modal-store:hover { color: #fff; }
.sp-modal-store .sp-btn-arrow { transition: transform 0.3s; font-size: 16px; }
.sp-modal-store:hover .sp-btn-arrow { transform: translateX(4px); }

/* Lock body scroll when modal open */
body:has(.sp-modal-overlay.open) { overflow: hidden; }

/* Modal title area matching app */
.sp-modal-header {
    padding: 24px 14px 0;
}
.sp-modal-header-category {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 4px;
}
.sp-modal-header-category span {
    font-size: 16px; font-weight: 500; color: #8981B8;
}
.sp-modal-header-category .sp-modal-count {
    font-size: 14px; font-weight: 400; color: #8981B8;
}
.sp-modal-header-name {
    font-size: 32px; font-weight: 600; color: #E8E4DC;
    font-family: 'Raleway', sans-serif; line-height: 1.1;
    margin-bottom: 6px;
}
.sp-modal-header-desc {
    font-size: 14px; color: #8981B8; font-weight: 400;
    line-height: 1.5; margin-bottom: 16px;
}
.sp-modal-divider {
    height: 1px; background: rgba(255,255,255,0.06);
}

@media (max-width: 480px) {
    .sp-modal { border-radius: 16px; }
    .sp-modal-cover { aspect-ratio: 16 / 9; }
    .sp-modal-header-name { font-size: 26px; }
    .sp-modal-day-name { font-size: 18px; }
    .sp-modal-practice-img { width: 80px; height: 80px; }
    .sp-modal-practice { height: 96px; }
    .sp-modal-play { width: 40px; height: 40px; }
}
