/* ========================================
   MNKALIM ONE-PAGER STYLES
   Hebrew-first design with signature meeting cards
   ======================================== */

/* ======== ROOT VARIABLES ======== */
:root {
    /* Brand Colors - CEOS Palette */
    --mnk-red-primary: #ED1C24;
    --mnk-blue-dark: #1d1d1f; /* heading ink (legacy name kept for compatibility) */
    --mnk-blue-primary: #0071BC;
    --mnk-blue-light: #29ABE2;
    --mnk-orange: #F15A24;
    --mnk-orange-warm: #FBB03B;
    --mnk-green: #39B54A;
    --mnk-green-light: #8CC63F;

    /* Text Colors — aligned with the CEOS canonical token map */
    --mnk-text-dark: #1d1d1f;
    --mnk-text-medium: #6e6e73;
    --mnk-text-light: #86868b;
    --mnk-text-white: #FFFFFF;

    /* Background Colors — aligned with the CEOS canonical token map */
    --mnk-bg-white: #FFFFFF;
    --mnk-bg-light: #f5f5f7;
    --mnk-bg-dark: #0a0a0f;
    --mnk-action: #0071BC;
    --mnk-action-hover: #0077CC;

    /* Typography — unified sans language across CEOS sites */
    --font-display: 'Heebo', -apple-system, sans-serif;
    --font-heading: 'Heebo', -apple-system, sans-serif;
    --font-body: 'Heebo', -apple-system, sans-serif;

    /* Type Scale */
    --size-display: clamp(2.25rem, 6vw, 3.5rem);
    --size-h1: clamp(2.5rem, 6vw, 4rem);
    --size-h2: clamp(1.5rem, 3vw, 2.25rem);
    --size-h3: clamp(1.5rem, 3vw, 2rem);
    /* Content wave 2026-07-23: whole-site bump one notch (CEO request) —
       ratios preserved, the two vars lift most of the running text. */
    --size-body: clamp(1.0625rem, 2vw, 1.1875rem);
    --size-small: 0.9375rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

/* Lenis adds .lenis to <html> when active; native smooth-scroll must be
   disabled then, otherwise both engines fight and scrolling stutters. */
html.lenis {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-body);
    font-size: var(--size-body);
    line-height: 1.8;
    color: var(--mnk-text-dark);
    background-color: var(--mnk-bg-white);
    direction: rtl;
}

/* ======== TYPOGRAPHY ======== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-md);
}

strong {
    font-weight: 700;
}

/* ======== LAYOUT ======== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* ======== ANIMATIONS ======== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reveal-on-scroll: initial hidden state set in CSS (no JS inline injection)
   to avoid flash/CLS. JS only toggles .is-visible via IntersectionObserver. */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="200"] {
    transition-delay: 0.2s;
}

[data-delay="400"] {
    transition-delay: 0.4s;
}

/* Staggered entrance for cards inside grids (Wave 2 #5).
   Children start hidden and rise in once the grid container becomes visible. */
.meetings-grid .meeting-card,
.stats-grid .stat-card,
.continuation-grid .continuation-card,
.different-grid .different-item,
.results-grid .result-stat {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .meeting-card,
.is-visible .stat-card,
.is-visible .continuation-card,
.is-visible .different-item,
.is-visible .result-stat {
    opacity: 1;
    transform: translateY(0);
}

/* Per-item stagger delays */
.meetings-grid .meeting-card:nth-child(1),
.stats-grid .stat-card:nth-child(1),
.continuation-grid .continuation-card:nth-child(1),
.different-grid .different-item:nth-child(1),
.results-grid .result-stat:nth-child(1) { transition-delay: 0.05s; }
.meetings-grid .meeting-card:nth-child(2),
.stats-grid .stat-card:nth-child(2),
.continuation-grid .continuation-card:nth-child(2),
.different-grid .different-item:nth-child(2),
.results-grid .result-stat:nth-child(2) { transition-delay: 0.13s; }
.meetings-grid .meeting-card:nth-child(3),
.stats-grid .stat-card:nth-child(3),
.continuation-grid .continuation-card:nth-child(3),
.different-grid .different-item:nth-child(3),
.results-grid .result-stat:nth-child(3) { transition-delay: 0.21s; }
.meetings-grid .meeting-card:nth-child(4),
.stats-grid .stat-card:nth-child(4),
.different-grid .different-item:nth-child(4) { transition-delay: 0.29s; }

/* ======== SCROLL PROGRESS BAR (Wave 2 #6) ======== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 2000;
    background: transparent;
    pointer-events: none;
}

.scroll-progress__fill {
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--mnk-action);
    will-change: transform;
}

/* ======== TICKER/MARQUEE ======== */
/* direction:ltr pins the duplicated track to the left edge so the -50%
   translate loops seamlessly — continuous motion, items travel right→left,
   no blank gap at the seam. Item text itself still renders RTL. */
.ticker-container {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-sm) 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    direction: ltr;
}

.ticker-track {
    display: inline-block;
    animation: ticker 45s linear infinite; /* 6 items per half — scaled from 30s/4 to keep the same speed */
}

.ticker-item {
    display: inline-block;
    padding: 0 var(--spacing-lg);
    font-size: var(--size-small);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticker-divider {
    display: inline-block;
    color: var(--mnk-blue-light);
    margin: 0 var(--spacing-sm);
}

/* ======== MINIMAL HEADER ======== */
.minimal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(247, 248, 251, 0.72); /* v1 --header-bg (day) */
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);           /* v1 backdrop-blur-xl */
    border-bottom: 1px solid rgba(13, 18, 38, 0.10); /* v1 --line (day), replaces box-shadow */
    z-index: 1000;
    padding: 10px 0; /* 10 + 44 logo + 10 = 64px bar, matches v1 main-site h-16 navbar */
}

.logo-link {
    display: inline-block;
}

.header-logo {
    max-height: 44px; /* match v1.ceos.co.il main-site header logo (h-11) */
    width: auto;
    object-fit: contain;
    position: relative;
    top: 9px; /* match v1 main-site logo vertical nudge (relative top-[9px]) */
}

/* ======== HERO SECTION ======== */
.hero-section {
    background: var(--mnk-bg-dark);
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 72px; /* Account for fixed 64px header + ~8px clearance */
}

.hero-content {
    text-align: center;
    padding: var(--spacing-lg) 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    color: var(--mnk-text-white);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.035em;
    line-height: 0.88;
    text-wrap: balance;
}

.hero-tagline {
    /* הוגדל + הודגש (בקשת מנכ"ל 2026-07-23) */
    font-size: clamp(1.5rem, 3.4vw, 2.35rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

/* Info Pills */
.info-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.info-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: var(--spacing-sm) var(--spacing-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--size-small);
    color: var(--mnk-text-white);
    animation: float 3s ease-in-out infinite;
    transition: all var(--transition-normal);
}

.info-pill:nth-child(2) {
    animation-delay: 0.5s;
}

.info-pill:nth-child(3) {
    animation-delay: 1s;
}

.info-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.info-pill i {
    color: var(--mnk-blue-light);
}

.info-pill:hover i {
    color: var(--mnk-text-white);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-display);
}

.countdown-item {
    text-align: center;
    padding: 0 clamp(0.5rem, 2vw, 1.5rem);
    position: relative;
}

.countdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}

.countdown-value {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--mnk-text-white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    display: block;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-weight: 400;
    margin-top: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-separator {
    display: none;
}

/* Countdown ended state — shown after the opening date passes */
.countdown-timer.countdown-ended {
    justify-content: center;
}

.countdown-over-message {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: var(--mnk-text-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.6;
    text-align: center;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--mnk-action);
    color: var(--mnk-text-white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    position: relative;
    overflow: hidden;
}

/* Sheen retired in the clean design language */
.btn-primary::after,
.btn-whatsapp::after {
    content: none;
}

.btn-primary:hover {
    background: var(--mnk-action-hover);
    transform: translateY(-1px);
}

/* ======== VALUE SECTION ======== */
.value-section {
    background: #ffffff;
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.value-title {
    font-size: var(--size-h2);
    color: var(--mnk-blue-dark);
    margin-bottom: var(--spacing-lg);
    text-wrap: balance;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.value-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--mnk-text-medium);
}

/* Pull Quote Style */
.pull-quote {
    margin: var(--spacing-xxl) 0;
    padding: var(--spacing-xl) 0;
    position: relative;
    text-align: center;
}

.pull-quote::before,
.pull-quote::after {
    content: '';
    position: absolute;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.14), transparent);
}

.pull-quote::before {
    top: 0;
}

.pull-quote::after {
    bottom: 0;
}

.pull-quote-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--mnk-blue-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0 var(--spacing-md);
}

.pull-quote-text .highlight {
    color: var(--mnk-action);
    position: relative;
}

/* ======== INSTRUCTOR SECTION ======== */
.instructor-section {
    background: #f8f8f8;
}

.section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mnk-text-medium);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.instructor-bio {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.instructor-image {
    flex-shrink: 0;
}

.instructor-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 18%;
    border: 3px solid var(--mnk-bg-white);
    box-shadow: 0 8px 28px rgba(27, 20, 100, 0.18);
    display: block;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    background: var(--mnk-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--mnk-blue-primary);
}

.instructor-info {
    flex: 1;
}

.instructor-name {
    font-size: var(--size-h3);
    color: var(--mnk-blue-dark);
    margin-bottom: var(--spacing-md);
}

.instructor-text {
    color: var(--mnk-text-medium);
    margin-bottom: var(--spacing-md);
}

.instructor-motto {
    font-size: 1.125rem;
    color: var(--mnk-blue-dark);
}

/* ======== STATS SECTION ======== */
.stats-section {
    background: #ffffff;
    position: relative;
}

.stats-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* Dark strip for stats */
.stats-strip {
    background: var(--mnk-bg-dark);
    padding: var(--spacing-xxl) 0;
    margin: var(--spacing-xl) 0;
    position: relative;
}

.stats-strip::before,
.stats-strip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mnk-blue-light), transparent);
}

.stats-strip::before {
    top: 0;
}

.stats-strip::after {
    bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: transparent;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--mnk-text-white);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.stats-note {
    text-align: center;
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    color: var(--mnk-text-medium);
    padding: 0 var(--spacing-md);
}

/* ======== MEETINGS SECTION - SIGNATURE ELEMENT ======== */
.meetings-section {
    background: #f8f8f8;
}

.meetings-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.meetings-header .section-title {
    margin-bottom: var(--spacing-sm);
}

.meetings-subtitle {
    color: var(--mnk-text-medium);
    font-size: 1.125rem;
}

.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Clean surface card — flat, borderless, calm hover */
.meeting-card {
    background: var(--mnk-bg-light);
    border-radius: 1.5rem;
    padding: var(--spacing-lg);
    position: relative;
    box-shadow: none;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    overflow: hidden;
}

/* Spotlight retired in the clean design language */
.meeting-card::before,
.continuation-card::before {
    content: none;
}

.meeting-card > *,
.continuation-card > * {
    position: relative;
    z-index: 1;
}

.meeting-card:hover {
    transform: translateY(-3px) scale(1.006);
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.18);
}

.meeting-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--mnk-action);
}

.meeting-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--mnk-blue-dark);
    margin-bottom: var(--spacing-sm);
}

.meeting-content {
    font-size: var(--size-small);
    color: var(--mnk-text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.meeting-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mnk-text-light);
    font-weight: 600;
}

/* Stage 1 depth note — הערת העמקה אחרי 4 המפגשים (לא מפגש 5).
   Animated soft gradient frame in the brand blues; the motion is the
   slowly drifting border, in keeping with the clean design language. */
.stage-note {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(120deg,
        var(--mnk-blue-primary), var(--mnk-blue-light),
        var(--mnk-green-light), var(--mnk-blue-primary));
    background-size: 300% 300%;
    animation: stageGlow 9s ease-in-out infinite;
}

.stage-note-inner {
    background: var(--mnk-bg-white);
    border-radius: calc(1.5rem - 2px);
    padding: var(--spacing-lg) var(--spacing-xl);
    text-align: center;
}

.stage-note-inner p {
    margin: 0;
    color: var(--mnk-text-dark);
    font-size: 1.0625rem;
    line-height: 1.75;
}

@keyframes stageGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .stage-note {
        animation: none !important;
    }
}

.calibration-note {
    max-width: 800px;
    margin: 0 auto;
}

.calibration-box {
    background: var(--mnk-bg-dark);
    color: var(--mnk-text-white);
    padding: var(--spacing-xl);
    border-radius: 1.5rem;
    text-align: center;
}

.calibration-box h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--mnk-text-white);
}

.calibration-box p {
    font-size: 1.0625rem;
    opacity: 0.95;
}

/* ======== DIFFERENT SECTION ======== */
.different-section {
    background: #ffffff;
}

.different-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: var(--size-h2);
    color: var(--mnk-blue-dark);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    text-wrap: balance;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.different-item {
    background: var(--mnk-bg-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: right;
    transition: all var(--transition-normal);
    position: relative;
}

.different-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.different-item i {
    display: none;  /* Hide the icons */
}

.different-item p {
    /* היה הטקסט הקטן בעמוד - הועלה ל-1rem לקריאוּת (בקשת מנכ"ל 2026-07-23) */
    font-size: 1rem;
    color: var(--mnk-text-medium);
    line-height: 1.7;
}

.different-item p strong:first-child {
    color: var(--mnk-blue-dark);
    font-weight: 700;
    display: inline-block;
    margin-left: 0.25rem;
}

/* ======== RESULTS SECTION ======== */
.results-section {
    background: #f8f8f8;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

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

.result-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--mnk-blue-primary);
    margin-bottom: var(--spacing-sm);
}

[data-theme='night'] .result-number {
    color: var(--mnk-blue-light);
}

.result-label {
    font-size: var(--size-small);
    color: var(--mnk-text-medium);
}

/* ======== TESTIMONIAL SECTION ======== */
.testimonial-section {
    background: #ffffff;
    position: relative;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Carousel: all slides share the same grid cell; the active one is visible,
   the outgoing one fades while rising up (עמעום עולה מעלה). */
.testimonial-carousel {
    display: grid;
}

.testimonial-slide {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    pointer-events: none;
}

.testimonial-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-slide.is-leaving {
    opacity: 0;
    transform: translateY(-28px);
}

/* לוגו חברה מעל שם הממליץ (נוסף לכל slide כשיתקבלו הלוגואים) */
.testimonial-logo {
    display: block;
    height: 44px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* זוג לוגואים בסלייד אחד (שכוייח + מנגו של שמחה נוסבוים) */
.testimonial-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: var(--spacing-sm);
}

.testimonial-logos .testimonial-logo {
    height: 78px;
    margin: 0;
}

/* לוגו מנגו - שחזור טיפוגרפי (Heebo): עלים ירוקים, מילה אדומה, פס צהוב */
.testimonial-logo-mango {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.testimonial-logo-mango .mango-leaves {
    width: 42px;
    height: auto;
    margin-bottom: -3px;
}

.testimonial-logo-mango .mango-word {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.1rem;
    color: #e02418;
    letter-spacing: -0.03em;
}

.testimonial-logo-mango .mango-strip {
    background: #f4c11e;
    color: #1f8a2c;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 3px 6px 2px;
    margin-top: 3px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    align-self: stretch;
    text-align: center;
}

@media (max-width: 640px) {
    .testimonial-logos {
        gap: 24px;
    }

    .testimonial-logos .testimonial-logo {
        height: 62px;
    }

    .testimonial-logo-mango .mango-word {
        font-size: 1.7rem;
    }

    .testimonial-logo-mango .mango-leaves {
        width: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-slide {
        transition: none !important;
        transform: none !important;
    }
}

.testimonial-quote {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    right: 50%;
    transform: translateX(50%);
    font-size: clamp(8rem, 20vw, 15rem);
    color: var(--mnk-blue-light);
    opacity: 0.1;
    font-family: var(--font-display);
    line-height: 1;
    z-index: 0;
}

.testimonial-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--mnk-blue-dark);
    line-height: 1.4;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.testimonial-quote cite {
    font-style: normal;
    font-weight: 700;
    color: var(--mnk-text-medium);
    font-size: 1.125rem;
    display: block;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-quote cite::before {
    content: '-';
    margin-left: 0.5rem;
    color: var(--mnk-blue-light);
}

/* ======== CONTINUATION SECTION ======== */
.continuation-section {
    background: #f8f8f8;
}

.continuation-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--mnk-text-medium);
}

.continuation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.continuation-card {
    background: var(--mnk-bg-white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.continuation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    margin-bottom: var(--spacing-md);
}

.card-label {
    display: inline-block;
    background: var(--mnk-bg-dark);
    color: var(--mnk-text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.card-title {
    font-size: 1.5rem;
    color: var(--mnk-blue-dark);
    margin-bottom: var(--spacing-md);
}

.card-content {
    color: var(--mnk-text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.card-footer {
    color: var(--mnk-blue-dark);
    font-size: var(--size-small);
}

/* ======== PRICING SECTION ======== */
.pricing-section {
    background: var(--mnk-bg-dark);
    color: var(--mnk-text-white);
}

.pricing-section .section-title {
    color: var(--mnk-text-white);
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price-box {
    margin-bottom: var(--spacing-xl);
}

.price-amount {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--mnk-text-white);
    margin-bottom: var(--spacing-sm);
}

.price-details {
    font-size: var(--size-small);
    opacity: 0.9;
}

.price-includes {
    text-align: right;
    margin-bottom: var(--spacing-xl);
}

.price-includes h3 {
    color: var(--mnk-text-white);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.price-includes ul {
    list-style: none;
    padding: 0;
}

.price-includes li {
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1rem;
}

.price-includes i {
    color: var(--mnk-green-light);
    font-size: 1.25rem;
}

.cta-section {
    margin-top: var(--spacing-xl);
}

.cta-section h3 {
    color: var(--mnk-text-white);
    margin-bottom: var(--spacing-lg);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: #25D366;
    color: var(--mnk-text-white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    background: #1fb557;
    transform: translateY(-1px);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

.cta-note {
    margin-top: var(--spacing-md);
    font-size: var(--size-small);
    opacity: 0.8;
}

/* ======== FOOTER ======== */
.site-footer {
    background: var(--mnk-bg-dark);
    color: var(--mnk-text-white);
    padding: var(--spacing-lg) 0;
    text-align: center;
    font-size: var(--size-small);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
    .instructor-bio {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

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

    .info-pills {
        flex-direction: column;
        align-items: center;
    }

    .countdown-timer {
        flex-wrap: wrap;
    }

    .meeting-number {
        font-size: 3rem;
    }
}

/* ======== REDUCED MOTION ======== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    /* Disable all decorative/looping animations */
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    /* Reveal elements should be visible immediately, no transform */
    [data-animate],
    .meetings-grid .meeting-card,
    .stats-grid .stat-card,
    .continuation-grid .continuation-card,
    .different-grid .different-item,
    .results-grid .result-stat {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Kill ticker, pulse, float loops */
    .ticker-track,
    .btn-primary,
    .btn-whatsapp,
    .info-pill {
        animation: none !important;
    }

    /* No magnetic offset / spotlight motion */
    .btn-primary::after,
    .btn-whatsapp::after,
    .meeting-card::before,
    .continuation-card::before {
        display: none !important;
    }

    .scroll-progress {
        display: none !important;
    }
}
/* ========================================
   DAY/NIGHT THEME SYSTEM (2026-06-11)
   Default = day (the canonical light design above).
   <html data-theme="night"> = Premium Dark Executive — the negative,
   matching the v1.ceos.co.il main-site night mode (same localStorage
   key 'ceos-theme', so the preference follows the visitor across pages).
   ======================================== */

/* Header logo: the up-to-date transparent CEOS logo (colored by day,
   inverted to white with a sky glow at night). */
.header-logo {
    transition: transform 0.22s ease, filter 0.22s ease;
    filter: drop-shadow(0 2px 10px rgba(27, 20, 100, 0.18)); /* match v1 site-header-logo-img */
}

/* Logo hover lift — matches v1 main-site */
.logo-link:hover .header-logo,
.logo-link:focus-visible .header-logo {
    transform: translateY(-1px) scale(1.03);
    filter: drop-shadow(0 4px 16px rgba(0, 113, 188, 0.35));
}

/* Header layout: logo right (RTL), theme toggle left. */
.minimal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem;        /* v1 max-w-7xl = 1280px */
    padding-left: 1rem;      /* v1 px-4 (base) */
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .minimal-header .container { padding-left: 1.5rem; padding-right: 1.5rem; } /* v1 sm:px-6 */
}
@media (min-width: 1024px) {
    .minimal-header .container { padding-left: 2rem; padding-right: 2rem; }     /* v1 lg:px-8 */
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(13, 18, 38, 0.12);
    background: rgba(255, 255, 255, 0.66);
    color: var(--mnk-text-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.theme-toggle:hover {
    color: var(--mnk-action);
    border-color: rgba(0, 113, 188, 0.35);
    box-shadow: 0 0 18px -4px rgba(0, 113, 188, 0.35);
}

.theme-toggle:focus-visible {
    outline: 2px solid var(--mnk-blue-light);
    outline-offset: 2px;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s ease, opacity 0.4s ease;
    position: absolute;
}

.theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme='night'] .theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme='night'] .theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

/* ---- Night token flip ---- */
[data-theme='night'] {
    --mnk-text-dark: #f5f6f8;
    --mnk-text-medium: rgba(235, 240, 255, 0.68);
    --mnk-text-light: rgba(235, 240, 255, 0.46);
    --mnk-blue-dark: #f5f6f8;       /* heading ink */
    --mnk-bg-white: #06070c;
    --mnk-bg-light: rgba(255, 255, 255, 0.05);
    --mnk-action-hover: #29ABE2;
}

/* Sections with hardcoded light backgrounds → graphite alternation */
[data-theme='night'] .value-section,
[data-theme='night'] .stats-section,
[data-theme='night'] .different-section,
[data-theme='night'] .testimonial-section {
    background: #06070c;
}

[data-theme='night'] .instructor-section,
[data-theme='night'] .meetings-section,
[data-theme='night'] .results-section,
[data-theme='night'] .continuation-section {
    background: #0a0d14;
}

/* Glass header */
[data-theme='night'] .minimal-header {
    background: rgba(6, 7, 12, 0.60);  /* v1 --header-bg (night) */
    border-bottom: 1px solid rgba(255, 255, 255, 0.10); /* v1 --line (night), no shadow */
}

[data-theme='night'] .header-logo {
    filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(41, 171, 226, 0.30));
}

[data-theme='night'] .logo-link:hover .header-logo,
[data-theme='night'] .logo-link:focus-visible .header-logo {
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(41, 171, 226, 0.55));
}

[data-theme='night'] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(235, 240, 255, 0.68);
}

[data-theme='night'] .theme-toggle:hover {
    color: #29ABE2;
    border-color: rgba(41, 171, 226, 0.4);
    box-shadow: 0 0 18px -4px rgba(41, 171, 226, 0.45);
}

/* Cards → kinetic glass: translucent, blurred, crisp hairline border,
   glow on hover instead of plain shadow. */
[data-theme='night'] .meeting-card,
[data-theme='night'] .different-item,
[data-theme='night'] .continuation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.65);
}

[data-theme='night'] .meeting-card:hover,
[data-theme='night'] .different-item:hover,
[data-theme='night'] .continuation-card:hover {
    border-color: rgba(41, 171, 226, 0.35);
    box-shadow: 0 22px 48px -22px rgba(0, 0, 0, 0.7),
                0 0 28px -6px rgba(41, 171, 226, 0.25);
}

[data-theme='night'] .section-kicker {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

[data-theme='night'] .instructor-photo {
    box-shadow: 0 8px 28px rgba(41, 171, 226, 0.22);
}

/* Calibration box: dark-on-dark → give it the glass treatment too */
[data-theme='night'] .calibration-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(41, 171, 226, 0.25);
}

/* CTA glow — the one accent allowed to truly shine at night */
[data-theme='night'] .btn-primary {
    box-shadow: 0 0 24px rgba(41, 171, 226, 0.35);
}

[data-theme='night'] .btn-primary:hover {
    box-shadow: 0 0 36px rgba(41, 171, 226, 0.55);
}

/* Respect reduced motion (matches the file's existing approach) */
@media (prefers-reduced-motion: reduce) {
    body,
    .section,
    .minimal-header,
    .meeting-card,
    .different-item,
    .continuation-card,
    .calibration-box,
    .theme-toggle svg {
        transition: none !important;
    }
}

/* ===== Same-world polish: themed selection + scrollbar (2026-06-11) ===== */
::selection {
    background: rgba(0, 113, 188, 0.22);
    color: var(--mnk-text-dark);
}

[data-theme='night'] ::selection {
    background: rgba(41, 171, 226, 0.32);
}

html {
    scrollbar-color: rgba(0, 113, 188, 0.45) transparent;
}

[data-theme='night'] {
    scrollbar-color: rgba(41, 171, 226, 0.4) rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
    background-color: rgba(0, 113, 188, 0.45);
}

[data-theme='night'] ::-webkit-scrollbar-thumb {
    background-color: rgba(41, 171, 226, 0.4);
}

/* ========================================
   DAY = TRULY LIGHT (2026-06-11)
   In day mode no section stays white-on-black: hero, ticker, stats strip,
   calibration, pricing and footer all flip to paper surfaces with ink text
   and brand-blue accents. Night keeps the original dark styling.
   ======================================== */

:root:not([data-theme='night']) .hero-section {
    background:
        radial-gradient(70% 55% at 75% 10%, rgba(41, 171, 226, 0.10), transparent 60%),
        radial-gradient(50% 45% at 15% 85%, rgba(27, 20, 100, 0.07), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #eef3fa 100%);
}

:root:not([data-theme='night']) .hero-eyebrow {
    color: var(--mnk-text-medium);
}

:root:not([data-theme='night']) .hero-title {
    color: #1d1d1f;
}

:root:not([data-theme='night']) .hero-tagline {
    color: rgba(29, 29, 31, 0.72);
}

:root:not([data-theme='night']) .ticker-container {
    background: rgba(13, 18, 38, 0.05);
    color: rgba(29, 29, 31, 0.75);
}

:root:not([data-theme='night']) .info-pill {
    background: #ffffff;
    border-color: rgba(13, 18, 38, 0.12);
    color: var(--mnk-text-dark);
    box-shadow: 0 6px 18px -10px rgba(27, 20, 100, 0.18);
}

:root:not([data-theme='night']) .info-pill:hover {
    background: #ffffff;
    border-color: rgba(0, 113, 188, 0.35);
}

:root:not([data-theme='night']) .info-pill i {
    color: var(--mnk-action);
}

:root:not([data-theme='night']) .info-pill:hover i {
    color: var(--mnk-blue-light);
}

:root:not([data-theme='night']) .countdown-value {
    color: #1B1464;
}

:root:not([data-theme='night']) .countdown-label {
    color: var(--mnk-text-medium);
}

:root:not([data-theme='night']) .countdown-item:not(:last-child)::after {
    background: rgba(13, 18, 38, 0.15);
}

:root:not([data-theme='night']) .countdown-over-message {
    border-color: rgba(13, 18, 38, 0.15);
    background: #ffffff;
    color: var(--mnk-text-dark);
}

:root:not([data-theme='night']) .stats-strip {
    background: #eef3fa;
}

:root:not([data-theme='night']) .stats-strip .stat-number {
    color: var(--mnk-action);
}

:root:not([data-theme='night']) .stats-strip .stat-label {
    color: var(--mnk-text-medium);
}

:root:not([data-theme='night']) .calibration-box {
    background: #ffffff;
    border: 1px solid rgba(13, 18, 38, 0.10);
    color: var(--mnk-text-dark);
    box-shadow: 0 14px 36px -20px rgba(27, 20, 100, 0.22);
}

/* the base h4 is white (dark-box design) — flip to ink on the day paper box */
:root:not([data-theme='night']) .calibration-box h4 {
    color: #1d1d1f;
}

:root:not([data-theme='night']) .pricing-section {
    background: #f5f7fb;
    color: var(--mnk-text-dark);
}

:root:not([data-theme='night']) .pricing-section .section-title,
:root:not([data-theme='night']) .price-includes h3,
:root:not([data-theme='night']) .cta-section h3 {
    color: #1d1d1f;
}

:root:not([data-theme='night']) .price-amount {
    color: var(--mnk-action);
}

:root:not([data-theme='night']) .price-includes i {
    color: var(--mnk-green);
}

:root:not([data-theme='night']) .site-footer {
    background: #f5f5f7;
    color: var(--mnk-text-medium);
}

/* ========================================
   MOBILE POLISH (2026-06-11) — tighter type scale, comfortable spacing,
   full-width CTAs, no odd countdown dividers when items wrap.
   ======================================== */
@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero-section {
        padding-top: 88px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.9rem, 15vw, 4.5rem);
    }

    .info-pill {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        animation: none; /* the float loop reads as jitter on small screens */
    }

    .ticker-item {
        padding: 0 var(--spacing-md);
    }

    .header-logo {
        max-height: 44px; /* match v1 — logo is 44px at all breakpoints */
    }

    .meeting-card,
    .continuation-card,
    .different-item {
        padding: var(--spacing-md);
    }

    .instructor-photo {
        width: 140px;
        height: 140px;
    }

    .pull-quote-text {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .testimonial-quote p {
        font-size: clamp(1.2rem, 5.5vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 0 0.4rem;
    }

    .countdown-item:not(:last-child)::after {
        display: none; /* dividers misalign once items wrap */
    }

    .countdown-value {
        font-size: clamp(2rem, 11vw, 2.6rem);
    }

    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        min-height: 48px;
    }

    .price-includes li {
        align-items: flex-start;
        font-size: 0.95rem;
    }

    .stats-grid {
        gap: var(--spacing-md);
    }
}

/* ============================================================
   Registration form (הרשמה למסלול) — added 2026-07-02.
   Self-contained card: explicit light surface so it reads well on the
   day (#f5f7fb) pricing background; night override below.
   ============================================================ */
.register-section {
    margin-top: var(--spacing-xl);
    background: #ffffff;
    border: 1px solid rgba(0, 113, 188, 0.22);
    border-radius: 18px;
    padding: var(--spacing-xl);
    text-align: right;
    box-shadow: 0 18px 44px rgba(29, 29, 31, 0.10);
}

.register-section h3 {
    color: var(--mnk-text-dark);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.register-sub {
    color: var(--mnk-text-medium);
    font-size: var(--size-small);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.register-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.register-field {
    margin-bottom: var(--spacing-md);
}

.register-field label {
    display: block;
    color: var(--mnk-text-dark);
    font-weight: 600;
    font-size: var(--size-small);
    margin-bottom: 6px;
}

.register-field input,
.register-field textarea {
    width: 100%;
    border: 1px solid #c9dcee;
    background: #fbfdff;
    border-radius: 12px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--mnk-text-dark);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.register-field input:focus,
.register-field textarea:focus {
    outline: none;
    border-color: var(--mnk-blue-primary);
    box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.15);
}

/* honeypot — מוסתר מבני אדם */
.register-hp {
    /* clip במקום left:-9999px: ב-RTL היסט שמאלי מרחיב את רוחב הגלילה
       של הדף (עמוד הוובינר נמתח ל-11,000px+) */
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    opacity: 0;
    pointer-events: none;
}

.btn-register {
    display: inline-block;
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, var(--mnk-blue-primary), var(--mnk-blue-light));
    color: var(--mnk-text-white);
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    transition: transform var(--transition-fast), filter var(--transition-fast);
    box-shadow: 0 10px 26px rgba(0, 113, 188, 0.25);
}

.btn-register:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.btn-register:focus-visible {
    outline: 3px solid var(--mnk-blue-light);
    outline-offset: 3px;
}

.btn-register[disabled] {
    opacity: 0.6;
    cursor: default;
    transform: none;
}

.register-status {
    min-height: 1.4em;
    margin-top: var(--spacing-md);
    font-weight: 600;
    text-align: center;
    font-size: var(--size-small);
}

.register-status.ok { color: #1e7e43; }
.register-status.err { color: var(--mnk-red-primary); }

@media (max-width: 640px) {
    .register-row { grid-template-columns: 1fr; gap: 0; }
    .register-section { padding: var(--spacing-lg); }
}

/* Night theme — dark glass card, same accent behavior as the rest of the page */
[data-theme='night'] .register-section {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(41, 171, 226, 0.25);
    box-shadow: none;
}

[data-theme='night'] .register-section h3,
[data-theme='night'] .register-field label {
    color: var(--mnk-text-white);
}

[data-theme='night'] .register-sub {
    color: rgba(235, 240, 255, 0.68);
}

[data-theme='night'] .register-field input,
[data-theme='night'] .register-field textarea {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--mnk-text-white);
}

[data-theme='night'] .register-status.ok { color: #7fd8a4; }

/* ============================================================
   Content wave 2026-07-12 — hero subline, STAGE 1 eyebrow,
   community-discount note, email CTA, footer fine print.
   ============================================================ */
.hero-subline {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
}

:root:not([data-theme='night']) .hero-subline {
    color: rgba(29, 29, 31, 0.62);
}

.stage-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mnk-action);
    border: 1px solid rgba(0, 113, 188, 0.35);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    margin-bottom: var(--spacing-md);
}

.price-community {
    margin-top: var(--spacing-sm);
    font-size: var(--size-small);
    font-weight: 600;
    color: var(--mnk-green-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.btn-email {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--mnk-action);
    color: var(--mnk-text-white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-email:hover {
    background: var(--mnk-action-hover);
    transform: translateY(-1px);
}

.btn-email i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .btn-email {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        min-height: 48px;
    }
}

.footer-fineprint {
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
    font-size: 0.72rem;
    line-height: 1.7;
    opacity: 0.55;
}

/* Faded BETA tag, dead-center in the fixed header (absolute so the
   logo/toggle flex layout is untouched). */
.minimal-header .container {
    position: relative;
}

.header-beta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(29, 29, 31, 0.38);
    white-space: nowrap;
    pointer-events: none;
}

[data-theme='night'] .header-beta {
    color: rgba(235, 240, 255, 0.35);
}

/* Narrow screens: dead-center puts the tag under the 204px logo (RTL right
   side), so anchor it inside the free gap between the theme toggle and the
   logo instead (toggle ends ~56px, logo starts at 100% - 220px). */
@media (max-width: 600px) {
    .header-beta {
        left: auto;
        right: 244px;
        transform: translateY(-50%);
        font-size: 0.6rem;
        letter-spacing: 0.04em;
    }
}

/* ============================================================
   Full-site footer panel (mirror of v1.ceos.co.il/site footer,
   2026-07-12). Day = paper panel, night = deep graphite.
   ============================================================ */
.mnk-footer {
    background: #e9edf4;
    border-top: 1px solid rgba(13, 18, 38, 0.10);
    color: rgba(29, 29, 31, 0.75);
    padding: 0 0 var(--spacing-lg); /* slogan strip sits flush at the top */
    font-size: 0.875rem;
    line-height: 1.5;
}

.mnk-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg) var(--spacing-xl);
}

.mnk-footer h2 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 0.85rem;
    color: var(--mnk-text-dark);
}

.mnk-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mnk-footer li {
    margin-bottom: 0.5rem;
}

.mnk-footer a {
    color: rgba(29, 29, 31, 0.75);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.mnk-footer a:hover {
    color: var(--mnk-action);
}

.mnk-footer-brand p {
    max-width: 24rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(29, 29, 31, 0.6);
    margin: 0.75rem 0 1rem;
}

.mnk-footer-logo {
    max-height: 39px;
    width: auto;
    object-fit: contain;
}

.mnk-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to left, #0071BC, #29ABE2);
    color: #ffffff !important;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 0 18px rgba(41, 171, 226, 0.3);
    transition: filter var(--transition-fast);
}

.mnk-footer-cta:hover {
    filter: brightness(1.1);
    color: #ffffff;
}

.mnk-footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mnk-footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 9999px;
    border: 1px solid rgba(13, 18, 38, 0.12);
    background: rgba(13, 18, 38, 0.04);
    color: rgba(29, 29, 31, 0.75);
    font-size: 1.25rem;
    transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}

.mnk-footer-icon:hover {
    color: var(--mnk-action);
    border-color: rgba(0, 113, 188, 0.35);
    background: rgba(0, 113, 188, 0.08);
    transform: translateY(-3px);
}

.mnk-footer-bottom {
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(13, 18, 38, 0.10);
    padding-top: var(--spacing-md);
    text-align: center;
}

.mnk-footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: rgba(29, 29, 31, 0.55);
}

.mnk-footer .footer-fineprint {
    color: rgba(29, 29, 31, 0.45);
    opacity: 1;
}

/* Night theme */
[data-theme='night'] .mnk-footer {
    background: #0c1019;
    border-top-color: rgba(255, 255, 255, 0.10);
    color: rgba(235, 240, 255, 0.68);
}

[data-theme='night'] .mnk-footer h2 {
    color: #f5f6f8;
}

[data-theme='night'] .mnk-footer a {
    color: rgba(235, 240, 255, 0.68);
}

[data-theme='night'] .mnk-footer a:hover {
    color: #29ABE2;
}

[data-theme='night'] .mnk-footer-brand p,
[data-theme='night'] .mnk-footer-bottom p {
    color: rgba(235, 240, 255, 0.46);
}

[data-theme='night'] .mnk-footer .footer-fineprint {
    color: rgba(235, 240, 255, 0.38);
}

[data-theme='night'] .mnk-footer-logo {
    filter: brightness(0) invert(1);
}

[data-theme='night'] .mnk-footer-icon {
    border-color: rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(235, 240, 255, 0.68);
}

[data-theme='night'] .mnk-footer-icon:hover {
    color: #29ABE2;
    border-color: rgba(41, 171, 226, 0.45);
    background: rgba(41, 171, 226, 0.10);
}

[data-theme='night'] .mnk-footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.10);
}

/* ── Running-slogan strip above the footer panel (mirror of /site) ── */
.mnk-slogan-strip {
    position: relative;
    overflow: hidden;
    padding-block: 0.75rem;
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(90deg, rgba(0, 113, 188, 0.10), rgba(41, 171, 226, 0.10));
    border-block: 1px solid rgba(13, 18, 38, 0.10);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mnk-slogan-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: mnk-slogan-scroll 38s linear infinite;
}

.mnk-slogan-item {
    display: inline-flex;
    align-items: center;
    gap: 1.6rem;
    padding-inline: 0.4rem;
}

.mnk-slogan-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(29, 29, 31, 0.72);
}

.mnk-slogan-sep {
    color: var(--mnk-action);
    font-size: 0.7rem;
}

.mnk-slogan-strip:hover .mnk-slogan-track {
    animation-play-state: paused;
}

@keyframes mnk-slogan-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .mnk-slogan-track { animation: none; }
}

.mnk-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Social networks group (disabled until real profile URLs land) + share */
.mnk-footer-social--networks {
    margin-bottom: var(--spacing-md);
}

.mnk-footer-icon--disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Copyright: centered on mobile, right-aligned on desktop like /site */
@media (min-width: 768px) {
    .mnk-footer-bottom,
    .mnk-footer-bottom .footer-fineprint {
        text-align: right;
    }
}

[data-theme='night'] .mnk-slogan-strip {
    border-block-color: rgba(255, 255, 255, 0.10);
}

[data-theme='night'] .mnk-slogan-text {
    color: rgba(235, 240, 255, 0.68);
}

[data-theme='night'] .mnk-slogan-sep {
    color: #29ABE2;
}

/* ============================================================
   Content wave 2026-07-23 — CEO feedback round:
   hero STAGE eyebrow, option-C bullet list, syllabus button
   + modal. (Type-scale bump edited in the :root vars above.)
   ============================================================ */

/* STAGE 1 eyebrow inside the hero — orbiting gold ring, same gold language
   as the V3 CEO personal area (#C8941F / #ffe9b0, pa-emblem glow). */
.hero-stage {
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-bottom: var(--spacing-md);
    color: #a97a12;
    border-color: rgba(200, 148, 31, 0.35);
    animation: hero-stage-glow 4.5s ease-in-out infinite;
}

/* the traveling gold segment: an oversized square rotating behind the pill */
.hero-stage::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 240%;
    aspect-ratio: 1;
    z-index: -2;
    background: conic-gradient(
        transparent 0deg 240deg,
        #C8941F 280deg,
        #ffe9b0 310deg,
        #C8941F 340deg,
        transparent 360deg
    );
    animation: hero-stage-orbit 3.2s linear infinite;
}

/* inner fill that leaves only a 1.5px ring of the gradient visible */
.hero-stage::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: inherit;
    z-index: -1;
    background: rgba(255, 255, 255, 0.93);
}

@keyframes hero-stage-orbit {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hero-stage-glow {
    0%, 100% { box-shadow: 0 0 14px rgba(200, 148, 31, 0.18); }
    50% { box-shadow: 0 0 26px rgba(200, 148, 31, 0.38); }
}

.hero-stage::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

[data-theme='night'] .hero-stage {
    color: #ffe9b0;
    border-color: rgba(255, 233, 176, 0.30);
}

[data-theme='night'] .hero-stage::after {
    background: rgba(10, 10, 15, 0.92);
}

@media (prefers-reduced-motion: reduce) {
    .hero-stage { animation: none; }
    /* no orbit — fall back to a static gold border */
    .hero-stage::before { display: none; }
    .hero-stage { border-color: #C8941F; }
}

/* Option C — joining options as bullets */
.card-list-intro {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--mnk-text-dark);
}

.card-list {
    list-style: none;
    margin: 0 0 var(--spacing-sm);
    padding: 0;
}

.card-list li {
    position: relative;
    padding-right: 1.25rem;
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.card-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.62em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--mnk-action);
}

[data-theme='night'] .card-list-intro {
    color: #f5f5f7;
}

/* Syllabus CTA - sits directly under the 4-meetings grid (Motty 2026-08-20) */
.syllabus-cta {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.btn-syllabus {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--mnk-action);
    background: transparent;
    border: 1.5px solid rgba(0, 113, 188, 0.45);
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-syllabus:hover {
    background: var(--mnk-action);
    border-color: var(--mnk-action);
    color: #fff;
    transform: translateY(-2px);
}

[data-theme='night'] .btn-syllabus {
    color: #7fc4ff;
    border-color: rgba(127, 196, 255, 0.45);
}

[data-theme='night'] .btn-syllabus:hover {
    background: #29ABE2;
    border-color: #29ABE2;
    color: #06121f;
}

/* Syllabus modal */
/* חובה: display:flex למטה גובר על [hidden] של הדפדפן - בלי הכלל הזה
   ה-overlay השקוף מכסה את כל הדף ובולע קליקים (באג כפתור הלילה 2026-07-23) */
.syllabus-overlay[hidden] {
    display: none !important;
}

.syllabus-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(10, 10, 15, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.syllabus-overlay.is-open {
    opacity: 1;
}

.syllabus-dialog {
    position: relative;
    max-width: 640px;
    width: 100%;
    max-height: 86vh;
    overflow-y: auto;
    background: var(--mnk-bg-white);
    color: var(--mnk-text-dark);
    border-radius: 1.25rem;
    padding: var(--spacing-xl);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(14px);
    transition: transform 0.25s ease;
}

.syllabus-overlay.is-open .syllabus-dialog {
    transform: translateY(0);
}

.syllabus-close {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    width: 2.4rem;
    height: 2.4rem;
    border: none;
    border-radius: 50%;
    background: var(--mnk-bg-light);
    color: var(--mnk-text-dark);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.syllabus-close:hover {
    background: #e2e2e6;
}

.syllabus-head h3 {
    font-size: 1.6rem;
    margin: 0.75rem 0 0.25rem;
}

.syllabus-sub {
    color: var(--mnk-text-medium);
    font-size: var(--size-small);
    margin-bottom: var(--spacing-md);
}

.syllabus-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.syllabus-list > li {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.syllabus-list h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--mnk-blue-dark);
}

.syllabus-list p,
.syllabus-note,
.syllabus-final p {
    font-size: 0.9375rem;
    color: var(--mnk-text-medium);
    line-height: 1.7;
}

.syllabus-note {
    margin: var(--spacing-sm) 0 var(--spacing-md);
}

.syllabus-final {
    background: var(--mnk-bg-light);
    border-radius: 0.9rem;
    padding: var(--spacing-md);
}

.syllabus-final h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

[data-theme='night'] .syllabus-dialog {
    background: #14141b;
    color: #f5f5f7;
}

[data-theme='night'] .syllabus-close {
    background: rgba(255, 255, 255, 0.08);
    color: #f5f5f7;
}

[data-theme='night'] .syllabus-list > li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme='night'] .syllabus-list h4,
[data-theme='night'] .syllabus-final h4 {
    color: #f5f5f7;
}

[data-theme='night'] .syllabus-final {
    background: rgba(255, 255, 255, 0.05);
}

@media (prefers-reduced-motion: reduce) {
    .syllabus-overlay,
    .syllabus-dialog {
        transition: none;
    }
}

/* ============================================================
   2026-07-23b — short survey quotes strip under the carousel
   ============================================================ */
.testimonial-shorts {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(29, 29, 31, 0.08);
    text-align: center;
}

.testimonial-shorts-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--mnk-text-medium);
    margin-bottom: var(--spacing-md);
}

.testimonial-shorts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 0.75rem;
}

.testimonial-shorts-list li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--mnk-text-medium);
    background: var(--mnk-bg-light);
    border: 1px solid rgba(29, 29, 31, 0.06);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
}

[data-theme='night'] .testimonial-shorts {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme='night'] .testimonial-shorts-title {
    color: rgba(235, 240, 255, 0.6);
}

[data-theme='night'] .testimonial-shorts-list li {
    color: rgba(235, 240, 255, 0.75);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.09);
}

/* ============================================================
   2026-07-23c — carousel arrows + hover-pause, logo chips,
   webinar CTA button + registration page
   ============================================================ */

/* hero CTA row: main registration + webinar */
.hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.btn-webinar {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 113, 188, 0.45);
    color: var(--mnk-action);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.6);
}

.btn-webinar:hover {
    background: var(--mnk-action);
    border-color: var(--mnk-action);
    color: #fff;
    transform: translateY(-2px);
}

[data-theme='night'] .btn-webinar {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(127, 196, 255, 0.4);
    color: #7fc4ff;
}

[data-theme='night'] .btn-webinar:hover {
    background: #29ABE2;
    border-color: #29ABE2;
    color: #06121f;
}

/* carousel prev/next arrows */
.testimonial-content {
    position: relative;
}

.testimonial-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(29, 29, 31, 0.12);
    background: #fff;
    color: var(--mnk-text-medium);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.testimonial-nav:hover {
    background: var(--mnk-action);
    border-color: var(--mnk-action);
    color: #fff;
}

.testimonial-nav--prev { right: -10px; }
.testimonial-nav--next { left: -10px; }

@media (max-width: 700px) {
    .testimonial-nav { width: 38px; height: 38px; }
    .testimonial-nav--prev { right: -4px; }
    .testimonial-nav--next { left: -4px; }
}

[data-theme='night'] .testimonial-nav {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(235, 240, 255, 0.8);
}

[data-theme='night'] .testimonial-nav:hover {
    background: #29ABE2;
    border-color: #29ABE2;
    color: #06121f;
}

/* backwards navigation exit (slide falls down) */
.testimonial-slide.is-leaving-down {
    opacity: 0;
    transform: translateY(28px);
}

/* logos: white chip at night so any logo variant stays readable */
[data-theme='night'] .testimonial-logo {
    background: #fff;
    padding: 6px 10px;
    border-radius: 10px;
}

/* logo drawn in white/orange (יונתן יחיאל) - permanent dark chip */
.testimonial-logo--dark-chip,
[data-theme='night'] .testimonial-logo--dark-chip {
    background: #101423;
    padding: 8px 14px;
    border-radius: 12px;
    height: 64px;
}

.testimonial-logo {
    margin-bottom: var(--spacing-sm);
    /* 44px היה קטן מדי ללוגואים מפורטים (מוסך משמר השרון) */
    height: 72px;
}

/* ---------- webinar registration page ---------- */
.webinar-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(55% 38% at 50% 0%, rgba(0, 113, 188, 0.06), transparent 65%),
        var(--mnk-bg-light);
}

.webinar-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 1.25rem 3rem;
}

.webinar-card {
    position: relative;
    max-width: 560px;
    width: 100%;
    background: var(--mnk-bg-white);
    border-radius: 1.5rem;
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: 0 18px 60px rgba(31, 38, 90, 0.10);
}

.webinar-title {
    font-size: clamp(1.7rem, 4.5vw, 2.4rem);
    color: var(--mnk-blue-dark);
    margin-bottom: var(--spacing-xs);
}

.webinar-sub {
    color: var(--mnk-text-medium);
    margin-bottom: var(--spacing-md);
}

.webinar-when {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: var(--spacing-lg);
}

.webinar-when-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--mnk-action);
    background: rgba(0, 113, 188, 0.08);
    border: 1px solid rgba(0, 113, 188, 0.25);
}

.webinar-form-title {
    font-size: 1.25rem;
    color: var(--mnk-blue-dark);
    margin-bottom: 0.25rem;
}

.webinar-form-sub {
    font-size: var(--size-small);
    color: var(--mnk-text-medium);
    margin-bottom: var(--spacing-md);
}

.webinar-card .register-form {
    text-align: right;
}

.webinar-optout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.4rem 0 1rem;
    font-size: var(--size-small);
    color: var(--mnk-text-medium);
    cursor: pointer;
}

.webinar-optout input {
    width: 16px;
    height: 16px;
    accent-color: var(--mnk-action);
}

.webinar-back {
    display: inline-block;
    margin-top: var(--spacing-md);
    font-size: var(--size-small);
    color: var(--mnk-text-medium);
    text-decoration: none;
}

.webinar-back:hover { color: var(--mnk-action); }

.webinar-footer {
    text-align: center;
    padding: var(--spacing-md);
    font-size: 0.8125rem;
    color: rgba(29, 29, 31, 0.5);
}

[data-theme='night'] .webinar-body {
    background:
        radial-gradient(55% 38% at 50% 0%, rgba(41, 171, 226, 0.08), transparent 65%),
        #0a0a0f;
}

[data-theme='night'] .webinar-card {
    background: #14141b;
}

[data-theme='night'] .webinar-title,
[data-theme='night'] .webinar-form-title {
    color: #f5f5f7;
}

[data-theme='night'] .webinar-footer {
    color: rgba(235, 240, 255, 0.4);
}

/* webinar minimal footer links */
.webinar-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.4rem;
}

.webinar-footer-links a {
    color: rgba(29, 29, 31, 0.55);
    text-decoration: none;
    font-size: 0.8125rem;
}

.webinar-footer-links a:hover { color: var(--mnk-action); }

[data-theme='night'] .webinar-footer-links a { color: rgba(235, 240, 255, 0.5); }

/* add-to-calendar row on the webinar page */
.webinar-cal {
    margin-bottom: var(--spacing-lg);
}

.webinar-cal-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--mnk-text-medium);
    margin-bottom: 0.5rem;
}

.webinar-cal-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.webinar-cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mnk-text-dark);
    background: var(--mnk-bg-light);
    border: 1px solid rgba(29, 29, 31, 0.12);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.webinar-cal-btn:hover {
    background: var(--mnk-action);
    border-color: var(--mnk-action);
    color: #fff;
}

[data-theme='night'] .webinar-cal-btn {
    color: #f5f5f7;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

[data-theme='night'] .webinar-cal-btn:hover {
    background: #29ABE2;
    border-color: #29ABE2;
    color: #06121f;
}

/* ============================================================
   2026-07-23d — webinar deal CTA: two-line button, shine sweep,
   breathing glow + deal note on the registration page
   ============================================================ */
.btn-webinar--deal {
    position: relative;
    overflow: hidden;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.8rem 1.8rem 0.7rem;
    animation: webinar-glow 3.2s ease-in-out infinite;
}

.btn-webinar-main {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.btn-webinar-deal {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2e9c35;
}

.btn-webinar--deal:hover .btn-webinar-deal {
    color: #d9f7de;
}

/* הבזק אור שחולף על הכפתור - כמו פס הזהב באזור האישי */
.btn-webinar--deal::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-130%);
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
    animation: webinar-shine 3.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes webinar-shine {
    0% { transform: translateX(-130%); }
    45%, 100% { transform: translateX(130%); }
}

@keyframes webinar-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 113, 188, 0.0); }
    50% { box-shadow: 0 0 22px 2px rgba(0, 113, 188, 0.35); }
}

[data-theme='night'] .btn-webinar--deal .btn-webinar-deal {
    color: #8CC63F;
}

[data-theme='night'] .btn-webinar--deal:hover .btn-webinar-deal {
    color: #06121f;
}

@media (prefers-reduced-motion: reduce) {
    .btn-webinar--deal { animation: none; }
    .btn-webinar--deal::after { display: none; }
}

/* שורת ההטבה בעמוד ההרשמה */
.webinar-deal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1d7a28;
    background: rgba(57, 181, 74, 0.1);
    border: 1px solid rgba(57, 181, 74, 0.3);
}

[data-theme='night'] .webinar-deal {
    color: #8CC63F;
    background: rgba(140, 198, 63, 0.08);
    border-color: rgba(140, 198, 63, 0.3);
}

/* full syllabus modal content (2026-07-23 official syllabus) */
.syllabus-intro {
    font-size: 0.9375rem;
    color: var(--mnk-text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.syllabus-macro {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mnk-action);
    margin: 0.15rem 0 0.5rem;
}

.syllabus-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.syllabus-details li {
    position: relative;
    padding-right: 1.1rem;
    font-size: 0.9375rem;
    color: var(--mnk-text-medium);
    line-height: 1.65;
    margin-bottom: 0.2rem;
}

.syllabus-details li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.62em;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: rgba(0, 113, 188, 0.45);
}

.syllabus-logistics {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) 0 0;
    border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.syllabus-logistics li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 0.9375rem;
    color: var(--mnk-text-medium);
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

.syllabus-logistics i {
    color: var(--mnk-action);
    font-size: 0.85rem;
    flex-shrink: 0;
}

[data-theme='night'] .syllabus-macro { color: #7fc4ff; }
[data-theme='night'] .syllabus-logistics { border-top-color: rgba(255, 255, 255, 0.1); }
[data-theme='night'] .syllabus-logistics i { color: #7fc4ff; }


/* Latin brand tag next to the first Hebrew mention (MANKALIM / METHOD) */
.latin-tag {
    direction: ltr;
    unicode-bidi: isolate;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.08em;
    opacity: 0.68;
}

.hero-eyebrow .latin-tag {
    font-size: 1em;
}

.hero-tagline .latin-tag {
    font-size: 0.6em;
    vertical-align: 0.18em;
}

/* Syllabus modal - selling copy (2026-08-20): outcome line per meeting + closing CTA */
.syllabus-take {
    margin: 0.55rem 0 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--mnk-text-dark);
    line-height: 1.6;
}

.syllabus-close-cta {
    margin-top: var(--spacing-md);
    text-align: center;
}

.syllabus-close-cta .btn-primary {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
}

[data-theme='night'] .syllabus-take {
    color: #f5f5f7;
}
