/* ===========================================
   HEADER & NAVIGATION
   =========================================== */
header {
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 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(11, 17, 32, 0.95);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 1.5rem;
}

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

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'IBM Plex Sans Hebrew', Arial, sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.3;
    transition: var(--transition);
    text-transform: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

.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 2px 10px rgba(212, 175, 55, 0.2);
}

.logo-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 1.75rem;
}

.nav-links li:last-child {
    margin-left: 0;
}

.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(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition);
}

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

.nav-links a.active {
    color: var(--accent-gold);
}

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

.nav-cta {
    background: var(--accent-gold-gradient);
    color: #0B1120 !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    filter: brightness(1.08);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    z-index: 999;
    margin: 0.5rem;
}

.mobile-menu.active {
    display: block;
}

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

.mobile-menu li {
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 0.85rem 1.25rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    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,
.mobile-menu a.active {
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.08);
}

/* ===========================================
   BUTTONS
   =========================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold-gradient);
    color: #0B1120;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
}

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

.cta-button.cyan {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.cta-button.cyan:hover {
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.45);
}

.whatsapp-link {
    display: inline-block;
    text-align: center;
    color: var(--text-secondary);
    text-decoration: underline;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: var(--accent-cyan);
}

/* ===========================================
   HERO BLOCK (shared template)
   =========================================== */
.hero {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.03) 0%, transparent 60%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

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

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

.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);
    -webkit-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: contain;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    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-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.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-cta-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.hero-cta-container > * + * {
    margin-top: 1rem;
}

/* Compact hero variant for sub-pages without big logo */
.hero.compact {
    padding: 160px 0 80px;
}

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

.hero.compact .hero-subtitle {
    font-size: 1.25rem;
}

/* ===========================================
   SECTIONS - shared backgrounds
   =========================================== */
.section-dark {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-dark::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;
}

.section-dark .container {
    position: relative;
    z-index: 2;
}

.section-alt {
    background: var(--bg-alt);
    color: var(--text-primary);
    padding: 100px 0;
    position: relative;
}

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

.section-white {
    background: #ffffff;
    color: #0a0e27;
    padding: 100px 0;
}

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

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about {
    background: var(--bg-alt);
    padding: 100px 0;
    color: var(--text-primary);
    position: relative;
}

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

.about-content {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    position: relative;
    margin-left: 4rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    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: 20px;
    z-index: -1;
    opacity: 0.5;
}

.about-text {
    flex: 1.5;
}

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

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about.white-section {
    background: #ffffff;
    color: #0a0e27;
}

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

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

.about.white-section .about-text strong {
    color: #0a0e27;
}

.about.white-section .about-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about.white-section .about-image::before {
    border: 2px solid var(--accent-cyan);
}

/* ===========================================
   GENERIC GRID + CARDS (journey-item template)
   =========================================== */
.journey {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.journey::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;
}

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

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

.journey-item {
    display: flex;
    align-items: flex-start;
    background: #f8faff;
    padding: 2rem;
    border-radius: 12px;
    border-right: 4px solid var(--accent-cyan);
    transition: var(--transition);
}

.journey-item > .journey-icon {
    margin-left: 1rem;
}

.journey-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.journey-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.journey-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0a0e27;
    font-weight: 600;
}

.journey-content p {
    color: #666;
    line-height: 1.6;
}

.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: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    right: 0;
    top: -0.1rem;
}

.outcomes-section .journey-grid {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
}

.outcomes-section .journey-grid > .promise-box {
    grid-column: 1 / -1;
}

.journey.white-section {
    background: #ffffff;
    color: #0a0e27;
}

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

.journey.white-section::before {
    background:
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(100, 200, 255, 0.05) 0%, transparent 50%);
}

.outcomes-title {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    position: relative;
    padding-bottom: 1rem;
}

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

.journey.white-section .outcomes-title {
    color: #0a0e27;
}

/* ===========================================
   SERVICE CARDS (homepage hub)
   =========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: right;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-cyan-deep));
    opacity: 0.6;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 1;
    width: 8px;
}

.service-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-card-cta {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-card-cta {
    color: var(--accent-gold);
    transform: translateX(-4px);
}

/* ===========================================
   TRACK CARDS (workshops 3 tracks)
   =========================================== */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.track-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.track-card.featured {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.track-card.featured::after {
    content: 'הכי פופולרי';
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: var(--accent-gold-gradient);
    color: #0B1120;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.track-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
    font-weight: 700;
}

.track-card .track-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.track-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.track-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.track-card ul li {
    padding-right: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.track-card ul li::before {
    content: "✓";
    color: var(--accent-cyan);
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0;
}

/* ===========================================
   CASE STUDY CARDS (services page)
   =========================================== */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.case-study {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.case-study:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-study-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.case-study h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.case-study .case-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.case-study p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.case-study .results {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-study .results h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.case-study .results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study .results li {
    padding-right: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.case-study .results li::before {
    content: "→";
    color: var(--accent-cyan);
    position: absolute;
    right: 0;
    top: 0;
}

/* ===========================================
   COURSE / CURRICULUM
   =========================================== */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.curriculum-week {
    background: #f8faff;
    padding: 2rem;
    border-radius: 12px;
    border-right: 4px solid var(--accent-cyan);
    transition: var(--transition);
}

.curriculum-week:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.curriculum-week .week-number {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.curriculum-week h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0a0e27;
    font-weight: 700;
}

.curriculum-week p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.curriculum-week ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.curriculum-week ul li {
    padding-right: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.curriculum-week ul li::before {
    content: "•";
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    right: 0;
    top: -0.25rem;
}

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

.format-meta-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
}

.format-meta-item .icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.format-meta-item .label {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.format-meta-item .value {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===========================================
   "SOUNDS FAMILIAR?" PAIN POINTS
   =========================================== */
.familiar-block {
    max-width: 800px;
    margin: 0 auto;
}

.familiar-block .eyebrow-question {
    text-align: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 2rem;
}

.familiar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.familiar-block ul li {
    padding: 1rem 1.5rem 1rem 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-right: 3px solid var(--accent-cyan);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.familiar-block.light ul li {
    background: #f8faff;
    color: #444;
    border-right-color: var(--accent-cyan);
}

.familiar-block.light .eyebrow-question {
    color: var(--accent-cyan-deep);
}

/* ===========================================
   PROCESS STEPS
   =========================================== */
.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 1.5rem;
    background: #f8faff;
    padding: 1.75rem 2rem;
    border-radius: 12px;
    border-right: 4px solid var(--accent-cyan);
    transition: var(--transition);
    align-items: flex-start;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.process-step .step-number {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.process-step .step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: #0a0e27;
    font-weight: 600;
}

.process-step .step-content p {
    color: #555;
    line-height: 1.7;
}

.process-step.dark {
    background: rgba(255, 255, 255, 0.04);
    border-right-color: var(--accent-cyan);
}

.process-step.dark .step-content h3 {
    color: var(--text-primary);
}

.process-step.dark .step-content p {
    color: var(--text-secondary);
}

/* ===========================================
   ACCORDION
   =========================================== */
.faq-accordion {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
}

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

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

.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.accordion-item:hover {
    border-color: var(--accent-cyan-deep);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.25);
    transform: translateY(-2px);
}

.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.02);
}

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

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

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

.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.2);
}

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

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, #e6f7ff 0%, #b3e5ff 100%);
    border-bottom: 3px solid var(--accent-cyan-deep);
}

.accordion-item.active .accordion-header h3 {
    color: #0a0e27;
}

.accordion-item.active {
    border-color: var(--accent-cyan-deep);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.35);
}

.accordion-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-accordion.white-section {
    background: #ffffff;
}

.faq-accordion.white-section::before {
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
}

.faq-accordion.white-section .section-title {
    color: #0a0e27;
}

.faq-accordion.white-section .accordion-item {
    background: #f8faff;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.faq-accordion.white-section .accordion-header h3 {
    color: #0a0e27;
}

.faq-accordion.white-section .accordion-content {
    background: rgba(0, 212, 255, 0.05);
}

.faq-accordion.white-section .accordion-content p,
.faq-accordion.white-section .accordion-content h3,
.faq-accordion.white-section .accordion-content h4 {
    color: #333;
}

/* ===========================================
   COMPARISON TABLE
   =========================================== */
.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),
.comparison-table tbody td:nth-child(3),
.comparison-table tbody td:nth-child(4) {
    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;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
}

.testimonials::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;
}

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

.testimonials .section-title {
    color: white;
}

.testimonial-item {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-item > .testimonial-screenshot {
    margin-left: 2rem;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

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

.testimonial-screenshot img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.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;
}

.testimonial-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.feedback-grid img {
    width: 100%;
    border-radius: 12px;
    transition: var(--transition);
    opacity: 0.8;
    cursor: pointer;
}

.feedback-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta {
    background: var(--bg-dark);
    color: var(--text-primary);
    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 .container {
    position: relative;
    z-index: 2;
}

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

.cta-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

/* ===========================================
   CONTACT FORM
   =========================================== */
.contact {
    background: #ffffff;
    padding: 100px 0;
}

.contact .section-title {
    color: #0a0e27;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin: 1rem auto 3rem;
    max-width: 700px;
    line-height: 1.7;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8faff;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #0a0e27;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #333;
    transition: var(--transition);
    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-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    width: 100%;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.contact-meta {
    text-align: center;
    margin-top: 2rem;
    color: #555;
}

.contact-meta a {
    color: var(--accent-cyan-deep);
    text-decoration: none;
    font-weight: 600;
}

.contact-meta a:hover {
    text-decoration: underline;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background: #0a0e27;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-main {
    font-size: 1.4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===========================================
   IMAGE MODAL (testimonials)
   =========================================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
}

.image-modal .modal-content {
    max-width: 95%;
    max-height: 95%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.image-modal .modal-close {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

/* ===========================================
   ALERTS
   =========================================== */
.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;
}

.custom-alert.alert-success { background: #4CAF50; }
.custom-alert.alert-error { background: #f44336; }
.custom-alert.alert-info { background: #2196F3; }

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

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

@keyframes slideIn {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes slideOut {
    from { opacity: 1; transform: translate(-50%, 0); }
    to { opacity: 0; transform: translate(-50%, -10px); }
}

/* ===========================================
   SCROLL REVEAL ANIMATIONS
   =========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero.compact { padding: 130px 0 60px; }
    .hero.compact .hero-title { font-size: 2rem; }

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

    .about-image {
        margin-left: 0;
        margin-bottom: 2rem;
        max-width: 320px;
    }

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

    .testimonial-item > .testimonial-screenshot {
        margin-left: 0;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

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

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

    .services-grid,
    .tracks-grid,
    .case-studies-grid,
    .curriculum-grid,
    .journey-grid,
    .format-meta {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .outcomes-section .journey-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .process-step .step-number {
        margin-left: 0;
        margin-bottom: 1rem;
    }

    .accordion-content { padding: 0 1rem; }
    .accordion-item.active .accordion-content { padding: 0 1rem 1.5rem 1rem; }
    .accordion-header h3 { font-size: 1.05rem; }

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

    .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;
    }

    .logo-main { font-size: 1.2rem; }
    .logo-tagline { font-size: 0.75rem; }
}

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

    .accordion-header { padding: 1.25rem 1.5rem; }
    .logo-circle { width: 120px; height: 120px; }

    .contact-form { padding: 2rem 1.5rem; }

    .cta-button { padding: 14px 26px; font-size: 0.95rem; }
    .cta-button.large { padding: 18px 36px; font-size: 1.05rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container { max-width: 900px; }
    .hero-title { font-size: 3rem; }
    .tracks-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
