/* =========================================================
   home.css — UCal Landing Page
   ========================================================= */

/* Native anchor offset for sticky navbar */
html {
    scroll-behavior: smooth;
}
section[id], footer[id] {
    scroll-margin-top: 72px;
}

:root {
    --brand:       #5bbe58;
    --brand-dark:  #49a846;
    --brand-light: #e8f7e8;
    --brand-glow:  rgba(91, 190, 88, 0.22);
    --hero-bg:     #0d1b2a;
    --dark2:       #1a2a3a;
    --text:        #1e2a38;
    --text-muted:  #6b7a8d;
    --white:       #ffffff;
    --surface:     #f7faf7;
    --border:      #e3e8ef;
    --shadow-sm:   0 2px 10px rgba(0,0,0,0.07);
    --shadow-md:   0 4px 24px rgba(0,0,0,0.11);
    --shadow-lg:   0 8px 44px rgba(0,0,0,0.15);
    --radius:      14px;
    --radius-sm:   8px;
    --radius-lg:   22px;
}

/* ── Reset / Base ── */
.home-page {
    font-family: 'Heebo', 'Open Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.65;
}
.home-page *, .home-page *::before, .home-page *::after { box-sizing: border-box; }
.home-page a { text-decoration: none; color: inherit; }
.home-page ul { list-style: none; margin: 0; padding: 0; }
.home-page img { max-width: 100%; display: block; }

/* ── Container ── */
.h-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Heading ── */
.h-section-head {
    text-align: center;
    margin-bottom: 56px;
}
.h-section-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.h-section-head h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.25;
}
.h-section-head p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}


/* =========================================================
   NAVBAR
   ========================================================= */
.hn {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(13, 27, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s, box-shadow 0.3s;
}
.hn.hn-scrolled {
    background: rgba(13,27,42,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hn-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.hn-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.hn-logo img { height: 36px; width: 36px; object-fit: contain; }
.hn-logo span { color: #fff; font-size: 20px; font-weight: 800; }
.hn-links {
    display: flex;
    gap: 4px;
    flex: 1;
}
html.ltr .hn-links { margin-left: 20px; }
html.rtl .hn-links { margin-right: 20px; }
.hn-links li a {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.hn-links li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.hn-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Lang selector */
.hn-lang { position: relative; }
.hn-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.hn-lang-btn:hover { background: rgba(255,255,255,0.18); }
.hn-chevron { font-size: 10px; transition: transform 0.2s; }
.hn-lang.open .hn-chevron { transform: rotate(180deg); }
.hn-lang-drop {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    min-width: 130px;
    z-index: 200;
}
html.rtl .hn-lang-drop { left: 0; }
html.ltr .hn-lang-drop { right: 0; }
.hn-lang.open .hn-lang-drop { display: block; }
.hn-lang-drop a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text);
    transition: background 0.15s;
}
.hn-lang-drop a:hover { background: var(--surface); }
.hn-lang-drop a.hn-lang-active { color: var(--brand); font-weight: 700; }

/* Nav CTA */
.hn-cta {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--brand);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.hn-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* Burger */
.hn-burger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
}
html.rtl .hn-burger { margin-right: auto; }
html.ltr .hn-burger { margin-left: auto; }

/* Mobile menu */
.hn-mobile {
    display: none;
    flex-direction: column;
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(13,27,42,0.98);
}
.hn-mobile.open { display: flex; }
.hn-mob-link {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.hn-mob-link:hover { color: #fff; }
.hn-mob-lang {
    display: flex;
    gap: 16px;
    padding: 14px 0 4px;
}
.hn-mob-lang a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
}
.hn-mob-lang a.active {
    color: var(--brand);
    border-color: var(--brand);
}


/* =========================================================
   HERO
   ========================================================= */
.h-hero {
    min-height: 78vh;
    background: var(--hero-bg);
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}
.h-hero-glow {
    position: absolute;
    top: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,190,88,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
html.rtl .h-hero-glow { right: -200px; }
html.ltr .h-hero-glow { left: -200px; }
.h-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.h-hero-content { display: flex; flex-direction: column; gap: 20px; }

.h-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91,190,88,0.15);
    border: 1px solid rgba(91,190,88,0.3);
    color: #7dd87a;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 16px;
    border-radius: 50px;
    width: fit-content;
}
.h-hero-content h1 {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin: 0;
}
.h-hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
}
.h-hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.h-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(91,190,88,0.35);
    white-space: nowrap;
}
.h-cta-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(91,190,88,0.45);
}
.h-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.18);
    transition: color 0.2s, background 0.2s;
}
.h-cta-secondary:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.08);
}
.h-hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.h-hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.h-hero-trust .fa-check-circle { color: var(--brand); }

/* Calendar Mockup */
.h-hero-visual { display: flex; justify-content: center; }
.h-cal-mockup {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
    width: 320px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(91,190,88,0.1);
    animation: h-float 4s ease-in-out infinite;
}
@keyframes h-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.h-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.h-cal-month {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.h-cal-nav {
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 12px;
    transition: color 0.2s;
}
.h-cal-nav:hover { color: var(--brand); }
.h-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.h-cal-dayname {
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    font-weight: 600;
    padding-bottom: 6px;
}
.h-cal-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 8px;
    position: relative;
    cursor: default;
}
.h-cal-empty { background: transparent; }
.h-cal-today {
    background: var(--brand);
    border-radius: 8px;
}
.h-cal-today .h-cal-num { color: #fff !important; font-weight: 800; }
.h-cal-num {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}
.h-cal-ev {
    width: 5px; height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.h-ev-green  { background: var(--brand); }
.h-ev-blue   { background: #4285f4; }
.h-ev-orange { background: #f59e0b; }
.h-ev-purple { background: #8b5cf6; }
.h-cal-foot {
    display: flex;
    justify-content: space-around;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.h-cal-foot-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}
.h-ev-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}


/* =========================================================
   STATS
   ========================================================= */
.h-stats {
    display: none;
    background: #f5fbf5;
    padding: 48px 0;
    border-bottom: 1px solid rgba(91,190,88,0.15);
}
.h-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.h-stat {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(91,190,88,0.18);
    box-shadow: 0 2px 10px rgba(91,190,88,0.07);
}
.h-stat-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--brand);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.h-stat-inf { font-size: 56px; }
.h-stat-label {
    font-size: 13px;
    color: #4a6b4a;
    margin-top: 6px;
    font-weight: 500;
}


/* =========================================================
   FEATURES
   ========================================================= */
.h-features {
    padding: 96px 0;
    background: var(--white);
}
.h-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.h-feat-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    opacity: 0;
    transform: translateY(20px);
}
.h-feat-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s, border-color 0.25s, box-shadow 0.25s;
}
.h-feat-card:hover {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-glow), var(--shadow-md);
    transform: translateY(-4px);
}
.h-feat-icon {
    width: 52px; height: 52px;
    background: var(--brand-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--brand);
    margin-bottom: 16px;
}
.h-feat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}
.h-feat-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */
.h-how {
    padding: 96px 0;
    background: var(--surface);
}
.h-steps-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}
.h-step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
}
.h-step.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s;
}
.h-step:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.h-step-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}
.h-step-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.h-step-icon {
    font-size: 20px;
    color: var(--brand);
}
.h-step h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
}
.h-step p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
.h-step-arrow {
    color: var(--brand);
    font-size: 16px;
    opacity: 0.4;
    padding: 0 4px;
    align-self: center;
    flex-shrink: 0;
}


/* =========================================================
   SPLIT LAYOUT (Google + Omer)
   ========================================================= */
.h-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.h-split-rev {
    direction: rtl; /* reverse columns */
}
html.ltr .h-split-rev {
    direction: ltr;
}
/* For RTL site, "reverse" means LTR order */
html.rtl .h-split-rev { direction: ltr; }
html.ltr  .h-split-rev { direction: rtl; }
.h-split-text { direction: initial; }
.h-split-visual { direction: initial; }

.h-split-text .h-section-tag { margin-bottom: 10px; }
.h-split-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 16px;
    line-height: 1.28;
}
.h-split-text p {
    font-size: 15.5px;
    color: var(--text-muted);
    margin: 0 0 24px;
    line-height: 1.7;
}

/* Check list */
.h-check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 28px;
}
.h-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text);
}
.h-check-list .fa-check {
    color: var(--brand);
    font-size: 13px;
    flex-shrink: 0;
    background: var(--brand-light);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h-check-list + .h-cta-primary {
    margin-top: 28px;
}


/* =========================================================
   GOOGLE SECTION
   ========================================================= */
.h-google {
    padding: 96px 0;
    background: var(--white);
}
.h-gcal-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 380px;
    margin: 0 auto;
}
.h-gcal-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.h-gcal-g-badge {
    width: 38px; height: 38px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4285f4;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.h-gcal-top-txt { display: flex; flex-direction: column; gap: 2px; }
.h-gcal-top-txt strong { font-size: 14px; font-weight: 700; color: var(--text); }
.h-gcal-connected {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--brand);
    font-weight: 600;
}
.h-gcal-connected .fa-circle { font-size: 7px; }
.h-gcal-evlist { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.h-gcal-ev {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--surface);
    border-radius: 10px;
}
.h-gcal-dot {
    width: 10px; height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}
.h-gcal-ev div { display: flex; flex-direction: column; gap: 2px; }
.h-gcal-evtime { font-size: 11px; color: var(--text-muted); }
.h-gcal-evname { font-size: 13px; font-weight: 600; color: var(--text); }
.h-gcal-actions {
    display: flex;
    justify-content: space-around;
    padding: 14px 20px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.h-gcal-actions span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}
.h-gcal-actions .fas { color: var(--brand); font-size: 11px; }


/* =========================================================
   OMER SECTION
   ========================================================= */
.h-omer {
    padding: 96px 0;
    background: var(--surface);
}
.h-omer-card {
    background: var(--hero-bg);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    color: #fff;
    max-width: 340px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(91,190,88,0.2);
}
.h-omer-header {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 20px;
}
.h-omer-count { text-align: center; margin-bottom: 10px; }
.h-omer-big {
    font-size: 60px;
    font-weight: 900;
    color: var(--brand);
    line-height: 1;
}
.h-omer-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
}
.h-omer-attr {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    background: rgba(91,190,88,0.12);
    border: 1px solid rgba(91,190,88,0.2);
    border-radius: 8px;
    padding: 6px;
    margin: 12px 0;
}
.h-omer-bracha {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 4px;
}
.h-omer-boxes {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 14px;
}
.h-obox {
    width: 30px; height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 1.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
}
.h-obox.counted {
    background: rgba(91,190,88,0.22);
    border-color: var(--brand);
    color: var(--brand);
}
.h-obox.pending {
    background: rgba(245,158,11,0.2);
    border-color: #f59e0b;
    color: #f59e0b;
}
.h-obox-more {
    color: rgba(255,255,255,0.3);
    font-size: 16px;
    letter-spacing: 2px;
}
.h-omer-legend {
    display: flex;
    justify-content: center;
    gap: 14px;
}
.h-omer-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
}
.h-olegend {
    width: 10px; height: 10px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}
.h-olegend.counted { background: rgba(91,190,88,0.4); border-color: var(--brand); }
.h-olegend.pending { background: rgba(245,158,11,0.35); border-color: #f59e0b; }


/* =========================================================
   MORE FEATURES (Zmanim / Notifs / Themes)
   ========================================================= */
.h-more {
    padding: 96px 0;
    background: var(--white);
}
.h-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.h-more-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    opacity: 0;
    transform: translateY(20px);
}
.h-more-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s, border-color 0.25s, box-shadow 0.25s;
}
.h-more-card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.h-more-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    background: var(--brand-light);
    color: var(--brand);
}
.h-icon-bell { background: #fff3e0; color: #f59e0b; }
.h-icon-palette { background: #f3e8ff; color: #8b5cf6; }
.h-more-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
}
.h-more-card > p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 18px;
    line-height: 1.6;
}

/* Zmanim list */
.h-zmanim-list { display: flex; flex-direction: column; gap: 8px; }
.h-zman {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.h-zman i { color: var(--brand); font-size: 13px; flex-shrink: 0; }
.h-zman span { flex: 1; font-size: 13px; color: var(--text); }
.h-zman strong { font-size: 13px; color: var(--brand); font-weight: 700; }

/* Notif list */
.h-notif-list { display: flex; flex-direction: column; gap: 10px; }
.h-notif-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.h-notif-row i { color: var(--brand); font-size: 14px; flex-shrink: 0; }
.h-notif-row span:nth-child(2) { flex: 1; font-size: 13.5px; color: var(--text); }
.h-notif-badge {
    font-size: 11px;
    font-weight: 700;
    background: var(--brand-light);
    color: var(--brand);
    padding: 3px 8px;
    border-radius: 50px;
}

/* Themes */
.h-themes-row { display: flex; gap: 8px; flex-wrap: wrap; }
.h-theme-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s;
}
.h-tl { background: #fffbf0; color: #d97706; border-color: #fde68a; }
.h-td { background: #1f2937; color: #d1d5db; border-color: #374151; }
.h-ta { background: var(--brand-light); color: var(--brand); border-color: rgba(91,190,88,0.3); }


/* =========================================================
   PLATFORMS
   ========================================================= */
.h-platforms {
    padding: 80px 0;
    background: var(--surface);
}
.h-platforms-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.h-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 32px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    min-width: 110px;
}
.h-platform:hover {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
    transform: translateY(-4px);
}
.h-platform i {
    font-size: 32px;
    color: var(--brand);
}
.h-platform span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}


/* =========================================================
   APP STORES
   ========================================================= */
.h-appstores {
    padding: 80px 0;
    background: #f5fbf5;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(91,190,88,0.15);
    border-bottom: 1px solid rgba(91,190,88,0.15);
}
.h-appstores-glow {
    position: absolute;
    top: 50%; left: 30%;
    transform: translate(-50%, -50%);
    width: 700px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(91,190,88,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.h-appstores-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}
.h-appstores-text {
    flex: 1;
}
.h-appstores-badge-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    background: rgba(91,190,88,0.12);
    border: 1px solid rgba(91,190,88,0.3);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--brand);
}
.h-appstores-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a2e1a;
    margin: 0 0 14px;
    line-height: 1.25;
}
.h-appstores-text p {
    font-size: 16px;
    color: #4a6b4a;
    margin: 0 0 36px;
    line-height: 1.65;
    max-width: 480px;
}
.h-store-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.h-store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
    min-width: 180px;
}
.h-store-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(91,190,88,0.18);
}
.h-store-google {
    background: #fff;
    border: 1.5px solid rgba(91,190,88,0.4);
    box-shadow: 0 2px 12px rgba(91,190,88,0.1);
}
.h-store-apple {
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.h-store-badge i {
    font-size: 28px;
    flex-shrink: 0;
}
.h-store-google i { color: #01875f; }
.h-store-apple i  { color: #1a1a1a; }
.h-store-badge-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.h-store-badge-txt span {
    font-size: 11px;
    color: rgba(0,0,0,0.45);
    letter-spacing: 0.03em;
}
.h-store-badge-txt strong {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Phone mockup */
.h-appstores-visual {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}
.h-phone-mockup {
    width: 220px;
    background: #0f1923;
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(91,190,88,0.08), inset 0 0 0 1px rgba(255,255,255,0.04);
    overflow: hidden;
    position: relative;
    animation: h-float 4s ease-in-out infinite;
}
.h-phone-screen {
    padding: 0;
}
.h-phone-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 6px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}
.h-phone-bar .h-phone-icons { display: flex; gap: 5px; font-size: 10px; }
.h-phone-app {
    padding: 0 12px 16px;
}
.h-phone-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 0 8px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}
.h-phone-month {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand);
    text-align: center;
    margin-bottom: 6px;
}
.h-phone-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}
.h-pg-name {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    padding: 2px 0;
    font-weight: 600;
}
.h-pg-cell {
    font-size: 10px;
    color: rgba(255,255,255,0.75);
    padding: 4px 2px;
    border-radius: 50%;
}
.h-pg-empty { color: transparent; }
.h-pg-today {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
}
.h-phone-omer {
    margin-top: 10px;
    background: rgba(91,190,88,0.12);
    border: 1px solid rgba(91,190,88,0.25);
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--brand);
    font-weight: 600;
}
.h-phone-omer i { font-size: 11px; flex-shrink: 0; }
.h-phone-omer-num {
    margin-inline-start: auto;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.h-cta-banner {
    padding: 80px 0;
    background: var(--hero-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.h-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(91,190,88,0.16) 0%, transparent 70%);
    pointer-events: none;
}
.h-cta-content { position: relative; z-index: 1; }
.h-cta-banner h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 14px;
}
.h-cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.h-cta-lg {
    font-size: 16px !important;
    padding: 16px 34px !important;
    border-radius: 16px !important;
}


/* =========================================================
   CONTACT
   ========================================================= */
.h-contact {
    padding: 96px 0;
    background: var(--white);
}
.h-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start;
}
.h-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}
.h-cinfo {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.h-cinfo-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.h-cinfo div { display: flex; flex-direction: column; gap: 3px; }
.h-cinfo strong { font-size: 14px; font-weight: 700; color: var(--text); }
.h-cinfo span { font-size: 13px; color: var(--text-muted); }

/* Form */
.h-contact-form {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.h-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.h-form-group { display: flex; flex-direction: column; gap: 6px; }
.h-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}
.h-form-group input,
.h-form-group textarea {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}
.h-form-group input:focus,
.h-form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}
.h-form-group textarea { resize: vertical; min-height: 120px; }
.h-contact-form .button { width: 100%; }
.h-contact-msg {
    font-size: 13.5px;
    text-align: center;
    padding: 8px 0;
    min-height: 20px;
}
.h-contact-msg.success { color: var(--brand); }
.h-contact-msg.error { color: #ef5350; }


/* =========================================================
   FOOTER
   ========================================================= */
.h-footer {
    background: var(--hero-bg);
    padding: 64px 0 0;
}
.h-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.h-footer-brand .h-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.h-footer-logo img { height: 38px; width: 38px; object-fit: contain; }
.h-footer-logo span { color: #fff; font-size: 20px; font-weight: 800; }
.h-footer-brand p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 260px;
}
.h-footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 0 0 14px;
}
.h-footer-col a {
    display: block;
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
    transition: color 0.2s;
}
.h-footer-col a:hover { color: #fff; }
.h-footer-col a.h-footer-lang-active { color: var(--brand); font-weight: 700; }
.h-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.h-footer-bottom span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.3);
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-card.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .h-hero-content h1 { font-size: 38px; }
    .h-features-grid { grid-template-columns: repeat(2, 1fr); }
    .h-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .h-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .hn-links { display: none; }
    .hn-actions .hn-lang { display: none; }
    .hn-burger { display: block; }
    .h-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .h-hero-visual { display: none; }
    .h-hero-badge { margin: 0 auto; }
    .h-hero-desc { margin: 0 auto; }
    .h-hero-ctas { justify-content: center; }
    .h-hero-trust { justify-content: center; }
    .h-split { grid-template-columns: 1fr; gap: 36px; }
    html.rtl .h-split-rev { direction: rtl; }
    html.ltr .h-split-rev { direction: ltr; }
    .h-steps-wrap { gap: 8px; }
    .h-step-arrow { display: none; }
    .h-step { min-width: 140px; }
    .h-more-grid { grid-template-columns: 1fr; }
    .h-contact-wrap { grid-template-columns: 1fr; }
    .h-form-row { grid-template-columns: 1fr; }
    .h-footer-grid { grid-template-columns: 1fr 1fr; }
    .h-appstores-inner { flex-direction: column; gap: 48px; }
    .h-appstores-text h2 { font-size: 26px; }
    .h-appstores-visual { order: -1; }
}

@media (max-width: 600px) {
    .h-hero-content h1 { font-size: 30px; }
    .h-hero-desc { font-size: 15px; }
    .h-section-head h2 { font-size: 26px; }
    .h-features { padding: 64px 0; }
    .h-features-grid { grid-template-columns: 1fr; }
    .h-how { padding: 64px 0; }
    .h-steps-wrap { flex-direction: column; align-items: stretch; }
    .h-step { max-width: 100%; }
    .h-google { padding: 64px 0; }
    .h-omer { padding: 64px 0; }
    .h-more { padding: 64px 0; }
    .h-cta-banner h2 { font-size: 26px; }
    .h-appstores { padding: 64px 0; }
    .h-store-badge { min-width: unset; flex: 1; }
    .h-contact { padding: 64px 0; }
    .h-contact-form { padding: 20px 16px; }
    .h-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .h-footer-grid { grid-template-columns: 1fr; }
    .h-footer-bottom { flex-direction: column; text-align: center; }
    .h-platforms-row { gap: 16px; }
    .h-platform { padding: 18px 20px; min-width: 90px; }
}
