/* ==========================================================================
   AERO CLEAN - PREMIUM HIGH-TECH DARK DESIGN SYSTEM (HEBREW RTL)
   ========================================================================== */

/* Import Google Sans */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
    /* Color Palette */
    --bg-main: #060913;
    --bg-card: #0d1222;
    --bg-card-hover: #141b30;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-hover: rgba(255, 255, 255, 0.16);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Glowing Cyan/Electric Blue Accents */
    --accent-cyan: #00f0ff;
    --accent-blue: #0072ff;
    --accent-gradient: linear-gradient(135deg, #00f0ff 0%, #0072ff 100%);
    --accent-glow: 0 0 20px rgba(0, 240, 255, 0.35);
    --accent-glow-strong: 0 0 30px rgba(0, 240, 255, 0.6);
    
    /* Clean Safety Alert Colors */
    --color-danger: #f87171;
    --color-success: #4ade80;
    
    /* Fonts */
    --font-heading: 'Google Sans', 'Google Sans Hebrew', sans-serif;
    --font-body: 'Google Sans', 'Google Sans Hebrew', sans-serif;
    
    /* Spacing & Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

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

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

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-main);
    color: var(--text-primary);
}

/* RTL Number Safety Helper */
.ltr-dir {
    direction: ltr;
    display: inline-block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

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

/* Section Common Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-darker {
    background-color: #03050a;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent-cyan);
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 10px;
    
    /* Sci-fi Cut Corners (Top-Right and Bottom-Left) */
    clip-path: polygon(
        0 0,
        calc(100% - 14px) 0,
        100% 14px,
        100% 100%,
        14px 100%,
        0 calc(100% - 14px)
    );
    border-radius: 0;
}

.btn-primary {
    background: #258cff; /* Sky Blue accent color from reference image */
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 140, 255, 0.3);
}

.btn-primary:hover {
    background: #0072ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 114, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER (NAVIGATION)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

/* Scrolled state applied via JavaScript class */
.main-header.scrolled {
    background: rgba(6, 9, 19, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
}

.header-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Far Right in RTL */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

/* Nav Middle */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: #ffffff; /* White when header is transparent */
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

/* Scrolled state links color */
.main-header.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.main-header.scrolled .nav-link:hover, 
.main-header.scrolled .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

/* Header Left: contact cluster + CTA */
.header-left-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
}

.header-whatsapp-link {
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.08);
    transition: var(--transition-smooth);
}

.header-whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.header-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff; /* White when transparent */
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-phone-link {
    color: var(--text-primary);
}

.header-phone-link:hover {
    color: var(--accent-cyan);
}

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

.header-cta-pill {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Mobile Navigation Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Mobile Nav Menu Overlay */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 9, 19, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.mobile-nav-link:hover {
    color: var(--accent-cyan);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Dark Overlay for Hero - transparent until #03050a */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(3, 5, 10, 0) 0%, 
        rgba(3, 5, 10, 0.3) 50%, 
        rgba(3, 5, 10, 0.75) 80%,
        #03050a 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-tagline {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 24px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 6.1rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 0px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-title span {
    color: #ffffff;
    display: block;
    font-size: 4.8rem;
    margin-top: -8px;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

/* Floating Drone Styles */
.hero-drone-wrapper {
    margin-top: -11px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-floating-drone {
    animation: floatDrone 4s ease-in-out infinite;
    max-width: 845px;
    width: 100%;
    height: auto;
}

@keyframes floatDrone {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-features {
    display: none; /* Removed from layout */
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
    font-weight: 500;
}

/* Glass capsule container for hero buttons - Cut corners to match buttons design */
.hero-buttons-capsule {
    display: inline-flex;
    background: rgba(13, 18, 34, 0.65);
    backdrop-filter: blur(12px);
    border: none;
    padding: 8px 12px;
    margin: 0 auto;
    
    clip-path: polygon(
        0 0,
        calc(100% - 16px) 0,
        100% 16px,
        100% 100%,
        16px 100%,
        0 calc(100% - 16px)
    );
    border-radius: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   TRUST BAR (פס המשדר אמון - INFINITE MARQUEE)
   ========================================================================== */
.trust-bar {
    position: relative;
    z-index: 5;
    background-color: #03050a;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    margin-top: -40px; /* Overlap with hero slightly */
    overflow: hidden;
    width: 100%;
    direction: ltr; /* Force predictable LTR scrolling for marquee track */
}

.trust-marquee-track {
    display: flex;
    width: max-content;
}

.trust-marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: marqueeScroll 22s linear infinite;
    direction: rtl; /* Render Hebrew text elements correctly in RTL inside track */
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    gap: 30px;
}

.trust-item::after {
    content: '';
    width: 1px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ==========================================================================
   CHALLENGES SECTION
   ========================================================================== */
.challenges-diagram {
    position: relative;
    width: 100%;
    max-width: 1200px; /* span full container width */
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diagram-image-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.diagram-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.6)) brightness(0.95);
    transition: transform 0.5s ease;
}

/* 6-Grid Detail Cards below */
.challenges-grid-mockup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
}

.challenge-mock-card {
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: var(--transition-smooth);
}

.challenge-mock-card:hover {
    background-color: rgba(248, 113, 113, 0.02);
}

.challenge-mock-card:hover .mock-card-icon {
    transform: scale(1.1) translateY(-5px);
    color: var(--color-danger);
    filter: drop-shadow(0 0 8px rgba(248, 113, 113, 0.4));
}

/* Vertical lines between columns */
.challenge-mock-card:not(:nth-child(3n)) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Horizontal lines between row 1 and 2 */
.challenge-mock-card:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-card-icon {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-card-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.challenge-mock-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.challenge-mock-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Pulse animation for pointer dots */
@keyframes pointer-dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(248, 113, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0);
    }
}

/* ==========================================================================
   THE SOLUTION (SPLIT FEATURE LAYOUT)
   ========================================================================== */
.solution-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-title-main {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary);
    margin: 15px 0 24px 0;
    letter-spacing: 0.5px;
}

.solution-desc-short {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon-wrapper {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.4));
}

.feature-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.solution-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.solution-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.solution-side-img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.5)) brightness(1.02);
}

/* ==========================================================================
   ADVANTAGES SECTION (BENTO GRID STYLE)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

/* Bento Grid Redesign */
.bento-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

/* Row 1: Video Card */
.bento-card-video {
    grid-column: span 3;
    position: relative;
    height: 480px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: #000000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    transition: var(--transition-smooth);
}

.bento-card-video:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--accent-glow);
}

.video-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 0;
}

.bento-card-video:hover .video-card-bg {
    transform: scale(1.03);
}

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3, 5, 10, 0.9) 0%, rgba(3, 5, 10, 0.3) 50%, rgba(3, 5, 10, 0.8) 100%);
    z-index: 1;
}

.video-card-features {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end; /* Align left in RTL */
    gap: 40px;
}

.video-feature-item {
    text-align: left; /* Aligns left on the left side of the card */
}

.video-feature-item h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.video-card-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition-smooth);
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.video-card-play-btn:hover .play-btn-circle {
    background: #ffffff;
    border-color: #ffffff;
    color: #03050a;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.play-btn-circle svg {
    width: 28px;
    height: 28px;
    margin-right: -4px;
}

.video-card-title {
    position: relative;
    z-index: 2;
    text-align: right;
}

.video-card-title h3 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    font-family: 'Google Sans', 'Arial Narrow', sans-serif;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Bottom Row Columns */
.bento-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-card-sub {
    background-color: #000000;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card-sub:hover {
    border-color: var(--accent-cyan);
    background-color: #050505;
}

.full-height-card {
    height: 100%;
}

.bento-card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-cyan);
    transition: var(--transition-smooth);
}

.bento-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.bento-card-sub:hover .bento-card-icon-wrapper {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    color: #ffffff;
}

.bento-card-sub:hover .bento-icon {
    transform: scale(1.1);
}

.bento-card-sub-content {
    text-align: right;
}

.bento-card-sub-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.bento-card-sub-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Rating Card */
.rating-card {
    padding: 24px;
    background: #000000;
}

.rating-card:hover {
    background: #050505;
}

.bento-rating-avatars {
    display: flex;
    align-items: center;
    gap: -8px;
    margin-bottom: 16px;
    direction: ltr;
    justify-content: flex-end;
}

.rating-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #000000;
    margin-left: -8px;
}

.rating-avatar:first-child {
    margin-left: 0;
}

.rating-avatar-plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0072ff;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000;
    margin-left: -8px;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff !important;
}

/* Stats Card */
.stats-card {
    background: #000000;
}

.stats-card:hover {
    background: #050505;
}

.stats-card-subtitle {
    margin-bottom: 24px;
}

.stat-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.stat-group:last-child {
    margin-bottom: 0;
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 4px;
    margin-bottom: 0;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 5, 10, 0.85);
    backdrop-filter: blur(10px);
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #0d1222;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-modal-close:hover {
    background: var(--color-danger);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* WhatsApp Lead Capture Modal */
.whatsapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.whatsapp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 5, 10, 0.85);
    backdrop-filter: blur(10px);
}

.whatsapp-modal-container {
    position: relative;
    width: 90%;
    max-width: 450px;
    background: #0d1222;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: right;
}

.whatsapp-modal.active .whatsapp-modal-container {
    transform: scale(1);
}

.whatsapp-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.whatsapp-modal-close:hover {
    background: var(--color-danger);
    transform: rotate(90deg);
}

.whatsapp-modal-close svg {
    width: 18px;
    height: 18px;
}

.wa-modal-header {
    margin-bottom: 24px;
}

.wa-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.wa-modal-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.wa-submit-btn {
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none !important;
}

.wa-submit-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4) !important;
}

/* ==========================================================================
   TARGET AUDIENCE (למי זה מתאים?)
   ========================================================================== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.target-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.target-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.02);
    transform: scale(1.03);
}

.target-card-icon {
    color: var(--accent-cyan);
    margin: 0 auto 16px auto;
    width: 32px;
    height: 32px;
}

.target-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: var(--accent-glow);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 9, 19, 0) 60%, rgba(6, 9, 19, 0.9) 100%);
}

.service-content {
    padding: 32px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 4px;
}

/* ==========================================================================
   BEFORE & AFTER GALLERY (INTERACTIVE COMPARISON)
   ========================================================================== */
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-tab-btn {
    font-family: 'Google Sans', sans-serif;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 9999px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.gallery-tab-btn.active, .gallery-tab-btn:hover {
    background: var(--accent-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: var(--accent-glow);
}

.gallery-display {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    user-select: none;
}

/* Set dynamic slide display */
.gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide.active {
    display: block;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Clip layer for the clean (After) image */
.slider-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 50%); /* Start at 50% from right */
}

/* Handles and Dividers */
.slider-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* Sync with clip-path */
    width: 4px;
    background-color: var(--text-primary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: #fff;
    border: 4px solid var(--accent-cyan);
    border-radius: 50%;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3), var(--accent-glow);
}

.slider-handle svg {
    width: 20px;
    height: 20px;
    transform: rotate(0deg);
}

/* Before/After labels */
.slider-label {
    position: absolute;
    top: 20px;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 8;
    color: var(--text-primary);
    pointer-events: none;
}

.label-before {
    right: 20px;
}

.label-after {
    left: 20px;
}

/* ==========================================================================
   WHY CHOOSE US & SOCIAL PROOF
   ========================================================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
}

.social-proof-section {
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
    margin-top: 60px;
}

.social-proof-title {
    text-align: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.social-proof-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px 32px;
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.client-logo-card:hover {
    border-color: var(--accent-cyan);
    color: var(--text-primary);
}

.social-proof-quotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.quote-card {
    background: rgba(13, 18, 34, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.quote-author {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* ==========================================================================
   WHY CHOOSE US SECTION (האיכות שלנו)
   ========================================================================== */
#why-choose-us {
    padding-bottom: 0; /* Align trust bar to the bottom */
}

/* Logo Marquee Carousel */
.logo-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    margin-bottom: 50px;
    direction: ltr; /* Force predictable LTR scrolling for marquee track */
}

.logo-carousel-fade-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, #03050a 0%, rgba(3, 5, 10, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, #03050a 0%, rgba(3, 5, 10, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.logo-marquee-track {
    display: flex;
    width: max-content;
}

.logo-marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
    animation: marqueeScroll 40s linear infinite;
}

.logo-marquee-content img {
    height: 35px;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-marquee-content img:hover {
    opacity: 0.9;
}

/* Testimonial Carousel (Manual Slider) */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-carousel-container {
    position: relative;
    width: 100%;
    min-height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    max-width: 700px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(13, 18, 34, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #00f2fe; /* cyan color */
}

.testimonial-quote {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Nav Buttons & Arrow Flip for Hebrew RTL */
.carousel-nav-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 3;
}

.carousel-nav-btn:hover {
    background: var(--accent-cyan);
    color: #03050a;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.carousel-nav-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    transform: rotate(180deg); /* Flip arrows for intuitive Hebrew RTL navigation */
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--accent-cyan);
    transform: scale(1.25);
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* Bottom Trust Bar (Clean spacing at bottom of section) */
.bottom-trust-bar {
    margin-top: 60px !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
    background-color: var(--bg-card-hover);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
    color: var(--text-primary);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.faq-icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-trigger:hover .faq-icon-wrapper {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
}

.faq-icon-arrow {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.02);
}

/* Active states for accordion */
.faq-item.active {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon-wrapper {
    background: var(--accent-gradient);
    color: #000;
}

/* ==========================================================================
   CONTACT FORM & FINAL CTA
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info-p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.contact-method-details h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-method-details p {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Premium Form Panel */
.form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input, .form-select {
    width: 100%;
    background: rgba(6, 9, 19, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
    background: rgba(6, 9, 19, 0.9);
}

.form-select option {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

.form-status-msg {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-status-msg.success {
    background: rgba(74, 222, 128, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.form-status-msg.error {
    background: rgba(248, 113, 113, 0.1);
    color: var(--color-danger);
    border: 1px solid rgba(248, 113, 113, 0.2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #03050a;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background: var(--accent-gradient);
    color: #000;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--accent-cyan);
    padding-right: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

/* 2. Desktop Bottom-Left Fixed WhatsApp Widget */
.desktop-whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: whatsappRipple 2s infinite;
}

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

.float-icon {
    width: 28px;
    height: 28px;
}

/* 3. Mobile Floating Capsule Actions 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;
    background: rgba(13, 18, 34, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none; /* STRICTLY HIDDEN ON DESKTOP BY DEFAULT */
    z-index: 9999;
}

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

.action-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.action-item.highlight {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: var(--accent-glow);
}

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

/* 4. Safety CSS Rule for Solid Fills */
.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,
.social-links svg,
.social-links svg path {
    fill: currentColor !important;
    stroke: none !important;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes hotspotPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes whatsappRipple {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-title span {
        font-size: 3.8rem;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.large-2 {
        grid-column: span 2;
    }
    .target-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Challenges Tablet Responsiveness */
    .challenges-diagram {
        max-width: 100%;
    }
    .diagram-image-wrapper {
        max-width: 100%;
    }
    .challenge-mock-card {
        padding: 35px 25px;
    }
    
    /* Solution Tablet Responsiveness */
    .solution-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .solution-content {
        align-items: center;
    }
    .solution-features {
        align-items: center;
        max-width: 650px;
        margin: 0 auto 30px auto;
    }
    .solution-features li {
        justify-content: flex-start;
    }
    .solution-actions {
        justify-content: center;
    }
    .solution-side-img {
        max-width: 70%;
    }
    
    /* Bento Grid Tablet Responsiveness */
    .bento-grid-custom {
        grid-template-columns: 1fr;
    }
    .bento-card-video {
        grid-column: span 1;
        height: 380px;
        padding: 24px;
    }
    .video-card-title h3 {
        font-size: 1.8rem;
    }
    .video-card-features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 100px; /* Body Spacing Rule for mobile action bar */
    }
    
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    
    /* Header & Nav */
    .desktop-nav, .header-contact, .header-left-group .header-cta-pill {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .brand-logo-img {
        height: 48px;
    }
    
    /* Hero */
    .hero {
        padding-top: 100px;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-title span {
        font-size: 2.4rem;
        margin-top: -4px;
    }
    .hero-floating-drone {
        max-width: 440px;
        width: 90%;
    }
    .hero-drone-wrapper {
        margin: 15px auto;
    }
    .hero-features {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .hero-buttons-capsule {
        display: flex;
        flex-direction: column;
        background: transparent;
        backdrop-filter: none;
        border: none;
        padding: 0;
        border-radius: 0;
        width: 100%;
        align-items: center;
        clip-path: none;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    /* Grid Adjustments */
    .challenges-diagram {
        min-height: auto;
        margin: 20px auto;
        max-width: 100%;
    }
    .diagram-image-wrapper {
        max-width: 100%;
    }
    .diagram-image {
        height: auto;
    }
    .challenges-grid-mockup {
        grid-template-columns: 1fr;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .challenge-mock-card {
        padding: 30px 20px;
        border-left: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .challenge-mock-card:last-child {
        border-bottom: none !important;
    }
    .challenge-mock-card:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    
    /* Solution Mobile Responsiveness */
    .solution-title-main {
        font-size: 2.1rem;
    }
    .solution-actions {
        flex-direction: column;
        gap: 12px;
    }
    .solution-actions .btn {
        width: 100%;
        max-width: 320px;
    }
    .solution-side-img {
        max-width: 90%;
    }
    
    .why-us-grid, .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bento-grid-custom, .target-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .bento-card-video {
        height: auto;
        min-height: 320px;
        padding: 20px;
    }
    .video-card-features {
        flex-direction: column;
        gap: 12px;
        align-items: flex-end; /* Align right in RTL */
    }
    .video-feature-item h4 {
        font-size: 0.95rem;
    }
    .video-card-title h3 {
        font-size: 1.5rem;
    }
    .play-btn-circle {
        width: 60px;
        height: 60px;
    }
    .play-btn-circle svg {
        width: 20px;
        height: 20px;
    }
    
    .social-proof-quotes, .why-us-checklist {
        grid-template-columns: 1fr;
    }
    
    /* Before/After comparison slider aspect ratio for mobile viewports */
    .comparison-slider-container {
        aspect-ratio: 4 / 3;
    }
    
    /* Form */
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-panel {
        padding: 24px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* 2. Hide Desktop Floating WhatsApp on mobile */
    .desktop-whatsapp-float {
        display: none !important;
    }
    
    /* 3. Show Mobile Floating Capsule Actions Dock */
    .mobile-action-bar {
        display: block; /* Visible ONLY on mobile/tablet viewports */
    }
}

/* Contact Card Hover & Credits Bar Styling */
a.contact-method-card {
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

a.contact-method-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.1);
}

.credits-bar {
    background-color: #03050a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.credits-bar a {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.credits-bar a:hover {
    opacity: 1;
}
