@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    /* Cinematic Brand Colors */
    --primary: #9f2f3f;
    --primary-dark: #7b2230;
    --primary-red: #9f2f3f;
    --accent-yellow: #ffdc6a;

    /* Cinematic Neutrals */
    --bg-cream: #fffcfc;
    --bg-white: #fffefc;
    --surface: #ffffff;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --text-light: #b2bec3;
    --dark-black: #121212;
    --dark-nav-bg: #0a0a0a;
    --white: #ffffff;
    --light-bg: #f7f8fa;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);

    /* Typography */
    --font-main: 'Heebo', sans-serif;

    /* Spacing & Radius - Sharper, more editorial */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.25s ease;
    --header-height: 104px;
}

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
.bold {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

p,
.thin {
    font-weight: 300;
}

/* ========== Cinematic Text Effects ========== */
.text-silver-gradient {
    background: linear-gradient(to bottom left, #2d3436, #636e72, #2d3436);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stroke-text {
    -webkit-text-stroke: 1px rgba(45, 52, 54, 0.2);
    color: transparent;
    transition: all 0.3s ease;
}

.stroke-text:hover {
    -webkit-text-stroke: 1px var(--primary);
    color: rgba(159, 47, 63, 0.05);
}

/* ========== Layout Utilities ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.flex {
    display: flex;
    align-items: center;
}

.grid {
    display: grid;
}

.w-full {
    width: 100%;
}

.mt-2 {
    margin-top: 20px;
}

/* ========== Header - Cinematic ========== */
.main-header {
    height: 104px;
    display: flex;
    align-items: center;
    background: rgba(18, 18, 18, 0.92);
    /* Dark cinematic background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Lighter border for dark mode */
    transition: var(--transition);
}

.main-header.scrolled {
    height: 88px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    background: rgba(10, 10, 10, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 24px;
}

.logo {
    padding: 8px 0;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: 88px;
    max-width: min(320px, 30vw);
    object-fit: contain;
    transition: var(--transition);
    /* filter: brightness(0) invert(1); - Removed at user request */
}

.main-header.scrolled .logo img {
    max-height: 60px;
}

/* Desktop Nav - Cinematic */
.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: stretch;
    margin: 0;
    padding: 0;
    height: 104px;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 252, 252, 0.92);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    line-height: normal;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-links>li>a {
    padding: 0 2px;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 22px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links>li>a:hover::after {
    width: 0;
}

.nav-links a:hover {
    color: rgba(255, 252, 252, 0.92);
}

.nav-links a:focus-visible,
.dropdown li a:focus-visible,
.menu-toggle:focus-visible {
    outline: 2px solid rgba(159, 47, 63, 0.85);
    outline-offset: 3px;
    border-radius: 10px;
}

.nav-links a:active,
.dropdown li a:active {
    color: var(--primary) !important;
}

.nav-links i {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    stroke-width: 2.2;
}

.has-dropdown {
    position: relative;
}

.nav-links>li.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links>li.has-dropdown>a i,
.nav-links>li.has-dropdown>a svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    flex-shrink: 0;
    opacity: 0.88;
    transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
    stroke-width: 2.2;
}

.has-dropdown:hover>a i,
.has-dropdown:hover>a svg {
    transform: translateY(1px);
    opacity: 1;
}

.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(28, 28, 28, 0.98) 100%);
    min-width: 260px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    border-radius: 16px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 14px 24px;
    display: block;
    color: rgba(255, 252, 252, 0.86) !important;
    font-size: 0.9rem;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: transparent;
    color: rgba(255, 252, 252, 0.86) !important;
    padding-right: 24px;
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    padding: 10px 24px;
    display: block;
    font-weight: 500;
    color: rgba(255, 252, 252, 0.86);
    font-size: 0.95rem;
}

.dropdown li a:hover {
    background: transparent;
    color: rgba(255, 252, 252, 0.86);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--bg-white);
    cursor: pointer;
    font-size: 2rem;
    padding: 10px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--bg-white);
}

.menu-toggle:active {
    transform: scale(0.97);
    color: var(--primary);
}

body.menu-open .menu-toggle {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--bg-white);
}

.menu-toggle svg,
.menu-toggle i {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
}

.menu-toggle-lines {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 18px;
}

.menu-toggle-lines span {
    position: absolute;
    right: 0;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease,
        top 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.2s ease;
}

.menu-toggle-lines span:nth-child(1) {
    top: 0;
}

.menu-toggle-lines span:nth-child(2) {
    top: 8px;
}

.menu-toggle-lines span:nth-child(3) {
    top: 16px;
}

.menu-toggle.is-open .menu-toggle-lines span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-lines span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
}

.menu-toggle.is-open .menu-toggle-lines span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* ========== Buttons - Cinematic ========== */
.btn {
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    font-family: var(--font-main);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(159, 47, 63, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(159, 47, 63, 0.35);
}

.btn-accent {
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    padding: 12px 22px;
}

.btn-accent:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 47, 63, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(45, 52, 54, 0.25);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-utility-btn {
    min-height: 38px;
    padding: 7px 12px;
    border-radius: 11px;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(15, 15, 15, 0.1);
}

.header-utility-btn i,
.header-utility-btn svg {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
}

.header-actions .header-utility-btn.btn-primary,
.nav-utility-item .header-utility-btn.btn-primary {
    background: rgba(159, 47, 63, 0.92);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(159, 47, 63, 0.18);
}

.header-actions .header-utility-btn.btn-primary:hover,
.nav-utility-item .header-utility-btn.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(159, 47, 63, 0.2);
}

.header-actions .header-utility-btn.btn-accent,
.nav-utility-item .header-utility-btn.btn-accent {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.header-actions .header-utility-btn.btn-accent:hover,
.nav-utility-item .header-utility-btn.btn-accent:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.nav-utility-item {
    display: none !important;
}

.header-actions .btn-accent:not(.header-utility-btn) {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* ========== HERO SECTION - Cinematic ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-cream);
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    justify-items: center;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Red accent line */
.hero-text::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 32px;
    border-radius: 2px;
    /* Center it since text is centered */
    margin-left: auto;
    margin-right: auto;
}

.editorial-title {
    font-size: 4.5rem;
    line-height: 0.92;
    margin-bottom: 28px;
    color: var(--text-main);
    letter-spacing: -0.04em;
    font-weight: 700;
}

.editorial-title .weight-thin {
    font-weight: 300;
    display: block;
    margin-bottom: 6px;
}

.editorial-title .weight-black {
    font-weight: 800;
    font-size: 5.5rem;
    display: inline;
}

.editorial-title .highlight {
    color: var(--primary);
}

.hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Chips - Cinematic */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    justify-content: center;
}

.hero-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(45, 52, 54, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.hero-chip i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.hero-chip:hover {
    border-color: var(--primary);
    background: rgba(159, 47, 63, 0.03);
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta-group .btn-primary {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.hero-cta-group .btn-outline {
    padding: 16px 28px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

.hero-cta-group .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Hero Visual Side */
/* Hero Visual Side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Option 2: Parallax Peek Window */
.hero-peek-window {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    perspective: 1000px;
    margin: 0 auto;
}

.hero-peek-frame {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    /* Smooth modern curve */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: rotateY(-8deg) rotateX(4deg);
    /* Subtle 3D tilt */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: #ffffff;
}

.hero-peek-window:hover .hero-peek-frame {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

.hero-peek-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.1);
    /* Slight zoom for parallax feel */
    transition: transform 0.6s ease;
}

.hero-peek-window:hover .hero-peek-frame img {
    transform: scale(1.05);
}

/* Burgundy Glow Behind Window */
.hero-peek-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(159, 47, 63, 0.2) 0%, transparent 65%);
    z-index: -1;
    filter: blur(50px);
    animation: pulseRedGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseRedGlow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Hero Background Styles */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* Handled by JS for fade in */
    transition: opacity 2s ease;
    filter: brightness(0.82) contrast(1.24) saturate(1.08);
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.8) contrast(1.12) opacity(0.48);
    transform: scale(1.1);
    /* Hide blur edges */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(159, 47, 63, 0.08) 0%, rgba(159, 47, 63, 0) 42%),
        linear-gradient(to bottom, rgba(250, 249, 247, 0.38) 0%, rgba(250, 249, 247, 0.7) 58%, rgba(250, 249, 247, 0.94) 100%);
    z-index: 1;
}

/* Light Mode Text Adjustments for Hero */
.hero .editorial-title {
    color: var(--text-main);
}

.hero .hero-subtitle {
    color: var(--text-muted);
}

.hero-chip {
    border-color: rgba(45, 52, 54, 0.1);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.hero-chip:hover {
    border-color: var(--primary);
    background: rgba(159, 47, 63, 0.15);
}

/* Floating stat cards on hero */
.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(45, 52, 54, 0.05);
}

.hero-float-card:nth-child(2) {
    bottom: -20px;
    right: -30px;
    animation-delay: -2s;
}

.hero-float-card:nth-child(3) {
    top: 20px;
    left: -30px;
    animation-delay: -4s;
}

.hero-float-card .float-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-card .float-icon.red {
    background: rgba(159, 47, 63, 0.08);
    color: var(--primary);
}

.hero-float-card .float-icon.gold {
    background: rgba(255, 220, 106, 0.15);
    color: #d4a017;
}

.hero-float-card .float-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.hero-float-card .float-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes float {

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Floating decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(159, 47, 63, 0.04);
    top: 10%;
    left: 5%;
    animation: pulse-shape 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(45, 52, 54, 0.03);
    bottom: 15%;
    right: 10%;
    animation: pulse-shape 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(159, 47, 63, 0.02);
    top: 50%;
    left: 40%;
    animation: pulse-shape 12s ease-in-out infinite;
}

@keyframes pulse-shape {

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

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* ========== Section Titles - Cinematic ========== */
.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 10px;
    font-weight: 400;
}

.title-line {
    width: 48px;
    height: 3px;
    background: var(--primary);
    display: inline-block;
    border-radius: 2px;
    margin-bottom: 40px;
}

/* ========== USP (Trust) Grid - Cinematic ========== */
/* ========== USP (Trust) Horizontal Scroll ========== */
/* ========== USP (Trust) Horizontal Scroll - Premium ========== */
/* ========== USP (Trust) Horizontal Scroll - Premium ========== */
/* ========== USP (Trust) Horizontal Scroll - Premium ========== */
.usp-section {
    position: relative;
    height: 300vh;
    padding: 0;
    overflow: visible;
    background:
        radial-gradient(circle at 12% 18%, rgba(159, 47, 63, 0.12) 0%, rgba(159, 47, 63, 0) 32%),
        radial-gradient(circle at 88% 82%, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 28%),
        linear-gradient(180deg, #fffdf9 0%, #f7f2eb 48%, #f3ede5 100%);
}

.usp-section::before,
.usp-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.usp-section::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.3) 18%, rgba(255, 255, 255, 0) 36%),
        repeating-linear-gradient(90deg, rgba(159, 47, 63, 0.028) 0, rgba(159, 47, 63, 0.028) 1px, transparent 1px, transparent 120px);
    opacity: 0.8;
}

.usp-section::after {
    inset: auto 8% 8% auto;
    width: min(34vw, 420px);
    height: min(34vw, 420px);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(159, 47, 63, 0.12) 0%, rgba(159, 47, 63, 0) 70%);
    filter: blur(18px);
}

/* USP Section Title Positioning */
.usp-section .sticky-wrapper .section-title {
    position: absolute;
    top: 102px;
    left: 0;
    right: 0;
    z-index: 30;
    pointer-events: none;
    max-width: min(760px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 32px 0;
}

@media (max-width: 768px) {
    .usp-section .sticky-wrapper .section-title {
        top: 88px;
        max-width: calc(100% - 24px);
        padding: 18px 12px 0;
    }
}

.sticky-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.74) 32%, rgba(255, 255, 255, 0.92) 100%),
        radial-gradient(circle at 50% 50%, rgba(250, 249, 247, 0.6) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Container for the moving track */
.horizontal-scroll-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: clamp(210px, 32vh, 320px);
    padding-left: clamp(20px, 7vw, 96px);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .horizontal-scroll-container {
        align-items: center;
        padding-top: 120px;
    }
}

/* The track that moves */
.usp-scroll-track {
    display: flex;
    gap: clamp(18px, 4vw, 52px);
    width: max-content;
    will-change: transform;
    padding-right: clamp(20px, 7vw, 96px);
}

/* Premium Card Design */
.usp-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: clamp(320px, 35vw, 520px);
    height: clamp(340px, 50vh, 500px);
    min-width: 320px;
    min-height: 340px;
    padding: clamp(28px, 4.2vh, 42px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: right;
    box-shadow:
        0 24px 80px rgba(34, 34, 34, 0.08),
        0 10px 30px rgba(159, 47, 63, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background 0.3s ease-out;
    user-select: none;
}

.usp-card:hover {
    transform: translateY(-10px) scale(1.015);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 100%);
    box-shadow:
        0 30px 90px rgba(34, 34, 34, 0.1),
        0 14px 40px rgba(159, 47, 63, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

/* Large Number Index */
/* Large Number Index - HIDDEN as per request */
.usp-card::before {
    display: none;
    content: '';
}

@media (max-width: 768px) {
    .usp-card {
        width: 82vw;
        height: 420px;
        min-width: 280px;
        min-height: 280px;
        padding: 28px 22px 24px;
        border-radius: 24px;
    }

    .usp-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .usp-card p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .usp-card .usp-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .horizontal-scroll-container {
        padding-left: 14px;
    }

    .usp-scroll-track {
        gap: 20px;
        padding-right: 14px;
    }

}

.usp-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.usp-content::after {
    content: '';
    position: absolute;
    top: -18%;
    right: -16%;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(159, 47, 63, 0.08) 0%, rgba(159, 47, 63, 0) 72%);
    z-index: -1;
}

.usp-card .usp-icon {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, rgba(159, 47, 63, 0.12) 0%, rgba(212, 175, 55, 0.18) 100%);
    color: var(--primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow:
        0 12px 28px rgba(159, 47, 63, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    font-size: 2rem;
}

.usp-card h3 {
    font-size: clamp(1.6rem, 2.2vw, 2.15rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-main);
    letter-spacing: -0.03em;
    line-height: 1.18;
    max-width: 11ch;
}

.usp-card p {
    font-size: clamp(1rem, 1.1vw, 1.14rem);
    color: var(--text-muted);
    line-height: 1.72;
    margin: 0;
    font-weight: 400;
    max-width: 28ch;
}

/* Section Title - Fixed absolute within section but behind sticky on scroll? 
   Actually, title should probably be sticky too or fade out. 
   Let's keep it visually absolute at top of section. */
.usp-section .section-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.usp-section .section-title h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.usp-section .section-title p {
    max-width: 34ch;
    margin: 0 auto 18px;
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-muted);
    text-wrap: balance;
}

.usp-section .section-title .title-line {
    margin-top: 0;
    width: min(108px, 24vw);
}

@media (max-width: 768px) {
    .usp-section .section-title h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .usp-section .section-title p {
        font-size: 0.98rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }
}

.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 112px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0.9;
    animation: bounceHint 2s infinite;
    z-index: 20;
}

.scroll-hint span {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
}

.scroll-hint i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

@keyframes bounceHint {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

.usp-icon i {
    width: 28px;
    height: 28px;
}

.usp-card:hover .usp-icon {
    transform: translateY(-2px) scale(1.04);
}

.usp-item h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-main);
    font-weight: 600;
}

/* ========== Stats Counter - Cinematic Stroke Style ========== */
.stats-section {
    position: relative;
    background: var(--bg-white);
    padding: 80px 0;
    overflow: hidden;
    border-top: 1px solid rgba(45, 52, 54, 0.05);
    border-bottom: 1px solid rgba(45, 52, 54, 0.05);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(45, 52, 54, 0.04) 0%, transparent 60%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 10px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(45, 52, 54, 0.08);
}

.stat-item:last-child::after {
    display: none;
}

.stat-value {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    direction: rtl;
    margin-bottom: 8px;
}

.stat-value-prefix {
    gap: 6px;
    flex-direction: row-reverse;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
    vertical-align: baseline;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -0.03em;
}

.stat-suffix {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
    vertical-align: baseline;
    margin-right: 0;
}

.stat-value .stat-number,
.stat-value .stat-suffix {
    display: inline-block;
}

.stat-label {
    display: block;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin-top: 4px;
    line-height: 1.2;
}

.faq-home-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 248, 250, 0.92) 100%);
}

.faq-home-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.faq-home-item {
    background: var(--bg-white);
    border: 1px solid rgba(45, 52, 54, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.faq-home-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.faq-home-item p {
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.8;
}

.faq-home-item a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.faq-home-item a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .faq-home-list {
        grid-template-columns: 1fr;
    }
}

/* ========== Course Cards - Cinematic ========== */
.courses-section {
    background: var(--bg-cream);
    position: relative;
}

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

.course-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(45, 52, 54, 0.06);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(159, 47, 63, 0.15);
}

.course-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.course-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.course-card:hover .course-card-img {
    transform: scale(1.05);
}

.course-card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-white), transparent);
    z-index: 1;
}

.course-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.02em;
}

.course-card-content {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 700;
    transition: var(--transition);
}

.course-card:hover .course-card-content h3 {
    color: var(--primary);
}

.course-card-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
    font-weight: 400;
}

.course-highlight-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    align-items: stretch;
    gap: 32px;
    direction: ltr;
    margin-top: 8px;
}

.course-highlight-card {
    height: 100%;
}

.course-highlight-copy {
    direction: rtl;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding: 34px 40px;
    border-radius: 28px;
    border: 1px solid rgba(159, 47, 63, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46));
    box-shadow: 0 16px 40px rgba(159, 47, 63, 0.08);
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.course-highlight-copy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(159, 47, 63, 0.12), transparent 45%);
    pointer-events: none;
}

.course-highlight-text {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-main);
    max-width: 11ch;
    letter-spacing: -0.04em;
}

.course-highlight-arrow {
    position: relative;
    z-index: 1;
    width: min(220px, 100%);
    height: 36px;
    margin-top: 22px;
    align-self: stretch;
}

.course-highlight-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(100% - 20px);
    height: 2px;
    background: linear-gradient(90deg, rgba(159, 47, 63, 0.22), var(--primary));
    transform: translateY(-50%);
    border-radius: 999px;
}

.course-highlight-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    width: 16px;
    height: 16px;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: translateY(-50%) rotate(45deg);
}

.course-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(45, 52, 54, 0.06);
}

.course-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    color: var(--text-muted);
    font-weight: 500;
}

.course-card-meta i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* ========== Process / How it works - Dynamic Sticky Split-View ========== */
.process-section {
    position: relative;
    padding: 100px 0 120px;
    background: radial-gradient(circle at top center, #ffffff 0%, #f7f8fa 100%);
    overflow: visible;
}

.process-split-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 70px;
}

/* Right Side - Scrollable Steps */
.process-steps-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 30vh;
    /* Allow scrolling past the last item */
}

.process-step-item {
    padding: 60px 40px 60px 0;
    border-right: 3px solid rgba(45, 52, 54, 0.08);
    /* RTL: right border */
    opacity: 0.25;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    /* Extra padding to make each section taller so the scrolling feels substantial */
    min-height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-step-item.active {
    opacity: 1;
    border-right-color: var(--primary);
    transform: translateX(-15px);
    background: linear-gradient(90deg, transparent, rgba(159, 47, 63, 0.03) 100%);
    /* gradient fades in RTL direction */
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.process-number {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.5;
    font-family: var(--font-main);
    letter-spacing: -0.05em;
    transition: color 0.6s ease, transform 0.6s ease;
}

.process-step-item.active .process-number {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.05);
}

.process-content h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
}

.process-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Left Side - Sticky Image */
.process-images {
    position: sticky;
    top: 120px;
    height: 70vh;
    max-height: 800px;
    min-height: 500px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.sticky-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

.process-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    /* Start slightly zoomed in */
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 4s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.8s;
}

.process-img.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Subtle dark gradient overlay to make images look cinematic */
.process-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .process-split-view {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-images {
        position: sticky;
        top: 80px;
        /* Below the header */
        height: 35vh;
        min-height: 250px;
        order: -1;
        /* Image goes on top on mobile */
        margin-bottom: 20px;
        box-shadow: var(--shadow-md);
        z-index: 10;
        border-radius: 20px;
    }

    .process-steps-list {
        padding-bottom: 35vh;
    }

    .process-step-item {
        min-height: 35vh;
        /* Add more height to scroll past images */
        padding: 30px 24px 30px 0;
        opacity: 0.3;
        /* more visible on mobile by default */
        border-right-width: 2px;
    }

    .process-step-item.active {
        transform: translateX(-8px);
    }

    .process-number {
        font-size: 3.5rem;
    }

    .process-content h4 {
        font-size: 1.6rem;
    }

    .process-content p {
        font-size: 1.05rem;
    }
}

/* ========== Testimonials - Cinematic ========== */
.testimonials-section {
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 36px 28px 28px;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid rgba(45, 52, 54, 0.06);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(159, 47, 63, 0.12);
}

.testimonial-card .quote-icon {
    position: absolute;
    top: -1px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.testimonial-card .quote-icon i {
    width: 20px;
    height: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 22px;
    min-height: 110px;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(45, 52, 54, 0.06);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(159, 47, 63, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Stars */
.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.stars i {
    color: #ffdc6a;
    fill: #ffdc6a;
    width: 16px;
    height: 16px;
}

.google-rating-summary {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(45, 52, 54, 0.08);
    box-shadow: 0 14px 36px rgba(45, 52, 54, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-wrap: wrap;
}

.google-rating-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -0.03em;
}

.google-rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.google-rating-stars i {
    width: 18px;
    height: 18px;
    color: #f4c542;
    fill: #f4c542;
}

.google-rating-stars svg {
    width: 18px;
    height: 18px;
    color: #f4c542;
    fill: #f4c542;
}

.google-rating-stars svg path {
    fill: #f4c542;
    stroke: #f4c542;
}

.google-rating-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.google-rating-brand svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.google-reviews-wrap {
    margin-top: 22px;
    background: var(--bg-white);
    border: 1px solid rgba(45, 52, 54, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.google-reviews-head {
    padding: 20px 24px 14px;
    border-bottom: 1px solid rgba(45, 52, 54, 0.06);
}

.google-reviews-head h3 {
    margin-bottom: 6px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.google-reviews-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.google-reviews-scroll {
    max-height: none;
    overflow: visible;
    padding: 10px 12px 12px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

/* ========== Video Section - Cinematic ========== */
.video-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.video-wrapper {
    max-width: 850px;
    margin: 50px auto 0;
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(45, 52, 54, 0.08);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Custom Video Player Styles */
.custom-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.custom-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.video-loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-bottom: 15px;
}

.loading-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

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

.player-controls {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
    display: flex;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(10px);
}

.custom-video-player:hover .player-controls {
    opacity: 1;
    transform: translateY(0);
}

.mute-btn {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mute-btn:hover {
    background: rgba(159, 47, 63, 0.8);
    transform: scale(1.1);
    border-color: var(--primary);
}

.mute-btn i {
    width: 22px;
    height: 22px;
}

.volume-slider-wrapper {
    display: flex;
    align-items: center;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: 52px;
    padding: 0 15px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-video-player:hover .volume-slider-wrapper {
    width: 120px;
    opacity: 1;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: linear-gradient(to left, var(--primary) 0%, var(--primary) 0%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.video-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
    z-index: 1;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* ========== CTA Banner - Cinematic ========== */
.cta-banner {
    background: var(--bg-white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(159, 47, 63, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(159, 47, 63, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--text-main);
    font-size: 2.6rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-banner p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.cta-banner .btn {
    position: relative;
    z-index: 2;
}

.cta-banner .btn-accent {
    background: var(--primary);
    color: var(--white);
    font-size: 1.05rem;
    padding: 18px 42px;
}

.cta-banner .btn-accent:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(159, 47, 63, 0.4);
}

/* ========== Lead Form - Cinematic ========== */
.lead-section {
    background: var(--bg-cream);
    position: relative;
}

.form-card {
    background: var(--bg-white);
    padding: 44px 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 52, 54, 0.06);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.form-card h3,
.form-card h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-card .form-subtitle {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 400;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(45, 52, 54, 0.1);
    font-family: var(--font-main);
    transition: var(--transition);
    font-size: 0.95rem;
    background: var(--bg-cream);
    color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(159, 47, 63, 0.08);
    background: var(--bg-white);
}

.privacy-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 22px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ========== Glass Card - Cinematic ========== */
.glass-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 52, 54, 0.06);
    box-shadow: var(--shadow-sm);
    padding: 32px 28px;
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(159, 47, 63, 0.1);
}

.about-story-shell {
    display: grid;
    gap: 32px;
    padding: clamp(28px, 4vw, 40px);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(159, 47, 63, 0.08) 0%, rgba(159, 47, 63, 0) 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 254, 252, 1) 100%);
    border: 1px solid rgba(45, 52, 54, 0.06);
    box-shadow: var(--shadow-sm);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-story-card {
    min-height: 100%;
    padding: 30px 26px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 252, 252, 0.88) 100%);
}

.about-story-card p {
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.95;
    color: var(--text-main);
}

.about-founder-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    direction: ltr;
}

.founder-media,
.founder-copy {
    direction: rtl;
}

.founder-image-frame {
    position: sticky;
    top: 132px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, rgba(159, 47, 63, 0.12), rgba(18, 18, 18, 0.04));
    border: 1px solid rgba(45, 52, 54, 0.08);
}

.founder-image-placeholder {
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px;
    background:
        linear-gradient(135deg, rgba(159, 47, 63, 0.12), rgba(255, 255, 255, 0.94)),
        radial-gradient(circle at top, rgba(255, 220, 106, 0.24), transparent 42%);
    color: var(--text-main);
    text-align: center;
}

.founder-image-placeholder span {
    font-size: 1.35rem;
    font-weight: 700;
}

.founder-image-placeholder small {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.founder-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.founder-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
}

.founder-kicker {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.founder-intro-card {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.founder-intro-card p {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.9;
}

.about-stat-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-stat {
    background: var(--bg-white);
    border: 1px solid rgba(45, 52, 54, 0.06);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
}

.about-stat strong {
    display: block;
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.about-stat span {
    color: var(--text-muted);
    font-weight: 400;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.about-pillars .glass-card {
    height: 100%;
}

.about-pillars .glass-card h3 {
    font-size: 1.45rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-pillars .glass-card p {
    color: var(--text-main);
    font-weight: 400;
    line-height: 1.85;
}

.about-pillars .glass-card p+p {
    margin-top: 14px;
}

.about-feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
}

.about-feature-list i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========== Founder Gallery - New Section ========== */
.founder-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.founder-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(45, 52, 54, 0.05);
}

.founder-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(10%);
}

.founder-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.founder-gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* ========== Section Divider ========== */
.light-bg {
    background-color: var(--bg-cream);
}

/* ========== Course Section (courses.html) ========== */
.course-section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(45, 52, 54, 0.05);
}

.course-badge {
    background: var(--primary);
    color: var(--white);
    padding: 5px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.check-list {
    list-style: none;
    margin: 28px 0;
}

.check-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    font-weight: 400;
}

.check-list i {
    color: var(--primary);
    flex-shrink: 0;
}

/* ========== Footer - Cinematic ========== */
.main-footer {
    background: var(--text-main);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    margin: 20px 0;
    line-height: 1.7;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-social-centered {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 5px;
}

.footer-info h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.footer-info i {
    color: var(--primary);
    width: 18px;
    height: 18px;
    margin-left: 8px;
    flex-shrink: 0;
}

.footer-info p a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition);
    font-weight: inherit;
}

.footer-info p a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-info p a strong {
    font-weight: 600;
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    font-weight: 400;
}

.cancellation-policy {
    margin-top: 28px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
}

.cancellation-policy h4 {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-size: 0.85rem;
}

/* ========== Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.8s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

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

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

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

/* Staggered reveal for grid items */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(16px);
    transition: 0.6s all ease;
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.08s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.14s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.25s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(7) {
    transition-delay: 0.35s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(8) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

/* ========== Syllabus Accordion (Course Pages) ========== */
.syllabus-accordion {
    margin-top: 40px;
}

.syllabus-item {
    background: var(--bg-white);
    border: 1px solid rgba(45, 52, 54, 0.06);
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
}

.syllabus-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.syllabus-header:hover {
    color: var(--primary);
}

.syllabus-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.4s ease;
    color: var(--text-muted);
}

.syllabus-item.active .syllabus-content {
    max-height: 500px;
    padding-bottom: 20px;
}

.download-bar {
    background: var(--primary);
    color: var(--white);
    padding: 36px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.download-bar h4 {
    color: var(--white);
    margin: 0;
}

/* Course page hero label */
.hero-label {
    background: var(--bg-white);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    color: var(--primary);
}

/* ========== Highlights Grid (3 columns) ========== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0 50px;
}

/* ========== Gallery Section - Cinematic ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(45, 52, 54, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* ========== Sidebar (Course pages) ========== */
.sidebar .form-card {
    position: sticky;
    top: 100px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1100px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-highlight-row {
        grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
        gap: 24px;
    }

    .course-feature-card-centered {
        grid-column: auto;
    }

    .about-founder-grid {
        grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
        gap: 32px;
    }

    .course-card-centered {
        grid-column: auto;
    }
}

@media (max-width: 992px) {

    :root {
        --header-height: 88px;
    }

    /* Header */
    /* Header Mobile */
    .main-header {
        height: 88px;
        background: rgba(18, 18, 18, 0.98);
        /* Dark background for mobile */
    }

    .header-container {
        direction: ltr;
        justify-content: space-between;
        gap: 16px;
    }

    .logo {
        padding: 6px 0;
        margin-left: 0;
        margin-right: auto;
    }

    .logo img {
        max-height: 60px;
        max-width: min(220px, 58vw);
    }

    .header-actions {
        display: none !important;
    }

    .nav-utility-item {
        display: flex !important;
        width: 100%;
    }

    .nav-utility-item .header-utility-btn {
        width: 100%;
        justify-content: center;
        min-height: 42px;
        padding: 9px 13px;
        border-radius: 11px;
        border-bottom: none;
        font-size: 0.86rem;
    }

    .nav-utility-item .header-utility-btn span {
        flex: 0 1 auto;
    }

    .nav-utility-item .header-utility-btn.btn-primary {
        background: rgba(159, 47, 63, 0.96);
    }

    .nav-utility-item .header-utility-btn.btn-accent {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
        display: block;
        margin-right: 0;
        margin-left: 0;
        background: transparent;
        border: none;
        color: var(--bg-white);
        box-shadow: none;
        width: auto;
        height: auto;
        padding: 0;
        border-radius: 0;
    }

    .menu-toggle:hover,
    .menu-toggle:active,
    body.menu-open .menu-toggle {
        background: transparent;
        border: none;
        box-shadow: none;
        color: var(--bg-white);
        transform: none;
    }

    .nav-links {
        position: fixed;
        top: 88px;
        left: 0;
        width: 100%;
        height: calc(100vh - 88px);
        background: linear-gradient(180deg, rgba(15, 15, 15, 0.98) 0%, rgba(28, 28, 28, 0.98) 100%);
        flex-direction: column;
        padding: 26px 20px 34px;
        gap: 10px;
        transform: translateX(100%);
        transition: var(--transition);
        visibility: hidden;
        overflow-y: auto;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        display: flex;
        /* Override global flex-row */
        flex-direction: column;
        /* Stack link and dropdown vertically */
        align-items: flex-start;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        justify-content: space-between;
        color: rgba(255, 252, 252, 0.95);
        font-weight: 600;
        border-radius: 0;
        background: transparent;
    }

    .nav-links li>a:hover {
        color: rgba(255, 252, 252, 0.95);
    }

    .nav-links>li.has-dropdown>a {
        justify-content: space-between;
        width: 100%;
    }

    .nav-links>li.has-dropdown>a i,
    .nav-links>li.has-dropdown>a svg {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        opacity: 0.82;
        stroke-width: 2.2;
    }

    .has-dropdown.active>a i,
    .has-dropdown.active>a svg {
        transform: rotate(180deg);
        opacity: 1;
        color: currentColor;
    }

    .nav-links>li>a::after {
        display: none;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        margin-top: 4px;
        display: none;
        border: none;
        padding: 2px 0 6px;
        width: 100%;
        border-radius: 0;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown li a {
        color: rgba(255, 252, 252, 0.82);
        font-size: 0.96rem;
        padding: 10px 0;
        border-bottom: none;
        background: transparent;
    }

    .dropdown li a:hover {
        color: rgba(255, 252, 252, 0.82);
    }

    .nav-links li>a:active,
    .has-dropdown.active>a:active,
    .dropdown li a:active {
        color: var(--primary) !important;
    }

    .menu-toggle {
        color: var(--bg-white);
    }

    /* Hero */
    .hero {
        padding-top: 88px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .hero h1,
    .editorial-title {
        font-size: 3rem;
    }

    .editorial-title .weight-black {
        font-size: 4rem;
    }

    .hero-visual {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-float-card:nth-child(3) {
        left: 0px;
    }

    .hero-float-card:nth-child(2) {
        right: 0px;
    }

    /* USP */
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-grid::before {
        display: none;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 50px auto 0;
    }

    .google-rating-badge {
        gap: 14px;
        padding: 14px 18px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Stats */
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Video */
    .video-grid {
        grid-template-columns: 1fr;
    }

    .download-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .sidebar {
        order: -1;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .about-founder-grid,
    .about-pillars,
    .about-stat-strip {
        grid-template-columns: 1fr;
    }

    .about-story-shell {
        padding: 24px 18px;
        border-radius: 22px;
        gap: 24px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-founder-grid {
        display: flex;
        flex-direction: column;
    }

    .about-founder-grid .founder-copy {
        order: 1;
    }

    .about-founder-grid .founder-media {
        order: 2;
    }

    .founder-image-frame {
        position: relative;
        top: auto;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .editorial-title {
        font-size: 2.6rem;
    }

    .editorial-title .weight-black {
        font-size: 3.2rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 14px;
    }

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

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

    .hero-text::before {
        margin-bottom: 24px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .course-highlight-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .course-highlight-copy {
        order: 1;
        align-items: center;
        text-align: center;
        padding: 28px 22px 18px;
    }

    .course-highlight-card {
        order: 2;
    }

    .course-highlight-text {
        max-width: none;
        font-size: 2rem;
    }

    .course-highlight-arrow {
        width: 44px;
        height: 74px;
        margin-top: 16px;
        align-self: center;
    }

    .course-highlight-arrow::before {
        top: 0;
        right: 50%;
        width: 2px;
        height: calc(100% - 20px);
        background: linear-gradient(180deg, rgba(159, 47, 63, 0.22), var(--primary));
        transform: translateX(50%);
    }

    .course-highlight-arrow::after {
        top: auto;
        bottom: 2px;
        left: 50%;
        width: 16px;
        height: 16px;
        border-left: 2px solid var(--primary);
        border-bottom: 2px solid var(--primary);
        transform: translateX(-50%) rotate(-45deg);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.6rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .usp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .usp-item {
        padding: 22px 14px;
    }

    .cta-banner h2 {
        font-size: 1.9rem;
    }

    .form-card {
        padding: 28px 20px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

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

    .about-story-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .about-story-card p {
        font-size: 0.98rem;
        line-height: 1.85;
    }

    .about-founder-grid {
        gap: 24px;
    }

    .founder-copy h2 {
        font-size: 2.2rem;
    }

    .founder-kicker {
        font-size: 1rem;
    }

    .about-pillars .glass-card h3 {
        font-size: 1.3rem;
    }

    .download-bar {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .hero-peek-window {
        max-width: 380px;
    }

    /* Founder gallery mobile */
    .founder-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .founder-gallery-item {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 480px) {
    .editorial-title {
        font-size: 2.1rem;
    }

    .editorial-title .weight-black {
        font-size: 2.6rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .hero-float-card {
        display: none;
    }

    .hero-peek-window {
        max-width: 320px;
    }
}

/* ====================================================================
   COURSE DETAIL PAGE HERO - Cinematic
   ==================================================================== */
.course-hero {
    position: relative;
    background: var(--bg-cream);
    color: var(--text-main);
    padding: 160px 0 80px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_mockup.png');
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.course-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-cream), transparent);
    z-index: 1;
}

.course-hero .container {
    position: relative;
    z-index: 2;
}

.course-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}

.course-hero .hero-badge i {
    width: 16px;
    height: 16px;
}

.course-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    max-width: 700px;
}

.course-hero-title .thin {
    font-weight: 300;
    display: block;
    font-size: 2.8rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.course-hero-title .highlight {
    color: var(--primary);
}

.course-hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 400;
}

.course-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.course-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(45, 52, 54, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.course-hero-chip i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.course-hero-chip:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

/* Course Detail Stats Strip */
.course-stats-strip {
    background: var(--bg-white);
    border-bottom: 1px solid rgba(45, 52, 54, 0.06);
    padding: 0;
    position: relative;
    z-index: 5;
}

.course-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.course-stat {
    text-align: center;
    padding: 28px 16px;
    position: relative;
    transition: var(--transition);
}

.course-stat::after {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(45, 52, 54, 0.08);
}

.course-stat:last-child::after {
    display: none;
}

.course-stat:hover {
    background: rgba(159, 47, 63, 0.02);
}

.course-stat .stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.course-stat .stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Course Detail Layout */
.course-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.course-main h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 14px;
}

.course-main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.course-main>p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 400;
}

/* Benefit Box */
.benefit-box {
    background: rgba(159, 47, 63, 0.04);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border-right: 3px solid var(--primary);
    margin: 32px 0;
}

.benefit-box h4 {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.benefit-box h4 i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.benefit-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
}

/* Info Box */
.info-box {
    padding: 20px 24px;
    border: 1px solid rgba(45, 52, 54, 0.08);
    border-radius: var(--radius-md);
    background: var(--bg-cream);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 36px;
}

.info-box strong {
    color: var(--text-main);
}

/* ====================================================================
   COURSES OVERVIEW PAGE - Cinematic
   ==================================================================== */
.courses-overview-hero {
    position: relative;
    background: var(--bg-cream);
    color: var(--text-main);
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.courses-overview-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_mockup.png');
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.courses-overview-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-cream), transparent);
    z-index: 1;
}

.courses-overview-hero .container {
    position: relative;
    z-index: 2;
}

.courses-overview-hero .accent-line {
    width: 48px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 28px;
    border-radius: 2px;
}

.courses-overview-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    line-height: 1;
    color: var(--text-main);
}

.courses-overview-hero h1 .highlight {
    color: var(--primary);
}

.courses-overview-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.study-tracks-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(250, 249, 247, 0.96) 100%);
    padding-top: 12px;
    padding-bottom: 46px;
}

.study-tracks-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.study-tracks-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(159, 47, 63, 0.07);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.study-tracks-intro h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.study-tracks-intro p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.85;
}

.study-track-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.study-track-card {
    position: relative;
    padding: 26px 24px;
    border-radius: 22px;
    border: 1px solid rgba(45, 52, 54, 0.07);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(45, 52, 54, 0.05);
    overflow: hidden;
    min-height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.study-track-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(159, 47, 63, 0.04) 0%, rgba(159, 47, 63, 0) 36%);
    pointer-events: none;
}

.study-track-card[data-track="professional"]::before {
    background: linear-gradient(180deg, rgba(34, 87, 164, 0.05) 0%, rgba(34, 87, 164, 0) 36%);
}

.study-track-card[data-track="expert"]::before {
    background: linear-gradient(180deg, rgba(22, 122, 84, 0.05) 0%, rgba(22, 122, 84, 0) 36%);
}

.study-track-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(45, 52, 54, 0.08);
    border-color: rgba(159, 47, 63, 0.14);
}

.study-track-card[data-track="professional"]:hover {
    border-color: rgba(34, 87, 164, 0.22);
}

.study-track-card.is-recommended {
    border-color: rgba(34, 87, 164, 0.18);
    box-shadow: 0 18px 38px rgba(34, 87, 164, 0.1);
}

.study-track-card[data-track="expert"]:hover {
    border-color: rgba(22, 122, 84, 0.22);
}

.comparison-plan-head .study-track-recommended-badge {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 10px 24px rgba(159, 47, 63, 0.28),
        0 2px 6px rgba(45, 52, 54, 0.08);
    white-space: nowrap;
    z-index: 6;
}

.study-track-recommended-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 220, 106, 0.45);
    box-shadow: 0 14px 24px rgba(159, 47, 63, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    z-index: 3;
    white-space: nowrap;
}

.study-track-head,
.study-track-description,
.study-track-pills {
    position: relative;
    z-index: 1;
}

.study-track-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(159, 47, 63, 0.06);
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.study-track-card[data-track="professional"] .study-track-tag {
    background: rgba(34, 87, 164, 0.1);
    color: #2257a4;
}

.study-track-card[data-track="expert"] .study-track-tag {
    background: rgba(22, 122, 84, 0.1);
    color: #167a54;
}

.study-track-head h3 {
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.05em;
}

.study-track-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.study-track-description {
    color: var(--text-muted);
    line-height: 1.75;
    margin: 16px 0 18px;
}

.study-track-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.study-track-pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(45, 52, 54, 0.04);
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 700;
}

.tracks-comparison-shell {
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(45, 52, 54, 0.07);
    box-shadow: 0 12px 30px rgba(45, 52, 54, 0.05);
}

.tracks-comparison-scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 10px;
    padding-bottom: 6px;
}

.tracks-comparison-table {
    width: 100%;
    min-width: 1040px;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    overflow: visible;
}

.tracks-comparison-table thead th {
    padding: 0;
    border-bottom: 1px solid rgba(45, 52, 54, 0.08);
    background: transparent;
    overflow: visible;
}

.comparison-feature-col {
    min-width: 290px;
    padding: 18px 18px !important;
    border-top-right-radius: 18px;
    background: rgba(249, 250, 252, 0.98) !important;
    color: var(--text-main);
    text-align: right;
    font-size: 0.95rem;
    font-weight: 800;
    position: sticky;
    right: 0;
    z-index: 4;
    box-shadow: -1px 0 0 rgba(45, 52, 54, 0.04);
}

.comparison-plan-head {
    min-width: 236px;
    padding: 18px 14px 16px;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(249, 250, 252, 0.98);
    border-top: 3px solid rgba(159, 47, 63, 0.3);
    position: relative;
    overflow: visible;
}

.comparison-plan-head[data-track="start"] {
    border-top-color: rgba(159, 47, 63, 0.36);
}

.comparison-plan-head[data-track="professional"] {
    border-top-color: rgba(34, 87, 164, 0.42);
}

.comparison-plan-head[data-track="expert"] {
    border-top-color: rgba(22, 122, 84, 0.42);
    border-top-left-radius: 18px;
}

.comparison-plan-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 1;
}

.comparison-plan-head strong {
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.comparison-plan-subtitle {
    font-size: 0.68rem;
    color: var(--text-muted);
    opacity: 1;
    line-height: 1.35;
    max-width: none;
    margin: 0 auto;
    white-space: nowrap;
}

.tracks-comparison-table tbody th,
.tracks-comparison-table tbody td {
    padding: 15px 16px;
    border-bottom: 1px solid rgba(45, 52, 54, 0.08);
}

.tracks-comparison-table tbody th {
    background: rgba(251, 251, 252, 0.98);
    text-align: right;
    position: sticky;
    right: 0;
    z-index: 3;
    min-width: 290px;
    box-shadow: -1px 0 0 rgba(45, 52, 54, 0.04);
}

.tracks-comparison-table tbody tr:nth-child(odd) th {
    background: rgba(247, 248, 250, 0.98);
}

.tracks-comparison-table tbody td {
    background: rgba(255, 255, 255, 0.92);
}

.tracks-comparison-table tbody tr:nth-child(odd) td {
    background: rgba(250, 250, 251, 0.94);
}

.tracks-comparison-table tbody tr:last-child th,
.tracks-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.55;
    transition: color 0.25s ease;
}

.comparison-feature-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comparison-feature-note {
    display: block;
    max-width: 34ch;
    font-size: 0.79rem;
    line-height: 1.55;
    color: var(--text-muted);
    font-weight: 500;
}

.comparison-feature-link:hover {
    color: var(--primary);
}

.comparison-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid transparent;
    box-shadow: 0 6px 16px rgba(45, 52, 54, 0.1);
}

.comparison-status i,
.comparison-status svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.6;
}

.comparison-status.is-included {
    background: linear-gradient(135deg, rgba(21, 145, 90, 0.18) 0%, rgba(21, 145, 90, 0.28) 100%);
    color: #0f8a54;
    border-color: rgba(21, 145, 90, 0.28);
}

.comparison-status.is-excluded {
    background: linear-gradient(135deg, rgba(198, 51, 69, 0.16) 0%, rgba(198, 51, 69, 0.26) 100%);
    color: #bf2438;
    border-color: rgba(198, 51, 69, 0.24);
}

@media (max-width: 1100px) {
    .study-track-grid {
        grid-template-columns: 1fr;
    }

    .study-track-card {
        padding: 24px 22px;
    }
}

@media (max-width: 768px) {
    .study-tracks-section {
        padding-top: 18px;
        padding-bottom: 36px;
    }

    .study-tracks-intro {
        margin-bottom: 26px;
    }

    .study-tracks-intro h2 {
        font-size: 2rem;
    }

    .study-track-card {
        border-radius: 20px;
    }

    .study-track-head h3 {
        font-size: 1.9rem;
    }

    .tracks-comparison-shell {
        padding: 8px;
        border-radius: 18px;
    }

    .tracks-comparison-scroller {
        padding-top: 10px;
    }

    .tracks-comparison-table {
        min-width: 100%;
    }

    .comparison-feature-col,
    .tracks-comparison-table tbody th {
        min-width: 168px;
    }

    .comparison-feature-col {
        padding: 14px 10px !important;
        font-size: 0.82rem;
    }

    .comparison-plan-head {
        min-width: 82px;
        padding: 12px 8px 10px;
        gap: 4px;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .comparison-plan-head .study-track-recommended-badge {
        top: 2px;
        padding: 7px 13px;
        font-size: 0.68rem;
        transform: translate(-50%, -58%);
    }

    .comparison-plan-kicker {
        font-size: 0.58rem;
        line-height: 1.15;
    }

    .comparison-plan-head strong {
        font-size: 0.86rem;
        line-height: 1.1;
        white-space: nowrap;
    }

    .comparison-plan-subtitle {
        font-size: 0.6rem;
        line-height: 1.35;
        max-width: 110px;
        margin-inline: auto;
        white-space: normal;
    }

    .tracks-comparison-table tbody th,
    .tracks-comparison-table tbody td {
        padding: 11px 8px;
    }

    .tracks-comparison-table tbody td {
        text-align: center;
    }

    .comparison-feature-copy {
        gap: 4px;
    }

    .comparison-feature-link {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .comparison-feature-note {
        max-width: 20ch;
        font-size: 0.66rem;
        line-height: 1.4;
    }

    .comparison-status {
        width: 32px;
        height: 32px;
    }

    .comparison-status i,
    .comparison-status svg {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 520px) {
    .tracks-comparison-shell {
        padding: 6px;
        border-radius: 16px;
    }

    .tracks-comparison-scroller {
        padding-top: 8px;
    }

    .tracks-comparison-table {
        table-layout: fixed;
    }

    .comparison-feature-col,
    .tracks-comparison-table tbody th {
        min-width: 136px;
        width: 136px;
    }

    .comparison-feature-col {
        padding: 12px 8px !important;
        font-size: 0.76rem;
    }

    .comparison-plan-head {
        min-width: 0;
        padding: 10px 4px 9px;
        gap: 3px;
        min-height: 78px;
    }

    .comparison-plan-head .study-track-recommended-badge {
        top: 2px;
        padding: 6px 11px;
        font-size: 0.62rem;
        transform: translate(-50%, -56%);
    }

    .comparison-plan-kicker {
        display: none;
    }

    .comparison-plan-head strong {
        font-size: 0.78rem;
        letter-spacing: -0.02em;
    }

    .comparison-plan-subtitle {
        display: block;
        font-size: 0.56rem;
        line-height: 1.3;
        min-height: auto;
        max-width: 90px;
        white-space: normal;
    }

    .comparison-plan-head[data-track="start"] .comparison-plan-subtitle,
    .comparison-plan-head[data-track="professional"] .comparison-plan-subtitle,
    .comparison-plan-head[data-track="expert"] .comparison-plan-subtitle {
        max-width: 90px;
    }

    .tracks-comparison-table tbody th,
    .tracks-comparison-table tbody td {
        padding: 10px 5px;
    }

    .comparison-feature-link {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .comparison-feature-note {
        max-width: 16ch;
        font-size: 0.58rem;
        line-height: 1.3;
    }

    .comparison-status {
        width: 30px;
        height: 30px;
    }

    .comparison-status i,
    .comparison-status svg {
        width: 16px;
        height: 16px;
    }
}

/* Course Feature Card (on courses.html) */
.course-feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(45, 52, 54, 0.06);
    transition: var(--transition);
    position: relative;
}

.course-feature-card-centered {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 760px;
    justify-self: center;
}

.course-card-centered {
    grid-column: 2;
}

.course-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(159, 47, 63, 0.15);
}

.course-feature-card .card-accent {
    height: 4px;
    background: var(--primary);
    transition: var(--transition);
}

.course-feature-card:hover .card-accent {
    height: 5px;
}

.course-feature-card .card-body {
    padding: 36px 28px 28px;
}

.course-feature-card .card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(159, 47, 63, 0.06);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.course-feature-card .card-badge i {
    width: 14px;
    height: 14px;
}

.course-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.course-feature-card:hover h3 {
    color: var(--primary);
}

.course-feature-card .card-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 400;
    font-size: 0.95rem;
}

.course-feature-card .card-features {
    list-style: none;
    margin-bottom: 28px;
    padding: 0;
}

.course-feature-card .card-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 400;
}

.course-feature-card .card-features li i {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.course-feature-card .card-meta {
    display: flex;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(45, 52, 54, 0.06);
    margin-bottom: 20px;
}

.course-feature-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.course-feature-card .card-meta i {
    width: 15px;
    height: 15px;
    color: var(--primary);
}

/* ====================================================================
   RESPONSIVE - Course Pages
   ==================================================================== */
@media (max-width: 992px) {
    .course-hero {
        padding: 130px 0 60px;
        min-height: auto;
    }

    .course-hero-title {
        font-size: 3rem;
    }

    .course-hero-title .thin {
        font-size: 2rem;
    }

    .course-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .course-detail-grid .sidebar {
        order: -1;
    }

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

    .courses-overview-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .course-hero {
        padding: 120px 0 50px;
    }

    .course-hero-title {
        font-size: 2.4rem;
    }

    .course-hero-title .thin {
        font-size: 1.7rem;
    }

    .course-hero-desc {
        font-size: 1.05rem;
    }

    .course-hero-chips {
        flex-direction: column;
    }

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

    .course-stat::after {
        display: none;
    }

    .course-stat {
        padding: 20px 12px;
        border-bottom: 1px solid rgba(45, 52, 54, 0.05);
    }

    .courses-overview-hero h1 {
        font-size: 2.4rem;
    }

    .courses-overview-hero p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .course-hero-title {
        font-size: 2rem;
    }

    .course-hero-title .thin {
        font-size: 1.4rem;
    }

    .course-hero .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .course-stat .stat-val {
        font-size: 1.4rem;
    }

    .courses-overview-hero {
        padding: 130px 0 70px;
    }

    .courses-overview-hero h1 {
        font-size: 2rem;
    }
}

/* Hero Fade Effect (Global - Desktop & Mobile) */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-cream) 0%, transparent 100%);
    z-index: 1;
    /* Above background, below content text (if text is z-index 2) */
    pointer-events: none;
}

/* ====================================================================
   MOBILE FIRST OVERHAUL (High-End Responsive)
   Overrides previous mobile styles to ensure premium feel
   ==================================================================== */

@media (max-width: 768px) {

    /* Base Layout & Spacing */
    .section,
    .hero,
    .cta-banner {
        padding: 60px 0;
    }

    .container {
        padding: 0 24px;
    }

    /* Typography Overhaul - Refined for Mobile */
    .editorial-title {
        font-size: 1.9rem;
        line-height: 1.15;
        text-align: center;
        margin-bottom: 16px;
    }

    .editorial-title .weight-black {
        font-size: 2.4rem;
        display: block;
        margin-top: 6px;
        line-height: 1.05;
    }

    .hero .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto 28px;
        max-width: 90%;
        padding: 0 8px;
        line-height: 1.6;
    }

    .section-title h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    /* Hero: Immersive Fullscreen Feel */
    .hero-grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: auto;
        /* Auto height for better content fit */
        padding-top: 100px;
        gap: 24px;
    }

    .hero-text::before {
        margin: 0 auto 20px;
        width: 50px;
        height: 3px;
    }

    .hero-peek-window {
        display: none;
    }

    /* Hide 3D element on mobile */
    .hero-features {
        flex-direction: column;
        gap: 14px;
    }

    .hero-bg-overlay {
        background:
            linear-gradient(135deg, rgba(159, 47, 63, 0.08) 0%, rgba(159, 47, 63, 0) 42%),
            linear-gradient(to bottom, rgba(250, 249, 247, 0.5) 0%, rgba(250, 249, 247, 0.8) 58%, rgba(250, 249, 247, 0.98) 100%);
    }

    /* Chips & CTA */
    .hero-chips {
        justify-content: center;
        gap: 8px;
        margin-bottom: 32px;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .hero-chip {
        padding: 6px 12px;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.06);
        color: var(--text-main);
        border-radius: 20px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 0 16px;
        align-items: stretch;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 14px 20px;
        min-height: 52px;
    }

    /* Courses: Vertical Stack (1 per row) */
    .card-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin: 0;
        padding: 10px 0 40px;
    }

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

    .course-feature-card {
        width: 100%;
        min-width: 0;
        margin: 0;
        box-shadow: var(--shadow-sm);
    }

    .course-feature-card:hover {
        transform: none;
    }

    /* Stats Grid: Optimised for 5 items (2-2-1 layout) */
    /* Stats Grid: Single Column for Mobile */
    .stats-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .stat-item {
        margin-bottom: 0;
        text-align: center;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: var(--radius-md);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    /* Reset 5th item specific styles */
    .stat-item:nth-child(5) {
        grid-column: auto;
        width: 100%;
        margin: 0;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 4rem;
        line-height: 1;
        margin-bottom: 0;
        display: block;
        font-weight: 800;
        color: var(--primary);
    }

    .stat-value .stat-number,
    .stat-value .stat-suffix {
        display: inline-block;
    }

    .stat-label {
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--text-muted);
    }

    /* General Grids */
    .process-grid,
    .usp-grid,
    .highlights-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .usp-item {
        padding: 30px 24px;
        text-align: center;
    }

    /* Bottom CTA & Form */
    .cta-banner {
        text-align: center;
        padding: 60px 24px;
    }

    .cta-banner h2 {
        margin-bottom: 30px;
        font-size: 1.8rem;
    }

    .cta-banner .btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .form-card {
        padding: 32px 24px;
        margin: 0 -12px;
        border-radius: var(--radius-md);
    }

    .download-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .download-bar .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero.hero-composition {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    align-items: stretch;
    padding-top: var(--header-height);
}

.hero.hero-composition .hero-bg-image video {
    transform: scale(1.03);
}

.hero.hero-composition .hero-bg-overlay {
    background: linear-gradient(to top, rgba(250, 249, 247, 0.97) 0%, rgba(250, 249, 247, 0.82) 14%, rgba(250, 249, 247, 0.28) 30%, rgba(250, 249, 247, 0) 44%);
}

.hero.hero-composition .hero-bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0 0 0 auto;
    width: min(66vw, 1080px);
    background: linear-gradient(255deg, rgba(250, 249, 247, 1) 0%, rgba(250, 249, 247, 0.98) 18%, rgba(250, 249, 247, 0.9) 34%, rgba(250, 249, 247, 0.68) 52%, rgba(250, 249, 247, 0.38) 68%, rgba(250, 249, 247, 0.12) 82%, rgba(250, 249, 247, 0) 96%);
    clip-path: polygon(100% 0, 100% 100%, 32% 100%, 8% 0);
    pointer-events: none;
}

.hero.hero-composition .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "content";
    max-width: 1380px;
    gap: 0;
    align-items: center;
    align-content: center;
    justify-items: end;
    text-align: initial;
    margin: 0 0 0 auto;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: clamp(34px, 5vh, 54px) clamp(76px, 8vw, 148px) clamp(34px, 5vh, 56px) 0;
}

.hero-content-card {
    grid-area: content;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 620px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
}

.hero-heading-panel {
    width: 100%;
    max-width: 620px;
    margin: 0 0 18px;
}

.hero-content-card::after {
    display: none;
}

.hero.hero-composition .hero-text {
    align-items: flex-start;
    text-align: right;
    width: 100%;
    max-width: 620px;
    margin: 0 0 0 auto;
}

.hero.hero-composition .hero-text::before {
    width: 84px;
    height: 4px;
    margin: 0 0 22px;
}

.hero.hero-composition .editorial-title {
    font-size: clamp(3.25rem, 5.4vw, 5rem);
    line-height: 0.92;
    margin-bottom: 18px;
    width: 100%;
    max-width: min(100%, 12.8ch);
    text-wrap: balance;
}

.hero.hero-composition .editorial-title .weight-thin {
    margin-bottom: 10px;
}

.hero.hero-composition .editorial-title .weight-black {
    font-size: clamp(3.95rem, 6.7vw, 5.85rem);
}

.hero.hero-composition .hero-subtitle {
    width: 100%;
    max-width: 36ch;
    margin: 0;
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    line-height: 1.7;
    color: var(--text-main);
}

.hero-proof-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 620px;
    margin: 0 0 28px;
}

.hero-proof-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 28px rgba(34, 34, 34, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-proof-item.hero-proof-rating {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.hero-proof-item.hero-proof-rating .google-rating-brand,
.hero-proof-item.hero-proof-rating .google-rating-stars,
.hero-proof-item.hero-proof-rating .hero-proof-meta {
    justify-content: center;
    text-align: center;
}

.hero-proof-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-proof-label,
.hero-proof-meta {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.35;
}

.hero-proof-rating .google-rating-brand {
    font-size: 0.95rem;
}

.hero-proof-rating .google-rating-stars i,
.hero-proof-rating .google-rating-stars svg {
    width: 16px;
    height: 16px;
}

.hero.hero-composition .hero-cta-group {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(190px, 0.85fr);
    gap: 12px;
    width: 100%;
    max-width: 620px;
    opacity: 1;
    animation: none;
}

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

.hero.hero-composition .hero-cta-group .btn-outline {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 1100px) {
    .hero.hero-composition .hero-bg-overlay::after {
        width: min(70vw, 820px);
    }

    .hero.hero-composition .hero-grid {
        max-width: 1180px;
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100svh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
        padding-top: 28px;
        padding-bottom: 40px;
    }

    .hero-content-card,
    .hero.hero-composition .hero-text {
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .hero.hero-composition {
        min-height: auto;
    }

    .hero.hero-composition .hero-bg-overlay {
        background: linear-gradient(180deg, rgba(18, 18, 18, 0.18) 0%, rgba(18, 18, 18, 0.08) 18%, rgba(250, 249, 247, 0.2) 42%, rgba(250, 249, 247, 0.78) 70%, rgba(250, 249, 247, 0.97) 100%);
    }

    .hero.hero-composition .hero-bg-overlay::after {
        display: none;
    }

    .hero.hero-composition .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100svh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
        align-content: end;
        justify-items: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 0 24px;
    }

    .hero-content-card {
        max-width: 100%;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .hero-heading-panel {
        width: min(100%, 416px);
        max-width: 100%;
        margin: 0 auto 18px;
        padding: 18px 16px 16px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.48) 100%);
        border: 1px solid rgba(255, 255, 255, 0.68);
        box-shadow: 0 16px 38px rgba(34, 34, 34, 0.08);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .hero.hero-composition .hero-text {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 416px;
        margin: 0 auto;
        padding-inline: 0;
    }

    .hero.hero-composition .hero-text::before {
        width: 62px;
        margin: 0 auto 14px;
    }

    .hero.hero-composition .editorial-title {
        font-size: clamp(2.5rem, 9vw, 3.2rem);
        line-height: 1.02;
        width: 100%;
        max-width: min(100%, 11.4ch);
        margin: 0 auto 10px;
        text-wrap: balance;
        text-shadow: none;
    }

    .hero.hero-composition .editorial-title br {
        display: none;
    }

    .hero.hero-composition .editorial-title .weight-black {
        font-size: clamp(2.9rem, 10vw, 3.7rem);
        display: block;
        margin: 4px 0 2px;
        line-height: 0.98;
    }

    .hero.hero-composition .hero-subtitle {
        width: 100%;
        max-width: none;
        margin: 0;
        font-size: 0.85rem;
        line-height: 1.7;
        text-align: center;
        color: rgba(34, 34, 34, 0.94);
        text-shadow: none;
        white-space: nowrap;
    }

    .hero-proof-strip {
        gap: 8px;
        width: min(100%, 416px);
        max-width: 416px;
        margin: 0 auto 18px;
        justify-content: center;
    }

    .hero-proof-item {
        width: 100%;
        min-height: 52px;
        padding: 12px 10px;
        border-radius: 16px;
        gap: 8px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.56);
    }

    .hero-proof-item.hero-proof-rating {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 14px;
    }

    .hero-proof-rating .google-rating-brand,
    .hero-proof-rating .google-rating-stars,
    .hero-proof-meta {
        width: 100%;
        justify-content: center;
    }

    .hero-proof-value {
        font-size: 1.05rem;
    }

    .hero-proof-label,
    .hero-proof-meta {
        font-size: 0.76rem;
        text-align: center;
    }

    .hero.hero-composition .hero-cta-group {
        width: 100%;
        max-width: 416px;
        grid-template-columns: 1fr;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 10px;
        margin: 0 auto;
    }

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

    .hero.hero-composition .hero-cta-group .btn-outline {
        align-self: stretch;
        padding: 14px 18px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.72);
        color: var(--text-main);
        box-shadow: 0 10px 28px rgba(34, 34, 34, 0.05);
        min-height: 54px;
    }
}

@media (max-width: 480px) {
    .editorial-title {
        font-size: 2.4rem;
    }

    .editorial-title .weight-black {
        font-size: 2.9rem;
    }

    .hero-grid {
        min-height: 80vh;
        padding-top: 80px;
    }

    .hero .hero-subtitle {
        font-size: 1.05rem;
    }

    .stat-item:nth-child(5) {
        width: 100%;
    }

    .hero.hero-composition .hero-grid {
        min-height: auto;
        gap: 0;
        padding-top: 10px;
        padding-bottom: 12px;
    }

    .hero-content-card {
        padding: 0;
        width: 100%;
    }

    .hero-heading-panel {
        width: min(100%, 404px);
        padding: 16px 14px 14px;
        border-radius: 22px;
    }

    .hero.hero-composition .editorial-title {
        font-size: clamp(2.25rem, 10vw, 2.85rem);
        max-width: min(100%, 10.8ch);
    }

    .hero.hero-composition .editorial-title .weight-black {
        font-size: clamp(2.7rem, 11.2vw, 3.25rem);
    }
}