:root {

    --bg-dark: #0B1120;

    --bg-alt: #162032;



    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-card-hover: rgba(51, 65, 85, 0.8);


    --text-primary: #F1F5F9;

    --text-secondary: #94A3B8;

    --text-accent: #38BDF8;



    --accent-gold: #EAB308;
    --accent-gold-light: #FDE047;
    --accent-gold-gradient: linear-gradient(135deg, #FDE047 0%, #D97706 100%);



    --accent-blue: #0EA5E9;
    --accent-blue-dim: #0284C7;
    --accent-blue-gradient: linear-gradient(135deg, #38BDF8 0%, #0284C7 100%);
    --accent-glow: 0 0 20px rgba(14, 165, 233, 0.4);


    --nav-height: 80px;
    --border-radius: 16px;
    --card-border: 1px solid rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);


    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.15);
}

@font-face {
    font-family: 'IBM Plex Sans Hebrew';
    src: url('../fonts/IBM_Plex_Sans_Hebrew/IBMPlexSansHebrew-Thin.ttf') format('truetype');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Hebrew';
    src: url('../fonts/IBM_Plex_Sans_Hebrew/IBMPlexSansHebrew-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Hebrew';
    src: url('../fonts/IBM_Plex_Sans_Hebrew/IBMPlexSansHebrew-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Hebrew';
    src: url('../fonts/IBM_Plex_Sans_Hebrew/IBMPlexSansHebrew-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Hebrew';
    src: url('../fonts/IBM_Plex_Sans_Hebrew/IBMPlexSansHebrew-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Hebrew';
    src: url('../fonts/IBM_Plex_Sans_Hebrew/IBMPlexSansHebrew-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Hebrew';
    src: url('../fonts/IBM_Plex_Sans_Hebrew/IBMPlexSansHebrew-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Karantina';
    src: url('../fonts/Karantina/Karantina-Regular.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans Hebrew', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(234, 179, 8, 0.02) 0%, transparent 40%);
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--card-border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.glass-panel:hover {
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-4px);
}

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


header {
    background: rgba(15, 23, 42, 0.8);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-family: 'IBM Plex Sans Hebrew', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: var(--transition);
    text-transform: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(234, 179, 8, 0.2);
}

.logo-tagline {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    margin: 0.5rem;
    overflow: hidden;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.1);
}


.hero {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 200px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.12) 0%, transparent 50%);

    transform: rotate(-15deg);
    pointer-events: none;
    filter: blur(80px);

    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle at 50% 50%, rgba(234, 179, 8, 0.08) 0%, transparent 60%);

    pointer-events: none;
    filter: blur(90px);
    z-index: 0;
    opacity: 0.8;
}

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

.hero-logo {
    margin-bottom: 3.5rem;
}

.logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);

    padding: 4px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.25);

    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    position: relative;
    backdrop-filter: blur(10px);
}

.logo-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: var(--accent-gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;

    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);

}

@keyframes float {

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

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

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #FFFFFF 20%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--accent-gold-light);
    font-weight: 500;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.urgency-banner {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem auto;
    text-align: center;
}


.hero-benefit {
    font-size: 1.15rem;
    color: var(--accent-gold-light);
    font-weight: 500;
    margin: 1rem auto 1.5rem;
    max-width: 700px;
    line-height: 1.6;
    text-align: center;
}


.required-asterisk {
    color: #ff6b35;
    font-weight: 700;
    margin-right: 2px;
}


.field-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
    text-align: right;
}


.mentor-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: var(--accent-gold-light);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    margin: 0.5rem 0 1rem;
}


.privacy-text {
    text-align: center;
    font-size: 0.85rem;
    color: #CBD5E1;
    margin-top: 0.75rem;
}

.free-highlight {
    color: var(--accent-gold);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-pain-points {
    max-width: 1200px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-pain-points-intro {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 500;
}

.pain-point {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #cccccc;
    font-weight: 400;
    line-height: 1.5;
    white-space: normal;
}

.hero-solution {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-solution p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.solution-white {
    color: #00d4ff;
    font-size: 1.1rem;
}

.solution-blue {
    color: #00d4ff;
    font-size: 1.1rem;
}

.hero-empathy {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.1);
    border-right: 4px solid #00d4ff;
    border-radius: 8px;
    text-align: right;
}

.hero-empathy p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-empathy p:last-child {
    margin-bottom: 0;
}

.solution-intro {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold-gradient);
    color: #0F172A;

    padding: 16px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    filter: brightness(1.05);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.cta-button.secondary:hover {
    background: rgba(234, 179, 8, 0.1);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.2rem;
}


.whatsapp-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #25D366 100%) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4) !important;
}


.whatsapp-btn span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    max-width: 300px;
    white-space: nowrap;
    display: inline-block;
}

.whatsapp-btn .whatsapp-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    margin: 0;
}

.whatsapp-btn:hover span {
    opacity: 0;
    max-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.6);
    margin: 0 10px;
}

.whatsapp-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.whatsapp-btn svg {
    position: relative;
    z-index: 1;
}

.whatsapp-btn * {
    position: relative;
    z-index: 1;
}

.cta-sub-text {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
}


.hero-value-prop {
    max-width: 900px;
    margin: 2rem auto 3rem;
    text-align: center;
}

.hero-value-prop p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-value-prop p:last-child {
    color: #f3f9ff;
    font-size: 1.1rem;
}

.hero-form-container {
    max-width: 600px;
    margin: 3rem auto 2rem;
}

.hero-mini-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-family: 'IBM Plex Sans Hebrew', Arial, sans-serif;
    transition: all 0.3s ease;
    direction: rtl;
}

.form-input:focus {
    outline: none;
    border-color: #00d4ff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.form-input::placeholder {
    color: #666;
}

.form-submit-btn {
    width: 100%;
    margin-bottom: 0;
}

.or-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.or-divider::before {
    right: 0;
}

.or-divider::after {
    left: 0;
}

.or-divider span {
    background: #0a0e27;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.hero-scarcity {
    text-align: center;
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.urgency {
    background: #ffffff;
    padding: 100px 0;
}

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

.urgency-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #0a0e27;
    font-weight: 500;
}


.journey {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(234, 179, 8, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.journey .section-title {
    color: var(--text-primary);
}

.journey .section-title::after {
    background: var(--accent-blue-gradient);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-blue-gradient);
    border-radius: 2px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    background: var(--bg-card);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: var(--card-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.journey-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-blue-gradient);

    opacity: 0.5;
    transition: var(--transition);
}

.journey-item:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(56, 189, 248, 0.15);

}

.journey-item:hover::before {
    opacity: 1;
}

.journey-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: rgba(56, 189, 248, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

.journey-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.journey-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}


.journey-content ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1rem 0;
}

.journey-content ul li {
    padding-right: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.journey-content ul li:before {
    content: "•";
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    right: 0;
    top: -0.1rem;
}


.outcomes-title {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 1.8rem;
    color: #00d4ff;
    position: relative;
    padding-bottom: 1rem;
}

.outcomes-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #00d4ff;
}


.promise-box {
    grid-column: 1 / -1 !important;
    max-width: none !important;
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 153, 204, 0.08) 100%) !important;
    border: 2px solid rgba(0, 212, 255, 0.3) !important;
    border-right: 6px solid #00d4ff !important;
    padding: 3rem !important;
    margin-top: 2rem;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15) !important;
    transition: all 0.3s ease;
}

.promise-box:hover {
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.25) !important;
    transform: translateY(-2px);
}

.promise-content {
    flex: 1;
    margin-left: 2.5rem;

}

.promise-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #0a0e27;
    font-weight: 700;
}

.promise-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    font-weight: 400;
}

.promise-icon {
    font-size: 4rem;
    flex-shrink: 0;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.3));
}


.journey {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}




.journey-white .journey-content h3 {
    color: #0a0e27;
}

.journey-white .journey-content p {
    color: #666;
}



.about {
    background: var(--bg-alt);
    padding: 120px 0;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;

    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.5;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.15);

}

.about-image:hover::before {
    top: -15px;
    left: -15px;
    opacity: 0.8;
    box-shadow: 0 0 40px rgba(234, 179, 8, 0.25);
}

.about-text {
    flex: 1.5;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
    background: linear-gradient(90deg, #F8FAFC, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.mentor-credentials {
    color: var(--accent-cyan);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.testimonials {
    background: var(--bg-dark);
    padding: 120px 0;
    position: relative;
}

.testimonials .section-title {
    color: var(--text-primary);
}

.testimonial-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    border: var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-screenshot {
    flex: 1;
    max-width: 320px;
}

.testimonial-screenshot img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial-screenshot img:hover {
    transform: scale(1.02);
}

.testimonial-content {
    flex: 2;
}

.testimonial-content h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonial-content p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}


.faq-accordion {
    background: var(--bg-alt);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.faq-accordion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.faq-accordion .section-title {
    color: var(--text-primary);
}

.accordion-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: var(--card-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: none;
    background: var(--bg-card-hover);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.accordion-header h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
    flex-shrink: 0;
    font-weight: 400;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 2rem;
}

.accordion-item.active .accordion-header {
    background: rgba(56, 189, 248, 0.1);
}

.accordion-item.active .accordion-header h3 {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.accordion-item.active {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


.accordion-content .audience-item {
    background: #f0f8ff;
    border: 2px solid #00d4ff;
    backdrop-filter: none;
}

.accordion-content .audience-item:hover {
    background: #e0f2ff;
    border-color: #0099cc;
}

.accordion-content .audience-item p {
    color: #0a0e27;
}

.accordion-content .audience-highlight {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 153, 204, 0.15));
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

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

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

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

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feedback-grid img {
    width: 100%;
    border-radius: var(--border-radius);
    border: var(--card-border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feedback-grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(56, 189, 248, 0.4);
}


.schedule {
    background: var(--bg-alt);
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-item {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(56, 189, 248, 0.3);
    background: var(--bg-card-hover);
}

.schedule-item.highlight {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(234, 179, 8, 0.05));
    border-color: var(--accent-gold);
    grid-column: span 3;
    position: relative;
    overflow: hidden;
}

.schedule-item.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
}

.schedule-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.schedule-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}


.outcomes {
    background: var(--bg-dark);

    color: var(--text-primary);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.outcomes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 200, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.outcomes .section-title {
    color: var(--text-primary);
}

.outcomes .section-title::after {
    background: linear-gradient(90deg, #00d4ff, #0099cc);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.outcome-item {
    background: var(--bg-card);

    padding: 2rem;
    border-radius: 16px;
    border: var(--card-border);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.outcome-item:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(56, 189, 248, 0.4);
}

.outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.outcome-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    font-weight: 600;
}

.outcome-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}


.pricing {
    background: var(--bg-alt);
    padding: 100px 0;
}

.pricing-main {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-highlight {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.pricing-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0a0e27;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.price-crossed {
    font-size: 1.8rem;
    font-weight: bold;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.pricing-highlight p {
    color: #666;
    font-size: 1.1rem;
}

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

.pricing-alternative h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #0a0e27;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pricing-option {
    background: #f8faff;
    padding: 2rem;
    border-radius: 12px;
    border-right: 4px solid #00d4ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pricing-option .price {
    font-size: 2rem;
    font-weight: bold;
    color: #00d4ff;
}

.pricing-option .description {
    color: #666;
    font-size: 1rem;
}


.final-cta {
    background: #0a0e27;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(100, 200, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta .section-title {
    color: white;
}

.final-cta .section-title::after {
    background: linear-gradient(90deg, #00d4ff, #0099cc);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}


.contact {
    background: var(--bg-dark);
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 1rem auto 3rem;
    max-width: 800px;
    font-weight: 500;
    line-height: 1.6;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(15, 23, 42, 0.5);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans Hebrew', Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

.submit-btn {
    background: var(--accent-blue-gradient);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    width: 100%;
    letter-spacing: 0.02em;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
    filter: brightness(1.1);
}


footer {
    background: #020617;

    color: var(--text-secondary);
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}




.white-section {
    background: #F8FAFC !important;

    color: #0F172A;

    position: relative;
}

.white-section .section-title {
    color: #0F172A;
}


.about.white-section::before {
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
}

.about.white-section .about-text p {
    color: #334155;

}

.about.white-section .about-text strong {
    background: linear-gradient(90deg, #0F172A, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about.white-section .about-image img {
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);

    border: 1px solid rgba(148, 163, 184, 0.2);

}


.journey.white-section {
    background: #FFFFFF !important;
}

.journey.white-section::before {
    background:
        radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(234, 179, 8, 0.05) 0%, transparent 50%);
}

.journey.white-section .journey-item {
    background: #ffffff;
    border: 1px solid #E2E8F0;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.journey.white-section .journey-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 0 15px rgba(14, 165, 233, 0.1);
    border-color: #38BDF8;
    background: #ffffff;
}

.journey.white-section .journey-content h3 {
    color: #0F172A;
}

.journey.white-section .journey-content p {
    color: #475569;

}

.journey.white-section .journey-content ul li {
    color: #475569;
}


.faq-accordion.white-section {
    background: #F8FAFC !important;
}

.faq-accordion.white-section .accordion-item {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    backdrop-filter: none;
}

.faq-accordion.white-section .accordion-item:hover {
    border-color: #38BDF8;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.faq-accordion.white-section .accordion-header h3 {
    color: #0F172A;
    text-shadow: none;
}

.faq-accordion.white-section .accordion-header:hover {
    background: #F1F5F9;

}

.faq-accordion.white-section .accordion-content {
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}

.faq-accordion.white-section .accordion-content p {
    color: #334155;
}


.faq-accordion.white-section .audience-grid>div {
    background: #ffffff !important;
    border: 1px solid #E2E8F0 !important;
    border-right: 4px solid #0EA5E9 !important;
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-accordion.white-section .audience-grid h4 {
    color: #0F172A !important;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.faq-accordion.white-section .audience-grid p {
    color: #475569 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}


.faq-accordion.white-section .accordion-content,
.faq-accordion.white-section .accordion-content p,
.faq-accordion.white-section .accordion-content ul,
.faq-accordion.white-section .accordion-content li,
.faq-accordion.white-section .accordion-content strong,
.faq-accordion.white-section .accordion-content span,
.faq-accordion.white-section .accordion-content div {
    color: #334155 !important;
}


.faq-accordion.white-section .session-components > div {
    background: #ffffff !important;
    border: 1px solid #E2E8F0 !important;
}

.faq-accordion.white-section .session-components h3 {
    color: #0F172A !important;
}

.faq-accordion.white-section .session-components p {
    color: #475569 !important;
}


.faq-accordion.white-section .schedule-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-accordion.white-section .schedule-item {
    background: #ffffff !important;
    border: 1px solid #E2E8F0 !important;
}

.faq-accordion.white-section .schedule-item h3 {
    color: #0F172A !important;
}

.faq-accordion.white-section .schedule-item p {
    color: #475569 !important;
}

.faq-accordion.white-section .schedule-item.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.08), rgba(234, 179, 8, 0.04)) !important;
    border-color: var(--accent-gold) !important;
}


.faq-accordion.white-section [style*="linear-gradient"] {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(234, 179, 8, 0.06)) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
}

.faq-accordion.white-section [style*="linear-gradient"] h3,
.faq-accordion.white-section [style*="linear-gradient"] p {
    color: #334155 !important;
}

.feedback-grid img {
    width: 100%;
    height: 320px;

    object-fit: contain;

    background: #f1f5f9;

    border-radius: var(--border-radius);
    border: var(--card-border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem;

}

.feedback-grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, 0.5);
}


@media (min-width: 1025px) {

    .journey-grid,
    .audience-grid {
        gap: 2rem;
        align-items: stretch;

    }

    .journey-item,
    .audience-grid>div {
        height: 100%;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}



.comparison {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
}

.comparison .section-title {
    color: var(--text-primary);
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead th {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(168, 85, 247, 0.15));
    padding: 1.5rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(56, 189, 248, 0.3);
}

.comparison-table thead th:first-child {
    text-align: right;
    background: var(--bg-card);
}

.comparison-table thead th.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
    color: var(--accent-gold);
    position: relative;
}

.comparison-table thead th.highlight::before {
    content: '👑';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

.comparison-table tbody td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.95rem;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    text-align: right;
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-table tbody td:nth-child(2) {
    text-align: center;
    color: #94A3B8;
}

.comparison-table tbody td.highlight {
    text-align: center;
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent-gold);
    font-weight: 500;
    border-right: 3px solid var(--accent-gold);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

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


@media (max-width: 768px) {
    .comparison-table-wrapper {
        border-radius: 12px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

    .comparison-table thead th.highlight::before {
        top: -8px;
        font-size: 1.2rem;
    }
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .mobile-menu {
        width: 200px;
        right: 10px;
        top: calc(100% + 10px);
    }


    .hero {
        padding: 100px 0 60px;
    }

    .hero-logo {
        margin-bottom: 1.5rem;
    }

    .logo-circle {
        width: 90px;
        height: 90px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-benefit {
        display: none;
    }

    .urgency-banner {
        font-size: 1rem;
        padding: 0.6rem 1rem;
        margin: 1rem auto;
    }

    .hero-benefit {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .mentor-highlight {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }

    .hero-empathy {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .hero-empathy p {
        font-size: 1rem;
    }

    .solution-intro {
        font-size: 1.1rem;
    }

    .hero-pain-points h3 {
        white-space: normal;
        font-size: 1.2rem;
    }

    .hero-value-prop {
        margin: 1.5rem auto 2rem;
        padding: 0 1rem;
    }

    .hero-value-prop p {
        font-size: 1rem;
    }

    .hero-form-container {
        margin: 2rem auto 1.5rem;
        padding: 0 1rem;
    }

    .hero-mini-form {
        padding: 1.5rem;
    }

    .form-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .hero-scarcity {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        margin-top: 1.5rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        align-self: center;
    }

    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-screenshot {
        width: 100%;
        max-width: 400px;
    }

    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .journey-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .audience-grid,
    .session-components,
    .schedule-options,
    .outcomes-grid,
    .pricing-options {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .faq-accordion.white-section .schedule-options {
        grid-template-columns: 1fr !important;
    }

    .faq-accordion.white-section .schedule-item.highlight {
        grid-column: span 1;
    }

    .journey-item,
    .audience-card,
    .session-component,
    .outcome-card {
        padding: 1.5rem;
    }

    .journey-content h3,
    .session-component h3,
    .outcome-card h3 {
        font-size: 1.3rem;
    }

    .journey-content p,
    .session-component p,
    .outcome-card p {
        font-size: 1rem;
    }

    .schedule-item {
        padding: 1.5rem;
    }

    .schedule-item.highlight {
        grid-column: span 1;
    }

    .schedule-item h3 {
        font-size: 1.2rem;
    }

    .schedule-item p {
        font-size: 0.95rem;
    }

    .accordion-content {
        padding: 0 1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1rem 1.5rem 1rem;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .logo-circle {
        width: 150px;
        height: 150px;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        margin: 1rem auto 2rem;
    }


    .promise-box {
        flex-direction: column !important;
        text-align: center;
        align-items: center !important;
        padding: 2rem 1.5rem !important;

    }

    .promise-content {
        margin-left: 0 !important;
        margin-top: 1rem;
    }

    .promise-content p {
        font-size: 0.95rem !important;

        line-height: 1.6 !important;
    }

    .promise-icon {
        font-size: 2.5rem !important;

        margin-top: 0.5rem;
    }
}


@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

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

    .accordion-header {
        padding: 1.5rem;
    }

    .accordion-header h3 {
        font-size: 1.2rem;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
    }

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

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

    .testimonial-item {
        flex-direction: row;
    }

    .testimonial-screenshot {
        max-width: 300px;
    }
}


@media (min-width: 1025px) and (max-width: 1400px) {
    .container {
        max-width: 1100px;
    }

    .about-content {
        gap: 3rem;
    }
}


@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .cta-button {
        padding: 20px 50px;
        font-size: 1.3rem;
    }

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

    .logo-circle {
        width: 250px;
        height: 250px;
    }
}


.custom-alert {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 90%;
    direction: rtl;
    font-family: 'IBM Plex Sans Hebrew', Arial, sans-serif;
}

.alert-success {
    background: #10B981;
}

.alert-error {
    background: #EF4444;
}

.alert-info {
    background: #3B82F6;
}

.custom-alert .alert-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}


.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.image-modal .modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalZoomIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--accent-blue);
}


.testimonial-compact {
    padding: 2rem !important;
}

.testimonial-thumbnail {
    max-width: 200px !important;
    flex-shrink: 0;
}

.testimonial-thumbnail img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-thumbnail img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(234, 179, 8, 0.3);
}
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2vh 0;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: blur(5px);
}

.success-modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--card-border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    margin: auto;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalZoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.success-modal-content h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.success-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.success-cta-box {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
}

.success-modal-content .cta-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 24px;
}

