        @import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap');
        
        :root {
            --primary: #060e21;
            --secondary: #101e36;
            --accent: #2cd3d3;
            --accent-secondary: #a742bc;
            --text: #ffffff;
            --text-secondary: #a9b6d3;
            --text-dark: #171717;
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(255, 255, 255, 0.06);
            --gray-bg: #f0f4f8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Heebo', sans-serif;
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 300;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .section {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
        }
        
        /* Glow effects */
        .glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.2;
            z-index: 0;
        }
        
        .glow-1 {
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            top: -300px;
            left: -200px;
        }
        
        .glow-2 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
            bottom: -250px;
            right: -200px;
        }
        
        /* Grid layout */
        .grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 30px;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 5rem;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--text), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 30px;
        }
        
        h2 {
            font-size: 3rem;
            position: relative;
            display: inline-block;
            margin-bottom: 50px;
        }
        
        h2::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent), transparent);
        }
        
        h3 {
            font-size: 1.8rem;
            background: linear-gradient(135deg, var(--text), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        .accent-text {
            color: var(--accent);
            font-weight: 600;
        }
        
        .bold-text {
            font-weight: 700;
        }
        
        /* Header */
        header {
            /* הוסף !important לתכונות קריטיות */
            position: fixed !important;
            width: 100% !important;
            top: 0 !important;
            left: 0 !important;
            z-index: 1000 !important;
            padding: 20px 0 !important;
            transition: all 0.4s ease !important;
            /* איפוס פונטים שיכולים להיות מושפעים */
            font-size: 16px !important;
            line-height: 1.6 !important;
        }
        
        header.scrolled {
            background: rgba(6, 14, 33, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--text);
            display: flex;
            align-items: center;
        }
        
        .logo span {
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .logo-icon {
            margin-left: 10px;
            font-size: 2.2rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Navigation - Desktop styles */
        .nav-container {
            display: flex;
            align-items: center;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-right: 30px;
        }
        
        nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 10px 0;
            position: relative;
            font-size: 1.1rem;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--accent), var(--accent-secondary));
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }
        
        .contact-btn {
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
            margin-right: 20px;
        }
        
        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .contact-btn:hover::before {
            width: 100%;
        }
        
        .contact-btn:hover {
            box-shadow: 0 10px 20px rgba(44, 211, 211, 0.3);
            transform: translateY(-3px);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 150px 0 100px;
        }
        
        .hero-content {
            grid-column: 1 / 8;
        }
        
        .hero-visual {
            grid-column: 8 / 13;
            position: relative;
            height: 500px;
        }
        
        .floating-shape {
            position: absolute;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            display: flex;
            align-items: center;
            padding: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .shape-1 {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .shape-2 {
            top: 50%;
            right: 10%;
            animation-delay: 1s;
        }
        
        .shape-3 {
            bottom: 20%;
            left: 30%;
            animation-delay: 2s;
        }
        
        .shape-icon {
            font-size: 2rem;
            margin-left: 15px;
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .shape-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .shape-text p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .hero-btns {
            display: flex;
            margin-top: 50px;
        }
        
        .btn {
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 1.1rem;
            margin-left: 20px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            color: var(--primary);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .btn-primary:hover::before {
            width: 100%;
        }
        
        .btn-primary:hover {
            box-shadow: 0 10px 20px rgba(44, 211, 211, 0.3);
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--text-secondary);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .scroll-down {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: var(--text-secondary);
            font-size: 2rem;
            cursor: pointer;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        /* Services Section */
        .services {
            background-color: var(--secondary);
            position: relative;
        }
        
        .service-intro {
            grid-column: 1 / 7;
            margin-bottom: 50px;
        }
        
        .services-grid {
            grid-column: 1 / 13;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .service-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 15px;
            padding: 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--accent), var(--accent-secondary));
            transition: all 0.4s ease;
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            border-color: rgba(44, 211, 211, 0.2);
        }
        
        .service-icon {
            font-size: 3rem;
            margin-bottom: 30px;
            display: inline-block;
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .service-list {
            list-style: none;
            margin-top: 20px;
        }
        
        .service-list li {
            margin-bottom: 15px;
            padding-right: 25px;
            position: relative;
            color: var(--text-secondary);
        }
        
        .service-list li::before {
            content: "✓";
            position: absolute;
            right: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        /* Process Section */
        .process {
            background-color: var(--primary);
        }
        
        .process-intro {
            grid-column: 1 / 7;
            margin-bottom: 80px;
        }
        
        .process-steps {
            grid-column: 1 / 13;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .process-step {
            text-align: center;
            padding: 0 20px;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 90px;
            right: -15px;
            width: 30px;
            height: 2px;
            background: linear-gradient(to right, var(--accent), transparent);
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .step-title {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        /* Projects Section */
        .projects {
            background-color: var(--secondary);
            position: relative;
        }
        
        .projects-intro {
            grid-column: 1 / 7;
            margin-bottom: 50px;
        }
        
        .projects-grid {
            grid-column: 1 / 13;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .project-card {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 450px;
            cursor: pointer;
        }
        
        .project-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(6, 14, 33, 0.9), transparent);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        .project-card:hover .project-img {
            transform: scale(1.1);
        }
        
        .project-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .project-category {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .project-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .project-link i {
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .project-link:hover {
            color: var(--accent);
        }
        
        .project-link:hover i {
            transform: translateX(5px);
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--primary);
            position: relative;
        }
        
        .testimonials-intro {
            grid-column: 1 / 7;
            margin-bottom: 50px;
        }
        
        .testimonial-card {
            grid-column: 1 / 13;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 15px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: "\201C"; /* תו יוניקוד של גרשיים כפולים פותחים */
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 120px;
            color: rgba(44, 211, 211, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-content {
            font-size: 1.3rem;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-left: 20px;
            border: 3px solid var(--accent);
        }
        
        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 1rem;
            color: var(--accent);
            margin-bottom: 0;
        }
        
        /* CTA Section */
        .cta {
            text-align: center;
            background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
            color: var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: center center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .cta-content {
            grid-column: 3 / 11;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .cta h2 {
            color: var(--primary);
            font-size: 3.5rem;
            margin-bottom: 30px;
        }
        
        .cta h2::after {
            background: var(--primary);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .cta p {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .cta-btn {
            background: var(--primary);
            color: var(--text);
            padding: 18px 50px;
            font-size: 1.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .cta-btn:hover::before {
            width: 100%;
        }
        
        .cta-btn:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(-3px);
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--secondary);
            position: relative;
        }
        
        .contact-intro {
            grid-column: 1 / 7;
            margin-bottom: 50px;
        }
        
        .contact-form-container {
            grid-column: 1 / 8;
        }
        
        .contact-info {
            grid-column: 8 / 13;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 15px;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contact-form {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 15px;
            padding: 40px;
            margin-top: 0;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        .form-control {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 20px;
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(44, 211, 211, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
            color: var(--primary);
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            box-shadow: 0 10px 20px rgba(44, 211, 211, 0.3);
            transform: translateY(-3px);
        }
        
        .info-item {
            display: flex;
            margin-bottom: 30px;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 20px;
            font-size: 1.3rem;
            color: var(--primary);
            flex-shrink: 0;
        }
        
        .info-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .info-content p, .info-content a {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .info-content a:hover {
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            padding: 80px 0 40px;
            position: relative;
        }
        
        .footer-content {
            grid-column: 1 / 13;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
            padding-left: 20px;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(-5px);
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            transition: all 0.3s ease;
            color: var(--text);
            text-decoration: none;
            font-size: 1.1rem;
        }
        
        .social-link:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            grid-column: 1 / 13;
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 1s ease forwards;
        }
        
        /* ===== תיקון לתפריט נייד ====== */
        .mobile-nav-wrapper {
            display: none;
        }
        
        @media (max-width: 1200px) {
            h1 {
                font-size: 4rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
            
            .hero-content {
                grid-column: 1 / 8;
            }
            
            .hero-visual {
                grid-column: 8 / 13;
            }
        }
        
        @media (max-width: 992px) {
            h1 {
                font-size: 3.5rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero-content {
                grid-column: 1 / 13;
                text-align: center;
                margin-bottom: 50px;
            }
            
            .hero-visual {
                grid-column: 1 / 13;
                height: 400px;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .service-intro, .process-intro, .projects-intro, .testimonials-intro, .contact-intro {
                grid-column: 1 / 13;
                text-align: center;
            }
            
            .service-intro h2::after, .process-intro h2::after, .projects-intro h2::after, .testimonials-intro h2::after, .contact-intro h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
            
            .contact-form-container, .contact-info {
                grid-column: 1 / 13;
            }
            
            .contact-info {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            /* תיקון קריטי לכפילות: הסתרת התפריט המקורי במובייל */
            .nav-container nav {
                display: none !important;
            }
            
            .mobile-menu-btn {
                display: block;
                order: 1;
                margin-right: 20px;
                z-index: 1005;
            }
            
            .nav-container {
                order: 2;
                flex-direction: column;
                align-items: flex-end;
            }
            
            /* הסתרת הכפתור צור קשר בהדר במצב מובייל */
            .nav-container .contact-btn {
                display: none !important;
            }
            
            /* סגנון לתפריט הנייד */
            .mobile-nav-wrapper {
                display: block;
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100%;
                z-index: 1002;
                transition: all 0.4s ease;
            }
            
            .mobile-nav-wrapper.active {
                right: 0;
            }
            
            /* רקע שחור לתפריט */
            .mobile-nav-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: #060e21;
                opacity: 0.95;
            }
            
            /* תוכן התפריט עצמו */
            .mobile-nav-content {
                position: relative;
                width: 80%;
                height: 100%;
                background-color: #060e21;
                float: right;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
                padding: 80px 20px 40px;
                overflow-y: auto;
                border-left: 2px solid var(--accent);
            }
            
            /* כפתור סגירה */
            .close-menu {
                position: absolute;
                top: 20px;
                left: 20px;
                background: rgba(255, 255, 255, 0.1);
                border: none;
                color: var(--text);
                font-size: 1.5rem;
                cursor: pointer;
                z-index: 1003;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }
            
            .close-menu:hover {
                background: var(--accent);
                color: var(--primary);
                transform: rotate(90deg);
            }
            
            /* סגנון פריטי התפריט */
            .mobile-nav-content ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .mobile-nav-content ul li {
                margin-bottom: 15px;
                text-align: center;
            }
            
            .mobile-nav-content ul li a {
                display: block;
                padding: 15px;
                color: var(--text);
                text-decoration: none;
                font-weight: 500;
                font-size: 1.2rem;
                background-color: rgba(255, 255, 255, 0.05);
                border-radius: 8px;
                transition: all 0.3s ease;
                border: 1px solid rgba(255, 255, 255, 0.08);
            }
            
            .mobile-nav-content ul li a:hover,
            .mobile-nav-content ul li a.active {
                background-color: rgba(44, 211, 211, 0.1);
                transform: translateX(-5px);
                border-color: var(--accent);
            }
            
            /* כפתור צור קשר בתפריט הנייד */
            .mobile-cta {
                display: block;
                margin-top: 30px;
                background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
                color: var(--primary);
                padding: 15px 30px;
                border-radius: 30px;
                text-decoration: none;
                font-weight: 600;
                text-align: center;
                font-size: 1.1rem;
            }
            
            h1 {
                font-size: 3rem;
            }
            
            .hero {
                padding: 120px 0 80px;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 30px;
            }
            
            .testimonial-content {
                font-size: 1.1rem;
            }
              .floating-shape {
    position: static;
    margin-bottom: 20px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto !important;
  }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                margin-bottom: 15px;
                margin-left: 0;
            }
            
            .contact-form, .contact-info {
                padding: 25px;
            }
            
            .footer-col {
                flex: 100%;
            }
            
            /* תפריט צר יותר במסכים קטנים */
            .mobile-nav-content {
                width: 100%;
            }
        }
  .Accessibility-Statement{
    color: #a9b6d3;
    font-weight: bold;
  }
    
    