/* ============================================================
   LSAT Landing Page — Crunch hero replica
   Loaded only on /lsat (body.tutorone-lsat-landing).
   All selectors and CSS variables are scoped under
   .tutorone-lsat-landing so nothing leaks into other pages.
   Hero markup/CSS ported from the Crunch LSAT homepage
   (homepage-styles.css :656–1060). Colours use the Crunch
   light-mode palette from lsat-color-customizer.php.
   ============================================================ */

.tutorone-lsat-landing {
    /* TutorOne palette (rose on dark navy/purple — matches the rest of the site) */
    --accent-ember: #E75480;   /* rose */
    --accent-gold: #C93B68;    /* rose-dark */
    --accent-ember-glow: rgba(231, 84, 128, 0.30);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    --gradient-accent: linear-gradient(135deg, #E75480, #C93B68);

    /* Layout / typography — TutorOne display font (Sora) */
    --lsat-font-display: 'Sora', sans-serif;
    --lsat-container-width: 1200px;
    --hero-shape-opacity: 0.10;
    --radius-xl: 32px;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Match TutorOne's fixed header (topbar 44px + nav 72px) */
    --lsat-topbar-height: 44px;
    --lsat-nav-height: 72px;
}

/* ============================================
   HERO
   ============================================ */
.tutorone-lsat-landing .lsat-hero {
    min-height: calc(100vh - var(--lsat-topbar-height));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: calc(var(--lsat-nav-height) + 24px);
    padding-bottom: 24px;
    transition: background var(--transition-smooth);
}

/* Grain overlay */
.tutorone-lsat-landing .lsat-hero__grain {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    opacity: 0.025;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    animation: lsatGrainShift 8s steps(10) infinite;
}

@keyframes lsatGrainShift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2px, -3px); }
    20% { transform: translate(3px, 1px); }
    30% { transform: translate(-1px, 2px); }
    40% { transform: translate(2px, -1px); }
    50% { transform: translate(-3px, 3px); }
    60% { transform: translate(1px, -2px); }
    70% { transform: translate(-2px, 1px); }
    80% { transform: translate(3px, -3px); }
    90% { transform: translate(-1px, 2px); }
}

/* Floating geometric shapes */
.tutorone-lsat-landing .lsat-hero__shapes {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.tutorone-lsat-landing .lsat-hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: var(--hero-shape-opacity);
}

.tutorone-lsat-landing .lsat-hero__shape--1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-ember) 0%, transparent 70%);
    top: 20%;
    right: 8%;
    animation: lsatFloatShape1 20s ease-in-out infinite;
    filter: blur(40px);
}

.tutorone-lsat-landing .lsat-hero__shape--2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    top: 50%;
    right: 28%;
    animation: lsatFloatShape2 24s ease-in-out infinite;
    filter: blur(30px);
}

.tutorone-lsat-landing .lsat-hero__shape--3 {
    width: 180px;
    height: 180px;
    border: 1.5px solid var(--accent-ember);
    top: 30%;
    right: 5%;
    opacity: calc(var(--hero-shape-opacity) * 0.6);
    border-radius: 50%;
    animation: lsatFloatShape3 18s ease-in-out infinite;
}

.tutorone-lsat-landing .lsat-hero__shape--4 {
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    top: 65%;
    right: 15%;
    opacity: calc(var(--hero-shape-opacity) * 0.5);
    border-radius: 24%;
    animation: lsatFloatShape1 22s ease-in-out infinite reverse;
    filter: blur(20px);
}

@keyframes lsatFloatShape1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(12px, -20px); }
    50% { transform: translate(-8px, -35px); }
    75% { transform: translate(15px, -10px); }
}

@keyframes lsatFloatShape2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-15px, 12px); }
    66% { transform: translate(8px, -15px); }
}

@keyframes lsatFloatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 15px) scale(1.05); }
}

.tutorone-lsat-landing .lsat-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--lsat-container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Two-column split: copy left, score-boost visual right */
.tutorone-lsat-landing .lsat-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
}

.tutorone-lsat-landing .lsat-hero__col--text {
    color: #fff;
    text-align: left;
}

/* Eyebrow pill */
.tutorone-lsat-landing .lsat-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 20px;
    font-family: var(--lsat-font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFD1E0;
    background: rgba(231, 84, 128, 0.14);
    border: 1px solid rgba(255, 143, 177, 0.35);
    border-radius: 50px;
    opacity: 0;
    animation: lsatFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.tutorone-lsat-landing .lsat-hero__eyebrow-star {
    color: #FF8FB1;
}

.tutorone-lsat-landing .lsat-hero__title {
    font-family: var(--lsat-font-display);
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 18px;
    opacity: 0;
    animation: lsatFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.tutorone-lsat-landing .lsat-hero__title-line {
    display: block;
}

.tutorone-lsat-landing .lsat-hero__title-line--large {
    font-size: 1.32em;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.tutorone-lsat-landing .lsat-hero__title .highlight {
    color: #FF8FB1;
    text-shadow: 0 0 30px rgba(231, 84, 128, 0.35);
}

.tutorone-lsat-landing .lsat-hero__title .highlight-gold {
    color: #FFD1E0;
    text-shadow: 0 0 30px rgba(231, 84, 128, 0.3);
}

.tutorone-lsat-landing .lsat-hero__subtitle {
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin: 0 0 28px;
    opacity: 0;
    animation: lsatFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.tutorone-lsat-landing .lsat-hero__subtitle strong {
    color: #FF8FB1;
    font-weight: 700;
}

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

/* Hero actions / CTA */
.tutorone-lsat-landing .lsat-hero__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    opacity: 0;
    animation: lsatFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

/* Trust row — Google rating + guarantee chip */
.tutorone-lsat-landing .lsat-hero__trust {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    animation: lsatFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.tutorone-lsat-landing .lsat-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.tutorone-lsat-landing .lsat-hero__stars {
    color: #FFC857;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.tutorone-lsat-landing .lsat-hero__rating-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
}

.tutorone-lsat-landing .lsat-hero__rating-text strong {
    color: #fff;
    font-weight: 700;
}

.tutorone-lsat-landing .lsat-hero__guarantee-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
}

.tutorone-lsat-landing .lsat-hero__guarantee-chip svg {
    width: 16px;
    height: 16px;
    color: #FF8FB1;
}

/* ============================================
   HERO — score-boost visual card (right column)
   ============================================ */
.tutorone-lsat-landing .lsat-hero__visual {
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: lsatFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.tutorone-lsat-landing .lsat-hero__score-card {
    width: 100%;
    max-width: 380px;
    padding: 32px 32px 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.tutorone-lsat-landing .lsat-hero__score-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}

.tutorone-lsat-landing .lsat-hero__score-jump {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--lsat-font-display);
    font-weight: 700;
}

.tutorone-lsat-landing .lsat-hero__score {
    font-size: 2.4rem;
    line-height: 1;
}

.tutorone-lsat-landing .lsat-hero__score--from {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.tutorone-lsat-landing .lsat-hero__score--to {
    color: #FF8FB1;
    text-shadow: 0 0 30px rgba(231, 84, 128, 0.4);
}

.tutorone-lsat-landing .lsat-hero__score-arrow {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.6rem;
}

/* Semicircular gauge */
.tutorone-lsat-landing .lsat-hero__gauge {
    margin: 4px auto 18px;
    max-width: 240px;
}

.tutorone-lsat-landing .lsat-hero__gauge svg {
    width: 100%;
    height: auto;
    display: block;
}

.tutorone-lsat-landing .lsat-hero__gauge-fill {
    stroke-dasharray: 264;
    stroke-dashoffset: 264;
    animation: lsatGaugeFill 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

@keyframes lsatGaugeFill {
    to { stroke-dashoffset: 58; }
}

/* Guarantee seal */
.tutorone-lsat-landing .lsat-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    margin-bottom: 16px;
    font-family: var(--lsat-font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-accent);
    border-radius: 50px;
    box-shadow: 0 6px 22px var(--accent-ember-glow);
}

.tutorone-lsat-landing .lsat-hero__badge-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
    display: block;
}

.tutorone-lsat-landing .lsat-hero__score-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.tutorone-lsat-landing .lsat-hero__score-rating strong {
    color: #fff;
}

/* ============================================
   HERO — feature strip (the 3 info points)
   ============================================ */
.tutorone-lsat-landing .lsat-hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: lsatFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

.tutorone-lsat-landing .lsat-hero__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.tutorone-lsat-landing .lsat-hero__feature-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(231, 84, 128, 0.16);
    border: 1px solid rgba(255, 143, 177, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8FB1;
}

.tutorone-lsat-landing .lsat-hero__feature-icon svg {
    width: 20px;
    height: 20px;
}

.tutorone-lsat-landing .lsat-hero__feature-title {
    font-family: var(--lsat-font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin: 2px 0 5px;
}

.tutorone-lsat-landing .lsat-hero__feature-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.5;
    margin: 0;
}

/* CTA buttons */
.tutorone-lsat-landing .lsat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lsat-font-display);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tutorone-lsat-landing .lsat-btn--primary {
    padding: 18px 40px;
    color: #fff;
    background: var(--gradient-accent);
    background-size: 200% 100%;
    box-shadow: 0 4px 25px var(--accent-ember-glow);
}

.tutorone-lsat-landing .lsat-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--accent-ember-glow);
    background-position: 100% 0;
    color: #fff;
}

.tutorone-lsat-landing .lsat-btn--primary:active {
    transform: translateY(-1px);
}

.tutorone-lsat-landing .lsat-btn--hero-cta {
    padding: 18px 48px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tutorone-lsat-landing .lsat-btn__icon {
    font-size: 1.2em;
    display: inline-flex;
}

/* ============================================
   TESTIMONIALS — page-specific adjustments
   ============================================ */

/* The carousel scrolls horizontally (overflow-x: auto). Per the CSS spec,
   that makes the cross-axis (overflow-y) compute to `auto`, which can show a
   stray vertical scrollbar. Clamp it so only horizontal scrolling remains. */
.tutorone-lsat-landing .video-grid {
    overflow-y: hidden;
}

/* The shared locations stylesheet forces this section's padding-bottom to 0.
   Restore breathing room so the testimonials don't butt up against the
   "Services Available" grid below. */
.tutorone-lsat-landing .video-testimonials {
    padding-bottom: 72px;
}

/* ============================================
   SERVICES — "Find your city" search bar
   ============================================ */
.tutorone-lsat-landing .lsat-service-search {
    position: relative;
    max-width: 520px;
    margin: 0 0 28px;
}

.tutorone-lsat-landing .lsat-service-search__icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #9aa0b4;
    pointer-events: none;
}

.tutorone-lsat-landing .lsat-service-search__input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #fff;
    border: 1.5px solid #e4e4ee;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.tutorone-lsat-landing .lsat-service-search__input::placeholder {
    color: #9aa0b4;
}

.tutorone-lsat-landing .lsat-service-search__input:focus {
    outline: none;
    border-color: #E75480;
    box-shadow: 0 4px 18px rgba(231, 84, 128, 0.16);
}

.tutorone-lsat-landing .lsat-service-search__empty {
    text-align: center;
    padding: 2.5rem 0;
    color: #888;
    font-size: 0.95rem;
}

/* ============================================
   GOOGLE REVIEWS — section + 2-up base layout
   (heavy vendor overrides are injected as a late
   inline style by tutorone_loc_grw_overrides())
   ============================================ */
.tutorone-lsat-landing .lsat-reviews {
    padding: 64px 0 80px;
    background: #fff;
    overflow: hidden;
}

.tutorone-lsat-landing .lsat-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.tutorone-lsat-landing .lsat-reviews__embed {
    min-width: 0;
}

@media (max-width: 900px) {
    .tutorone-lsat-landing .lsat-reviews__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* Reduced motion — disable hero animations */
@media (prefers-reduced-motion: reduce) {
    .tutorone-lsat-landing .lsat-hero__grain,
    .tutorone-lsat-landing .lsat-hero__shape,
    .tutorone-lsat-landing .lsat-hero__eyebrow,
    .tutorone-lsat-landing .lsat-hero__title,
    .tutorone-lsat-landing .lsat-hero__subtitle,
    .tutorone-lsat-landing .lsat-hero__actions,
    .tutorone-lsat-landing .lsat-hero__trust,
    .tutorone-lsat-landing .lsat-hero__visual,
    .tutorone-lsat-landing .lsat-hero__features,
    .tutorone-lsat-landing .lsat-hero__gauge-fill {
        animation: none;
        opacity: 1;
    }
    .tutorone-lsat-landing .lsat-hero__gauge-fill {
        stroke-dashoffset: 58;
    }
}

/* Tablet — stack the split columns */
@media (max-width: 900px) {
    .tutorone-lsat-landing .lsat-hero {
        min-height: 0;
    }
    .tutorone-lsat-landing .lsat-hero__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .tutorone-lsat-landing .lsat-hero__visual {
        order: -1;
    }
    .tutorone-lsat-landing .lsat-hero__score-card {
        max-width: 340px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tutorone-lsat-landing .lsat-hero__features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 36px;
        padding-top: 30px;
    }
    .tutorone-lsat-landing .lsat-hero__trust {
        gap: 12px;
    }
    .tutorone-lsat-landing .lsat-btn--hero-cta {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

/* ── Video card: score badge + quote ─────────────────────────── */
.tutorone-lsat-landing .video-card__score-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #E75480;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
    letter-spacing: 0.03em;
}
.tutorone-lsat-landing .video-card__quote {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 4px;
    line-height: 1.45;
}

/* ── Intro Video ──────────────────────────────────────────────── */
.tutorone-lsat-landing .lsat-intro-video {
    padding: 80px 0;
    background: #fff;
}
.tutorone-lsat-landing .lsat-intro-video__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.tutorone-lsat-landing .lsat-intro-video .section-tag {
    margin-bottom: 14px;
}
.tutorone-lsat-landing .lsat-intro-video__heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #0d1b2a;
    line-height: 1.25;
    margin: 0 0 16px;
}
.tutorone-lsat-landing .lsat-intro-video__heading .highlight {
    background: linear-gradient(135deg, #E75480, #C93B68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tutorone-lsat-landing .lsat-intro-video__text {
    font-size: 1rem;
    color: #5a6a78;
    line-height: 1.75;
    margin-bottom: 20px;
}
.tutorone-lsat-landing .lsat-intro-video__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tutorone-lsat-landing .lsat-intro-video__point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #3d4f5c;
    line-height: 1.5;
}
.tutorone-lsat-landing .lsat-intro-video__point-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #fde8ef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #E75480;
    margin-top: 1px;
}
.tutorone-lsat-landing .lsat-intro-video__video-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.tutorone-lsat-landing .lsat-intro-video__video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #0d1b2a 0%, #1a2f44 100%);
    cursor: pointer;
    overflow: hidden;
}
.tutorone-lsat-landing .lsat-intro-video__video-wrapper--loading::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 50%, rgba(231,84,128,0.25) 0%, transparent 60%);
    z-index: 1;
}
.tutorone-lsat-landing .lsat-intro-video__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.tutorone-lsat-landing .lsat-intro-video__video-wrapper:hover .lsat-intro-video__thumbnail {
    transform: scale(1.04);
}
.tutorone-lsat-landing .lsat-intro-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #E75480, #C93B68);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 32px rgba(231,84,128,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    z-index: 2;
}
.tutorone-lsat-landing .lsat-intro-video__play svg {
    margin-left: 4px;
}
.tutorone-lsat-landing .lsat-intro-video__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 40px rgba(231,84,128,0.6);
}

@media (max-width: 900px) {
    .tutorone-lsat-landing .lsat-intro-video__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .tutorone-lsat-landing .lsat-intro-video__video-col {
        order: -1;
    }
}
@media (max-width: 768px) {
    .tutorone-lsat-landing .lsat-intro-video {
        padding: 56px 0;
    }
    .tutorone-lsat-landing .lsat-intro-video__play {
        width: 60px;
        height: 60px;
    }
}

/* ── How We Are Different (Quiz Showcase) ─────────────────────── */
.tutorone-lsat-landing .lsat-quiz-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}
.tutorone-lsat-landing .lsat-quiz-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.tutorone-lsat-landing .lsat-quiz-showcase__grid--text-only {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
}
.tutorone-lsat-landing .lsat-quiz-showcase .section-tag {
    margin-bottom: 14px;
}
.tutorone-lsat-landing .lsat-quiz-showcase__heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #0d1b2a;
    line-height: 1.25;
    margin: 0 0 16px;
}
.tutorone-lsat-landing .lsat-quiz-showcase__body {
    font-size: 1rem;
    color: #5a6a78;
    line-height: 1.75;
    margin-bottom: 24px;
}
.tutorone-lsat-landing .lsat-quiz-showcase__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tutorone-lsat-landing .lsat-quiz-showcase__point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #3d4f5c;
    line-height: 1.5;
    font-weight: 500;
}
.tutorone-lsat-landing .lsat-quiz-showcase__check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #fde8ef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #E75480;
}
.tutorone-lsat-landing .lsat-quiz-showcase__media {
    position: relative;
}
.tutorone-lsat-landing .lsat-quiz-showcase__shot {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    margin: 0;
}
.tutorone-lsat-landing .lsat-quiz-showcase__shot img {
    width: 100%;
    height: auto;
    display: block;
}
.tutorone-lsat-landing .lsat-quiz-showcase__shot figcaption {
    padding: 8px 12px;
    font-size: 0.75rem;
    color: #888;
    background: #f8f9fa;
    text-align: center;
}
.tutorone-lsat-landing .lsat-quiz-showcase__shot--light {
    margin-top: 20px;
}
@media (min-width: 901px) {
    .tutorone-lsat-landing .lsat-quiz-showcase__media {
        padding: 10px 40px 56px 0;
    }
    .tutorone-lsat-landing .lsat-quiz-showcase__shot--light {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 64%;
        margin-top: 0;
    }
    .tutorone-lsat-landing .lsat-quiz-showcase__shot--light img {
        box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    }
}
@media (max-width: 900px) {
    .tutorone-lsat-landing .lsat-quiz-showcase__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tutorone-lsat-landing .lsat-quiz-showcase__shot--light {
        margin-top: 16px;
    }
}
@media (max-width: 768px) {
    .tutorone-lsat-landing .lsat-quiz-showcase {
        padding: 56px 0;
    }
}

/* ── Session Videos ───────────────────────────────────────────── */
.tutorone-lsat-landing .lsat-session-videos {
    padding: 80px 0;
    background: #fff;
}
.tutorone-lsat-landing .lsat-session-videos__header {
    text-align: center;
    margin-bottom: 40px;
}
.tutorone-lsat-landing .lsat-session-videos__header .section-subtext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.tutorone-lsat-landing .lsat-session-videos__carousel {
    position: relative;
}
/* Card text must be dark on the white section background */
.tutorone-lsat-landing .lsat-session-videos .video-card__name {
    color: #0d1b2a;
}
.tutorone-lsat-landing .lsat-session-videos .video-card__label {
    color: #555;
}
/* Pagination dots — dark on white */
.tutorone-lsat-landing .lsat-session-videos .video-carousel__dot {
    background: rgba(13,27,42,0.15);
}
.tutorone-lsat-landing .lsat-session-videos .video-carousel__dot.active {
    background: #E75480;
}
@media (max-width: 768px) {
    .tutorone-lsat-landing .lsat-session-videos {
        padding: 56px 0;
    }
}
