/* =========================================================
   VAINZOF SITE - CLEANED STYLESHEET
   ---------------------------------------------------------
   מטרת הקובץ:
   1. לשמור על עיצוב אחיד בין כל העמודים
   2. לתת בסיס טוב למובייל קודם
   3. להשאיר שמות class קיימים כדי שלא תצטרכי לשבור HTML קיים
   4. להוסיף הערות ברורות כדי שיהיה קל לתחזק
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS - צבעים, ריווחים וצללים שחוזרים בכל האתר
   ========================================================= */
:root {
    /* צבעי המותג הראשיים */
    --navy-main: #0B1B3B;
    --navy-deep: #07152E;
    --gold-brand: #C6A15B;
    --gold-hover: #D4B476;

    /* צבעי רקע וטקסט */
    --bg-light: #F6F8FB;
    --surface: #FFFFFF;
    --text-body: #475569;
    --text-strong: #0F172A;
    --text-soft: #64748B;
    --border-light: #E2E8F0;

    /* צבעי סטטוס */
    --success-soft: #ECFDF3;
    --success-border: #BBF7D0;
    --success-text: #166534;

    --danger-soft: #FFF7ED;
    --danger-border: #FED7AA;
    --danger-text: #9A3412;

    /* צבעי פעולה */
    --whatsapp: #128C7E;
    --whatsapp-hover: #1EBE5D;

    /* גדלי פינות */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-pill: 999px;

    /* צללים */
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 14px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 30px 80px rgba(7, 21, 46, 0.14);

    /* אנימציות */
    --ease-default: 0.25s ease;
}


/* =========================================================
   2. BASE - כללי בסיס לכל האתר
   ========================================================= */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Assistant', sans-serif;
    background: var(--bg-light);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* ברירת מחדל נוחה לכל האלמנטים כדי למנוע חריגות רוחב במובייל */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* תמונות ואייקונים לא יחרגו מהרוחב של ההורה */
img,
svg,
iframe,
video {
    max-width: 100%;
    display: block;
}

/* קישורים יורשים צבע, אלא אם הוגדר אחרת */
a {
    color: inherit;
}

/* שדות טופס מקבלים את אותו פונט של האתר */
button,
input,
select,
textarea {
    font: inherit;
}

/* פוקוס ברור למקלדת ונגישות */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(198, 161, 91, 0.35);
    outline-offset: 2px;
}


/* =========================================================
   3. TYPOGRAPHY - טיפוגרפיה גלובלית
   ========================================================= */
h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--text-strong);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.25;
}

p {
    margin-top: 0;
}

/* כותרת סקציה שחוזרת בכמה עמודים */
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-strong);
}

/* קו זהב קצר מתחת לכותרת, לשימוש ויזואלי קבוע */
.accent-line {
    width: 56px;
    height: 3px;
    background: var(--gold-brand);
    border-radius: 2px;
    margin: 0 0 0.75rem 0;
}

/* עוגן שמתקן גלילה כשיש header דביק */
#top-anchor {
    scroll-margin-top: 100px;
}


/* =========================================================
   4. LAYOUT - קונטיינרים ורוחבים כלליים
   ========================================================= */
.container,
.container-clean {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* container רגיל מיועד לתוכן כללי */
.container {
    max-width: 1200px;
}

/* container-clean משמש ברוב העמודים הראשיים */
.container-clean {
    max-width: 1180px;
}

/* אזור hero בסיסי לעמודים שיש בהם מעטפת פשוטה */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: var(--navy-main);
    color: #fff;
}

/* וריאציית רקע כהה מעודנת עם גרדיאנט */
.hero-gradient,
.hero-mini {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
}

/* כותרת משנה בתוך hero פשוט */
.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* תיאור משני בתוך hero */
.hero-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* קבוצת כפתורים ב-hero, במובייל ברירת המחדל היא טור */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =========================================================
   5. BUTTONS - כל כפתורי הפעולה של האתר
   ========================================================= */
.btn-primary {
    /* הכפתור הראשי - אחיד בכל האתר */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 14px 22px;
    border: none;
    border-radius: 12px;
    background: var(--gold-brand);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--ease-default), background-color var(--ease-default), box-shadow var(--ease-default), opacity var(--ease-default);
    box-shadow: 0 8px 24px rgba(198, 161, 91, 0.25);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(198, 161, 91, 0.35);
}

/* כפתור משני כהה לעמודים שצריכים ניגודיות גבוהה */
.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 1rem;
    background: var(--text-strong);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: transform var(--ease-default), background-color var(--ease-default);
}

.btn-dark:hover {
    background: #1E293B;
    transform: translateY(-2px);
}

/* כפתור outline לבהיר על רקע כהה */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--ease-default), color var(--ease-default), opacity var(--ease-default);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* כפתור וואטסאפ קבוע - חשוב במיוחד במובייל ליצירת ליד */
.whatsapp-btn,
.fixed-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 50px;
    background: var(--whatsapp);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform var(--ease-default), background-color var(--ease-default), opacity var(--ease-default);
}

.whatsapp-btn:hover,
.fixed-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
}


/* =========================================================
   6. CARDS - כרטיסים כלליים שחוזרים בין עמודים
   ========================================================= */
.card-clean,
.metric-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-clean {
    overflow: hidden;
}

.metric-card {
    padding: 1.5rem;
}

.card-clean:hover,
.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.card-clean:hover {
    border-color: #2563EB;
}


/* =========================================================
   7. INSURANCE CARDS - כרטיסי סוגי ביטוחים
   ========================================================= */
.insurance-card {
    /* כרטיס שירות לחיץ עם היררכיה ברורה */
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-brand);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

/* אייקון עגול בתחילת כל כרטיס שירות */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: rgba(198, 161, 91, 0.12);
    color: var(--navy-main);
}


/* =========================================================
   8. FAQ - אקורדיון שאלות ותשובות
   ========================================================= */
details.faq-item,
.faq-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* hover עדין שמסמן אינטראקטיביות */
details.faq-item:hover,
.faq-card:hover {
    border-color: var(--gold-brand);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* מסתיר את הסמן הדיפולטי של details כדי לשלוט בעיצוב */
details.faq-item summary,
.faq-card summary {
    list-style: none;
    cursor: pointer;
}

.faq-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    font-weight: 800;
    color: var(--navy-main);
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

/* גוף התשובה ב-FAQ */
.faq-content {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.8;
    color: #4B5563;
}


/* =========================================================
   9. MODAL - חלון קופץ של יצירת קשר
   ========================================================= */
.modal-backdrop {
    background: rgba(15, 23, 42, 0.78);
}

/* שומר שהמודאל לא יחרוג מגובה המסך */
#contactModal > div {
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* כפתור הסגירה נשאר נגיש גם בזמן גלילה בתוך המודאל */
#closeContact {
    position: sticky;
    top: 0;
    float: left;
    z-index: 50;
    background: #fff;
}


/* =========================================================
   10. CALCULATOR - עמוד מחשבון הסימולציה
   ========================================================= */
.calc-shell {
    /* מעטפת זכוכית מעודנת למחשבון */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(16px);
}

/* שדות הקלט והבחירה במחשבון */
.calc-input,
.calc-select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #DBE3EF;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    font-weight: 700;
    color: var(--text-strong);
    transition: border-color var(--ease-default), box-shadow var(--ease-default);
}

.calc-input:focus,
.calc-select:focus {
    border-color: var(--gold-brand);
    box-shadow: 0 0 0 4px rgba(198, 161, 91, 0.12);
}

/* תווית שדה במחשבון */
.calc-label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    font-weight: 800;
}

/* שבב יתרון קצר מתחת לכותרת הראשית של המחשבון */
.calc-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    font-weight: 700;
}


/* =========================================================
   11. RESULT BOX - אזור התוצאה במחשבון
   ========================================================= */
.result-box {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: #fff;
}

/* תאורת רקע עדינה כדי לתת עומק */
.result-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(198, 161, 91, 0.2), transparent 35%);
    pointer-events: none;
}


/* =========================================================
   12. REVIEWS - עמוד הביקורות
   ========================================================= */
.review-card {
    position: relative;
    width: 100%;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1.75rem;
    box-shadow: var(--shadow-sm);
}

/* מרכאות דקורטיביות בתחילת ביקורת */
.quote-mark {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(198, 161, 91, 0.18);
    font-weight: 800;
}

/* דירוג כוכבים קבוע מעל כל טקסט ביקורת */
.stars {
    margin-bottom: 0.9rem;
    color: var(--gold-brand);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
}


/* =========================================================
   13. SERVICES - עמוד השירותים ומתודולוגיית העבודה
   ========================================================= */
.step-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-bottom: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(198, 161, 91, 0.14);
    color: var(--navy-main);
    font-size: 0.9rem;
    font-weight: 800;
}


/* =========================================================
   14. MEDIA / VIDEO - כרטיסי וידאו ותמונות מסך
   ========================================================= */
.whatsapp-screenshot-card {
    width: 100%;
    max-width: 320px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-screenshot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

/* טקסט קטן מתחת לתמונה */
.whatsapp-caption {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: #334155;
    letter-spacing: 0.08em;
}

/* התמונה עצמה בתוך כרטיס מסך */
.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

/* כרטיס וידאו כללי */
.video-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

/* תג קטן על גבי הווידאו */
.video-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--navy-main);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}

/* מסגרת טלפון להטמעת וידאו אנכי */
.phone-frame {
    position: relative;
    width: 100%;
    max-width: 290px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border: 8px solid #0F172A;
    border-radius: 2rem;
    background: #0F172A;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

.phone-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================================================
   15. STATE COLORS - קופסאות הצלחה / אזהרה
   ========================================================= */
.tone-positive {
    background: var(--success-soft);
    border: 1px solid var(--success-border);
    color: var(--success-text);
}

.tone-warning {
    background: var(--danger-soft);
    border: 1px solid var(--danger-border);
    color: var(--danger-text);
}


/* =========================================================
   16. ANIMATIONS - אנימציות עדינות בלבד
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* פעימת וואטסאפ עדינה למשיכת תשומת לב */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fixed-whatsapp {
    animation: pulse-green 2s infinite;
}

/* פולס איטי לאלמנטים מודגשים */
@keyframes pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

.animate-pulse-slow {
    animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* אנימציית הופעה בסיסית */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}


/* =========================================================
   17. ACCESSIBILITY - עזרי נגישות
   ========================================================= */
.sr-focusable {
    position: absolute;
    right: -9999px;
}

.sr-focusable:focus {
    top: 8px;
    right: 8px;
    z-index: 9999;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background: #fff;
    color: #111;
}


/* =========================================================
   18. SIMPLE UTILITIES
   ---------------------------------------------------------
   הערה חשובה:
   בעמודים מסוימים אין Tailwind, אבל ה-HTML כן משתמש במחלקות בסגנון
   Tailwind. לכן נשמר כאן סט קטן של utilities נחוצות בלבד.
   ========================================================= */

/* תצוגה בסיסית */
.block { display: block; }
.flex { display: flex; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }

/* כיוונים ויישור */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-items-center { justify-items: center; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* פונטים */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 800; }
.font-light { font-weight: 300; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }

/* רדיוסים */
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.75rem; }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 999px; }
.rounded-\[1\.5rem\] { border-radius: 1.5rem; }
.rounded-\[1\.75rem\] { border-radius: 1.75rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }

/* צללים */
.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18); }

/* גבולות */
.border { border: 1px solid var(--border-light); }
.border-2 { border: 2px solid currentColor; }
.border-b { border-bottom: 1px solid var(--border-light); }
.border-b-2 { border-bottom: 2px solid currentColor; }
.border-b-4 { border-bottom: 4px solid currentColor; }
.border-b-8 { border-bottom: 8px solid currentColor; }
.border-t { border-top: 1px solid var(--border-light); }
.border-t-4 { border-top: 4px solid currentColor; }
.border-l { border-left: 1px solid var(--border-light); }
.border-r-4 { border-right: 4px solid currentColor; }
.border-slate-50 { border-color: #F8FAFC; }
.border-slate-100 { border-color: #F1F5F9; }
.border-slate-200 { border-color: #E2E8F0; }
.border-slate-300 { border-color: #CBD5E1; }
.border-blue-600 { border-color: #2563EB; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.10); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.20); }
.border-\[\#c5a059\] { border-color: #C5A059; }
.border-\[var\(--gold-brand\)\] { border-color: var(--gold-brand); }

/* רקעים */
.bg-white { background: #fff; }
.bg-slate-50 { background: #F8FAFC; }
.bg-slate-800 { background: #1E293B; }
.bg-slate-950 { background: #020617; }
.bg-blue-100 { background: #DBEAFE; }
.bg-blue-900 { background: #1E3A8A; }
.bg-blue-950 { background: #172554; }
.bg-green-100 { background: #DCFCE7; }
.bg-green-400 { background: #4ADE80; }
.bg-green-500 { background: #22C55E; }
.bg-white\/10 { background: rgba(255, 255, 255, 0.10); }
.bg-white\/70 { background: rgba(255, 255, 255, 0.70); }
.bg-slate-900\/80 { background: rgba(15, 23, 42, 0.80); }
.bg-\[\#128C7E\] { background: #128C7E; }
.bg-\[\#c5a059\] { background: #C5A059; }
.bg-\[var\(--gold-brand\)\] { background: var(--gold-brand); }
.bg-\[var\(--gold-brand\)\]\/10 { background: rgba(198, 161, 91, 0.10); }
.bg-\[var\(--navy-deep\)\] { background: var(--navy-deep); }

/* צבעי טקסט */
.text-white { color: #fff; }
.text-white\/60 { color: rgba(255, 255, 255, 0.60); }
.text-white\/70 { color: rgba(255, 255, 255, 0.70); }
.text-blue-100 { color: #DBEAFE; }
.text-blue-600 { color: #2563EB; }
.text-blue-900 { color: #1E3A8A; }
.text-blue-950 { color: #172554; }
.text-green-700 { color: #15803D; }
.text-red-600 { color: #DC2626; }
.text-slate-200 { color: #E2E8F0; }
.text-slate-300 { color: #CBD5E1; }
.text-slate-400 { color: #94A3B8; }
.text-slate-500 { color: #64748B; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1E293B; }
.text-slate-900 { color: #0F172A; }
.text-navy-main,
.text-\[var\(--navy-main\)\] { color: var(--navy-main); }
.text-\[var\(--gold-brand\)\] { color: var(--gold-brand); }

/* גדלי טקסט */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }

/* ריווחים - padding */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-24 { padding-top: 6rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }

/* ריווחים - margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mr-auto { margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.-mt-8 { margin-top: -2rem; }
.-mt-12 { margin-top: -3rem; }

/* gaps */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-x-5 { column-gap: 1.25rem; }
.gap-y-2 { row-gap: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* רוחב וגובה */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-24 { width: 6rem; }
.w-\[92\%\] { width: 92%; }
.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.min-h-\[56px\] { min-height: 56px; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* grid templates */
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* מיקום */
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.top-full { top: 100%; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.left-3 { left: 0.75rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-24 { bottom: 6rem; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }

/* אופקטים */
.opacity-75 { opacity: 0.75; }
.overflow-hidden { overflow: hidden; }
.object-contain { object-fit: contain; }
.cursor-pointer { cursor: pointer; }
.outline-none { outline: none; }
.transform { transform: translateZ(0); }
.transition { transition: all var(--ease-default); }
.transition-all { transition: all var(--ease-default); }
.transition-colors { transition: color var(--ease-default), background-color var(--ease-default), border-color var(--ease-default); }
.transition-opacity { transition: opacity var(--ease-default); }
.transition-transform { transition: transform var(--ease-default); }
.duration-300 { transition-duration: 0.3s; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.75; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-wider { letter-spacing: 0.08em; }
.tracking-widest { letter-spacing: 0.2em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.underline { text-decoration: underline; }
.underline-offset-4 { text-underline-offset: 4px; }
.underline-offset-8 { text-underline-offset: 8px; }
.fill-current { fill: currentColor; }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(6px); }
.resize-none { resize: none; }

/* מצבי hover שמופיעים בעמודים ללא Tailwind */
.hover\:bg-white\/10:hover { background: rgba(255, 255, 255, 0.10); }
.hover\:bg-slate-100:hover { background: #F1F5F9; }
.hover\:bg-slate-700:hover { background: #334155; }
.hover\:bg-blue-800:hover { background: #1E40AF; }
.hover\:bg-\[\#1ebe5d\]:hover { background: #1EBE5D; }
.hover\:bg-\[\#b08d4a\]:hover { background: #B08D4A; }
.hover\:text-blue-600:hover { color: #2563EB; }
.hover\:text-blue-900:hover { color: #1E3A8A; }
.hover\:text-white:hover { color: #fff; }
.hover\:text-\[var\(--gold-brand\)\]:hover { color: var(--gold-brand); }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.10); }
.focus\:border-blue-600:focus { border-color: #2563EB; }
.group-open\:rotate-180 { transition: transform var(--ease-default); }
details[open] .group-open\:rotate-180 { transform: rotate(180deg); }
.animate-pulse { animation: pulse-slow 2s ease-in-out infinite; }


/* =========================================================
   19. RESPONSIVE - מובייל קודם, ואז טאבלט ודסקטופ
   ========================================================= */

/* מסכים קטנים - המקום הכי חשוב באתר שלך */
@media (max-width: 767px) {
    /* שומר מרווח בטוח מהצדדים במובייל */
    .container,
    .container-clean {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* טיפוגרפיה נוחה לקריאה בנייד */
    h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    p {
        font-size: 16px;
    }

    /* hero מקבל פחות גובה כדי לא לשרוף מסך ראשון */
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 17px;
    }

    /* כפתורים במובייל רצוי שיהיו מלאים ברוחב */
    .hero-buttons,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .btn-mobile-full {
        width: 100%;
    }

    /* כרטיסי שירות וביקורות מקבלים padding מעט קטן יותר */
    .insurance-card,
    .review-card,
    .card-clean,
    .metric-card {
        padding: 1.25rem;
    }

    /* כפתור וואטסאפ קטן יותר כדי לא להסתיר תוכן */
    .whatsapp-btn,
    .fixed-whatsapp {
        right: 14px;
        bottom: 14px;
        min-height: 48px;
        padding: 12px 14px;
        font-size: 14px;
    }

    /* עמודת כרטיסים אחת במובייל */
    .cards,
    .grid-cols-2,
    .mobile-one-column {
        grid-template-columns: 1fr;
    }
}

/* טאבלט ומעלה */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .md\:flex { display: flex; }
    .md\:flex-row { flex-direction: row; }
    .md\:text-right { text-align: right; }
    .md\:text-base { font-size: 1rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:w-1\/3 { width: 33.333333%; }
    .md\:w-2\/3 { width: 66.666667%; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:gap-14 { gap: 3.5rem; }
    .md\:h-14 { height: 3.5rem; }
    .md\:p-6 { padding: 1.5rem; }
    .md\:p-7 { padding: 1.75rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:p-10 { padding: 2.5rem; }
    .md\:pt-12 { padding-top: 3rem; }
    .md\:pt-14 { padding-top: 3.5rem; }
    .md\:pt-24 { padding-top: 6rem; }
    .md\:pb-20 { padding-bottom: 5rem; }
    .md\:pb-24 { padding-bottom: 6rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}

/* desktop */
@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-\[1\.05fr_0\.95fr\] { grid-template-columns: 1.05fr 0.95fr; }
    .lg\:grid-cols-\[1fr_340px\] { grid-template-columns: 1fr 340px; }
}

/* desktop רחב מאוד */
@media (min-width: 1280px) {
    .xl\:flex { display: flex; }
}


/* =========================================================
   20. REDUCED MOTION - כיבוי אנימציות למי שביקש פחות תנועה
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}


/* ===================================================== */
/* SHARED HEADER / FOOTER / HERO - INDEX + ABOUT */
/* ===================================================== */

/* פס עליון קצר ואחיד לכל האתר */
.site-topbar {
    background: #020617;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 0;
}

.site-topbar__inner {
    text-align: center;
    font-weight: 700;
}

/* מעטפת ההדר */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.site-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 22px;
    font-weight: 800;
    font-size: 14px;
    color: #1e293b;
}

.nav-link {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--gold-brand);
}

.nav-link-active {
    color: var(--gold-brand);
    border-bottom: 2px solid var(--gold-brand);
    padding-bottom: 6px;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--navy-main);
    font-weight: 800;
    text-decoration: none;
}

.header-phone:hover {
    color: var(--gold-brand);
}

.site-cta {
    background: var(--gold-brand);
    color: #ffffff;
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-cta:hover {
    background: #b08d4a;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    color: var(--navy-main);
    cursor: pointer;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 69;
}

.mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100vh;
    background: #ffffff;
    box-shadow: -18px 0 40px rgba(15, 23, 42, 0.16);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 70;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-drawer__title {
    font-weight: 800;
    color: var(--navy-main);
}

.mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: #f8fafc;
    border-radius: 10px;
    cursor: pointer;
    color: #334155;
}

.mobile-nav {
    padding: 10px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-link-active {
    color: var(--gold-brand);
}

.mobile-cta {
    margin-top: 14px;
    width: 100%;
}

/* פוטר אחיד */
.site-footer {
    background: var(--navy-deep);
    color: #ffffff;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.site-footer__meta {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 700;
}

.site-footer__meta p {
    margin: 0;
}

.site-footer__note {
    opacity: 0.8;
    font-weight: 400;
    margin-top: 4px;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.site-footer__nav a,
.site-footer__nav button {
    color: #94a3b8;
    text-decoration: none;
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.site-footer__nav a:hover,
.site-footer__nav button:hover,
.site-footer__nav .is-active {
    color: var(--gold-brand);
}

.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.site-footer__social a {
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.site-footer__social a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* הירו לדף הבית */
.home-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: #ffffff;
    padding: 20px 0 52px;
}

.home-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.home-hero__content {
    text-align: right;
}

.home-hero__badge,
.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    margin-bottom: 18px;
}

.home-hero__dot,
.page-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4ade80;
    flex-shrink: 0;
}

.home-hero__title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 16px;
    color: #ffffff;
}

.home-hero__subtitle {
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--gold-brand);
    margin: 0 0 24px;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-weight: 600;
}

.hero-checklist__icon {
    color: var(--gold-brand);
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
}

.home-hero__media {
    display: flex;
    justify-content: center;
}

.hero-photo {
    width: min(100%, 320px);
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.28);
}

/* גריד נתונים */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 48px 20px;
    text-align: center;
}

.stat-item {
    padding: 0 8px;
}

.stat-item__title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--gold-brand);
    margin-bottom: 8px;
}

.stat-item__desc {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    line-height: 1.6;
}

/* הירו פנימי - עמוד אודות */
.page-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: #ffffff;
    padding: 48px 0 60px;
    text-align: right;
}

.page-hero__title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 18px;
}

.page-hero__subtitle {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    color: var(--gold-brand);
    font-weight: 800;
    margin: 0 0 20px;
}

.page-hero__description {
    max-width: 780px;
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.85;
    margin: 0 0 28px;
}

.page-hero__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.page-hero__fact {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 16px;
    color: #e2e8f0;
    font-weight: 700;
}

.section-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.timeline-item {
    border-right: 4px solid var(--gold-brand);
    padding-right: 24px;
}

.timeline-item__kicker {
    font-size: 14px;
    font-weight: 800;
    color: var(--gold-brand);
    margin-bottom: 8px;
}

.timeline-item__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy-main);
    margin: 0 0 12px;
}

.info-card-dark {
    background: var(--navy-main);
    color: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.info-card-light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #128C7E;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.04);
    background: #1ebe5d;
}

@media (min-width: 768px) {
    .site-logo {
        height: 56px;
    }

    .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .home-hero__inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
        gap: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .stat-item:not(:last-child) {
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .page-hero__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__inner {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .site-nav {
        display: flex;
    }

    .header-phone {
        display: inline-flex;
    }

    .mobile-menu-toggle,
    .mobile-overlay,
    .mobile-drawer {
        display: none;
    }

    .site-footer__inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 1023px) {
    .site-topbar {
        font-size: 11px;
    }

    .site-topbar__inner {
        padding: 0 4px;
    }
}

@media (max-width: 767px) {
    .site-header__inner {
        min-height: 68px;
    }

    .home-hero {
        padding-top: 16px;
        padding-bottom: 42px;
    }

    .home-hero__badge,
    .page-hero__badge {
        font-size: 13px;
        line-height: 1.5;
    }

    .home-hero__subtitle,
    .page-hero__subtitle {
        line-height: 1.35;
    }

    .page-hero__description {
        font-size: 16px;
    }

    .section-card,
    .info-card-dark,
    .info-card-light {
        padding: 22px;
        border-radius: 24px;
    }

    .timeline-item {
        padding-right: 18px;
    }
}

/* ===================================================== */
/* BOTTOM CTA SECTION - מקטע קריאה לפעולה תחתון */
/* ===================================================== */

.about-bottom-cta {
    background: #eef4fb;
}

.about-bottom-cta__inner {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    text-align: center;
}



.bottom-cta {
    background: #f8fbff;
    padding: 72px 20px;
    text-align: center;
}

.bottom-cta__inner {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.bottom-cta h2 {
    color: #0f172a;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 800;
}

.bottom-cta p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.bottom-cta .btn-primary {
    background: #c6a15b;
    color: #ffffff;
    border-radius: 14px;
    padding: 14px 28px;
    box-shadow: 0 10px 25px rgba(198, 161, 91, 0.22);
}

.bottom-cta .btn-primary:hover {
    background: #b8914e;
}

@media (max-width: 768px) {
    .bottom-cta {
        padding: 48px 16px;
    }

    .bottom-cta__inner {
        padding: 32px 18px;
        border-radius: 18px;
    }

    .bottom-cta p {
        font-size: 1rem;
    }
}

/* ============================= */
/* ABOUT PAGE - SMALL FIXES */
/* שיפורים קטנים בלבד, בלי לשנות את המבנה המקורי */
/* ============================= */

/* הפס העליון - במובייל להקטין עומס */
@media (max-width: 768px) {
    #top-anchor .container-clean {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 12px;
        text-align: center;
        line-height: 1.4;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    #top-anchor span {
        font-size: 10px;
        white-space: normal;
    }
}

/* HERO של עמוד אודות - רק חידוד ריווחים במובייל */
@media (max-width: 768px) {
    .hero-gradient {
        padding-top: 2.5rem !important;
        padding-bottom: 2.75rem !important;
    }

    .hero-gradient h1 {
        font-size: 2rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1rem !important;
    }

    .hero-gradient .text-2xl.md\:text-4xl {
        font-size: 1.45rem !important;
        line-height: 1.35 !important;
        margin-bottom: 1rem !important;
    }

    .hero-gradient p.text-lg {
        font-size: 1rem !important;
        line-height: 1.8 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-gradient .flex.flex-wrap.gap-4 {
        gap: 0.75rem !important;
    }

    .hero-gradient .flex.flex-wrap.gap-4 > div {
        width: 100%;
        text-align: center;
    }
}

/* התיבה התחתונה הכחולה - לרכך צבעים בלי לשנות מבנה */
.about-bottom-cta {
    background: #eef4fb;
    color: #0f172a;
}

.about-bottom-cta p {
    color: #475569;
}

/* במובייל - footer פחות צפוף */
@media (max-width: 768px) {
    footer nav {
        gap: 10px 14px !important;
    }

    footer .text-\[11px\] {
        font-size: 11px !important;
        line-height: 1.6;
    }
}

/* ============================= */
/* ABOUT HERO */
/* חלק עליון של עמוד אודות - באותה שפה עיצובית של index */
/* ============================= */

.about-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: #ffffff;
    padding: 56px 0 64px;
    overflow: hidden;
}

.about-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
    gap: 40px;
    align-items: center;
}

.about-hero__content {
    max-width: 720px;
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 700;
}

.about-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-brand);
    flex: 0 0 8px;
}

.about-hero__title {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.1rem);
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.about-hero__subtitle {
    margin: 0 0 24px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 680px;
    font-weight: 700;
}

.about-hero__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    max-width: 720px;
}

.about-hero__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #f8fafc;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
}

.about-hero__check {
    color: var(--gold-brand);
    font-weight: 800;
    line-height: 1.4;
}

.about-hero__media {
    display: flex;
    justify-content: center;
}

.about-hero__card {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    backdrop-filter: blur(8px);
}

.about-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 20px;
}

.about-hero__stat-number {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    color: var(--gold-brand);
}

.about-hero__stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e2e8f0;
}

.about-hero__facts {
    display: grid;
    gap: 12px;
}

.about-hero__fact {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 14px 16px;
    color: #f8fafc;
    font-weight: 700;
    line-height: 1.5;
}

/* מובייל */
@media (max-width: 900px) {
    .about-hero {
        padding: 40px 0 48px;
    }

    .about-hero__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .about-hero__title {
        font-size: 2.2rem;
        line-height: 1.22;
    }

    .about-hero__subtitle {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-hero__card {
        padding: 22px;
        border-radius: 22px;
    }

    .about-hero__stat-number {
        font-size: 2.4rem;
    }

    .about-hero__fact {
        padding: 13px 14px;
        font-size: 0.95rem;
    }
}

/* ============================= */
/* MEDIA PAGE - MOBILE VIDEO FIX */
/* ============================= */

.video-card {
    overflow: hidden;
}

.phone-frame {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

.phone-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

.video-card .text-center,
.video-card h3,
.video-card p,
.section-title,
.accent-line {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .video-card {
        padding: 1.25rem;
    }

    .phone-frame {
        max-width: 240px;
        margin-bottom: 1.25rem;
    }

    .video-tag {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.7rem;
    }
}