:root {
    /* Color Palette */
    --color-primary: #65EBB8;
    --color-primary-dark: #3bd89f;
    --color-primary-glow: rgba(101, 235, 184, 0.35);
    --color-bg-dark: #000000;
    --color-bg-card: rgba(18, 20, 24, 0.75);
    --color-bg-card-hover: rgba(26, 30, 36, 0.85);
    --color-text-light: #F9F9F9;
    --color-text-muted: #6F6F6F;
    --color-border-dark: rgba(255, 255, 255, 0.12);
    --color-border-primary: rgba(101, 235, 184, 0.3);

    /* Fonts */
    --font-heading: 'Google Sans', 'Google Sans Hebrew', sans-serif;
    --font-body: 'Google Sans', 'Google Sans Hebrew', sans-serif;

    /* Shadows & Effects */
    --shadow-glow: 0 0 35px var(--color-primary-glow);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
    --glass-backdrop: blur(16px);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* LTR Safety helper for phone numbers */
.ltr-dir {
    direction: ltr;
    display: inline-block;
}

/* Container */
.max-width-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Failsafe SVG Fills for solid icons */
.header-whatsapp-icon,
.header-whatsapp-icon path,
.desktop-whatsapp-float svg,
.desktop-whatsapp-float svg path,
.mobile-action-bar svg[fill="currentColor"],
.mobile-action-bar svg[fill="currentColor"] path,
.wa-modal-icon svg,
.wa-modal-icon svg path {
    fill: currentColor !important;
    stroke: none !important;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

.main-header.scrolled {
    background: rgba(8, 10, 12, 0.85);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-img {
    transform: scale(1.03);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-whatsapp-link, .header-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
}

.header-whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25D366;
    transform: translateY(-2px);
}

.header-phone-link:hover {
    background: rgba(101, 235, 184, 0.15);
    border-color: var(--color-primary-dark);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.header-phone-icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #000000;
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
    background: #7ffff0;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(101, 235, 184, 0.5);
}

/* ==========================================================================
   HERO SECTION (DARK LUXURY TECH VIBE)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

/* Background Video & Overlays */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.8;
    filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}




.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Badge Header */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(101, 235, 184, 0.08);
    border: 1px solid var(--color-border-primary);
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(101, 235, 184, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

/* Hero Typography with Gradient */
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 950px;
    color: var(--color-text-light);
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #FFFFFF 20%, var(--color-primary) 70%, #A4FFF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(101, 235, 184, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(249, 249, 249, 0.85);
    max-width: 780px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Feature Grid Cards */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1040px;
    margin-bottom: 44px;
}

.feature-card {
    background: var(--color-bg-card);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--color-border-dark);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: right;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(101, 235, 184, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(101, 235, 184, 0.1);
    border: 1px solid rgba(101, 235, 184, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--color-primary);
    color: #000;
    transform: scale(1.08);
}

.feature-icon {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.btn-hero-cta {
    font-size: 1.15rem;
    padding: 16px 36px;
}

.btn-whatsapp-hero {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-hero:hover {
    background: #22c35e;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* REVEAL CLIP ANIMATION (Entrance Animation) */
.reveal-clip {
    clip-path: polygon(-20% -20%, 120% -20%, 120% -20%, -20% -20%);
    opacity: 0;
    transform: translateY(20px);
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    will-change: clip-path, transform, opacity;
}

.reveal-clip.revealed {
    clip-path: polygon(-20% -20%, 120% -20%, 120% 140%, -20% 140%);
    opacity: 1;
    transform: translateY(0);
}



/* ==========================================================================
   CONVERSION WIDGETS
   ========================================================================== */

/* 1. Desktop Bottom-Left WhatsApp Float */
.desktop-whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.desktop-whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0.6;
    animation: whatsappRipple 2s infinite ease-out;
}

@keyframes whatsappRipple {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.desktop-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
}

/* 2. Mobile Action Bar (Capsule Dock) */
.mobile-action-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 320px;
    height: 64px;
    border-radius: 32px;
    display: none;
    opacity: 0;
    z-index: 9999;
    background: rgba(12, 15, 18, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(101, 235, 184, 0.2);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.scrolled .mobile-action-bar {
    opacity: 1;
}

.mobile-action-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 0 12px;
}

.action-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.action-item.highlight {
    background: var(--color-primary);
    color: #000000;
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.action-icon {
    width: 22px;
    height: 22px;
}

/* ==========================================================================
   WHATSAPP LEAD MODAL (NOFAL STYLE)
   ========================================================================== */
.wa-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 20px;
}

.wa-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.wa-modal-card {
    background: #0d1117;
    border: 1px solid var(--color-border-primary);
    border-radius: 24px;
    padding: 36px 28px;
    width: 100%;
    max-width: 420px;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(101, 235, 184, 0.2);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-modal.active .wa-modal-card {
    transform: scale(1);
}

.wa-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--color-text-light);
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.wa-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.wa-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.wa-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.wa-modal-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.wa-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: right;
}

.wa-modal-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.wa-modal-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.25s ease;
    outline: none;
}

.wa-modal-input:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.wa-modal-input.wa-error {
    border-color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
}

.wa-modal-submit {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: #25D366;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.wa-modal-submit:hover {
    background: #22c35e;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   WHY US SECTION (LIGHT BACKGROUND - DESIGN & LAYOUT LIKE REFERENCE EXAMPLE)
   ========================================================================== */
.why-us-section {
    background-color: #F9F9F9;
    color: #000000;
    padding: 100px 0 120px;
    position: relative;
    z-index: 10;
}

.why-us-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.why-us-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #0a0c0e;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.why-us-title .highlight-green {
    color: #22c35e;
    position: relative;
}

.why-us-subtitle {
    font-size: 1.15rem;
    color: #555555;
    line-height: 1.6;
}

/* Cards Grid Layout (2 side by side) */
.why-us-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
}

.why-card {
    background-color: #07090b;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    position: relative;
    min-height: 290px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.25);
}

.why-card-content {
    flex: 1.25;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    color: #ffffff;
}

.why-card-title {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.why-card-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.45;
}

.why-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
}

.bullet-plus {
    color: #65EBB8;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
}

.btn-card-action {
    background: #65EBB8;
    color: #000000;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(101, 235, 184, 0.3);
}


.btn-card-action:hover {
    background: #7ffff0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(101, 235, 184, 0.5);
}

.btn-card-dark {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.btn-card-dark:hover {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.why-card-media {
    flex: 0.85;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #07090b;
}

/* Multi-directional soft gradient mask to blend images seamlessly into dark card without any cut lines */
.why-card-media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: 
        linear-gradient(90deg, #07090b 0%, rgba(7, 9, 11, 0.7) 25%, rgba(7, 9, 11, 0) 65%),
        linear-gradient(0deg, #07090b 0%, rgba(7, 9, 11, 0) 30%),
        linear-gradient(180deg, #07090b 0%, rgba(7, 9, 11, 0) 30%),
        linear-gradient(270deg, #07090b 0%, rgba(7, 9, 11, 0) 15%);
    pointer-events: none;
}

.why-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0.82;
    filter: saturate(1.15) contrast(1.05);
}

.why-card:hover .why-card-img {
    transform: scale(1.06);
    opacity: 0.95;
}




/* ==========================================================================
   SERVICES & PROBLEM AWARENESS SECTION (MATCHING REFERENCE DESIGN)
   ========================================================================== */
.services-awareness-section {
    background-color: #ffffff;
    color: #000000;
    padding: 110px 0 130px;
    position: relative;
    z-index: 10;
}

.services-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 100px;
}

.services-main-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #0a0c0e;
    line-height: 1.18;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.services-main-title .highlight-green {
    color: #22c35e;
}

.services-main-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.65;
}

/* Showcase Grid Layout (RTL split: Text on Right, Images on Left) */
.services-showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Right Content Column: Stacked Feature Items */
.services-text-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item-title {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #0a0c0e; /* Dark text for all titles */
}

.feature-item-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568; /* Dark readable text for all descriptions */
    max-width: 540px;
    display: block !important;
}


/* Left Visual Column (Layered Overlapping Images - Swapped Layers) */
.services-visual-col {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Back Image Layer: front_card_mockup now sits in the BACK */
.overlapping-glass-card-img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 2; /* LOWER Z-INDEX = BACK */
    transition: transform 0.4s ease;
}

.overlapping-front-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Front Image Layer: hastudio_feature now sits in the FRONT overlapping */
.visual-bg-wrapper {
    width: 78%;
    height: 380px;
    border-radius: 36px;
    overflow: hidden;
    position: absolute;
    bottom: -20px;
    left: 0;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.25), 0 0 30px rgba(101, 235, 184, 0.15);
    z-index: 5; /* HIGHER Z-INDEX = FRONT OVERLAPPING */
    transition: transform 0.4s ease;
}

.visual-bg-wrapper:hover {
    transform: translateY(-6px) scale(1.02);
}

.services-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.glass-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.investigator-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(101, 235, 184, 0.15);
    border: 1px solid rgba(101, 235, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.investigator-info {
    display: flex;
    flex-direction: column;
}

.inv-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.inv-role {
    font-size: 0.82rem;
    color: var(--color-primary);
}

.glass-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 18px;
}

.glass-card-section {
    margin-bottom: 18px;
}

.glass-card-section:last-child {
    margin-bottom: 0;
}

.section-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.cert-badges-row {
    display: flex;
    gap: 10px;
}

.cert-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.cert-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

.badges-hex-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hex-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hex-icon {
    font-size: 1.1rem;
}

.hex-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
}

.hex-stars {
    font-size: 0.65rem;
    color: var(--color-primary);
}

/* ==========================================================================
   SOCIAL PROOF / TESTIMONIALS SECTION (DARK BACKGROUND - MATCHING REFERENCE)
   ========================================================================== */
.social-proof-section {
    background-color: #040507;
    color: #ffffff;
    padding: 120px 0 140px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

/* Right Content Side: Gradient Title & Stats */
.proof-text-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.proof-gradient-title {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.proof-gradient-title .gradient-green-word {
    background: linear-gradient(135deg, #65EBB8 0%, #22c35e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.proof-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 540px;
}

.proof-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(101, 235, 184, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* Left Visual Side: Overlapping Portrait & Dark Card Mockups */
.proof-visual-col {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Hero Portrait (Back Layer) */
.proof-portrait-wrapper {
    width: 82%;
    height: 440px;
    border-radius: 36px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.proof-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Standing Portrait Rectangular Hebrew UI Card (Matching Reference Card Aspect Ratio) */
.hebrew-ui-card-standing {
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 68%;
    min-height: 380px;
    background: rgba(14, 18, 24, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 24px 22px;
    color: #ffffff;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.65), 0 0 30px rgba(101, 235, 184, 0.2);
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.hebrew-ui-card-standing:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(101, 235, 184, 0.4);
}

.user-profile-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(101, 235, 184, 0.12);
    border: 1px solid rgba(101, 235, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-text {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
}

.user-role {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
}

.card-ui-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 12px 0;
}

.testimonial-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.block-category {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.block-quote {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    font-weight: 500;
}

.block-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}




/* Responsive for Services & Social Proof Section */
@media (max-width: 992px) {
    .services-showcase-container,
    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-visual-col,
    .proof-visual-col {
        min-height: 420px;
    }

    .proof-portrait-wrapper {
        width: 100%;
        height: 340px;
        position: relative;
    }

    .hebrew-ui-card-standing {
        width: 88%;
        left: 6%;
        bottom: -20px;
    }
}

/* ==========================================================================
   FINAL CTA & FOOTER SECTION WITH BACKGROUND GRID LINES (MATCHING REFERENCE)
   ========================================================================== */
.grid-cta-footer-section {
    background-color: #06080b;
    color: #ffffff;
    padding: 120px 0 60px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Background Grid Lines Pattern matching screenshot */
.bg-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.grid-cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.cta-grid-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #ffffff;
    max-width: 900px;
}

.cta-grid-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Form Container */
.cta-form-container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 28px;
}

.main-contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.form-group {
    flex: 1;
}

.grid-form-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.25s ease;
}

.grid-form-input:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.btn-grid-submit {
    background: var(--color-primary);
    color: #000000;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px var(--color-primary-glow);
}

.btn-grid-submit:hover {
    background: #7ffff0;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(101, 235, 184, 0.5);
}

.or-divider {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 24px 0 16px;
    position: relative;
}

.direct-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-grid-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-grid-whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-grid.btn-whatsapp-hero:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Ministry of Justice Badge (Desktop Fixed Bottom-Right, Mobile Inline Flow) */
.justice-badge-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 14, 18, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(101, 235, 184, 0.12);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.justice-badge-container:hover {
    transform: translateY(-3px);
    border-color: rgba(101, 235, 184, 0.4);
}

.justice-badge-img {
    height: 34px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    background: #ffffff;
    padding: 3px 6px;
    border-radius: 6px;
    flex-shrink: 0;
}

.justice-badge-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    white-space: nowrap;
}

.justice-badge-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.justice-badge-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1px;
    white-space: nowrap;
}



.btn-grid-phone {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-grid-phone:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.cta-guarantee-note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
}

/* 3 Rounded Bottom Cards Grid (Matching Reference Screenshot Cards) */
.cta-bottom-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 840px;
    margin-bottom: 90px;
}

.cta-card {
    background: rgba(20, 24, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(101, 235, 184, 0.3);
}

.cta-card-val {
    display: block;
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.cta-card-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Site Footer */
.site-footer {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
    text-align: right;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: var(--color-primary);
    color: #000000;
    transform: translateY(-2px);
}

.footer-col-title {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-links-col a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Mobile Media Query for Footer & Grid CTA */
@media (max-width: 768px) {
    .header-contact {
        display: none;
    }
    
    .desktop-whatsapp-float {
        display: none !important;
    }

    .mobile-action-bar {
        display: block;
    }

    body {
        padding-bottom: 90px;
    }

    .hero-section {
        padding: 90px 0 40px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        margin-bottom: 16px;
        gap: 6px;
    }

    .hero-title {
        font-size: clamp(2.05rem, 10.2vw, 2.6rem);
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 24px;
        line-height: 1.55;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-hero-cta {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.98rem;
    }

    /* Mobile Justice Badge after CTA buttons */
    .justice-badge-container {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 24px;
        width: auto;
        max-width: 100%;
        justify-content: center;
        padding: 8px 14px;
        gap: 10px;
    }

    .justice-badge-img {
        height: 26px;
        padding: 2px 5px;
    }

    .justice-badge-title {
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .justice-badge-sub {
        font-size: 0.65rem;
        white-space: nowrap;
    }



    .why-us-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-card {
        flex-direction: column;
        min-height: auto;
    }

    .why-card-content {
        padding: 30px 24px;
    }

    .why-card-media {
        height: 200px;
        width: 100%;
    }

    .why-card-img {
        border-radius: 0;
    }

    .form-row {
        flex-direction: column;
    }

    .direct-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-grid-whatsapp, .btn-grid-phone {
        width: 100%;
        justify-content: center;
    }

    .cta-bottom-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



