@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ============================================================
   THE LIGHT METHOD - Premium Branding Website
   Minimalist · Elegant · RTL Hebrew
   ============================================================ */

/* ── Design Tokens ── */
:root {
    --cream: #FBF8F3;
    --cream-dark: #F3EDE4;
    --white: #FFFFFF;
    --sage: #A3B8A0;
    --sage-light: #C5D4C3;
    --sage-dark: #8BA888;
    --gold: #C9A96E;
    --gold-light: #D4BC8E;
    --gold-dark: #B8944F;
    --text-primary: #2E2E2E;
    --text-secondary: #5C5C5C;
    --text-muted: #8A8A8A;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Heebo', sans-serif;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.10);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s var(--ease);
    --max-width: 1200px;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    direction: rtl;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Container ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Utility: Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.intro-logo {
    width: min(280px, 80%);
    height: auto;
    object-fit: contain;
    margin-bottom: 32px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(251, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
    padding: 14px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s var(--ease);
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(251, 248, 243, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s var(--ease);
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(163, 184, 160, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(163, 184, 160, 0.15);
    border: 1px solid rgba(163, 184, 160, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(163, 184, 160, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(163, 184, 160, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 1.5px solid var(--cream-dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--sage-light);
    border-radius: var(--radius-lg);
    opacity: 0.4;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-left: 1.5px solid var(--text-muted);
    border-bottom: 1.5px solid var(--text-muted);
    transform: rotate(-45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section {
    padding: 120px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-label .line {
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 680px;
}

/* Gold separator */
.gold-sep {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 24px 0;
    border-radius: 2px;
}

/* ============================================================
   METHOD SECTION
   ============================================================ */
.method {
    background: var(--white);
}

.method-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.method-intro .section-description {
    margin: 0 auto;
}

.method-intro .gold-sep {
    margin: 24px auto;
}

.light-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.light-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.light-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.light-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.light-card:hover::before {
    opacity: 1;
}

.light-letter {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.light-word {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.light-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(163, 184, 160, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-image {
    position: relative;
    order: 2;
}

.app-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.app-image::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--gold-light);
    border-left: 2px solid var(--gold-light);
    border-radius: 4px;
    opacity: 0.5;
}

.app-text {
    order: 1;
}

.app-text .section-description {
    margin-bottom: 36px;
}

.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--text-primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #1a1a1a;
}

.store-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.store-btn .store-label {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.store-btn .store-small {
    font-size: 0.65rem;
    font-weight: 300;
    opacity: 0.8;
}

.store-btn .store-name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience {
    background: var(--white);
}

.audience-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.audience-header .gold-sep {
    margin: 24px auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.audience-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--sage-light);
}

.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(163, 184, 160, 0.2), rgba(163, 184, 160, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
}

.audience-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    position: relative;
}

.about-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about-content .gold-sep {
    margin: 24px auto;
}

.about-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-role {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.about-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
}

/* Decorative border */
.about-content::before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--gold-light);
    border-right: 2px solid var(--gold-light);
    margin: 0 auto 40px;
    border-radius: 4px;
    opacity: 0.4;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-description {
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-detail .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 44px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    outline: none;
    direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(163, 184, 160, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #D4766E;
    box-shadow: 0 0 0 3px rgba(212, 118, 110, 0.1);
}

.error-msg {
    font-size: 0.78rem;
    color: #D4766E;
    margin-top: 6px;
    display: none;
}

.error-msg.show {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(163, 184, 160, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(163, 184, 160, 0.4);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Newsletter */
.newsletter {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-dark);
}

.newsletter-label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.newsletter-row {
    display: flex;
    gap: 10px;
}

.newsletter-row input {
    flex: 1;
    padding: 12px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 100px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    direction: rtl;
    outline: none;
    transition: border-color 0.3s var(--ease);
}

.newsletter-row input:focus {
    border-color: var(--sage);
}

.newsletter-btn {
    padding: 12px 28px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success .success-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success .success-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid var(--cream-dark);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image::before,
    .hero-image::after {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .light-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .app-text {
        order: 1;
        text-align: center;
    }

    .app-text .section-description {
        margin: 0 auto 36px;
    }

    .app-image {
        order: 2;
    }

    .app-image img {
        max-width: 500px;
        margin: 0 auto;
    }

    .store-buttons {
        justify-content: center;
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-detail {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image img {
        height: 320px;
    }

    .light-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .light-card {
        padding: 28px 20px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        padding: 28px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .light-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-btn {
        justify-content: center;
    }

    .newsletter-row {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

/* ============================================================
   PRINCIPLE BANNER SECTION
   ============================================================ */
.principle-banner {
    background: linear-gradient(135deg, #1e2d1c 0%, #2a3d28 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.principle-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.principle-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 40%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(163, 184, 160, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.principle-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.principle-quote-mark {
    font-family: var(--font-heading);
    font-size: 7rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 0.6;
    margin-bottom: 16px;
    user-select: none;
    display: block;
}

.principle-quote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 12px;
    font-style: normal;
}

.principle-sub {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}

.principle-explanation {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin: 0;
}

/* ============================================================
   REAL MOMENT TIMELINE SECTION
   ============================================================ */
.timeline-section {
    background: var(--cream);
}

.timeline {
    max-width: 760px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-connector {
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, var(--gold-light), var(--sage-light));
    margin: 0 27px;
    opacity: 0.5;
}

.timeline-letter {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
}

.timeline-body {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    flex: 1;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.timeline-body:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--sage-light);
}

.timeline-word {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-action {
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.timeline-note {
    font-size: 0.84rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid var(--cream-dark);
}

/* ============================================================
   WHAT LIGHT IS NOT SECTION
   ============================================================ */
.not-section {
    background: var(--white);
}

.not-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.not-header {
    margin-bottom: 48px;
}

.not-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 0 48px;
}

.not-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border-radius: 100px;
    padding: 12px 24px;
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.not-card:hover {
    border-color: #D4766E;
    box-shadow: 0 4px 16px rgba(212, 118, 110, 0.08);
    transform: translateY(-2px);
}

.not-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(212, 118, 110, 0.12);
    color: #D4766E;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.not-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
}

.not-affirmation-inner {
    background: linear-gradient(135deg, rgba(163, 184, 160, 0.1), rgba(201, 169, 110, 0.06));
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: var(--radius-md);
    padding: 48px 60px;
    position: relative;
    overflow: hidden;
}

.not-affirmation-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.not-affirmation-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.not-affirmation-text {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.not-affirmation-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0;
}

/* ============================================================
   THEORETICAL PILLARS SECTION
   ============================================================ */
.pillars-section {
    background: var(--cream);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid transparent;
}

.pillar-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--cream-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
    width: 44px;
}

.pillar-content {
    flex: 1;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.pillar-desc {
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ============================================================
   APP SECTION - ENHANCED FEATURES
   ============================================================ */
.app-features {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.app-feature-letter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 10px;
    text-align: center;
}

/* ============================================================
   AUDIENCE SECTION - FIXED (3-COLUMN)
   ============================================================ */
.audience-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.audience-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.6;
}

.audience-context {
    margin-top: 40px;
    padding: 28px 40px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-dark);
    text-align: center;
}

.audience-context-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   ABOUT SECTION - UPGRADED WITH PHOTO
   ============================================================ */
.about-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}

.about-photo-col {
    position: relative;
}

.about-photo-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: block;
}

.about-photo-col::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-light);
    border-radius: var(--radius-lg);
    opacity: 0.35;
    z-index: -1;
}

.about-photo-col::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.about-text-col .section-label {
    justify-content: flex-start;
}

.about-text-col .gold-sep {
    margin: 24px 0;
}

/* ============================================================
   CLOSING SECTION
   ============================================================ */
.closing {
    padding: 8rem 0 5rem;
    text-align: center;
    background-color: var(--cream);
}

.closing-inner {
    max-width: 700px;
    margin: 0 auto;
}

.closing-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--sage-dark);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.closing-sub {
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.closing-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   LIGHT CARD - EMPHASIS TEXT
   ============================================================ */
.light-desc em {
    font-style: normal;
    color: var(--sage-dark);
    font-weight: 400;
}

/* ============================================================
   RESPONSIVE - NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 560px;
    }

    .about-photo-img {
        height: 380px;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-photo-col::before,
    .about-photo-col::after {
        display: none;
    }

    .about-text-col .section-label {
        justify-content: center;
    }

    .about-text-col .gold-sep {
        margin: 24px auto;
    }

    .about-text-col {
        text-align: center;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .audience-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .principle-quote {
        font-size: 1.85rem;
    }

    .principle-quote-mark {
        font-size: 4.5rem;
    }

    .timeline-step {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-letter {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .timeline-connector {
        display: none;
    }

    .not-affirmation-inner {
        padding: 32px 24px;
    }

    .not-affirmation-text {
        font-size: 1.4rem;
    }

    .closing-title {
        font-size: 1.9rem;
    }

    .audience-context {
        padding: 24px;
    }

    .about-photo-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .principle-quote {
        font-size: 1.5rem;
    }

    .not-affirmation-text {
        font-size: 1.2rem;
    }

    .closing-title {
        font-size: 1.5rem;
    }

    .closing-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .closing-buttons .btn {
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════════════
   SECONDARY PAGES - theory / professionals / faq
   Shared: nav dropdown, accordion, modal, sub-page layouts
   ══════════════════════════════════════════════════════════════ */

/* ── Nav "עוד" Dropdown ── */
.nav-links .has-dropdown {
    position: relative;
}

.nav-more-btn {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s var(--ease);
}

.nav-more-btn:hover,
.has-dropdown.open .nav-more-btn {
    color: var(--text-primary);
}

.nav-more-btn .chev {
    font-size: 0.75rem;
    transition: transform 0.3s var(--ease);
    display: inline-block;
}

.has-dropdown.open .nav-more-btn .chev {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    z-index: 1050;
}

.has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-dropdown a:hover {
    background: var(--cream);
    color: var(--text-primary);
}

.nav-dropdown a::after {
    display: none;
}

/* ── Sub-page Hero ── */
.subpage-hero {
    padding: 180px 0 80px;
    background: var(--cream-dark);
    text-align: center;
}

.subpage-hero .container {
    max-width: 860px;
}

.subpage-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.subpage-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

.subpage-hero .scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    color: var(--sage-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.subpage-hero .scroll-cue:hover {
    color: var(--text-primary);
}

/* ── Theory pillars grid (2x2) ── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.pillar-theory {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 3px solid transparent;
}

.pillar-theory:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--gold);
}

.pillar-theory h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

.pillar-researcher {
    font-size: 0.92rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.pillar-theory p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

.pillar-light-mapping {
    background: var(--cream);
    border-right: 3px solid var(--sage);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
    font-weight: 500;
    transition: color 0.3s var(--ease);
}

.pillar-link:hover {
    color: var(--sage-dark);
}

/* ── Comparison table ── */
.comparison-table-wrap {
    margin-top: 48px;
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.98rem;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
}

.comparison-table th {
    text-align: right;
    padding: 18px 22px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.comparison-table td {
    padding: 20px 22px;
    vertical-align: top;
    color: var(--text-secondary);
    line-height: 1.7;
    border-bottom: 1px solid var(--cream-dark);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--cream);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    width: 24%;
}

.comparison-table td:nth-child(3) {
    color: var(--sage-dark);
    font-weight: 500;
    width: 28%;
}

/* ── Neuro-affirmative section ── */
.neuro-affirm-body {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.neuro-affirm-body p {
    margin-bottom: 20px;
}

.neuro-reading-list {
    background: var(--cream);
    padding: 28px 32px;
    border-radius: var(--radius-sm);
    margin-top: 32px;
    list-style: none;
}

.neuro-reading-list li {
    padding: 8px 0;
    color: var(--text-primary);
    font-size: 0.98rem;
    border-bottom: 1px solid var(--cream-dark);
}

.neuro-reading-list li:last-child {
    border-bottom: none;
}

.neuro-reading-list li::before {
    content: "- ";
    color: var(--gold);
    margin-left: 6px;
}

/* ── Transparency note ── */
.transparency-note {
    background: var(--cream-dark);
    padding: 48px 40px;
    border-radius: var(--radius-md);
    max-width: 820px;
    margin: 0 auto;
    border-right: 4px solid var(--gold);
}

.transparency-note h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 18px;
    font-weight: 500;
}

.transparency-note p {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 14px;
}

.transparency-note a {
    color: var(--sage-dark);
    text-decoration: underline;
    font-weight: 500;
}

/* ── Accordion ── */
.accordion {
    max-width: 820px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-group-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 40px auto 8px;
    max-width: 820px;
    padding-right: 4px;
}

.accordion-group-title:first-child {
    margin-top: 0;
}

.accordion-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease);
}

.accordion-item.open {
    box-shadow: var(--shadow-md);
}

.accordion-trigger {
    width: 100%;
    text-align: right;
    background: transparent;
    border: none;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    line-height: 1.5;
    transition: background 0.2s var(--ease);
}

.accordion-trigger:hover {
    background: var(--cream);
}

.accordion-chev {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--sage-dark);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.accordion-item.open .accordion-chev {
    transform: rotate(180deg);
    background: var(--sage);
    color: var(--white);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.accordion-item.open .accordion-panel {
    max-height: 1000px;
}

.accordion-panel-inner {
    padding: 4px 24px 24px;
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 1rem;
}

/* ── Professionals audience cards ── */
.prof-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.prof-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.prof-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--sage);
}

.prof-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.prof-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.prof-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.98rem;
    margin: 0;
}

.prof-card-tool {
    background: var(--cream);
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-top: auto;
}

.prof-card-tool strong {
    color: var(--sage-dark);
    display: block;
    margin-bottom: 4px;
}

/* ── Download cards ── */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.download-card {
    background: var(--white);
    padding: 32px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.download-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}

.download-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.download-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

.download-btn {
    background: transparent;
    color: var(--sage-dark);
    border: 1.5px solid var(--sage);
    padding: 10px 22px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
}

.download-btn:hover {
    background: var(--sage);
    color: var(--white);
}

/* ── Professional partnerships form ── */
.prof-form-wrap {
    max-width: 640px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 44px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.prof-form-wrap .form-group {
    margin-bottom: 20px;
}

.prof-form-wrap label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
}

.prof-form-wrap input,
.prof-form-wrap textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.prof-form-wrap input:focus,
.prof-form-wrap textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(163, 184, 160, 0.15);
}

.prof-form-wrap input.error,
.prof-form-wrap textarea.error {
    border-color: #D4766E;
}

.prof-form-wrap textarea {
    min-height: 120px;
    resize: vertical;
}

.prof-form-wrap .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(163, 184, 160, 0.3);
}

.prof-form-wrap .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(163, 184, 160, 0.4);
}

.prof-form-wrap .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.prof-form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.prof-form-success.show {
    display: block;
}

.prof-form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--sage-dark);
    margin-bottom: 12px;
}

.prof-form-success p {
    color: var(--text-secondary);
}

/* ── Modal (download email capture) ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(46, 46, 46, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s var(--ease);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 44px 40px 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s var(--ease);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    font-size: 1.4rem;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.modal-close:hover {
    background: var(--cream-dark);
    color: var(--text-primary);
}

.modal h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.modal-item {
    font-size: 0.95rem;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 22px;
}

.modal-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    margin-bottom: 8px;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.modal-form input:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(163, 184, 160, 0.15);
}

.modal-form input.error {
    border-color: #D4766E;
}

.modal-form .error-msg {
    display: none;
    color: #D4766E;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.modal-form .error-msg.show {
    display: block;
}

.modal-form .btn {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
}

.modal-success {
    display: none;
    text-align: center;
    padding: 30px 10px 10px;
}

.modal-success.show {
    display: block;
}

.modal-success .check-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.modal-success p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ── Back/navigation buttons at end of sub-pages ── */
.subpage-nav-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ── FAQ CTA block ── */
.faq-cta {
    background: linear-gradient(135deg, var(--sage-light), var(--cream-dark));
    padding: 64px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.faq-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 14px;
    font-weight: 500;
}

.faq-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ── Responsive: subpages ── */
@media (max-width: 1024px) {
    .pillars-grid,
    .prof-audience-grid,
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .subpage-hero h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .pillars-grid,
    .prof-audience-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .subpage-hero {
        padding: 140px 0 60px;
    }

    .subpage-hero h1 {
        font-size: 2.1rem;
    }

    .subpage-hero p {
        font-size: 1rem;
    }

    .transparency-note,
    .prof-form-wrap {
        padding: 32px 24px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
        font-size: 0.9rem;
    }

    .accordion-trigger {
        font-size: 0.98rem;
        padding: 18px 20px;
    }

    .faq-cta {
        padding: 48px 24px;
    }

    .faq-cta h2 {
        font-size: 1.7rem;
    }

    .modal {
        padding: 36px 24px 28px;
    }

    /* On mobile, the desktop dropdown is hidden by display:none rule below */
}

@media (max-width: 768px) {
    /* Hide dropdown menu on mobile - mobile menu has flat list */
    .nav-links .has-dropdown {
        display: none;
    }
}

@media (max-width: 480px) {
    .subpage-hero h1 {
        font-size: 1.8rem;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100% !important;
    }

    .comparison-table tr {
        border-bottom: 1px solid var(--cream-dark);
        padding: 16px 0;
    }

    .comparison-table td {
        padding: 6px 18px;
        border: none;
    }

    .comparison-table td:first-child {
        font-weight: 600;
        color: var(--text-primary);
        padding-top: 12px;
    }
}

/* ══════════════════════════════════════════════════════════════
   IDENTIFY - I-card toggle + expandable identification table
   ══════════════════════════════════════════════════════════════ */

.identify-toggle-btn {
    margin-top: 16px;
    background: transparent;
    border: none;
    color: var(--sage-dark);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.identify-toggle-btn:hover {
    background: rgba(163, 184, 160, 0.12);
    color: var(--text-primary);
}

.identify-toggle-label {
    border-bottom: 1px dashed var(--sage);
    padding-bottom: 1px;
}

.identify-toggle-arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

.identify-toggle-btn[aria-expanded="true"] .identify-toggle-arrow {
    transform: rotate(90deg);
}

.identify-toggle-btn[aria-expanded="true"] .identify-toggle-label::after {
    content: '';
}

.identify-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), margin-top 0.3s var(--ease), opacity 0.3s var(--ease);
    opacity: 0;
    margin-top: 0;
}

.identify-panel.open {
    max-height: 4000px;
    opacity: 1;
    margin-top: 48px;
}

.identify-panel-inner {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}

.identify-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.identify-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: right;
}

.identify-table thead {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
}

.identify-table th {
    text-align: right;
    padding: 16px 20px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.identify-table td {
    padding: 18px 20px;
    vertical-align: top;
    color: var(--text-secondary);
    line-height: 1.7;
    border-bottom: 1px solid var(--cream-dark);
}

.identify-table tbody tr:last-child td {
    border-bottom: none;
}

.identify-table tbody tr:nth-child(even) {
    background: var(--cream);
}

.identify-table td:first-child {
    width: 18%;
    color: var(--text-primary);
}

.identify-table td:first-child strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--sage-dark);
    margin-bottom: 2px;
}

.identify-sub {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
}

.identify-table td strong {
    color: var(--text-primary);
}

.identify-quote {
    margin: 28px 0 0;
    padding: 20px 24px;
    border-right: 3px solid var(--gold);
    background: var(--white);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.85;
}

.identify-quote em {
    font-style: italic;
    color: var(--text-primary);
}

/* Mall timeline - identify call-out */
.timeline-identify-call {
    margin-top: 12px;
    padding: 12px 14px;
    background: var(--cream);
    border-right: 3px solid var(--sage);
    border-radius: 8px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.timeline-identify-call em {
    font-style: italic;
    color: var(--text-primary);
}

/* Responsive - identify table */
@media (max-width: 1024px) {
    .identify-table {
        font-size: 0.88rem;
    }

    .identify-table th,
    .identify-table td {
        padding: 14px 14px;
    }
}

@media (max-width: 768px) {
    .identify-panel-inner {
        padding: 24px 18px;
    }

    .identify-table {
        min-width: 720px;
    }
}

@media (max-width: 600px) {
    /* Stacked card layout on small screens */
    .identify-table-wrap {
        overflow-x: visible;
        background: transparent;
        box-shadow: none;
    }

    .identify-table {
        min-width: 0;
        background: transparent;
    }

    .identify-table thead {
        display: none;
    }

    .identify-table,
    .identify-table tbody,
    .identify-table tr,
    .identify-table td {
        display: block;
        width: 100% !important;
    }

    .identify-table tr {
        background: var(--white);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-sm);
        margin-bottom: 16px;
        padding: 14px 0;
        border: none;
    }

    .identify-table tbody tr:nth-child(even) {
        background: var(--white);
    }

    .identify-table td {
        padding: 10px 18px;
        border-bottom: none;
        position: relative;
    }

    .identify-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--sage-dark);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .identify-table td:first-child {
        padding-top: 16px;
        border-bottom: 1px solid var(--cream-dark);
        padding-bottom: 14px;
        margin-bottom: 8px;
    }

    .identify-table td:first-child::before {
        display: none;
    }
}

/* ============================================================
   FLEXIBILITY LINE INSIDE LIGHT CARDS (HOMEPAGE)
   ============================================================ */
.light-flex {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(163, 184, 160, 0.35);
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--sage-dark);
    text-align: center;
    opacity: 0.92;
}

.method-deepen-link {
    text-align: center;
    margin: 36px 0 0;
    font-size: 0.92rem;
}

.method-deepen-link a {
    color: var(--sage-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 168, 136, 0.4);
    padding-bottom: 2px;
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
    font-weight: 400;
}

.method-deepen-link a:hover,
.method-deepen-link a:focus-visible {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
}

/* ============================================================
   CLINICAL DISTINCTION SECTION (PROFESSIONALS PAGE)
   ============================================================ */
.distinction-subhead {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin: 64px 0 28px;
    line-height: 1.4;
}

.distinction-lead {
    max-width: 760px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 1rem;
    text-align: center;
}

.distinction-summary {
    max-width: 820px;
    margin: 40px auto 0;
    padding: 22px 28px;
    background: var(--cream);
    border-right: 3px solid var(--gold);
    border-radius: 10px;
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 1rem;
}

.distinction-summary strong {
    color: var(--text-primary);
}

/* State cards grid */
.states-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.state-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 26px 28px;
    box-shadow: var(--shadow-sm);
    border-right: 4px solid var(--sage);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.state-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.state-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px;
    line-height: 1.45;
}

.state-card .state-en {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.92rem;
}

.state-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
    margin: 0 0 10px;
}

.state-card p:last-child {
    margin-bottom: 0;
}

.state-card .state-signs {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.state-card .state-signs em {
    font-style: italic;
}

/* Per-state accent colors (right border) */
.state-card.state-meltdown { border-right-color: #C97A6E; }
.state-card.state-shutdown { border-right-color: #6E8FA8; }
.state-card.state-tantrum  { border-right-color: var(--gold); }
.state-card.state-pda      { border-right-color: var(--sage-dark); }

.state-card.g-meltdown  { border-right-color: #C97A6E; }
.state-card.g-tantrum   { border-right-color: var(--gold); }
.state-card.g-shutdown  { border-right-color: #6E8FA8; }
.state-card.g-pda       { border-right-color: var(--sage-dark); }
.state-card.g-uncertain { border-right-color: #A89A8C; }

.g-grid {
    grid-template-columns: repeat(2, 1fr);
}

.g-card .state-signs {
    margin-top: 8px;
    padding: 10px 14px;
    background: var(--cream);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Distinction comparison table */
.distinction-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.distinction-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    text-align: right;
}

.distinction-table thead {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
}

.distinction-table thead th {
    text-align: right;
    padding: 16px 18px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.distinction-table thead th:first-child {
    width: 18%;
}

.distinction-table tbody th[scope="row"] {
    text-align: right;
    padding: 16px 18px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    vertical-align: top;
    white-space: nowrap;
}

.distinction-table tbody td {
    padding: 16px 18px;
    vertical-align: top;
    color: var(--text-secondary);
    line-height: 1.7;
    border-bottom: 1px solid var(--cream-dark);
}

.distinction-table tbody tr:last-child th[scope="row"],
.distinction-table tbody tr:last-child td {
    border-bottom: none;
}

.distinction-table tbody tr:hover td,
.distinction-table tbody tr:hover th[scope="row"] {
    background: rgba(163, 184, 160, 0.08);
}

/* Relocated download card under the new section */
.distinction-download {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.distinction-download .download-card {
    max-width: 460px;
    width: 100%;
}

/* Responsive - clinical distinction */
@media (max-width: 900px) {
    .states-grid,
    .g-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .distinction-table {
        font-size: 0.86rem;
    }

    .distinction-table thead th,
    .distinction-table tbody th[scope="row"],
    .distinction-table tbody td {
        padding: 12px 12px;
    }
}

@media (max-width: 768px) {
    .distinction-table {
        min-width: 720px;
    }
}

@media (max-width: 600px) {
    .distinction-subhead {
        font-size: 1.35rem;
        margin: 48px 0 22px;
    }

    .distinction-table-wrap {
        overflow-x: visible;
        background: transparent;
        box-shadow: none;
    }

    .distinction-table {
        min-width: 0;
        background: transparent;
    }

    .distinction-table thead {
        display: none;
    }

    .distinction-table,
    .distinction-table tbody,
    .distinction-table tr,
    .distinction-table th[scope="row"],
    .distinction-table td {
        display: block;
        width: 100% !important;
    }

    .distinction-table tr {
        background: var(--white);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-sm);
        margin-bottom: 16px;
        padding: 14px 0;
        border: none;
    }

    .distinction-table tbody th[scope="row"] {
        background: transparent;
        padding: 14px 18px 8px;
        border-bottom: 1px solid var(--cream-dark);
        margin-bottom: 6px;
        font-size: 1.02rem;
        color: var(--sage-dark);
    }

    .distinction-table tbody td {
        padding: 8px 18px;
        border-bottom: none;
        position: relative;
    }

    .distinction-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.74rem;
        font-weight: 600;
        color: var(--sage-dark);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 3px;
    }
}

/* ============================================================
   LIGHT — RELAUNCH COMPONENTS (2026 site restructure)
   Harmonized with existing tokens · RTL · sage #A3B8A0
   ============================================================ */

/* ── Section tag (pill label) ── */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-dark);
    background: rgba(201, 169, 110, 0.13);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

/* ── Centered section header ── */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ── Background helpers ── */
.section-cream { background: var(--cream-dark); }
.section-white { background: var(--white); }

/* ── Outline button (harmonized variant) ── */
.btn-outline {
    background: transparent;
    color: var(--sage-dark);
    border: 1.5px solid var(--sage);
}

.btn-outline:hover {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 184, 160, 0.3);
}

/* ── Nav CTA ("התחילי כאן") ── */
.nav-links a.nav-cta {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    padding: 9px 20px;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(163, 184, 160, 0.3);
    transition: var(--transition);
}

.nav-links a.nav-cta:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(163, 184, 160, 0.4);
}

.nav-links a.nav-cta::after { display: none; }

.mobile-menu a.nav-cta {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    padding: 12px 34px;
    border-radius: 100px;
}

.mobile-menu a.nav-cta:hover { color: var(--white); }

/* ── Page hero (use together with .subpage-hero) ── */
.page-hero h2 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin: 8px auto 20px;
    max-width: 680px;
    line-height: 1.5;
}

.page-hero .page-hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

.page-hero .hero-price,
.book-hero .hero-price {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 24px 0 4px;
}

.page-hero .hero-meta,
.book-hero .hero-meta { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 4px; }

.page-hero .hero-bonus,
.book-hero .hero-bonus { font-size: 0.95rem; color: var(--sage-dark); font-weight: 600; margin-bottom: 22px; }

.page-hero .hero-cta-note,
.book-hero .hero-cta-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; }

.page-hero-cta {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Book section (index teaser) ── */
.book-section { background: var(--cream-dark); }

.book-container {
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    gap: 56px;
    align-items: center;
}

.book-cover { flex-shrink: 0; }

.book-cover-visual {
    width: 210px;
    height: 296px;
    background: linear-gradient(160deg, var(--sage), var(--sage-dark));
    border-radius: 4px 14px 14px 4px;
    box-shadow: -10px 14px 34px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 26px;
    text-align: center;
    color: var(--white);
}

.book-cover-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 14px;
}

.book-cover-author { font-size: 0.85rem; opacity: 0.85; letter-spacing: 1px; }

.book-content { flex: 1; }

.book-content h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 6px 0 10px;
}

.book-content h3 {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--sage-dark);
    line-height: 1.5;
    margin-bottom: 18px;
}

.book-intro { font-size: 1.02rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }

.book-features { list-style: none; padding: 0; margin: 0 0 28px; }

.book-features li { padding: 6px 0; font-size: 0.98rem; color: var(--text-secondary); }

.book-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.book-format { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── Book page hero (2-col) ── */
.book-hero { padding: 170px 0 90px; background: var(--cream-dark); }

.book-hero .container { display: flex; gap: 64px; align-items: center; max-width: 1000px; }

.book-hero .book-hero-content { flex: 1; }

.book-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 10px 0 12px;
}

.book-hero h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--sage-dark);
    line-height: 1.5;
    margin-bottom: 18px;
}

.book-hero .book-hero-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 22px; }

/* ── App sales layout ── */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
    max-width: 940px;
    margin: 48px auto 40px;
}

.app-feature {
    padding: 28px 22px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    text-align: center;
}

.app-feature-icon { font-size: 2rem; margin-bottom: 14px; }

.app-feature h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }

.app-feature p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; }

.app-cta-box {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, #eef4ee, #e6efe6);
    border: 1px solid var(--sage);
    border-radius: var(--radius-md);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.app-free-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sage-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.app-cta-box h3 { font-size: 1.3rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }

.app-cta-text p { font-size: 0.95rem; color: var(--text-secondary); margin: 0; }

.app-cta-buttons { text-align: center; flex-shrink: 0; }

.app-cta-buttons .app-note { margin-top: 10px; }

/* ── Tools / "start here" grid ── */
.start-section { background: var(--cream-dark); }

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    max-width: 1040px;
    margin: 0 auto;
}

.tool-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.tool-card:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.tool-card.featured { border: 2px solid var(--sage); background: #fbfdfa; }

.tool-badge {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 100px;
    align-self: flex-start;
}

.tool-badge.free     { background: #e8f4e8; color: #2d7a2d; }
.tool-badge.popular  { background: var(--sage); color: var(--white); }
.tool-badge.book     { background: var(--sage-dark); color: var(--white); }
.tool-badge.unique   { background: #e8eef8; color: #2d4a8a; }
.tool-badge.personal { background: #f4ece8; color: #8a3a2d; }
.tool-badge.events   { background: #f4f0e8; color: #7a6020; }

.tool-card h3 { font-family: var(--font-heading); font-size: 1.12rem; font-weight: 600; color: var(--text-primary); margin: 0; }

.tool-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

.tool-audience { font-size: 0.8rem !important; color: var(--text-muted) !important; font-style: italic; }

.tool-price { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); }

.tool-card .btn { margin-top: auto; justify-content: center; }

/* ── Testimonials ── */
.testimonials-section { background: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    max-width: 960px;
    margin: 0 auto;
}

.testi-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testi-text { font-size: 1rem; line-height: 1.75; color: var(--text-primary); font-style: italic; }

.testi-name { font-weight: 600; font-size: 0.92rem; color: var(--text-primary); display: block; }

.testi-role { font-size: 0.8rem; color: var(--text-muted); display: block; margin-top: 2px; }

/* ── Footer (4-column) ── */
.footer-cols {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    text-align: right;
    max-width: 1000px;
    margin: 0 auto 44px;
}

.footer-brand .footer-logo { text-align: right; margin-bottom: 14px; }

.footer-brand p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; margin: 0 0 8px; }

.footer-col h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 16px; }

.footer-col ul { list-style: none; padding: 0; margin: 0; }

.footer-col li { margin-bottom: 10px; }

.footer-col a { font-size: 0.88rem; color: var(--text-secondary); transition: color 0.3s var(--ease); }

.footer-col a:hover { color: var(--gold); }

/* ── Lectures / workshops (professionals) ── */
.lectures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.lecture-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 30px 26px;
}

.lecture-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }

.lecture-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }

.lecture-audience { display: block; font-size: 0.82rem; color: var(--sage-dark); font-weight: 500; }

.lectures-cta { text-align: center; margin-top: 40px; }

/* ── Reusable marketing components (new pages) ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
}

.feature-card .feature-icon { font-size: 2rem; margin-bottom: 14px; }

.feature-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }

.feature-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; }

.feature-card .feature-meta { display: block; margin-top: 12px; font-size: 0.82rem; color: var(--gold-dark); font-weight: 600; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
}

.info-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 28px;
}

.info-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-primary); margin-bottom: 10px; }

.info-card .info-eyebrow { display: block; font-size: 0.85rem; font-weight: 600; color: var(--sage-dark); margin-bottom: 6px; }

.info-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

.quote-stack { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }

.big-quote {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    text-align: center;
    padding: 28px 24px;
    border-right: 3px solid var(--sage);
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.check-list { max-width: 720px; margin: 0 auto; list-style: none; padding: 0; }

.check-list li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 14px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.details-list { max-width: 600px; margin: 0 auto; list-style: none; padding: 0; }

.details-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 1rem;
}

.details-list .detail-label { color: var(--text-muted); }

.details-list .detail-value { color: var(--text-primary); font-weight: 500; }

.price-note { text-align: center; font-size: 1.05rem; color: var(--text-secondary); max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* ── CTA band (final CTA) ── */
.cta-band {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    text-align: center;
    color: var(--white);
    padding: 90px 0;
}

.cta-band h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }

.cta-band .cta-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }

.cta-band .btn-primary { background: var(--white); color: var(--sage-dark); }

.cta-band .btn-primary:hover { background: var(--cream); }

.cta-band .cta-note { font-size: 0.85rem; opacity: 0.92; margin-top: 14px; }

/* ── Signup / static forms ── */
.signup-section { text-align: center; }

.signup-form {
    max-width: 460px;
    margin: 28px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: right;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    color: var(--text-primary);
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(163, 184, 160, 0.15);
}

.signup-form .btn { justify-content: center; }

.form-note { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; max-width: 460px; margin: 16px auto 0; text-align: center; }

/* ── Trust strip ── */
.trust-section { text-align: center; background: var(--cream-dark); padding: 80px 0; }

.trust-section p { font-size: 1rem; color: var(--text-secondary); line-height: 1.95; max-width: 640px; margin: 0 auto; }

/* ── Book "what's inside" gates ── */
.gates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
}

.gate-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    border-top: 3px solid var(--sage);
}

.gate-card .gate-chapters { font-size: 0.8rem; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; }

.gate-card h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-primary); margin: 8px 0 12px; }

.gate-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ── About page ── */
.about-photo-wrap { text-align: center; margin-top: 32px; }

.about-photo-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-story { max-width: 760px; margin: 0 auto; }

.about-story p { font-size: 1.08rem; color: var(--text-secondary); line-height: 1.95; }

/* ── Relaunch responsive ── */
@media (max-width: 900px) {
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
    .book-hero .container { flex-direction: column; gap: 36px; text-align: center; }
    .book-container { flex-direction: column; gap: 32px; text-align: center; }
    .book-cta-row { justify-content: center; }
    .app-cta-box { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .footer-cols { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .footer-brand .footer-logo { text-align: center; }
    .big-quote { font-size: 1.28rem; }
    .details-list li { flex-direction: column; gap: 4px; text-align: center; justify-content: center; }
    .section-header h2 { font-size: 2rem; }
}

/* Hebrew hero headline (index) — full sentence, not the short Latin logotype */
.hero-title.hero-title-he {
    font-size: 2.7rem;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .hero-title.hero-title-he { font-size: 2.05rem; }
}

/* Select inputs inside the existing .form-group pattern (professionals contact) */
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    direction: rtl;
}

.form-group select:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(163, 184, 160, 0.15);
}
