/* Premium Course Landing Page - Production Ready */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-teal: #1e9baa;
    --primary-navy: #1e3a5f;
    --accent-teal: #26b5c7;
    --accent-gold: #D4AF37;
    
    /* Neutrals */
    --text-primary: #2c2c2c;
    --text-secondary: #666666;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #0a1628;
    --border-color: #e5e5e5;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 32px rgba(30, 155, 170, 0.06);
    --shadow-lg: 0 12px 48px rgba(30, 155, 170, 0.12);
    --shadow-xl: 0 24px 64px rgba(30, 155, 170, 0.16);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 44px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Assistant', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-white);
    direction: rtl;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-full {
    width: 100%;
    max-width: 100%;
}

/* ===== HEADER ===== */
.header-minimal {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    transition: var(--transition-base);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition-base);
}

.header-cta {
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-teal));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition-base);
    box-shadow: 0 4px 18px rgba(0,175,155,0.35);
    animation: bouncePulse 2.8s ease-in-out infinite;
}

.header-cta:hover {
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-teal));
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,175,155,0.5);
    animation: none;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    display: none;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.cta-btn-mobile {
    width: 100%;
    padding: 14px;
    background: var(--primary-teal);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
}

.whatsapp-fixed {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    display: flex;
    direction: ltr;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    background-color: #00d757;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: width 0.3s ease, border-radius 0.3s ease, transform 0.2s ease;
}

.whatsapp-fixed:hover {
    width: 150px;
    border-radius: 40px;
}

.whatsapp-fixed:active {
    transform: translate(2px, 2px);
}

.whatsapp-fixed .sign {
    width: 100%;
    transition: width 0.3s ease, padding-left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-fixed .sign svg {
    width: 25px;
}

.whatsapp-fixed .sign svg path {
    fill: white;
}

.whatsapp-fixed .text {
    position: absolute;
    right: 0;
    width: 0;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition: opacity 0.3s ease, width 0.3s ease, padding-right 0.3s ease;
    white-space: nowrap;
}

.whatsapp-fixed:hover .sign {
    width: 30%;
    padding-left: 10px;
}

.whatsapp-fixed:hover .text {
    opacity: 1;
    width: 70%;
    padding-right: 10px;
}

/* ===== BUTTONS ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
    text-decoration: none;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal) 60%, var(--primary-teal) 100%);
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 20px rgba(30, 155, 170, 0.4);
    animation: bouncePulse 2.8s ease-in-out infinite;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 155, 170, 0.35);
}

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

.cta-btn.secondary {
    background: white;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.cta-btn.secondary:hover {
    background: var(--primary-navy);
    color: white;
}

.cta-btn.large {
    padding: 16px 40px;
    font-size: 18px;
}

.cta-btn.mega {
    padding: 20px 48px;
    font-size: 20px;
}

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

/* ===== HERO SECTION ===== */
.hero-premium {
    position: relative;
    background: linear-gradient(175deg, #0a1628 0%, #0d2240 40%, #0f2a4a 100%);
    overflow: hidden;
    padding: 0 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 20%, var(--primary-teal) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, #ffffff 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Two-column hero layout */
.hero-split {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 60px 0 20px;
}

.hero-content-col {
    flex: 1 1 46%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero-video-col {
    flex: 1 1 54%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(30, 155, 170, 0.15);
    border: 1px solid rgba(30, 155, 170, 0.35);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease both;
}

.badge-icon {
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

/* ── Standalone Video Showcase ── */
.hero-video-showcase {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 0;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    animation: fadeInUp 0.7s ease 0.1s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video-showcase:hover {
    transform: translateY(-3px);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.65);
}

.hero-video-showcase video {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, #0d2240, #1a3a5c);
    min-height: 200px;
    pointer-events: none;
}

/* Play overlay on hover */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(10, 22, 40, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.hero-video-showcase:hover .video-play-overlay {
    opacity: 1;
}

.play-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(30,155,170,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.hero-video-showcase:hover .play-circle {
    transform: scale(1);
}

.video-play-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Text content below video */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #26d4e8 0%, var(--accent-teal) 60%, #a8edff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 36px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-content-col .hero-title {
    text-align: right;
}

.hero-content-col .hero-subtitle {
    text-align: right;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: flex-start;
    animation: fadeInUp 0.7s ease 0.4s both;
    flex-wrap: wrap;
}

/* Secondary button style on dark hero */
.hero-premium .cta-btn.secondary {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.35);
    color: white;
}

.hero-premium .cta-btn.secondary:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.7);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 28px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    animation: fadeInUp 0.7s ease 0.5s both;
    width: 100%;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-teal);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes popIn {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes bouncePulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.06); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25%       { transform: rotate(-4deg); }
    75%       { transform: rotate(4deg); }
}

/* ===== SECTIONS ===== */
.section-header {
    margin-bottom: 64px;
}

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

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.section-header.center::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-teal));
    margin: 16px auto 0;
    animation: popIn 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: var(--section-padding) 0;
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.problem-card {
    padding: 32px;
    background: var(--background-light);
    border-radius: 16px;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.problem-card.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--primary-teal);
}

.problem-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== SOLUTION SECTION — COURSE CAROUSEL ===== */
.solution-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(160deg, #0d2240 0%, #1a3a5c 60%, #0f2a4a 100%);
}

.solution-section .section-title {
    color: #fff;
}

.solution-section .section-subtitle {
    color: rgba(255,255,255,0.65);
}

/* Carousel wrapper: arrows + viewport */
.course-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.course-carousel-viewport {
    flex: 1;
    overflow: hidden;
}

.course-cards-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

/* Each card takes 1/3 of viewport on desktop */
.course-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.course-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 56px rgba(0,0,0,0.36);
}

/* Colored gradient header */
.course-card-header {
    background: linear-gradient(135deg, var(--card-color) 0%, var(--card-color2) 100%);
    padding: 28px 24px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.course-num {
    font-size: 42px;
    font-weight: 800;
    color: rgba(255,255,255,0.28);
    line-height: 1;
    letter-spacing: -1px;
    font-family: var(--font-primary);
}

.course-icon {
    font-size: 44px;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

.course-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.35;
    margin: 0;
}

.course-card-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.meta-duration {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.meta-level {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.level-beginner { background: #d1fae5; color: #065f46; }
.level-mid      { background: #dbeafe; color: #1e40af; }
.level-advanced { background: #ede9fe; color: #5b21b6; }

/* Navigation arrows */
.carousel-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    backdrop-filter: blur(6px);
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.55);
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* ===== WHY THIS FIELD SECTION ===== */
.why-section {
    padding: 60px 0;
    background: #fff;
}

.why-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.why-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.highlight-teal {
    color: var(--primary-teal);
    font-weight: 700;
}

.why-highlight-box {
    flex: 0 0 320px;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    border-radius: 20px;
    padding: 36px 32px;
    color: #fff;
}

.why-highlight-box h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #fff;
}

.why-highlight-box p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}



/* ===== FREE LESSON SECTION ===== */
.free-lesson-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d2240 0%, #1a3a5c 100%);
}

.free-lesson-title {
    color: #fff !important;
}

.free-lesson-section .section-subtitle {
    color: rgba(255,255,255,0.65);
}

.free-lesson-video-wrap {
    position: relative;
    margin-top: 36px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    background: #071729;
    cursor: pointer;
    outline: none;
}

.free-lesson-video-wrap:focus-visible {
    box-shadow: 0 0 0 4px rgba(38, 181, 199, 0.35), 0 20px 60px rgba(0,0,0,0.45);
}

.free-lesson-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #071729;
    max-height: 480px;
    object-fit: contain;
    pointer-events: none;
}

.free-lesson-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    background: rgba(7, 23, 41, 0.34);
    transition: background 0.2s ease;
    pointer-events: none;
}

.free-lesson-play-overlay span {
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.free-lesson-video-wrap:hover .free-lesson-play-overlay,
.free-lesson-video-wrap:focus-visible .free-lesson-play-overlay {
    background: rgba(7, 23, 41, 0.48);
}

/* ===== SYSTEM SHOWCASE ===== */
.system-showcase {
    padding: var(--section-padding) 0;
    background: white;
}

.system-workflow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.workflow-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

.workflow-step.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.workflow-step:nth-child(even) .step-visual {
    order: 2;
}

.step-visual {
    cursor: pointer;
}

.step-screenshot {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.step-screenshot:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.screenshot-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f0f9fb 0%, #e6f2f4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 155, 170, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    opacity: 0;
    transition: var(--transition-base);
}

.step-screenshot:hover .hover-overlay {
    opacity: 1;
}

.step-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-teal);
    opacity: 0.2;
    margin-bottom: 8px;
}

.step-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.workflow-arrow {
    text-align: center;
    color: var(--primary-teal);
    opacity: 0.4;
    margin: -20px 0;
}

/* Continued in next part... */
/* ===== MODULES TIMELINE ===== */
.modules-timeline {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f0f9fb 0%, #ffffff 100%);
}

.timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-module {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.timeline-module.visible {
    animation: fadeInUp 0.5s ease forwards;
}

.module-marker {
    display: none;
}

.module-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    transition: var(--transition-base);
    height: 100%;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.timeline-module.highlight .module-card {
    background: linear-gradient(135deg, #f0f9fb 0%, #ffffff 100%);
    border: 2px solid var(--primary-teal);
}

.module-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.module-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-gold);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.module-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
}

.module-num {
    font-weight: 700;
    color: var(--primary-teal);
}

.module-duration {
    color: var(--text-secondary);
}

.module-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.module-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.module-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-tag {
    padding: 4px 12px;
    background: rgba(30, 155, 170, 0.1);
    color: var(--primary-teal);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.timeline-cta {
    text-align: center;
    margin-top: 64px;
}

/* ===== VALUE SECTION ===== */
.value-section {
    padding: var(--section-padding) 0;
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    padding: 32px;
    background: var(--background-light);
    border-radius: 16px;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.value-card.visible {
    animation: fadeInUp 0.5s ease forwards;
}

.value-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== WHO IS THIS FOR ===== */
.who-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f0f9fb 0%, #ffffff 100%);
}

.who-carousel {
    position: relative;
    margin-top: 40px;
    border-radius: 18px;
    overflow: hidden;
    height: 340px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.who-carousel:active {
    cursor: grabbing;
}

.who-carousel-img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.who-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.who-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.who-carousel-img.active {
    opacity: 1;
}

/* Review screenshots: show full text, never crop */
.who-carousel-img.wc-review {
    object-fit: contain;
    background: linear-gradient(135deg, #f4fafb 0%, #eaf4f6 100%);
    padding: 14px;
}

.who-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.wc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: background 0.3s;
    cursor: pointer;
}

.wc-dot.active {
    background: #fff;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.who-card {
    background: white;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 4px solid var(--primary-teal);
}

.who-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.who-emoji {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
    animation: floatY 3.5s ease-in-out infinite;
}

.who-card:nth-child(2) .who-emoji { animation-delay: 0.3s; }
.who-card:nth-child(3) .who-emoji { animation-delay: 0.6s; }
.who-card:nth-child(4) .who-emoji { animation-delay: 0.9s; }
.who-card:nth-child(5) .who-emoji { animation-delay: 1.2s; }
.who-card:nth-child(6) .who-emoji { animation-delay: 1.5s; }

.who-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.who-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing installments note */
.pricing-installments {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-teal);
    margin-top: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f0f9fb 0%, #ffffff 100%);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    padding: 4px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.stars {
    font-size: 24px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.author-info strong {
    display: block;
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-secondary);
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-teal);
    background: white;
    color: var(--primary-teal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.1);
}

.reviews-external-banner {
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fdfc;
    border-top: 1px solid rgba(0,175,155,0.12);
    border-bottom: 1px solid rgba(0,175,155,0.12);
}

.mit4mit-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-teal));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 18px rgba(0,175,155,0.35);
    transition: var(--transition-base);
}

.mit4mit-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,175,155,0.5);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: min(420px, 100%);
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition-base);
    border: 0;
}

.slider-dots .dot.active {
    background: var(--primary-teal);
    width: 32px;
    border-radius: 5px;
}

/* ===== PRICING ===== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 40px 40px;
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
    color: white;
}

.pricing-card-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.pricing-card-wrapper.two-cards {
    display: flex;
    gap: 28px;
    align-items: stretch;
}

.pricing-card-wrapper.two-cards .pricing-card {
    flex: 1;
}

.pricing-card-wrapper.live-only {
    max-width: 560px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}

.pricing-card .pricing-features {
    flex: 1;
}

.plan-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    background: var(--background-light);
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.plan-tag.live {
    background: rgba(30,155,170,0.12);
    color: var(--primary-teal);
}

.price-per {
    font-size: 16px;
    color: var(--text-secondary);
    align-self: flex-end;
    margin-bottom: 6px;
}

.pricing-date-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(30,155,170,0.08);
    border: 1.5px solid rgba(30,155,170,0.28);
    border-radius: 12px;
    text-align: right;
}

.pricing-date-badge .date-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.pricing-date-badge div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pricing-date-badge strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
}

.pricing-date-badge span {
    font-size: 12px;
    color: var(--primary-teal);
    font-weight: 600;
}

.syllabus-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    margin-bottom: 12px;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-base);
    width: 100%;
    box-sizing: border-box;
}

.syllabus-link:hover {
    background: var(--primary-teal);
    color: white;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.pricing-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--background-light);
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-teal);
}

.old-price {
    flex-basis: 100%;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-notes {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(30,155,170,0.08);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.pricing-notes p + p {
    margin-top: 6px;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--primary-teal);
    margin-top: 2px;
}

.feature-item.highlight {
    color: var(--primary-teal);
    font-weight: 600;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #f0fdf4;
    border-radius: 12px;
    margin-top: 24px;
}

.pricing-guarantee svg {
    flex-shrink: 0;
    color: #15803d;
}

.pricing-guarantee strong {
    display: block;
    color: #15803d;
    margin-bottom: 4px;
}

.pricing-guarantee p {
    font-size: 14px;
    color: #166534;
}

.pricing-trust {
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--background-light);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.trust-icon {
    font-size: 24px;
}

/* ===== FAQ ===== */
.faq-section {
    padding: var(--section-padding) 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    cursor: pointer;
    transition: var(--transition-base);
    font-family: inherit;
    text-align: right;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2847 100%);
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particlesMove 15s linear infinite;
}

@keyframes particlesMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.final-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.final-feature svg {
    color: var(--accent-teal);
}

.final-disclaimer {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
.footer-simple {
    background: var(--background-dark);
    color: white;
    padding: 48px 0 24px;
}

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

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 48px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-teal);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-social a {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 10px 10px rgba(0,0,0,0.12);
    transition: all 0.2s cubic-bezier(0.68,-0.55,0.265,1.55);
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
}

.footer-social a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: -1;
    top: 100%;
    transition: top 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.footer-social a:hover {
    color: #fff;
    overflow: unset;
    transform: none;
}

.footer-social a:hover::after {
    top: 0;
}

.footer-social a.fb::after    { background: #1877f2; }
.footer-social a.ig::after    { background: #e4405f; }

.footer-social a:hover.fb     { background: #1877f2; }
.footer-social a:hover.ig     { background: #e4405f; }

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== MODALS ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.image-modal-content {
    padding: 0;
    background: transparent;
    box-shadow: none;
    width: auto;
    max-width: 92vw;
    max-height: 90vh;
    overflow: visible;
}

.image-modal-content img {
    display: block;
    max-width: 92vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-content {
    padding: 0;
    width: min(680px, 94vw);
    background: #071729;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    background: #071729;
    border-radius: 16px;
    overflow: hidden;
}

.lesson-video-modal-content {
    width: min(960px, 94vw);
}

.lesson-video-wrapper {
    aspect-ratio: 16 / 9;
}

.video-loading {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #071729;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.video-loading.active {
    opacity: 1;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 0;
    object-fit: contain;
}

.system-modal-body {
    padding: 40px;
}

.system-modal-body img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
}

.system-modal-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.system-modal-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */

/* ---- TABLET (≤1024px) ---- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px;
    }

    .hero-premium {
        padding: 0 0 48px;
    }

    .hero-split {
        gap: 32px;
        padding: 40px 0 16px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-video-showcase {
        max-width: 100%;
    }

    /* Why section */
    .why-layout {
        flex-direction: column-reverse;
        gap: 28px;
    }
    .why-highlight-box {
        flex: none;
        width: 100%;
    }

    /* Pricing two cards */
    .pricing-card-wrapper.two-cards {
        flex-direction: column;
        max-width: 520px;
    }

    .workflow-step {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .workflow-step:nth-child(even) .step-visual {
        order: 1;
    }

    .workflow-arrow {
        transform: rotate(90deg);
        text-align: center;
        margin: -10px 0;
    }

    .system-workflow {
        gap: 32px;
    }
}

/* ---- MOBILE (≤768px) ---- */
@media (max-width: 768px) {
    :root {
        --section-padding: 56px;
    }

    .whatsapp-fixed {
        right: 16px;
        bottom: 88px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-fixed:hover {
        width: 45px;
        border-radius: 50%;
    }

    .problem-card,
    .workflow-step,
    .timeline-module,
    .value-card {
        opacity: 1;
        transform: none;
    }

    .container {
        padding: 0 16px;
    }

    /* Header */
    .header-minimal {
        padding: 10px 0;
    }

    .logo img {
        height: 52px;
    }

    .header-cta {
        padding: 10px 18px;
        font-size: 15px;
    }

    /* Mobile Sticky CTA */
    .mobile-sticky-cta {
        display: block;
    }

    /* Hero */
    .hero-premium {
        padding: 0 0 40px;
    }

    .hero-split {
        flex-direction: column-reverse;
        gap: 24px;
        padding: 28px 0 8px;
    }

    .hero-content-col,
    .hero-video-col {
        flex: none;
        width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 16px;
        padding: 16px 20px;
    }

    .hero-title {
        font-size: 30px;
        text-align: center;
    }

    .hero-content-col .hero-subtitle {
        text-align: center;
    }


    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        br { display: none; }
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-cta-group .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 24px;
        padding: 20px 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-video-showcase {
        margin-bottom: 36px;
    }

    .play-circle {
        width: 56px;
        height: 56px;
    }

    /* Sections */
    .section-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 16px;
    }

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

    /* Problems */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-card {
        padding: 22px;
    }

    .problem-card h3 {
        font-size: 18px;
    }

    /* Who grid — 2 cols on tablet */
    .who-grid { grid-template-columns: repeat(2, 1fr); }

    /* Solution carousel — 2 cards on tablet */
    .course-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    /* System Workflow */
    .workflow-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 15px;
    }

    /* Timeline */
    .module-marker {
        display: none;
    }

    .timeline {
        padding: 0;
        gap: 16px;
    }

    .module-card {
        padding: 20px;
        gap: 14px;
        flex-direction: row;
        align-items: flex-start;
    }

    .module-icon {
        font-size: 28px;
        flex-shrink: 0;
    }

    .module-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .module-card p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .topic-tag {
        font-size: 12px;
        padding: 3px 10px;
    }

    /* Value */
    /* Timeline 1-col on mobile */
    .timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .value-card {
        padding: 18px;
    }

    .value-card h3 {
        font-size: 15px;
    }

    .value-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 13px;
    }

    /* Testimonials */
    .testimonials-slider {
        max-width: 100%;
    }

    .testimonial-content {
        padding: 24px 18px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .stars {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .author-info strong {
        font-size: 16px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Pricing */
    .pricing-card {
        padding: 32px 18px;
    }

    .amount {
        font-size: 44px;
    }

    .pricing-trust {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .trust-item {
        flex-direction: row;
        gap: 10px;
        font-size: 15px;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .pricing-guarantee svg {
        margin: 0 auto;
    }

    .feature-item {
        font-size: 15px;
        padding: 10px 0;
    }

    /* FAQ */
    .faq-question {
        padding: 18px 16px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 16px 18px;
        font-size: 15px;
    }

    /* Final CTA */
    .final-cta h2 {
        font-size: 26px;
    }

    .final-cta p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .final-cta-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    /* Footer */
    .footer-simple {
        padding: 36px 0 88px; /* Extra bottom padding for sticky CTA */
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px 20px;
        justify-content: center;
    }

    .footer-copy {
        margin-top: 8px;
    }

    /* Modals */
    .modal {
        padding: 12px;
    }

    .modal-content {
        border-radius: 12px;
        max-height: 92vh;
    }

    .terms-modal-content {
        padding: 40px 20px 24px;
    }

    .terms-modal-content h2 {
        font-size: 22px;
        margin-top: 8px;
    }

    .terms-modal-content h3 {
        font-size: 16px;
        margin: 18px 0 8px;
    }

    .terms-modal-content p {
        font-size: 14px;
    }
}

/* ---- SMALL MOBILE (≤480px) ---- */
@media (max-width: 480px) {
    :root {
        --section-padding: 44px;
    }

    .container {
        padding: 0 12px;
    }

    /* Hero */
    .hero-premium {
        padding: 0 0 44px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-video-showcase {
        margin-bottom: 28px;
    }

    .play-circle {
        width: 48px;
        height: 48px;
    }

    .video-play-overlay span {
        font-size: 13px;
    }

    .cta-btn.large {
        padding: 14px 20px;
        font-size: 16px;
    }

    .cta-btn.mega {
        padding: 16px 24px;
        font-size: 17px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Section */
    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Who grid — 2 cols on mobile (stays 2) */
    .who-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .who-card { padding: 22px 16px; }
    .who-emoji { font-size: 32px; }
    .who-card h3 { font-size: 15px; }
    .who-card p { font-size: 13px; }

    /* Course carousel — 1 card on mobile */
    .course-card {
        flex: 0 0 100%;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

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

    /* Timeline */
    .module-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    /* Testimonials */
    .testimonial-content {
        padding: 20px 14px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    /* Pricing */
    .pricing-header h3 {
        font-size: 22px;
    }

    .amount {
        font-size: 38px;
    }

    .old-price {
        font-size: 16px;
    }

    .pricing-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    /* FAQ */
    .faq-question {
        font-size: 15px;
        padding: 16px 12px;
    }

    /* Footer */
    .footer-links a {
        font-size: 13px;
    }

    /* Terms modal */
    .terms-modal-content {
        padding: 36px 14px 20px;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 20px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.gallery-item-wide {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
}

.gallery-item-tall {
    aspect-ratio: 3/4;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-wide {
        grid-column: span 2;
        aspect-ratio: 16/7;
    }
}

@media (max-width: 768px) {
    /* Hide the "הצוות שלנו בפעולה" gallery on mobile */
    .gallery-section {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
}

/* ===== TERMS / PRIVACY MODAL ===== */
.terms-modal-content {
    padding: 48px;
    max-width: 700px;
    direction: rtl;
    text-align: right;
}

.terms-modal-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 24px;
}

.terms-modal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 24px 0 12px;
}

.terms-modal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* ===== UTILITY ANIMATIONS ===== */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    background-size: 1000px 100%;
}
