/* Resets and Variables */
:root {
    /* Colors */
    --color-beige: #f1f0ed;
    --color-light-gray: #f5f5f5;
    --color-blue-gray: #d6dde6;
    --color-text: #67635f;
    --color-text-light: #67635f;

    /* Fonts */
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Barlow Condensed', sans-serif;

    /* Typography Scale - Standardized */
    --font-size-h1: 2.5rem;
    /* 40px - Hero headlines, main section titles */
    --font-size-h2: 2rem;
    /* 32px - Section headings */
    --font-size-h3: 1.5rem;
    /* 24px - Sub-headings, card titles */
    --font-size-h4: 1.25rem;
    /* 20px - Small headings */

    --font-size-lg: 1.125rem;
    /* 18px - Large body text, descriptions */
    --font-size-base: 1rem;
    /* 16px - Base body text */
    --font-size-sm: 0.875rem;
    /* 14px - Small text, buttons */
    --font-size-xs: 0.75rem;
    /* 12px - Captions, labels */
    --font-size-xxs: 0.6875rem;
    /* 11px - Navigation, micro text */

    /* Layout */
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    padding: 1.5rem;
    overflow-x: hidden;
}

/* White overlay to hide content behind fixed header gap and corners */
body::after {
    content: '';
    position: fixed;
    background-color: #fff;
    z-index: 999;
    pointer-events: none;
}

/* Left and right white strips */
body::after {
    top: 0;
    left: 0;
    width: 1.5rem;
    height: 100vh;
    box-shadow: calc(100vw - 1.5rem) 0 0 0 #fff;
}

/* Section Styling - Rounded corners with gaps */
.section {
    background-color: var(--color-beige);
    border-radius: 16px;
    margin: 0 0 1rem 0;
}

/* =========================================================================
   ANIMATIONS - Scroll Reveal & Hover Effects
   ========================================================================= */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Fade In Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gentle Float Animation */
@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Scroll Reveal Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.from-left {
    transform: translateX(-30px);
}

.animate-on-scroll.from-left.visible {
    transform: translateX(0);
}

.animate-on-scroll.from-right {
    transform: translateX(30px);
}

.animate-on-scroll.from-right.visible {
    transform: translateX(0);
}

.animate-on-scroll.scale-in {
    transform: scale(0.9);
}

.animate-on-scroll.scale-in.visible {
    transform: scale(1);
}

/* Stagger Animation Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Hover Lift Effect for Cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Hover Glow Effect */
.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.4);
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

/* Image Hover Zoom */
.image-zoom {
    overflow: hidden;
}

.image-zoom img {
    transition: transform 0.5s ease;
}

.image-zoom:hover img {
    transform: scale(1.05);
}

/* Text Gradient Animation */
.text-gradient-animate {
    background: linear-gradient(90deg, #333, #666, #333);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Floating Badge Animation */
.floating-badge {
    animation: gentleFloat 3s ease-in-out infinite;
}

/* Notification Bar Animation */
.notification-bar {
    animation: fadeInUp 0.6s ease forwards;
}

/* Typography */
a {
    text-decoration: none;
    color: inherit;
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Notification Bar - Rectangle with round corners */
.notification-bar {
    background-color: var(--color-beige);
    text-align: center;
    padding: 15px 20px;
    font-family: var(--font-accent);
    font-size: var(--font-size-xxs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #67635f;
    margin: 10px 15px;
    border-radius: 12px;
}

/* Header - Rhode Style - Static initially, fixed when scrolled */
.site-header {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 0 1rem 0;
    background-color: var(--color-beige);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 40px;
    border-radius: 12px 12px 0 0;
    z-index: 1000;
    box-sizing: border-box;
    transition: all 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

/* When scrolled - becomes fixed at top */
.site-header.scrolled {
    position: fixed;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    width: calc(100% - 3rem);
    margin: 0;
    background-color: var(--color-beige);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 1.1rem 40px;
}

/* Hidden state when scrolling down */
.site-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.site-header .nav-left a,
.site-header .nav-right a,
.site-header .logo a {
    color: #67635f;
}

.site-header .logo h1 {
    font-size: var(--font-size-h1);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #595750;
    /* Specific Rhode Grey tone */
    margin: 0;
    line-height: 1;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 30px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    color: #fff;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo a {
    color: #fff;
    font-family: 'Luckiest Guy', cursive;
    font-size: var(--font-size-h2);
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

/* Hamburger Button - Hidden on desktop */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #67635f;
    transition: all 0.3s ease;
}

/* Mobile Icons - Hidden on desktop */
.mobile-icons {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-icons a {
    font-size: var(--font-size-lg);
    text-decoration: none;
}

/* Mobile Dropdown Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 130px;
    left: 15px;
    right: 15px;
    background-color: var(--color-beige);
    border-radius: 16px;
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #67635f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #67635f;
}

/* Hamburger animation when active */
.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 80px);
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0 0 1rem 0;
    background-color: #fff;
    border-radius: 16px;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Responsive video - Desktop video shown by default, mobile hidden */
.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Video Loading Placeholder */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: opacity 0.5s ease;
}

.video-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 10;
}

.hero-title {
    font-size: var(--font-size-h2);
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn--white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    bottom: 40px;
    right: 40px;
    left: auto;
}

.btn--grey {
    background: #1a1a1a;
    border: none;
    color: #fff;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: var(--font-size-xxs);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn--outline-dark {
    background: #333;
    border: 1px solid #333;
    color: #fff;
    font-size: var(--font-size-sm);
}

.btn--outline-dark:hover {
    background: transparent;
    color: #67635f;
}

.btn--sm {
    padding: 10px 20px;
}

.video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #67635f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s ease;
}

.video-control:hover {
    transform: scale(1.1);
}

/* Hero Mute Button - Hidden on desktop, shown on mobile */
.hero-mute-btn {
    display: none;
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s ease;
}

.hero-mute-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-control {
        display: flex;
        z-index: 100;
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .hero-mute-btn {
        display: none;
    }
}

/* Feature Section */
.feature-section {
    display: flex;
    align-items: flex-start;
    padding: 30px 50px;
    max-width: 100%;
    margin: 20px 15px;
    gap: 0;
    background-color: #fff;
    border-radius: 16px;
    min-height: auto;
    position: relative;
}

.feature-content {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 30px 30px 20px 0;
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.625rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    color: #4e6a47;
    line-height: 1.1;
}

.feature-description {
    font-size: var(--font-size-lg);
    line-height: 1.5;
    color: #67635f;
    margin-bottom: 30px;
    max-width: 100%;
    text-align: left;
}

.feature-image {
    flex: 0 0 58%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #67635f;
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: #67635f;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .site-header.scrolled {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 12px 20px;
    }

    .hamburger-btn {
        display: flex;
        order: -1;
    }

    .logo {
        flex: 1;
        text-align: center;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    /* Switch to mobile video on smaller screens */
    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }

    .hero-section {
        padding: 15px 20px;
        height: auto;
        min-height: 60vh;
    }

    .hero-content {
        left: 30px;
        bottom: 30px;
    }

    .hero-title {
        font-size: var(--font-size-h3);
    }

    .btn--white {
        bottom: 30px;
        right: 30px;
    }

    .feature-section {
        flex-direction: column;
        text-align: left;
        padding: 20px 15px;
        gap: 15px;
    }

    .feature-content {
        flex: none;
        width: 100%;
        padding: 10px 0;
        align-items: flex-start;
    }

    .feature-title {
        font-size: var(--font-size-h2);
    }

    .feature-content .btn {
        padding: 14px 28px;
        font-size: var(--font-size-base);
    }

    .feature-description {
        margin: 0 0 15px;
        max-width: 100%;
        font-size: var(--font-size-base);
        line-height: 1.6;
    }

    .feature-image {
        width: 100%;
    }

    .feature-image img {
        border-radius: 16px;
    }

    .zoom-btn {
        display: none;
    }

    /* New Section Mobile Adjustments */
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .curriculum-section {
        flex-direction: column;
    }
}

/* -----------------------------------------------------------------------------
   SECTION 5: PRICING PLANS
----------------------------------------------------------------------------- */
.pricing-section {
    padding: 35px 40px;
    background-color: var(--color-beige);
}

.section-header {
    margin-bottom: 25px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #67635f;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #67635f;
}

.section-subtitle em {
    font-style: italic;
    font-family: serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--color-light-gray);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Card Image Wrapper - Rhode Style */
.card-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-beige);
}

/* Big Title Text like "winter", "lip tints", "case" */
.card-big-title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: var(--font-size-h1);
    font-weight: 900;
    font-style: italic;
    color: #5a5a58;
    text-transform: lowercase;
    z-index: 2;
    font-family: serif;
}

/* Default Product Image */
.card-img-default {
    width: auto;
    height: 90%;
    max-width: 70%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

/* Hover Overlay */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card:hover .card-hover-overlay {
    opacity: 1;
}

.product-card:hover .card-img-default {
    opacity: 0;
}

/* Buy Button */
.buy-btn {
    position: relative;
    z-index: 3;
    margin: 20px;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 30px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: #333;
    color: #fff;
}

/* Swipe Hint - Hidden on desktop */
.swipe-hint {
    display: none;
}

/* Badge */
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #555;
    color: #fff;
    font-family: var(--font-accent);
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

/* Card Details */
.card-details {
    padding: 20px;
}

.rating {
    font-size: var(--font-size-xxs);
    color: #67635f;
    margin-bottom: 8px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.product-name {
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
}

.price {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.product-desc {
    font-size: var(--font-size-xs);
    color: #67635f;
}

/* Carousel Dots - Hidden on desktop */
.carousel-dots {
    display: none;
}

/* -----------------------------------------------------------------------------
   MOBILE CAROUSEL FOR PRICING CARDS
----------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .pricing-section {
        padding: 10px 0 15px;
        overflow: hidden;
    }

    .pricing-section .section-header {
        padding: 0 15px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: var(--font-size-h2);
        margin-bottom: 5px;
    }

    .section-subtitle {
        font-size: var(--font-size-base);
    }

    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 0 15px 10px;
        scrollbar-width: none;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 280px;
    }

    .card-image-wrapper {
        height: 380px;
    }

    .card-big-title {
        font-size: var(--font-size-h2);
    }

    /* Show swipe hint on mobile */
    .swipe-hint {
        display: block;
        position: absolute;
        right: 20px;
        bottom: 50%;
        transform: translateY(50%);
        background: #fff;
        padding: 10px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        color: #67635f;
        z-index: 4;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Show hover overlay on mobile when touched (toggle behavior) */
    .product-card.touched .card-hover-overlay {
        opacity: 1;
    }

    .product-card.touched .card-img-default {
        opacity: 0;
    }

    /* Carousel Dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 8px 0;
    }

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .carousel-dots .dot.active {
        background: #555;
    }
}

/* -----------------------------------------------------------------------------
   SECTION 6: VIDEO HELP (Dark)
----------------------------------------------------------------------------- */
.video-help-section {
    background-color: #fff;
    color: #67635f;
    padding: 20px 40px;
    text-align: center;
    overflow: hidden;
}

.video-help-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.video-container-framed {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom controls positioning for course preview video */
.video-wrapper .custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Play button positioning in video wrapper */
.video-wrapper .video-play-btn {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Native controls are now visible - no hiding */

.video-play-btn {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-h3);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.video-play-btn.playing {
    opacity: 0;
}

@media (max-width: 768px) {
    .video-play-btn {
        display: flex;
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

.sound-toggle-btn {
    position: absolute;
    bottom: 25px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.sound-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-caption {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: #fff;
}

.video-help-quote {
    font-size: var(--font-size-lg);
    font-style: normal;
    color: #67635f;
    margin-top: 10px;
    margin-bottom: 0;
}

/* -----------------------------------------------------------------------------
   SECTION 7: TESTIMONIALS (UGC - Rhode Style)
----------------------------------------------------------------------------- */
.testimonials-section {
    padding: 35px 40px;
    background-color: var(--color-beige);
    overflow: hidden;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.testimonials-title-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonials-title {
    font-size: var(--font-size-h1);
    font-weight: 400;
    color: #555;
    font-family: serif;
}

.testimonials-title .plus {
    color: #888;
    font-weight: 300;
}

.students-counter {
    font-size: var(--font-size-lg);
    color: #67635f;
    white-space: nowrap;
}

.students-counter .counter {
    font-weight: 600;
    color: #67635f;
}

/* Carousel Wrapper */
.ugc-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.ugc-carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.ugc-carousel::-webkit-scrollbar {
    display: none;
}

/* Video Items */
.ugc-item {
    flex: 0 0 280px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--color-light-gray);
}

.ugc-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Native video controls - show default browser controls */
/* No custom play buttons - using native controls only */

/* =============================================================================
   CUSTOM VIDEO CONTROLS - Native-like styling
============================================================================= */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 15;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show controls on hover or when video is playing */
.ugc-item:hover .custom-controls,
.ugc-item.playing .custom-controls,
.video-container-framed:hover .custom-controls {
    opacity: 1;
}

/* Mute Button */
.ctrl-mute {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-mute:hover {
    transform: scale(1.1);
}

/* Seek Bar */
.ctrl-seek {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.ctrl-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.ctrl-seek::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Time Display */
.ctrl-time {
    color: #fff;
    font-size: 11px;
    font-family: var(--font-accent);
    min-width: 35px;
    text-align: center;
}

/* Volume Slider */
.ctrl-volume {
    width: 50px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.ctrl-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.ctrl-volume::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Fullscreen Button */
.ctrl-fullscreen {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-fullscreen:hover {
    transform: scale(1.1);
}

/* Mobile adjustments for custom controls */
@media (max-width: 768px) {
    .custom-controls {
        padding: 6px 8px;
        gap: 6px;
        opacity: 1;
        /* Always visible on mobile */
    }

    .ctrl-mute,
    .ctrl-fullscreen {
        font-size: 14px;
        min-width: 24px;
    }

    .ctrl-time {
        font-size: 10px;
        min-width: 30px;
    }

    .ctrl-volume {
        width: 40px;
    }

    .ctrl-seek {
        height: 6px;
        /* Bigger touch target */
    }

    .ctrl-seek::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }
}

/* Divider Line */
.ugc-divider {
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

/* Navigation Arrows */
.ugc-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.ugc-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    font-size: var(--font-size-h4);
    color: #67635f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ugc-nav-btn:hover {
    border-color: #67635f;
    color: #67635f;
}

.btn--xs {
    padding: 8px 16px;
    font-size: var(--font-size-xs);
}

/* -----------------------------------------------------------------------------
   SECTION 8: CURRICULUM (Accordion - Rhode Style)
----------------------------------------------------------------------------- */
.curriculum-section {
    display: flex;
    padding: 40px 40px;
    background-color: var(--color-beige);
    gap: 40px;
    align-items: flex-start;
}

.curriculum-content {
    flex: 1;
    padding-top: 40px;
}

.curriculum-heading {
    font-size: var(--font-size-h2);
    line-height: 1.3;
    color: #4e6a47;
    margin-bottom: 50px;
    font-weight: 300;
}

.curriculum-heading .heading-bold {
    font-weight: 700;
    text-transform: uppercase;
}

/* Curriculum Accordion */
.curriculum-accordion {
    border-top: 1px solid #ccc;
}

.curriculum-accordion .accordion-item {
    border-bottom: 1px solid #ccc;
}

.curriculum-accordion .accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #67635f;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Circular + Icon */
.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #5a6b4a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.accordion-item.active .icon-circle {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: var(--font-size-sm);
    color: #67635f;
    line-height: 1.5;
}

.active .accordion-body {
    max-height: 300px;
    padding-bottom: 20px;
}

.curriculum-image {
    flex: 1;
}

.curriculum-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* -----------------------------------------------------------------------------
   SECTION 9: AUDIENCE (Rhode Style Carousel)
----------------------------------------------------------------------------- */
.audience-section {
    padding: 35px 40px;
    background-color: var(--color-beige);
}

.audience-title {
    font-size: var(--font-size-h2);
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: serif;
}

.audience-title em {
    font-style: italic;
}

.audience-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.audience-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    color: #67635f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.audience-nav-btn:hover {
    background: #fff;
    border-color: #67635f;
}

.audience-nav-btn.prev {
    position: absolute;
    left: 10px;
}

.audience-nav-btn.next {
    position: absolute;
    right: 10px;
}

.audience-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 50px;
}

.audience-grid::-webkit-scrollbar {
    display: none;
}

.audience-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 220px;
}

.audience-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.audience-info h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #67635f;
}

.audience-info p {
    font-size: var(--font-size-xs);
    color: #67635f;
    line-height: 1.4;
}

/* Mobile Carousel */
@media (max-width: 768px) {
    .audience-section {
        padding: 20px 0;
    }

    .audience-title {
        padding: 0 15px;
        font-size: var(--font-size-h3);
        margin-bottom: 15px;
    }

    .audience-carousel-wrapper {
        padding: 0;
    }

    .audience-nav-btn {
        display: none;
    }

    .audience-grid {
        padding: 0 20px;
        scroll-snap-type: x mandatory;
    }

    .audience-card {
        flex: 0 0 75%;
        scroll-snap-align: start;
    }

    .audience-card img {
        height: 280px;
    }

    .audience-info {
        padding-left: 5px;
    }
}

/* -----------------------------------------------------------------------------
   SECTION 10: MENTOR (Rhode Style Split)
----------------------------------------------------------------------------- */
.mentor-section {
    display: flex;
    background-color: #fff;
    min-height: auto;
}

.mentor-content {
    flex: 1;
    padding: 20px 40px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--color-beige);
}

.mentor-label {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: #555;
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.mentor-name {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: #67635f;
    margin-bottom: 20px;
}

.mentor-headline {
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: #67635f;
    line-height: 1.5;
    margin-bottom: 30px;
    width: 100%;
    min-height: 120px;
    font-family: var(--font-main);
    font-style: normal;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mentor-headline .highlight {
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

.mentor-links {
    margin-top: 40px;
    border-top: 1px solid #ccc;
}

.mentor-link {
    padding: 18px 0;
    border-bottom: 1px solid #ccc;
    font-weight: 700;
    font-size: var(--font-size-base);
    color: #999;
    text-transform: lowercase;
    cursor: pointer;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mentor-link:hover {
    color: #67635f;
    padding-left: 10px;
}

.mentor-link.active {
    color: #67635f;
    padding-left: 10px;
}

.mentor-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
}

.mentor-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

/* -----------------------------------------------------------------------------
   SECTION 11: COURSE PRICING (Gradient Cards)
----------------------------------------------------------------------------- */
.course-pricing-section {
    padding: 40px 40px;
    background-color: var(--color-beige);
    scroll-margin-top: 80px;
}

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

.course-pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

/* Desktop only - cards side by side centered */
@media (min-width: 769px) {
    .course-pricing-grid .course-card {
        flex: 0 0 380px;
        max-width: 400px;
    }
}

.course-card {
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.course-card.basic {
    background: #fff;
    border: 1px solid #ddd;
    border-left: 4px solid #4a90e2;
}

.course-card.standard {
    background: #fff;
    border: 1px solid #ddd;
}

.course-card.premium {
    background: linear-gradient(180deg, #1a2b4a 0%, #0f1729 100%);
    color: #fff;
    border: none;
    box-shadow: 0 15px 40px rgba(15, 23, 41, 0.4);
}

.best-value-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(90deg, #3B82F6, #2563EB);
    color: #fff;
    padding: 6px 45px;
    transform: rotate(45deg);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.card-icon {
    font-size: var(--font-size-h2);
    margin-bottom: 15px;
    color: #4a90e2;
}

.course-card.premium .card-icon {
    color: #ffd700;
}

.plan-title {
    font-size: var(--font-size-h4);
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-lang {
    font-size: var(--font-size-xxs);
    color: #888;
    margin-bottom: 20px;
}

.course-card.premium .plan-lang {
    color: #aaa;
}

.plan-price {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin-bottom: 25px;
    color: #67635f;
}

.course-card.premium .plan-price {
    color: #fff;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    font-size: var(--font-size-xs);
}

.plan-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check:before {
    content: '✓';
    color: #4a90e2;
    font-weight: bold;
    font-size: var(--font-size-sm);
}

.cross:before {
    content: '✕';
    color: #cc6666;
    font-weight: bold;
    font-size: var(--font-size-sm);
}

.cross {
    color: #999;
    text-decoration: line-through;
}

/* Premium card colored icons */
.check-icon:before {
    content: '■';
    font-size: 10px;
    display: inline-block;
}

.plan-features li.check-icon:nth-child(1):before {
    color: #4a90e2;
}

.plan-features li.check-icon:nth-child(2):before {
    color: #9b59b6;
}

.plan-features li.check-icon:nth-child(3):before {
    color: #f39c12;
}

.plan-features li.check-icon:nth-child(4):before {
    color: #3498db;
}

.plan-features li.check-icon:nth-child(5):before {
    color: #e74c3c;
}

.plan-features li.check-icon:nth-child(6):before {
    color: #1abc9c;
}

.plan-features li.check-icon:nth-child(7):before {
    color: #2ecc71;
}

.btn--blue-light {
    background: #333;
    color: #fff;
    width: 100%;
    border: 1px solid #333;
    padding: 14px 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn--blue-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: stripSweep 3s ease-in-out infinite;
}

.btn--blue-light:hover {
    background: transparent;
    color: #67635f;
}

.btn--blue-brand {
    background: #3B82F6;
    color: #fff;
    width: 100%;
    border: none;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn--blue-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: stripSweep 3s ease-in-out infinite;
}

.btn--blue-brand:hover {
    background: #2563EB;
    color: #fff;
}

@keyframes stripSweep {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

.refund-policy {
    font-size: 10px;
    margin-top: 15px;
    color: #888;
}

.course-card.premium .refund-policy {
    color: #aaa;
}

/* -----------------------------------------------------------------------------
   SECTION 12 & 13: FAQ & PROMISE (Splits)
----------------------------------------------------------------------------- */
.faq-section {
    display: flex;
    align-items: stretch;
    background-color: var(--color-beige);
}

.promise-section {
    display: flex;
    align-items: center;
    background-color: var(--color-beige);
}

.faq-content {
    flex: 1;
    padding: 35px 30px;
    background: var(--color-beige);
}

.promise-content {
    flex: 1;
    padding: 35px 30px;
}

.faq-title {
    font-size: var(--font-size-h1);
    font-weight: 700;
    color: #67635f;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: var(--font-size-lg);
    color: #67635f;
    margin-bottom: 30px;
}

/* FAQ Accordion */
.faq-accordion {
    border-top: 1px solid #ccc;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid #ccc;
}

.faq-accordion .accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #67635f;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: block;
}

.faq-accordion .accordion-header:hover {
    color: #67635f;
}

.faq-accordion .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: var(--font-size-sm);
    color: #67635f;
    line-height: 1.5;
}

.faq-accordion .accordion-item.active .accordion-body {
    max-height: 150px;
    padding-bottom: 15px;
}

.faq-image,
.promise-image {
    flex: 1;
}

.faq-image img,
.promise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.promise-title {
    font-size: 3rem;
    font-weight: 700;
    color: #3f4e38;
    margin-bottom: 5px;
    font-family: serif;
    font-style: italic;
}

.promise-subtitle {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #67635f;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.promise-details {
    margin-bottom: 30px;
}

.detail-item {
    border-top: 1px solid #ddd;
    padding: 15px 0;
}

.detail-item:last-child {
    border-bottom: 1px solid #ddd;
}

.promise-details h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: #67635f;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.promise-details p {
    font-size: var(--font-size-base);
    color: #67635f;
    line-height: 1.5;
}

.routine-steps {
    display: flex;
    gap: 90px;
    margin-top: 30px;
}

.step {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step:hover {
    background-color: #3f4e38;
    color: #fff;
    border-color: #3f4e38;
    transform: scale(1.1);
}

.step.active {
    background-color: #3f4e38;
    color: #fff;
    border-color: #3f4e38;
}

/* -----------------------------------------------------------------------------
   STICKY BAR
----------------------------------------------------------------------------- */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    background: var(--color-beige);
    border-radius: 0;
    border: none;
    border-top: 1px solid #ddd;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #67635f;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sticky-bar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ccc;
    object-fit: cover;
}

.sticky-info h5 {
    font-size: var(--font-size-h4);
    font-weight: 700;
    margin-bottom: 2px;
    color: #67635f;
}

.sticky-info p {
    font-size: var(--font-size-sm);
    color: #67635f;
}

.sticky-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: var(--font-size-base);
}

.new-price {
    font-weight: 700;
    font-size: var(--font-size-h3);
    color: #67635f;
}

.btn--red {
    background: linear-gradient(90deg, #3B82F6, #2563EB);
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn--red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: stripSweep 3s ease-in-out infinite;
}

.btn--red:hover {
    background: linear-gradient(90deg, #2563EB, #1D4ED8);
    color: #fff;
    transform: scale(1.05);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(233, 69, 96, 0.7), 0 0 35px rgba(255, 107, 107, 0.5);
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    /* Reduce body padding on mobile */
    body {
        padding: 0.5rem;
    }

    /* Keep top white strip on mobile to hide content behind scrolled header */
    body::before {
        display: block;
        height: 0.5rem;
    }

    /* Hide side strips on mobile */
    body::after {
        display: none;
    }

    /* Mobile Header */
    .site-header {
        padding: 12px 20px;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        margin: 0 0 0.5rem 0;
    }

    .site-header.scrolled {
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        top: 0.5rem;
    }

    /* Reduce notification bar on mobile */
    .notification-bar {
        padding: 8px 12px;
        font-size: 9px;
        margin: 0 0 0.5rem 0;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-icons {
        display: flex;
    }

    .logo {
        flex: 1;
        text-align: center;
    }

    .logo a {
        font-size: var(--font-size-h3);
    }

    .site-header.transparent .hamburger-btn span,
    .site-header.scrolled .hamburger-btn span {
        background-color: #67635f;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero Section Mobile - Full width matching body padding */
    .hero-section {
        height: 65vh;
        min-height: 400px;
        padding: 0;
        margin: 0 0 0.5rem 0;
        width: 100%;
    }

    .hero-video-container {
        border-radius: 16px;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 30px;
    }

    .hero-title {
        font-size: 1.5rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    }

    /* Mentor Section - Image first on mobile */
    .mentor-section {
        flex-direction: column-reverse;
    }

    .mentor-content {
        padding: 20px 15px;
    }

    .mentor-headline {
        font-size: var(--font-size-base);
        max-width: 100%;
    }

    .mentor-image {
        padding: 20px;
        width: 100%;
    }

    .mentor-image img {
        max-width: 100%;
        height: auto;
    }

    /* Sticky Bar Mobile - Compact */
    .sticky-bar {
        padding: 10px 15px;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .sticky-avatar {
        width: 35px;
        height: 35px;
    }

    .sticky-info h5 {
        font-size: var(--font-size-xs);
    }

    .sticky-info p {
        font-size: var(--font-size-xs);
    }

    .sticky-actions {
        gap: 10px;
    }

    .old-price {
        font-size: var(--font-size-xxs);
    }

    .new-price {
        font-size: var(--font-size-sm);
    }

    .btn--red {
        padding: 8px 15px;
        font-size: var(--font-size-xs);
    }

    .faq-section,
    .promise-section {
        flex-direction: column;
    }

    .faq-content,
    .promise-content {
        padding: 20px 15px;
    }

    .faq-title,
    .promise-title {
        font-size: var(--font-size-h3);
    }

    .faq-subtitle {
        margin-bottom: 15px;
    }

    /* Course Preview Video Mobile - Full width */
    .video-help-section {
        padding: 10px 10px 15px;
    }

    .video-help-section .video-help-title {
        font-size: var(--font-size-base);
        margin-bottom: 10px;
    }

    .video-container-framed {
        max-width: 100%;
    }

    .video-container-framed video {
        max-height: none;
        width: 100%;
        border-radius: 8px;
    }

    .video-caption {
        font-size: var(--font-size-base);
    }

    .course-pricing-section {
        padding: 15px 0;
        overflow: hidden;
    }

    .course-pricing-section .section-title,
    .course-pricing-section .section-subtitle {
        padding: 0 15px;
    }

    .course-pricing-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 0 15px 10px;
        scrollbar-width: none;
        max-width: 100% !important;
        margin: 15px 0 0 0;
        justify-content: flex-start !important;
    }

    .course-pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .course-card,
    .course-pricing-grid .course-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center;
        min-width: 260px;
        max-width: none !important;
        flex-shrink: 0 !important;
        padding: 25px 18px;
        border-radius: 12px;
    }

    .card-icon {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .plan-title {
        font-size: 1.15rem;
        margin-bottom: 5px;
    }

    .plan-lang {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .plan-price {
        font-size: var(--font-size-h2);
        margin-bottom: 15px;
    }

    .plan-features {
        margin-bottom: 18px;
        font-size: var(--font-size-xs);
    }

    .plan-features li {
        margin-bottom: 8px;
        gap: 8px;
    }

    .course-card .btn {
        padding: 10px 18px;
        font-size: var(--font-size-xs);
    }

    .refund-policy {
        font-size: 9px;
        margin-top: 10px;
    }

    .best-value-badge {
        font-size: 8px;
        padding: 4px 35px;
        top: 12px;
        right: -30px;
    }

    .sticky-bar {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 12px 15px;
    }

    .sticky-content {
        gap: 8px;
    }

    .sticky-avatar {
        display: none;
    }

    .sticky-info h5 {
        font-size: var(--font-size-base);
    }

    .sticky-info p {
        display: none;
    }

    .sticky-actions {
        gap: 8px;
    }

    .old-price {
        font-size: var(--font-size-xs);
    }

    .new-price {
        font-size: var(--font-size-sm);
    }

    .btn--red {
        padding: 10px 16px;
        font-size: var(--font-size-xs);
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 20px 15px;
    }

    .testimonials-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .testimonials-title {
        font-size: var(--font-size-h3);
    }

    .ugc-carousel {
        padding-bottom: 10px;
    }

    .ugc-item {
        flex: 0 0 200px;
        height: 280px;
    }

    .ugc-divider {
        margin: 10px 0;
    }

    /* Curriculum Section Mobile */
    .curriculum-section {
        padding: 20px 15px;
        gap: 20px;
    }

    .curriculum-content {
        padding-top: 10px;
    }

    .curriculum-heading {
        font-size: var(--font-size-h4);
        margin-bottom: 20px;
    }

    /* Accordion body - increase max-height to show all content */
    .active .accordion-body {
        max-height: 500px;
    }

    /* Keep icon-circle circular on mobile */
    .icon-circle {
        width: 24px;
        height: 24px;
        min-width: 24px;
        flex-shrink: 0;
        font-size: var(--font-size-sm);
    }

    /* Video Help Section Mobile */
    .video-help-title {
        font-size: var(--font-size-h3);
        margin-bottom: 15px;
    }

    /* Footer Mobile - Reduced spacing */
    .site-footer {
        padding: 25px 0 15px;
    }

    .footer-brand {
        padding: 0 15px 20px;
        margin-bottom: 20px;
    }

    /* Promise/Get Certified Section Mobile */
    .promise-section {
        flex-direction: column;
        padding: 15px;
        overflow: hidden;
    }

    .promise-image {
        width: 100%;
        margin-bottom: 15px;
    }

    .promise-image img {
        border-radius: 12px;
    }

    .promise-content {
        padding: 15px;
        width: 100%;
    }

    .promise-title {
        font-size: var(--font-size-h3);
        word-wrap: break-word;
    }

    /* PREP/GROW/SCALE circles - responsive for mobile */
    .routine-steps {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .step {
        width: 50px;
        height: 50px;
        font-size: 7px;
        flex-shrink: 0;
    }
}

/* -----------------------------------------------------------------------------
   FOOTER (Rhode Style)
----------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-beige);
    padding: 60px 0 20px;
    width: 100%;
    margin: 0 0 1rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.footer-brand {
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
    padding: 0 40px 40px;
}

.footer-logo {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(3rem, 18vw, 12rem);
    font-weight: 400;
    color: #5a5a5a;
    letter-spacing: 0.02em;
    text-transform: lowercase;
    width: 100%;
    display: block;
    line-height: 1;
    padding-top: 0.1em;
    white-space: nowrap;
    overflow: visible;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 40px;
}

.footer-newsletter {
    flex: 0 0 280px;
}

.newsletter-text {
    font-size: var(--font-size-sm);
    color: #67635f;
    margin-bottom: 10px;
}

.newsletter-subtext {
    font-size: var(--font-size-xxs);
    color: #67635f;
    margin-bottom: 20px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #999;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 0;
    font-size: var(--font-size-xs);
    color: #67635f;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-btn {
    background: none;
    border: none;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: #67635f;
    cursor: pointer;
    letter-spacing: 0.05em;
}

.privacy-note {
    font-size: var(--font-size-xs);
    color: #888;
}

.privacy-note a {
    color: #67635f;
    text-decoration: underline;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.footer-column h4 {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: #67635f;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    font-size: var(--font-size-xxs);
    color: #67635f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #67635f;
}

.support-text {
    font-size: var(--font-size-xs);
    color: #67635f;
    margin-bottom: 5px;
    line-height: 1.4;
}

.copyright {
    font-size: 10px;
    color: #888;
    margin-top: 15px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    text-align: center;
}

.footer-country {
    font-size: 11px;
    color: #67635f;
}

/* Footer Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-brand {
        padding: 0 20px 30px;
        margin-bottom: 30px;
    }

    .footer-logo {
        font-size: clamp(2rem, 15vw, 4rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-newsletter {
        flex: none;
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 25px 20px;
    }

    .footer-column {
        flex: 0 0 45%;
    }

    .footer-bottom {
        padding: 20px;
    }
}

/* Accordion Active State - First item opened by default */
.accordion-item.active .accordion-header {
    background-color: #f5f3f0;
    border-radius: 8px 8px 0 0;
    padding-left: 20px;
}

.accordion-item.active .accordion-body {
    display: block;
    background-color: #f5f3f0;
    padding: 15px 20px;
    border-radius: 0 0 8px 8px;
    white-space: pre-line;
    line-height: 1.8;
    color: #67635f;
}

/* Ensure icon has no rotation and is centered */
.accordion-header .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 1;
    transition: none;
    transform: none !important;
}

.accordion-item.active .accordion-header .icon-circle {
    transform: none !important;
}

/* Mentor Section Background Override */
#mentor.mentor-section,
.mentor-section,
section.mentor-section,
section#mentor {
    --color-beige: #e7eef8 !important;
    background-color: #e7eef8 !important;
    background: #e7eef8 !important;
}