/* ===================================================================
   ZMAN 2026 — שכבת עיצוב מודרנית לעמוד תוכנת זמן (job-management.html)
   נטענת אחרי style.css ודורכת עליו. כל הכללים מוגדרים תחת
   body.zman-luxury-page כדי לא לדלוף לעמודים אחרים.
   ------------------------------------------------------------------
   מוסכמות:
   - prefix zv- לכל רכיב חדש (zman visual v2)
   - אין שינוי של שמות מחלקות/מזהים שה-JS תלוי בהם
   =================================================================== */

/* ===== 1. טוקנים ===== */
body.zman-luxury-page {
    /* מעט יותר "נשימה" מהזום הגלובלי של 0.75 */
    zoom: 0.8;

    --zv-ink:        #04181f;
    --zv-deep-1:     #052730;
    --zv-deep-2:     #074252;
    --zv-deep-3:     #0a6376;
    --zv-teal:       #0d7a8c;
    --zv-teal-soft:  #12a0b4;
    --zv-cyan:       #2fd0e2;
    --zv-aqua:       #8af1e6;
    --zv-gold:       #d9b258;
    --zv-gold-soft:  #f0d9a0;

    --zv-text:       #0f2f39;
    --zv-text-2:     #3c5b66;
    --zv-muted:      #6b8590;
    --zv-line:       rgba(9, 74, 90, 0.12);
    --zv-line-2:     rgba(9, 74, 90, 0.22);
    --zv-surface:    #ffffff;
    --zv-surface-2:  #f4f9fa;

    --zv-r-lg: 30px;
    --zv-r-md: 20px;
    --zv-r-sm: 14px;

    --zv-shadow-sm: 0 2px 10px -4px rgba(6, 46, 57, 0.14);
    --zv-shadow-md: 0 18px 44px -26px rgba(6, 46, 57, 0.36);
    --zv-shadow-lg: 0 40px 90px -40px rgba(4, 40, 50, 0.52);

    --zv-grad-brand: linear-gradient(120deg, var(--zv-teal) 0%, var(--zv-teal-soft) 45%, var(--zv-cyan) 100%);
    --zv-grad-dark:  linear-gradient(122deg, #03161d 0%, #063542 46%, #0a5a6d 100%);

    color: var(--zv-text);
    background:
        radial-gradient(circle at 6% 4%,  rgba(47, 208, 226, 0.10), transparent 26%),
        radial-gradient(circle at 96% 30%, rgba(217, 178, 88, 0.10), transparent 24%),
        radial-gradient(circle at 30% 92%, rgba(13, 122, 140, 0.08), transparent 26%),
        linear-gradient(180deg, #fbfdfd 0%, #f2f8f9 45%, #fafcfc 100%) !important;
    background-attachment: fixed !important;
}

/* ===== 2. פריסת העמוד =====
   שים לב: #header-placeholder הוא position:fixed ו-footer גם כן,
   לכן חייבים ריווח עליון שמפצה על גובה ההדר (באנר + סרגל ניווט)
   וריווח תחתון שמפצה על הפוטר הצף. ההדר יכול לגדול כשטקסט
   הבאנר נשבר לשתי שורות, ולכן הערך נדיב בכוונה. */
body.zman-luxury-page main.product-page-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 150px 0 5.5rem !important;
    overflow: visible;
}

/* נקודת עוגן אחידה מתחת להדר הצף */
body.zman-luxury-page [id] {
    scroll-margin-top: 132px;
}

/* רצועת רוחב אחידה לכל הסקשנים */
body.zman-luxury-page .zv-shell,
body.zman-luxury-page .zv-sec,
body.zman-luxury-page .zman-hero,
body.zman-luxury-page .zman-section-divider,
body.zman-luxury-page .modern-unified-panel,
body.zman-luxury-page .zman-feature-panels-row {
    width: min(1360px, calc(100% - 44px));
    margin-inline: auto;
    box-sizing: border-box;
}

body.zman-luxury-page .zv-sec {
    position: relative;
    padding: 4.2rem 0 0;
}

/* ===== 3. כותרות סקשן ===== */
body.zman-luxury-page .zv-head {
    max-width: 780px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

body.zman-luxury-page .zv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(13, 122, 140, 0.09);
    border: 1px solid rgba(13, 122, 140, 0.18);
    color: var(--zv-teal);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

body.zman-luxury-page .zv-eyebrow svg { flex: none; }

body.zman-luxury-page .zv-title {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: var(--zv-deep-2);
}

body.zman-luxury-page .zv-title em {
    font-style: normal;
    background: var(--zv-grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--zv-teal);
}

body.zman-luxury-page .zv-sub {
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.7;
    color: var(--zv-text-2);
}

/* ===================================================================
   4. HERO
   =================================================================== */
body.zman-luxury-page .zman-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-bottom: 0;
    padding: clamp(2.6rem, 4vw, 4.2rem) clamp(1.6rem, 4vw, 3.6rem);
    border: 1px solid rgba(138, 241, 230, 0.18);
    border-radius: 36px;
    text-align: right;
    color: #eaf7f9;
    background: var(--zv-grad-dark);
    box-shadow: var(--zv-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ביטול שכבת הרשת הישנה */
body.zman-luxury-page .zman-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 10%, transparent 78%);
    mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 10%, transparent 78%);
    pointer-events: none;
}

body.zman-luxury-page .zman-hero::after {
    content: '';
    position: absolute;
    z-index: -2;
    width: 720px;
    height: 720px;
    left: -300px;
    bottom: -480px;
    border: 1px solid rgba(138, 241, 230, 0.10);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(138, 241, 230, 0.022),
        0 0 0 160px rgba(138, 241, 230, 0.014);
    pointer-events: none;
}

body.zman-luxury-page .zv-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(6px);
}

body.zman-luxury-page .zv-orb--1 {
    width: 330px; height: 330px;
    top: -190px; right: 26%;
    background: rgba(47, 208, 226, 0.16);
    box-shadow: 0 0 140px rgba(47, 208, 226, 0.20);
    animation: zv-drift 16s ease-in-out infinite;
}

body.zman-luxury-page .zv-orb--2 {
    width: 210px; height: 210px;
    left: 8%; top: 14%;
    background: rgba(217, 178, 88, 0.13);
    box-shadow: 0 0 120px rgba(217, 178, 88, 0.16);
    animation: zv-drift 21s ease-in-out infinite reverse;
}

body.zman-luxury-page .zv-orb--3 {
    width: 260px; height: 260px;
    right: -90px; bottom: -140px;
    background: rgba(13, 122, 140, 0.22);
    box-shadow: 0 0 130px rgba(18, 160, 180, 0.18);
    animation: zv-drift 26s ease-in-out infinite;
}

@keyframes zv-drift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50%      { transform: translate3d(-26px, 22px, 0) scale(1.08); }
}

body.zman-luxury-page .zv-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.6rem);
    align-items: center;
}

body.zman-luxury-page .zv-hero-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

/* --- רצועות עדכון: הופכות לשורת גלולות בתוך הטקסט --- */
body.zman-luxury-page .zman-update-ribbons {
    position: static;
    top: auto; left: auto;
    display: flex;
    flex-wrap: wrap;
    direction: rtl;
    gap: 8px;
    width: auto;
    margin-bottom: 18px;
}

body.zman-luxury-page .zman-update-ribbon,
body.zman-luxury-page .zman-update-ribbon--reminders {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    box-shadow: none;
    color: #d9f4f7;
    font-size: 0.79rem;
    font-weight: 600;
    padding: 6px 14px;
    backdrop-filter: blur(6px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

body.zman-luxury-page .zman-update-ribbon:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(138, 241, 230, 0.4);
    transform: translateY(-1px);
}

body.zman-luxury-page .zman-update-ribbon svg,
body.zman-luxury-page .zman-update-ribbon--reminders svg { color: var(--zv-aqua); }

body.zman-luxury-page .zman-update-ribbon-badge {
    background: var(--zv-grad-brand);
    border: none;
    border-radius: 999px;
    color: #04222b;
    font-size: 0.66rem;
    font-weight: 900;
    padding: 2px 8px;
}

/* --- eyebrow --- */
body.zman-luxury-page .zman-hero-eyebrow {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(138, 241, 230, 0.22);
    border-radius: 999px;
    color: var(--zv-aqua);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    padding: 6px 16px;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

body.zman-luxury-page .zman-hero-eyebrow .eyebrow-dot {
    background: var(--zv-cyan);
    box-shadow: 0 0 0 4px rgba(47, 208, 226, 0.18);
}

/* --- כותרת --- */
body.zman-luxury-page .zman-hero-title {
    margin: 0 0 16px;
    font-size: clamp(2.1rem, 4.1vw, 3.6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #ffffff;
}

body.zman-luxury-page .zman-hero-title .title-highlight {
    background: linear-gradient(100deg, var(--zv-aqua) 0%, var(--zv-cyan) 45%, var(--zv-gold-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--zv-aqua);
}

body.zman-luxury-page .zman-hero-title .title-highlight::after {
    inset: auto 2px -4px 2px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--zv-cyan), transparent);
    opacity: 0.65;
}

body.zman-luxury-page .zman-hero-sub {
    max-width: 620px;
    margin: 0 0 26px;
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    line-height: 1.72;
    color: rgba(226, 245, 248, 0.82);
    font-weight: 400;
}

body.zman-luxury-page .zman-hero-sub strong {
    color: #fff;
    font-weight: 700;
}

/* --- כפתורי CTA --- */
body.zman-luxury-page .zman-hero-ctas {
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

body.zman-luxury-page .zman-cta-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--zv-cyan) 0%, var(--zv-teal-soft) 55%, var(--zv-teal) 100%);
    background-size: 100% 100%;
    color: #032027 !important;
    font-size: 1.02rem;
    font-weight: 900;
    padding: 15px 30px;
    border-radius: 999px;
    box-shadow: 0 18px 40px -16px rgba(47, 208, 226, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    animation: none;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

body.zman-luxury-page .zman-cta-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
    transform: translateX(-120%);
    animation: zv-sheen 4.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes zv-sheen {
    0%, 62%  { transform: translateX(-120%); }
    88%,100% { transform: translateX(120%); }
}

body.zman-luxury-page .zman-cta-primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 26px 54px -16px rgba(47, 208, 226, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body.zman-luxury-page .zman-cta-primary svg { position: relative; z-index: 1; }

body.zman-luxury-page .zman-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.26);
    color: #eaf7f9 !important;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

body.zman-luxury-page .zman-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--zv-aqua);
    transform: translateY(-2px);
}

/* --- שורת הבטחות --- */
body.zman-luxury-page .zv-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

body.zman-luxury-page .zv-assurances li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(224, 244, 247, 0.78);
}

body.zman-luxury-page .zv-assurances svg {
    flex: none;
    color: var(--zv-aqua);
}

/* --- סרגל נתונים --- */
body.zman-luxury-page .zman-trust-bar {
    max-width: none;
    margin: 0;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.zman-luxury-page .zman-trust-item {
    flex: 1 1 120px;
    min-width: 110px;
    padding: 4px 10px;
    text-align: right;
}

body.zman-luxury-page .zman-trust-item:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.14);
    top: 12%;
    bottom: 12%;
}

body.zman-luxury-page .zman-trust-num {
    font-size: clamp(1.4rem, 2.4vw, 1.95rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

body.zman-luxury-page .zman-trust-num span {
    background: linear-gradient(100deg, var(--zv-aqua), var(--zv-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--zv-aqua);
}

body.zman-luxury-page .zman-trust-label {
    font-size: 0.8rem;
    color: rgba(214, 238, 242, 0.66);
    font-weight: 500;
}

/* --- ויזואל: חלון אפליקציה מרחף --- */
body.zman-luxury-page .zv-hero-visual {
    position: relative;
    min-height: 380px;
}

body.zman-luxury-page .zv-window {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0a2b35;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 50px 90px -40px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform: perspective(1600px) rotateY(6deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

body.zman-luxury-page .zv-hero-visual:hover .zv-window {
    transform: perspective(1600px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}

body.zman-luxury-page .zv-window-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

body.zman-luxury-page .zv-window-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

body.zman-luxury-page .zv-window-dot:first-child { background: #ff6058; }
body.zman-luxury-page .zv-window-dot:nth-child(2) { background: #ffbd2e; }
body.zman-luxury-page .zv-window-dot:nth-child(3) { background: #28c840; }

body.zman-luxury-page .zv-window-title {
    margin-inline-start: auto;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(226, 245, 248, 0.6);
}

body.zman-luxury-page .zv-window img {
    display: block;
    width: 100%;
    height: auto;
}

/* כרטיסי זכוכית מרחפים */
body.zman-luxury-page .zv-float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 22px 44px -20px rgba(2, 26, 33, 0.7);
    backdrop-filter: blur(10px);
    color: var(--zv-deep-2);
}

body.zman-luxury-page .zv-float-ic {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 10px;
    background: rgba(13, 122, 140, 0.1);
    color: var(--zv-teal);
}

body.zman-luxury-page .zv-float-k {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--zv-muted);
}

body.zman-luxury-page .zv-float-v {
    display: block;
    font-size: 0.98rem;
    font-weight: 900;
    color: var(--zv-deep-2);
    line-height: 1.25;
}

body.zman-luxury-page .zv-float--timer {
    top: 8%;
    left: -22px;
    animation: zv-float-a 6.5s ease-in-out infinite;
}

body.zman-luxury-page .zv-float--ai {
    bottom: 16%;
    right: -26px;
    animation: zv-float-a 7.5s ease-in-out infinite 0.6s;
}

body.zman-luxury-page .zv-float--ai .zv-float-ic {
    background: rgba(123, 31, 162, 0.1);
    color: #7b1fa2;
}

body.zman-luxury-page .zv-float--cal {
    bottom: -14px;
    left: 12%;
    animation: zv-float-a 8.5s ease-in-out infinite 1.2s;
}

body.zman-luxury-page .zv-float--cal .zv-float-ic {
    background: rgba(217, 178, 88, 0.16);
    color: #a8842d;
}

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

body.zman-luxury-page .zv-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: zv-pulse 2s ease-out infinite;
    flex: none;
}

@keyframes zv-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ===================================================================
   5. רצועת אמון מתחת ל-HERO
   =================================================================== */
body.zman-luxury-page .zv-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    width: fit-content;
    max-width: min(1360px, calc(100% - 44px));
    margin: 22px auto 0;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--zv-line);
    box-shadow: var(--zv-shadow-sm);
    backdrop-filter: blur(8px);
}

body.zman-luxury-page .zv-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--zv-text-2);
    white-space: nowrap;
}

body.zman-luxury-page .zv-strip svg {
    flex: none;
    color: var(--zv-teal);
}

/* ===================================================================
   6. מפריד ובחירת מסלול
   =================================================================== */
body.zman-luxury-page .zman-section-divider {
    max-width: 560px;
    margin: 3.6rem auto 1.6rem;
}

body.zman-luxury-page .zman-divider-line {
    background: linear-gradient(90deg, transparent, var(--zv-line-2), transparent);
}

body.zman-luxury-page .zman-divider-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    color: var(--zv-teal);
    font-weight: 800;
}

body.zman-luxury-page .modern-unified-panel {
    max-width: min(1360px, calc(100% - 44px));
    margin-top: 0;
    margin-bottom: 0;
    padding: clamp(1.8rem, 3vw, 3rem);
    background:
        radial-gradient(circle at 100% 0%, rgba(47, 208, 226, 0.07), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
    border: 1px solid var(--zv-line);
    border-radius: var(--zv-r-lg);
    box-shadow: var(--zv-shadow-md);
}

body.zman-luxury-page .zv-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--zv-line);
}

body.zman-luxury-page .zv-panel-head h2 {
    margin: 8px 0 6px;
    font-size: clamp(1.5rem, 2.6vw, 2.15rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--zv-deep-2);
}

body.zman-luxury-page .zv-panel-head p {
    margin: 0;
    font-size: 0.98rem;
    color: var(--zv-text-2);
    line-height: 1.6;
}

body.zman-luxury-page .zv-panel-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.24);
    color: #14713c;
    font-size: 0.85rem;
    font-weight: 700;
}

body.zman-luxury-page .zv-panel-note svg { flex: none; }

/* עמודת התצוגה המקדימה רחבה יותר מעמודת הבחירה, כדי שצילום
   המסך יקבל שטח אמיתי ולא יראה כמו תמונה ממוזערת. */
body.zman-luxury-page .modern-unified-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.32fr);
    gap: clamp(1.4rem, 2.4vw, 2.5rem);
}

/* --- אזור הבחירה --- */
body.zman-luxury-page .modern-selection-area {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

body.zman-luxury-page .area-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--zv-deep-2);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

body.zman-luxury-page .license-selector-grid.modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
    margin-top: 0 !important;
    margin-bottom: 1.8rem;
}

/* קוביות המסלולים */
body.zman-luxury-page .modern-option {
    position: relative;
    overflow: hidden;
    padding: 16px 16px 15px;
    border: 1.5px solid var(--zv-line-2);
    border-radius: var(--zv-r-sm);
    background: #fff;
    box-shadow: var(--zv-shadow-sm);
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

body.zman-luxury-page .modern-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--zv-grad-brand);
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: none;
}

body.zman-luxury-page .modern-option:hover {
    border-color: rgba(13, 122, 140, 0.5);
    box-shadow: 0 14px 30px -18px rgba(6, 46, 57, 0.4);
    transform: translateY(-2px);
}

body.zman-luxury-page .modern-option.selected {
    border-color: var(--zv-teal);
    background: linear-gradient(180deg, #f2fbfc 0%, #ffffff 100%);
    box-shadow: 0 0 0 3px rgba(13, 122, 140, 0.12), 0 16px 34px -20px rgba(6, 46, 57, 0.42);
    transform: translateY(-2px);
}

body.zman-luxury-page .modern-option.selected::after {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 3px;
    background: var(--zv-grad-brand);
}

body.zman-luxury-page .option-content {
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    position: relative;
    z-index: 1;
}

body.zman-luxury-page .modern-option .tier-icon {
    width: 30px;
    height: 30px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 9px;
    background: rgba(13, 122, 140, 0.08);
    color: var(--zv-teal);
    opacity: 1;
    stroke-width: 1.9;
}

body.zman-luxury-page .modern-option.selected .tier-icon {
    background: var(--zv-grad-brand);
    color: #fff;
}

body.zman-luxury-page .tier-text {
    align-items: flex-start;
    text-align: right;
    gap: 3px;
}

body.zman-luxury-page .modern-option .tier-name {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--zv-deep-2);
}

body.zman-luxury-page .modern-option .tier-price {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--zv-teal);
}

body.zman-luxury-page .zv-tier-note {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--zv-muted);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

body.zman-luxury-page .zv-tier-flag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    background: rgba(13, 122, 140, 0.1);
    color: var(--zv-teal);
    border: 1px solid rgba(13, 122, 140, 0.2);
}

body.zman-luxury-page .zv-tier-flag--free {
    background: rgba(34, 197, 94, 0.12);
    color: #147a41;
    border-color: rgba(34, 197, 94, 0.28);
}

body.zman-luxury-page .zv-tier-flag--hot {
    background: linear-gradient(120deg, #d9b258, #f0d9a0);
    color: #4a3708;
    border-color: rgba(168, 132, 45, 0.4);
}

body.zman-luxury-page .zv-tier-flag--ai {
    background: linear-gradient(120deg, #7b1fa2, #b14fd8);
    color: #fff;
    border-color: rgba(123, 31, 162, 0.4);
}

/* --- אזור הפעולות --- */
body.zman-luxury-page .unified-actions-row.modern-actions {
    padding: 18px;
    border-radius: var(--zv-r-md);
    background: linear-gradient(180deg, #f6fbfc 0%, #eef7f9 100%);
    border: 1px solid var(--zv-line);
}

/* הכפתורים בנויים ב-style.css כ"סגמנטד קונטרול": הקבוצה מעגלת
   והכפתורים עצמם מרובעים עם border-radius:0 !important.
   נשמר המבנה הזה — רק מרעננים צבעים, עיגול והצללה. */
body.zman-luxury-page .modern-action-group {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0;
    background: #fff;
    box-shadow: 0 20px 42px -22px rgba(6, 46, 57, 0.55);
    transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.26s ease;
}

body.zman-luxury-page .modern-action-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 52px -22px rgba(6, 46, 57, 0.62);
}

body.zman-luxury-page .modern-action-group #unified-buy-btn.modern-action-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 19px 18px !important;
    font-size: 1.1rem !important;
    font-weight: 800;
    letter-spacing: 0.2px;
    background: linear-gradient(120deg, var(--zv-deep-1) 0%, var(--zv-deep-2) 28%, var(--zv-teal) 60%, var(--zv-cyan) 100%) !important;
    background-size: 220% 100% !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

body.zman-luxury-page .modern-action-group #unified-buy-btn.modern-action-btn:hover {
    filter: brightness(1.08);
}

body.zman-luxury-page .modern-action-group #unified-trial-btn.modern-outline-btn {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px !important;
    font-size: 0.95rem;
    font-weight: 700;
    background: #f4fafb;
    color: var(--zv-teal);
    border-top: 1px solid rgba(13, 122, 140, 0.16);
}

body.zman-luxury-page .modern-action-group #unified-trial-btn.modern-outline-btn:hover {
    background: #e9f5f7;
    color: var(--zv-deep-2);
}

body.zman-luxury-page .modern-unified-links {
    margin-top: 16px;
    gap: 10px;
    align-items: stretch;
}

body.zman-luxury-page .unified-link {
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.24s ease;
}

body.zman-luxury-page .unified-link-whatsnew {
    background: rgba(13, 122, 140, 0.07);
    border: 1px solid rgba(13, 122, 140, 0.2);
    color: var(--zv-teal);
}

body.zman-luxury-page .unified-link-whatsnew:hover {
    background: rgba(13, 122, 140, 0.13);
    border-color: var(--zv-teal);
}

body.zman-luxury-page .unified-link-offline {
    border: 1px dashed var(--zv-line-2);
    color: var(--zv-muted);
    background: transparent;
}

/* --- תצוגה מקדימה / קרוסלה --- */
body.zman-luxury-page .modern-preview-area {
    gap: 6px;
}

body.zman-luxury-page .modern-info-card {
    border: 1px solid var(--zv-line);
    border-radius: var(--zv-r-md);
    background: #fff;
    box-shadow: var(--zv-shadow-md);
    overflow: hidden;
}

/* צילום המסך ממלא את רוחב הכרטיס. יחס 16:10 זהה ליחס הצילומים
   שב-assets/images/zman/generated, ולכן cover אינו חותך דבר. */
body.zman-luxury-page .uni-cards-wrapper.modern-cards-wrapper {
    min-height: 0;
    overflow: visible;
}

body.zman-luxury-page .modern-card-image {
    height: auto;
    aspect-ratio: 16 / 10;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 0;
    border-bottom: 1px solid var(--zv-line);
    background: linear-gradient(160deg, #eef7f9 0%, #dceef2 100%);
}

body.zman-luxury-page .modern-card-image img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    padding: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: top center;
    filter: none;
}

body.zman-luxury-page .modern-card-badge,
body.zman-luxury-page .modern-card-badge.plus,
body.zman-luxury-page .modern-card-badge.pro,
body.zman-luxury-page .modern-card-badge.smart {
    top: 14px;
    right: 14px;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(4, 24, 31, 0.82);
    color: #eaf7f9;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px -10px rgba(2, 26, 33, 0.6);
}

body.zman-luxury-page .modern-card-badge.smart {
    background: linear-gradient(120deg, #6b1e91, #a94fd0);
}

body.zman-luxury-page .modern-card-content h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--zv-deep-2);
    letter-spacing: -0.02em;
}

body.zman-luxury-page .modern-card-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--zv-text-2);
}

body.zman-luxury-page .modern-chip {
    border-radius: 999px;
    background: rgba(13, 122, 140, 0.06);
    border: 1px solid rgba(13, 122, 140, 0.16);
    color: var(--zv-teal);
    font-weight: 700;
    font-size: 0.78rem;
}

body.zman-luxury-page .modern-chip:hover {
    background: rgba(13, 122, 140, 0.12);
    border-color: var(--zv-teal);
    color: var(--zv-deep-2);
}

body.zman-luxury-page .uni-nav-btn.modern-nav-btn {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--zv-line);
    color: var(--zv-teal);
    box-shadow: var(--zv-shadow-sm);
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

body.zman-luxury-page .uni-nav-btn.modern-nav-btn:hover {
    background: var(--zv-grad-brand);
    color: #fff;
    transform: scale(1.08);
}

/* ===================================================================
   7. פאנלי היכולות (זהה גם בתוך מודל העדכונים)
   =================================================================== */
body.zman-luxury-page .zman-feature-panels-row,
body.zman-luxury-page .zman-updates-modal-panels .zman-feature-panels-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 0;
    padding: 0;
}

body.zman-luxury-page .zman-feature-panel {
    position: relative;
    overflow: hidden;
    padding: 20px 18px !important;
    border: 1px solid var(--zv-line);
    border-radius: var(--zv-r-md);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%) !important;
    box-shadow: var(--zv-shadow-sm);
    animation: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.zman-luxury-page .zman-feature-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--zv-shadow-md);
}

body.zman-luxury-page .zman-feature-panel::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 3px;
    width: auto;
    background: var(--zv-grad-brand);
    opacity: 1;
}

body.zman-luxury-page .zman-feature-panel::after { display: none; }

/* וריאנטים */
body.zman-luxury-page .zman-feature-panel--reminders {
    border-color: rgba(15, 118, 110, 0.24);
}
body.zman-luxury-page .zman-feature-panel--reminders::before {
    background: linear-gradient(100deg, #0f766e, #34d399);
}
body.zman-luxury-page .zman-feature-panel--reminders .zman-feature-panel-badge {
    background: rgba(15, 118, 110, 0.1) !important;
    color: #0f766e !important;
    border: 1px solid rgba(15, 118, 110, 0.24);
    animation: none;
}
body.zman-luxury-page .zman-feature-panel--reminders .zman-feature-panel-title { color: #115e59 !important; }
body.zman-luxury-page .zman-feature-panel--reminders .zman-feature-panel-title svg { color: #0f766e !important; }
body.zman-luxury-page .zman-feature-panel--reminders .zman-feature-panel-sub { color: #3f766f !important; }
body.zman-luxury-page .zman-feature-panel--reminders .zman-feature-card-icon {
    background: rgba(15, 118, 110, 0.09);
    color: #0f766e;
}
body.zman-luxury-page .zman-feature-panel--reminders .zman-feature-card:hover {
    border-color: rgba(15, 118, 110, 0.35);
}

body.zman-luxury-page .zman-feature-panel--calendar {
    border-color: rgba(59, 108, 183, 0.22);
}
body.zman-luxury-page .zman-feature-panel--calendar::before {
    background: linear-gradient(100deg, #1e3a6e, #6fa3d8);
}
body.zman-luxury-page .zman-feature-panel--calendar .zman-feature-panel-badge {
    background: rgba(59, 108, 183, 0.1) !important;
    color: #2d5aa0 !important;
    border: 1px solid rgba(59, 108, 183, 0.24);
}
body.zman-luxury-page .zman-feature-panel--calendar .zman-feature-panel-title { color: #1e3a6e !important; }
body.zman-luxury-page .zman-feature-panel--calendar .zman-feature-panel-title svg { color: #3b6cb7 !important; }
body.zman-luxury-page .zman-feature-panel--calendar .zman-feature-panel-sub { color: #3f6096 !important; }
body.zman-luxury-page .zman-feature-panel--calendar .zman-feature-card-icon {
    background: rgba(59, 108, 183, 0.09);
    color: #2d5aa0;
}
body.zman-luxury-page .zman-feature-panel--calendar .zman-feature-card:hover {
    border-color: rgba(59, 108, 183, 0.35);
}

body.zman-luxury-page .zman-feature-panel--cashflow::before {
    background: linear-gradient(100deg, var(--zv-deep-2), var(--zv-cyan));
}

body.zman-luxury-page .zman-feature-panel-head {
    margin-bottom: 14px;
    text-align: right;
}

body.zman-luxury-page .zman-feature-panel-badge {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    background: rgba(13, 122, 140, 0.1);
    color: var(--zv-teal);
    border: 1px solid rgba(13, 122, 140, 0.2);
    margin-bottom: 8px;
}

body.zman-luxury-page .zman-feature-panel-title {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--zv-deep-2);
    margin-bottom: 5px;
}

body.zman-luxury-page .zman-feature-panel-sub {
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--zv-text-2);
}

body.zman-luxury-page .zman-feature-grid {
    justify-content: flex-start;
    gap: 9px;
}

body.zman-luxury-page .zman-feature-panels-row .zman-feature-card {
    flex: 0 1 calc(50% - 5px);
    padding: 12px !important;
    border: 1px solid var(--zv-line) !important;
    border-radius: 13px;
    background: #fff !important;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.zman-luxury-page .zman-feature-card::before { display: none; }

body.zman-luxury-page .zman-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -18px rgba(6, 46, 57, 0.36);
}

body.zman-luxury-page .zman-feature-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(13, 122, 140, 0.08);
    color: var(--zv-teal);
    margin-bottom: 8px;
}

body.zman-luxury-page .zman-feature-card-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--zv-deep-2);
    margin-bottom: 4px;
}

body.zman-luxury-page .zman-feature-card-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--zv-muted);
}

/* ===================================================================
   8. גלריית מסכים
   =================================================================== */
body.zman-luxury-page .zv-shots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px;
}

body.zman-luxury-page .zv-shot {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--zv-r-md);
    background: #fff;
    border: 1px solid var(--zv-line);
    box-shadow: var(--zv-shadow-sm);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}

body.zman-luxury-page .zv-shot:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 122, 140, 0.3);
    box-shadow: var(--zv-shadow-md);
}

body.zman-luxury-page .zv-shot-media {
    position: relative;
    padding: 10px 10px 0;
    background:
        radial-gradient(circle at 25% 0%, rgba(47, 208, 226, 0.14), transparent 55%),
        linear-gradient(160deg, #eef7f9 0%, #dfeff3 100%);
}

body.zman-luxury-page .zv-shot-media img.gallery-image {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -6px 24px -12px rgba(6, 46, 57, 0.4);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: zoom-in;
}

body.zman-luxury-page .zv-shot:hover img.gallery-image {
    transform: scale(1.03) translateY(-3px);
}

body.zman-luxury-page .zv-shot-body {
    padding: 15px 16px 18px;
}

body.zman-luxury-page .zv-shot-tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    background: rgba(13, 122, 140, 0.09);
    border: 1px solid rgba(13, 122, 140, 0.18);
    color: var(--zv-teal);
}

body.zman-luxury-page .zv-shot-body h3 {
    margin: 0 0 6px;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--zv-deep-2);
}

body.zman-luxury-page .zv-shot-body p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--zv-muted);
}

body.zman-luxury-page .zv-shots-hint {
    margin: 16px 0 0;
    text-align: center;
    font-size: 0.84rem;
    color: var(--zv-muted);
}

/* ===================================================================
   9. Bento — למה זמן
   =================================================================== */
body.zman-luxury-page .zv-bento {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

body.zman-luxury-page .zv-cell {
    position: relative;
    overflow: hidden;
    grid-column: span 2;
    padding: 22px;
    border-radius: var(--zv-r-md);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
    border: 1px solid var(--zv-line);
    box-shadow: var(--zv-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.zman-luxury-page .zv-cell:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 122, 140, 0.28);
    box-shadow: var(--zv-shadow-md);
}

body.zman-luxury-page .zv-cell--wide { grid-column: span 3; }

body.zman-luxury-page .zv-cell--dark {
    grid-column: span 3;
    color: #eaf7f9;
    border-color: rgba(138, 241, 230, 0.18);
    background: var(--zv-grad-dark);
    box-shadow: var(--zv-shadow-md);
}

body.zman-luxury-page .zv-cell--dark::after {
    content: '';
    position: absolute;
    inset-inline-end: -60px;
    inset-block-start: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 208, 226, 0.22), transparent 65%);
    pointer-events: none;
}

body.zman-luxury-page .zv-cell-ic {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(13, 122, 140, 0.09);
    color: var(--zv-teal);
}

body.zman-luxury-page .zv-cell--dark .zv-cell-ic {
    background: rgba(255, 255, 255, 0.1);
    color: var(--zv-aqua);
    border: 1px solid rgba(138, 241, 230, 0.22);
}

body.zman-luxury-page .zv-cell h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--zv-deep-2);
}

body.zman-luxury-page .zv-cell--dark h3 { color: #fff; }

body.zman-luxury-page .zv-cell p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--zv-text-2);
}

body.zman-luxury-page .zv-cell--dark p { color: rgba(226, 245, 248, 0.82); }

body.zman-luxury-page .zv-cell-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

body.zman-luxury-page .zv-cell-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--zv-text-2);
}

body.zman-luxury-page .zv-cell--dark .zv-cell-list li { color: rgba(226, 245, 248, 0.86); }

body.zman-luxury-page .zv-cell-list svg {
    flex: none;
    margin-top: 2px;
    color: var(--zv-teal);
}

body.zman-luxury-page .zv-cell--dark .zv-cell-list svg { color: var(--zv-aqua); }

/* ===================================================================
   10. שלושה צעדים
   =================================================================== */
body.zman-luxury-page .zv-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    counter-reset: zvstep;
}

body.zman-luxury-page .zv-step {
    position: relative;
    padding: 24px 22px 22px;
    border-radius: var(--zv-r-md);
    background: #fff;
    border: 1px solid var(--zv-line);
    box-shadow: var(--zv-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.zman-luxury-page .zv-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--zv-shadow-md);
}

body.zman-luxury-page .zv-step::before {
    counter-increment: zvstep;
    content: counter(zvstep);
    position: absolute;
    top: -14px;
    inset-inline-end: 20px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--zv-grad-brand);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    box-shadow: 0 10px 22px -10px rgba(13, 122, 140, 0.6);
}

body.zman-luxury-page .zv-step h3 {
    margin: 6px 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--zv-deep-2);
}

body.zman-luxury-page .zv-step p {
    margin: 0;
    font-size: 0.89rem;
    line-height: 1.65;
    color: var(--zv-text-2);
}

/* ===================================================================
   11. שאלות נפוצות
   =================================================================== */
body.zman-luxury-page .zv-faq {
    max-width: 900px;
    margin-inline: auto;
    display: grid;
    gap: 10px;
}

body.zman-luxury-page .zv-q {
    border-radius: var(--zv-r-sm);
    background: #fff;
    border: 1px solid var(--zv-line);
    box-shadow: var(--zv-shadow-sm);
    overflow: hidden;
    transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

body.zman-luxury-page .zv-q[open] {
    border-color: rgba(13, 122, 140, 0.3);
    box-shadow: var(--zv-shadow-md);
}

body.zman-luxury-page .zv-q summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--zv-deep-2);
    list-style: none;
}

body.zman-luxury-page .zv-q summary::-webkit-details-marker { display: none; }

body.zman-luxury-page .zv-q summary::after {
    content: '';
    margin-inline-start: auto;
    width: 10px;
    height: 10px;
    flex: none;
    border-right: 2px solid var(--zv-teal);
    border-bottom: 2px solid var(--zv-teal);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

body.zman-luxury-page .zv-q[open] summary::after { transform: rotate(-135deg); }

body.zman-luxury-page .zv-q summary:focus-visible {
    outline: 2px solid var(--zv-teal);
    outline-offset: -2px;
}

body.zman-luxury-page .zv-q p {
    margin: 0;
    padding: 0 20px 18px;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--zv-text-2);
}

body.zman-luxury-page .zv-q p a { color: var(--zv-teal); font-weight: 700; }

/* ===================================================================
   12. CTA מסכם
   =================================================================== */
body.zman-luxury-page .zv-cta {
    position: relative;
    overflow: hidden;
    margin-top: 4.2rem;
    padding: clamp(2.2rem, 4vw, 3.4rem);
    border-radius: var(--zv-r-lg);
    border: 1px solid rgba(138, 241, 230, 0.18);
    background: var(--zv-grad-dark);
    box-shadow: var(--zv-shadow-lg);
    text-align: center;
    color: #eaf7f9;
}

body.zman-luxury-page .zv-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(47, 208, 226, 0.2), transparent 45%),
        radial-gradient(circle at 85% 100%, rgba(217, 178, 88, 0.16), transparent 45%);
    pointer-events: none;
}

body.zman-luxury-page .zv-cta > * { position: relative; z-index: 1; }

body.zman-luxury-page .zv-cta h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
}

body.zman-luxury-page .zv-cta p {
    max-width: 640px;
    margin: 0 auto 26px;
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(226, 245, 248, 0.82);
}

body.zman-luxury-page .zv-cta .zman-hero-ctas {
    justify-content: center;
    margin-bottom: 16px;
}

body.zman-luxury-page .zv-cta-fine {
    font-size: 0.82rem;
    color: rgba(214, 238, 242, 0.6);
    margin: 0;
}

/* ===================================================================
   13. מודל עדכוני זמן — התאמה לשפה החדשה
   =================================================================== */
body.zman-luxury-page .zman-updates-modal-content {
    border-radius: var(--zv-r-lg);
    box-shadow: var(--zv-shadow-lg);
}

body.zman-luxury-page .zman-updates-modal-eyebrow {
    color: var(--zv-teal);
    letter-spacing: 0.1em;
    font-weight: 800;
}

body.zman-luxury-page .zman-updates-modal-header h2 {
    color: var(--zv-deep-2);
    letter-spacing: -0.03em;
    font-weight: 900;
}

body.zman-luxury-page .zman-updates-modal-confirm {
    border-radius: 999px;
    background: linear-gradient(120deg, var(--zv-deep-2), var(--zv-teal)) !important;
    color: #fff !important;
    font-weight: 800;
    border: none;
}

/* ===================================================================
   14. חשיפה בגלילה (CSS בלבד, נשען על scroll-driven animations)
   =================================================================== */
@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {
        body.zman-luxury-page .zv-reveal {
            animation: zv-rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
            animation-timeline: view();
            animation-range: entry 8% cover 26%;
        }
    }
}

@keyframes zv-rise-in {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}

/* ===================================================================
   15. רספונסיביות
   =================================================================== */
@media (max-width: 1180px) {
    body.zman-luxury-page .zv-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }
    body.zman-luxury-page .zv-hero-visual { order: 2; min-height: 0; }
    body.zman-luxury-page .zv-window { transform: none; }
    body.zman-luxury-page .zman-hero-sub { max-width: none; }
    body.zman-luxury-page .zman-feature-panels-row,
    body.zman-luxury-page .zman-updates-modal-panels .zman-feature-panels-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    body.zman-luxury-page .zv-shots { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    body.zman-luxury-page .zv-cell,
    body.zman-luxury-page .zv-cell--wide,
    body.zman-luxury-page .zv-cell--dark { grid-column: span 3; }
}

@media (max-width: 900px) {
    body.zman-luxury-page .modern-unified-layout { grid-template-columns: minmax(0, 1fr); }
    body.zman-luxury-page .modern-preview-area { order: -1; }
    body.zman-luxury-page .zv-steps { grid-template-columns: minmax(0, 1fr); }
    body.zman-luxury-page .zv-float--ai,
    body.zman-luxury-page .zv-float--cal { display: none; }
    body.zman-luxury-page .zv-float--timer { left: 8px; top: 12px; }
}

@media (max-width: 720px) {
    body.zman-luxury-page { zoom: 0.9; }
    body.zman-luxury-page main.product-page-main { padding-top: 142px !important; }
    body.zman-luxury-page .zman-hero {
        border-radius: 26px;
        padding: 2rem 1.3rem;
    }
    body.zman-luxury-page .zv-shell,
    body.zman-luxury-page .zv-sec,
    body.zman-luxury-page .zman-hero,
    body.zman-luxury-page .modern-unified-panel,
    body.zman-luxury-page .zman-feature-panels-row {
        width: calc(100% - 24px);
    }
    body.zman-luxury-page .zman-trust-bar { gap: 4px; }
    body.zman-luxury-page .zman-trust-item { flex: 1 1 44%; min-width: 44%; }
    body.zman-luxury-page .zman-trust-item::after { display: none; }
    body.zman-luxury-page .license-selector-grid.modern-grid { grid-template-columns: minmax(0, 1fr) !important; }
    body.zman-luxury-page .zman-feature-panels-row,
    body.zman-luxury-page .zman-updates-modal-panels .zman-feature-panels-row {
        grid-template-columns: minmax(0, 1fr);
    }
    body.zman-luxury-page .zv-shots { grid-template-columns: minmax(0, 1fr) !important; }
    body.zman-luxury-page .zv-cell,
    body.zman-luxury-page .zv-cell--wide,
    body.zman-luxury-page .zv-cell--dark { grid-column: span 6; }
    body.zman-luxury-page .zman-hero-ctas .zman-cta-primary,
    body.zman-luxury-page .zman-hero-ctas .zman-cta-secondary { width: 100%; justify-content: center; }
    body.zman-luxury-page .zv-panel-head { flex-direction: column; align-items: flex-start; }
}

/* ===================================================================
   16. נגישות — כיבוד העדפת תנועה מופחתת
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
    body.zman-luxury-page .zv-orb,
    body.zman-luxury-page .zv-float,
    body.zman-luxury-page .zman-cta-primary::after,
    body.zman-luxury-page .zv-live-dot {
        animation: none !important;
    }
    body.zman-luxury-page .zv-window { transform: none !important; }
}
