/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --bg-body: #f8f9fa;
    --bg-card: #ffffff;
    --bg-modal: rgba(255, 255, 255, 0.98);
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    
    /* Colors */
    --teacher-primary: #0ea5e9;
    --teacher-secondary: #10b981;
    --teacher-gradient: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    
    --student-primary: #8b5cf6;
    --student-secondary: #a855f7;
    --student-gradient: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    
    /* UI Elements */
    --radius-xl: 1.5rem;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body { 
    font-family: var(--font-main); 
    background-color: var(--bg-body); 
    color: var(--text-dark); 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
    overflow-x: hidden;
    margin-top: 5rem;
}

/* =========================================
   2. SPLIT VIDEO HERO
   ========================================= */
.split-hero { 
    display: flex; 
    height: 85vh; 
    width: 100%; 
    position: relative; 
    overflow: hidden; 
    transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
}

.split-pane { 
    flex: 1; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    transition: flex 0.5s ease, width 0.5s ease; 
    overflow: hidden; 
    padding: 1rem; 
    color: white; 
    min-width: 0; 
    cursor: pointer;
} 

.pane-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    object-fit: cover; z-index: 1; 
    transition: transform 3s ease, opacity 1s ease; 
    will-change: transform; 
    opacity: 0; 
}
.pane-bg.loaded { opacity: 1; }

.pane-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; 
    background: rgba(0,0,0,0.5); 
    transition: background 0.5s ease; 
}

/* Pane Colors */
.mentor-pane { background-color: #0D2B45; border-right: 1px solid rgba(255,255,255,0.1); }
.teacher-pane { background-color: #004D40; border-right: 1px solid rgba(255,255,255,0.1); } 
.solo-pane { background-color: #4A148C; }

/* Pane Content */
.pane-content { position: relative; z-index: 3; max-width: 400px; opacity: 0; animation: fadeInUp 1s 0.5s forwards; pointer-events: none; }
.pane-content .btn-hero { pointer-events: auto; }

.pane-icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; opacity: 0.9; }
.pane-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.4rem; line-height: 1.1; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.pane-desc { font-size: 0.95rem; margin-bottom: 1.5rem; opacity: 0.9; line-height: 1.5; }

.btn-hero { padding: 0.8rem 1.8rem; font-size: 0.95rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); text-decoration: none; font-weight: 700; display: inline-block; white-space: nowrap; transition: transform 0.2s; }
.btn-hero:hover { transform: translateY(-3px); }

.btn-mentor { background: #F79F1B; color: #0D2B45; }
.btn-teacher { background: #0BDE7A; color: #004D40; }
.btn-solo { background: white; color: #4A148C; }

/* --- DYNAMIC HERO LOGIC --- */
body[data-mode="teacher"] .split-hero { height: 55vh; min-height: 400px; }
body[data-mode="teacher"] #pane-mentor, body[data-mode="teacher"] #pane-solo { display: none !important; }
body[data-mode="student"] #pane-teacher { display: none !important; }

@media (min-width: 769px) {
    .split-pane:hover { flex: 1.4; } 
    .split-pane:hover .pane-bg { transform: scale(1.1); }
    .split-pane:hover .pane-overlay { background: rgba(0,0,0,0.3); }
}

/* =========================================
   3. HOOK BANNER (GRID LAYOUT + VISIBILITY FIX)
   ========================================= */
.platform-hook-banner {
    position: relative;
    overflow: hidden;
    padding: 3rem 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
}
body[data-mode="teacher"] .platform-hook-banner { 
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%); 
}

.hook-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    width: 100%;
}

/* --- BASE STATE: HIDDEN --- */
.hook-content {
    display: none; 
    gap: 2rem 4rem;
    align-items: center; 
}

/* --- DESKTOP: SHOW ONLY ACTIVE (GRID) --- */
body[data-mode="student"] .hook-student,
body[data-mode="teacher"] .hook-teacher,
body:not([data-mode]) .hook-student { 
    display: grid; 
    grid-template-columns: 1fr 620px; 
    grid-template-rows: auto auto;    
    grid-template-areas: "text video" "badges badges";
}

/* --- GRID AREA 1: TEXT --- */
.hook-text-block { 
    grid-area: text;
    text-align: left; 
    animation: slideRightFade 0.6s 0.1s ease-out forwards;
}

.hook-text-block h1 { 
    font-size: 2.75rem; 
    font-weight: 800; 
    letter-spacing: -0.02em; 
    margin-bottom: 1.25rem; 
    line-height: 1.1; 
}

body[data-mode="student"] .hook-text-block h1 {
    background: -webkit-linear-gradient(45deg, var(--student-primary), var(--student-secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
body[data-mode="teacher"] .hook-text-block h1 {
    background: -webkit-linear-gradient(45deg, var(--teacher-primary), var(--teacher-secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.powerful-definition { font-size: 1.25rem; line-height: 1.6; color: #4b5563; }
.highlight-text { color: #111827; font-weight: 700; }

/* TEACHER HERO CALCULATOR LINK */
.hero-calc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--teacher-primary);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.hero-calc-link:hover {
    background: var(--teacher-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(14, 165, 233, 0.2);
}

/* --- GRID AREA 2: VIDEO --- */
.hook-visual-block { 
    grid-area: video;
    position: relative !important;
    width: 100%;
    height: 350px; 
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideLeftFade 0.6s 0.2s ease-out forwards;
}

.hook-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%; 
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.hook-slide { display: none !important; width: 100%; height: 100%; flex-direction: column; }
.hook-slide.active { display: flex !important; animation: fadeIn 0.4s ease; }
.hook-slide iframe { flex: 1; width: 100%; height: 100%; border: none; }

.hook-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: #ffffff; color: #1e293b; border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); width: 48px; height: 48px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    z-index: 20; transition: all 0.2s ease; font-size: 1.1rem;
}
.hook-nav-btn:hover { color: white; border-color: transparent; transform: translateY(-50%) scale(1.1); }
body[data-mode="student"] .hook-nav-btn:hover { background: var(--student-primary); }
body[data-mode="teacher"] .hook-nav-btn:hover { background: var(--teacher-primary); }
.hook-nav-btn.prev { left: -70px; }
.hook-nav-btn.next { right: -70px; }


/* --- GRID AREA 3: SYMMETRICAL BADGES --- */
.hook-features-grid {
    grid-area: badges;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 0.5rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    text-align: center;
    line-height: 1.2;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.feature-item i { font-size: 1.4rem; }
.feature-item:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.08); }
body[data-mode="student"] .feature-item i { color: var(--student-primary); }
body[data-mode="teacher"] .feature-item i { color: var(--teacher-primary); }

/* --- Tablet & Small Laptop --- */
@media (max-width: 1200px) {
    body[data-mode="student"] .hook-content.hook-student,
    body[data-mode="teacher"] .hook-content.hook-teacher {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    .hook-text-block { order: 1; text-align: center; max-width: 800px; margin: 0 auto; }
    .hook-visual-block { order: 2; width: 100%; max-width: 90%; height: auto; aspect-ratio: 16 / 9; margin: 0 auto; }
    .hook-features-grid { order: 3; justify-content: center; width: 100%; }
    .hook-nav-btn.prev { left: -20px; }
    .hook-nav-btn.next { right: -20px; }
}

/* --- Mobile Phones --- */
@media (max-width: 768px) {
    .platform-hook-banner { padding: 2rem 1rem; }
    .hook-text-block h1 { font-size: 2rem; }
    .powerful-definition { font-size: 1rem; }
    
    .hook-nav-btn { width: 36px; height: 36px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(2px); }
    .hook-nav-btn.prev { left: 10px; }
    .hook-nav-btn.next { right: 10px; }
    
    /* 2 Columns on Mobile */
    .hook-features-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .feature-item { padding: 0.8rem 0.3rem; font-size: 0.75rem; gap: 0.4rem; }
    .feature-item i { font-size: 1.1rem; }
}

/* =========================================
   4. TABS & NAVIGATION
   ========================================= */
.tabs-container { 
    display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; margin-top: 2rem; position: relative; z-index: 2; 
    scroll-margin-top: 100px;
}
.tab-btn { padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 700; border-radius: 99px; border: 2px solid var(--border-color); background: var(--bg-card); color: var(--text-light); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 0.75rem; }
.tab-btn:hover { transform: translateY(-3px); color: var(--text-dark); border-color: var(--text-light); }
.tab-btn.active.teacher { background: var(--teacher-gradient); color: white; border-color: transparent; box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.5); }
.tab-btn.active.student { background: var(--student-gradient); color: white; border-color: transparent; box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.5); }

/* =========================================
   5. GRID & CARDS
   ========================================= */
.tab-content { display: none; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem 5rem; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }

/* 4 COLUMNS ON DESKTOP */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cta-box { grid-column: 1 / -1; }

.card { 
    background: var(--bg-card); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); 
    border: 2px solid transparent; border-color: var(--border-color); display: flex; flex-direction: column; cursor: pointer; 
    position: relative; opacity: 0; animation: fadeInUp 0.6s forwards; height: 100%; 
    scroll-margin-top: 100px; /* Gives nice breathing room when auto-scrolling */
}

/* Flash Animation triggered by JS */
@keyframes flashSwell {
    0% { transform: scale(1); box-shadow: var(--shadow-md); }
    50% { transform: scale(1.05) translateY(-5px); box-shadow: 0 0 30px var(--glow-color); border-color: var(--border-glow); }
    100% { transform: scale(1); box-shadow: var(--shadow-md); }
}
.flash-swell-student {
    --glow-color: rgba(139, 92, 246, 0.5);
    --border-glow: var(--student-primary);
    animation: flashSwell 1.5s ease-in-out forwards !important;
    z-index: 10;
}
.flash-swell-teacher {
    --glow-color: rgba(14, 165, 233, 0.5);
    --border-glow: var(--teacher-primary);
    animation: flashSwell 1.5s ease-in-out forwards !important;
    z-index: 10;
}

.card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-hover); border-color: var(--text-light) !important; z-index: 3; }
.card-image-header { height: 160px; position: relative; overflow: hidden; }
.card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-image { transform: scale(1.05); }

.card-content-wrapper { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.25rem; font-weight: 700; margin: 0; line-height: 1.3; color: var(--text-dark); }
.card-subtitle { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; margin-bottom: 0.5rem; display: block; }
.teacher-view .card-subtitle { color: var(--teacher-primary); }
.student-view .card-subtitle { color: var(--student-primary); }
.card-teaser { color: var(--text-light); font-size: 0.9rem; flex-grow: 1; margin-top: 0.5rem; line-height: 1.5; }

.card-icon-float { position: absolute; top: 1rem; right: 1rem; background: rgba(255, 255, 255, 0.9); width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 4px 10px rgba(0,0,0,0.1); backdrop-filter: blur(4px); z-index: 2; transition: transform 0.3s; }
.teacher-view .card-icon-float { color: var(--teacher-primary); }
.student-view .card-icon-float { color: var(--student-primary); }

.card-actions { display: flex; align-items: center; margin-top: auto; padding-top: 1.5rem; }
.card-read-more { font-weight: 700; font-size: 0.9rem; opacity: 0.7; transition: opacity 0.3s; white-space: nowrap; }
.card:hover .card-read-more { opacity: 1; }
.teacher-view .card-read-more { color: var(--teacher-primary); }
.student-view .card-read-more { color: var(--student-primary); }


/* --- GLOBAL / HERO CTA BOX --- */
.cta-box { text-align: center; padding: 2.5rem 1.5rem; border-radius: var(--radius-xl); color: white; margin-top: 4rem; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.cta-bg-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-20deg); font-size: 25rem; opacity: 0.05; pointer-events: none; }
.final-cta-buttons { display: flex; justify-content: center; align-items: center; gap: 2rem; max-width: 1000px; margin: 2rem auto 0; }

.cta-btn-subtle { padding: 0.4rem 0.8rem; border-radius: 8px; font-size: 0.75rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s ease; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; }
.sub-solo { background-color: #f3f4f6; color: #6b7280; border-color: #e5e7eb; }
.sub-solo:hover { background-color: #ede9fe; color: #7c3aed; border-color: #ddd6fe; transform: translateY(-1px); }
.sub-mentor { background-color: white; color: #9ca3af; border-color: #e5e7eb; }
.sub-mentor:hover { background-color: #f0f9ff; color: #0284c7; border-color: #bae6fd; transform: translateY(-1px); }
.sub-teacher { background-color: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.sub-teacher:hover { background-color: #16a34a; color: white; transform: translateY(-1px); }

/* =========================================
   6. FAQ SECTION
   ========================================= */
.faq-section { max-width: 900px; margin: 1.5rem auto 4rem; padding: 0 1.5rem; }
.section-header { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text-dark); display: flex; align-items: center; gap: 0.5rem; }
.faq-group { display: none; animation: fadeIn 0.5s ease; }
.faq-group.active { display: block; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); margin-bottom: 1rem; border-radius: 1rem; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--text-light); }
.faq-item summary { padding: 1.5rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text-dark); }
.faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.5rem; color: var(--text-light); border-top: 1px solid var(--border-color); font-size: 1rem; line-height: 1.7; }
.calc-trigger { color: var(--teacher-primary); text-decoration: underline; cursor: pointer; font-weight: 700; }

/* =========================================
   7. MODALS
   ========================================= */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); z-index: 1000; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-backdrop.active { opacity: 1; pointer-events: all; }
.modal-content { background: var(--bg-card); width: 90%; max-width: 700px; max-height: 85vh; overflow-y: auto; border-radius: var(--radius-xl); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); transform: translateY(20px); transition: transform 0.3s; position: relative; border: 1px solid var(--border-color); }
.modal-backdrop.active .modal-content { transform: translateY(0); }
.modal-close-btn { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--bg-body); border: 1px solid var(--border-color); width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; color: var(--text-light); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; z-index: 10; }
.modal-close-btn:hover { background: var(--border-color); color: var(--text-dark); transform: rotate(90deg); }
.modal-header { padding: 2.5rem 2.5rem 1rem; }
.modal-body { padding: 0 2.5rem 2.5rem; color: var(--text-dark); font-size: 1.1rem; line-height: 1.7; }
.full-content ul { padding-left: 1.5rem; margin-top: 1rem; }
.full-content li { margin-bottom: 0.75rem; }
.full-content strong { font-weight: 700; }
.teacher-view .full-content strong { color: var(--teacher-primary); }
.student-view .full-content strong { color: var(--student-primary); }

/* --- CALCULATOR --- */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
.calc-row { margin-bottom: 1.5rem; }
.calc-row label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-light); }
.range-wrap { display: flex; align-items: center; gap: 1rem; }
.range-val { font-weight: 700; color: var(--teacher-primary); min-width: 80px; text-align: right; }
input[type="range"] { flex: 1; accent-color: var(--teacher-primary); cursor: pointer; }
.calc-result-box { background: var(--bg-body); padding: 1.5rem; border-radius: 1rem; text-align: center; border: 1px solid var(--border-color); display: flex; flex-direction: column; justify-content: center; height: auto; min-height: 130px; gap: 0.5rem; }
.calc-val { font-size: 1.5rem; font-weight: 800; display: block; margin-top: 0.2rem; }
.val-solo { color: #ef4444; } .val-mentor { color: #22c55e; }

/* =========================================
   8. RESPONSIVE UTILITIES (MOBILE)
   ========================================= */
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* Mobile */
@media (max-width: 768px) {
    body { padding-top: 65px; }
    
    .split-hero { flex-direction: column; height: auto !important; min-height: auto; margin-top: 0; }
    .split-pane { padding: 3rem 1.5rem; min-height: 300px; }
    .mentor-pane, .teacher-pane { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    
    .tabs-container { flex-direction: column; padding: 0 2rem; } 
    
    /* 2 COLUMNS ON MOBILE */
    .grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    
    .card-image-header { height: 100px; }
    .card-content-wrapper { padding: 0.75rem; }
    .card-title { font-size: 0.95rem; }
    .card-subtitle { font-size: 0.65rem; }
    
    .card-teaser { 
        font-size: 0.8rem; 
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .card-icon-float { width: 30px; height: 30px; font-size: 0.9rem; top: 0.5rem; right: 0.5rem; border-radius: 8px; }
    .card-actions { padding-top: 0.75rem; }
    .card-read-more { font-size: 0.8rem; }
    .final-cta-buttons { flex-direction: column; }
}

/* =========================================
   10. TEACHER VIEW FIXES
   ========================================= */
body[data-mode="teacher"] .split-hero { display: none !important; }
body[data-mode="teacher"] .platform-hook-banner {
    display: block;
    padding-top: 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}
body[data-mode="teacher"] .hook-content {
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 4rem;
    text-align: left;
}

@media (max-width: 1024px) {
    body[data-mode="teacher"] .hook-content {
        flex-direction: column-reverse !important;
        text-align: center;
    }
}

/* =========================================
   11. VISIBILITY ENFORCER
   ========================================= */
body[data-mode="student"] .hook-teacher { display: none !important; }
body[data-mode="teacher"] .hook-student { display: none !important; }
body:not([data-mode]) .hook-teacher { display: none !important; }

/* =========================================
   12. TABS & LAYOUT FORCE FIX
   ========================================= */
.hero-layout-wrapper { display: block !important; width: 100% !important; min-height: auto !important; padding: 0 !important; margin: 0 !important; }
.tabs-container { display: flex !important; flex-direction: row !important; justify-content: center !important; align-items: center !important; width: 100% !important; max-width: 100% !important; margin: 1rem 0 3rem 0 !important; gap: 1rem !important; padding: 0 1rem !important; }
.tab-btn { width: auto !important; margin: 0 !important; }
@media (max-width: 768px) {
    .tabs-container { flex-direction: column !important; gap: 1rem !important; }
    .tab-btn { width: 100% !important; justify-content: center; }
}

/* iOS Video Rendering Fix */
.hook-slide iframe,
.hook-visual-block {
    -webkit-transform: translateZ(0); 
    transform: translateZ(0);
}