* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* ── Purple family (brand colour — never blend with gold) ── */
            --purple:       #9B6AD4;   /* rich saturated brand purple       */
            --purple-deep:  #6B3FA0;   /* dark end for purple gradients     */
            --purple-mid:   #B48AE6;   /* logo tint — light labels, glows   */
            --purple-rgb:   155, 106, 212;

            /* ── Gold (accent only — always used alone, NEVER in a gradient with purple) ── */
            --gold:         #C9A96E;
            --gold-light:   #E8CA8A;
            --gold-rgb:     201, 169, 110;

            /* ── Background surfaces (purple-black undertone) ── */
            --dark:         #07070F;   /* deepest background                */
            --dark-light:   #0F0F1E;   /* nav, elevated surfaces            */
            --gray:         #17172C;   /* card / panel backgrounds          */

            /* ── Typography (warm-white with purple tint) ── */
            --text:         #F4F1FF;
            --text-muted:   rgba(244, 241, 255, 0.52);

            /* ── Legacy aliases kept for backward compat ── */
            --primary:      var(--purple);
            --primary-dark: var(--purple-deep);
            --primary-rgb:  var(--purple-rgb);
            --cyan:         var(--purple-mid);
            --cyan-dark:    var(--purple-deep);
            --cyan-rgb:     var(--purple-rgb);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--purple-deep), var(--purple-mid));
            border-radius: 5px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 60px;
            padding-left: max(60px, env(safe-area-inset-left));
            padding-right: max(60px, env(safe-area-inset-right));
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        nav.scrolled {
            background: rgba(7, 7, 13, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            padding: 15px 60px;
            padding-left: max(60px, env(safe-area-inset-left));
            padding-right: max(60px, env(safe-area-inset-right));
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.6rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--text);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--purple-deep), var(--purple));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

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

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

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

        .nav-cta {
            background: linear-gradient(135deg, var(--purple-deep), var(--purple));
            color: #fff !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
        }

        .nav-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(var(--purple-rgb), 0.4);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
            -webkit-tap-highlight-color: transparent;
            min-width: 44px;
            min-height: 44px;
            align-items: center;
            justify-content: center;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            min-height: 100svh; /* Progressive: excludes browser chrome on mobile */
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.9) 100%);
        }

        .hero-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            opacity: 0.15;
        }

        .hero-glow.glow-1 {
            top: -200px;
            right: -200px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
        }

        .hero-glow.glow-2 {
            bottom: -300px;
            left: -200px;
            background: radial-gradient(circle, var(--purple-deep) 0%, transparent 70%);
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 60px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(var(--gold-rgb), 0.08);
            border: 1px solid rgba(var(--gold-rgb), 0.35);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--gold-light);
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge i {
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0.3; }
        }

        .hero h1 {
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.025em;
            margin-bottom: 28px;
            animation: fadeInUp 0.8s ease 0.1s backwards;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--purple-mid), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 500px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease 0.3s backwards;
        }

        .btn {
            padding: 18px 36px;
            border-radius: 14px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--purple-deep), var(--purple));
            color: #fff;
            box-shadow: 0 15px 40px rgba(var(--purple-rgb), 0.28);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 55%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
            transform: skewX(-20deg);
            transition: left 0.65s ease;
            pointer-events: none;
        }

        .btn-primary:hover::before {
            left: 160%;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 25px 60px rgba(var(--purple-rgb), 0.38);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 5px 15px rgba(var(--purple-rgb), 0.2);
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-5px);
        }

        .btn-outline:active {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-stats {
            display: flex;
            gap: 50px;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat h3, .hero-stat .hero-num {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-stat p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .hero-image {
            position: relative;
            z-index: 1;
            animation: fadeInRight 1s ease 0.3s backwards;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 30px;
        }

        .hero-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), transparent);
            pointer-events: none;
        }

        .floating-card {
            position: absolute;
            background: rgba(13, 13, 24, 0.82);
            backdrop-filter: blur(16px) saturate(160%);
            -webkit-backdrop-filter: blur(16px) saturate(160%);
            border: 1px solid rgba(var(--purple-rgb), 0.28);
            padding: 20px 25px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 15px;
            animation: float 4s ease-in-out infinite;
            will-change: transform;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
        }

        .floating-card.card-1 {
            bottom: 30px;
            left: -40px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            top: 40px;
            right: -30px;
            animation-delay: -1.5s;
        }

        .floating-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--purple-deep), var(--purple));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .floating-card-text h4 {
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .floating-card-text p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

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

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Features Bar */
        .features-bar {
            background: var(--dark-light);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 30px 0;
        }

        .features-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-item img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .feature-item span {
            font-weight: 500;
            color: var(--text-muted);
        }

        /* Services Section */
        .services {
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-block;
            background: rgba(var(--gold-rgb), 0.1);
            border: 1px solid rgba(var(--gold-rgb), 0.3);
            color: var(--gold);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .section-header {
            margin-bottom: 70px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
        }

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

        .service-card {
            background: linear-gradient(145deg, var(--gray), var(--dark-light));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--purple-deep), var(--purple-mid));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(var(--primary-rgb), 0.2);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-image {
            height: 230px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, var(--gray) 100%);
        }

        .service-content {
            padding: 30px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 15px;
        }

        /* Process Section */
        .process {
            padding: 120px 60px;
            background: var(--dark-light);
            position: relative;
            overflow: hidden;
        }

        .process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(var(--gold-rgb), 0.2), transparent);
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .process .section-header,
        .testimonials .section-header {
            text-align: center;
        }

        .process .section-header p,
        .testimonials .section-header p {
            margin: 0 auto;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--purple-deep), var(--purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            margin: 0 auto 25px;
            position: relative;
            z-index: 1;
        }

        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        .process-step p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 60px;
            background: var(--dark-light);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }



        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--gray);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            padding: 40px 30px;
            position: relative;
            transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
        }

        .testimonial-card:hover {
            border-color: rgba(var(--gold-rgb), 0.25);
            box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
            transform: translateY(-6px);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 6rem;
            color: rgba(var(--primary-rgb), 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-stars {
            margin-bottom: 20px;
        }

        .testimonial-stars img {
            height: 24px;
            width: auto;
        }

        .testimonial-card p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold);
        }

        .testimonial-info h4 {
            font-size: 1rem;
            margin-bottom: 3px;
        }

        .testimonial-info span {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .testimonial-link {
            text-decoration: none;
            color: inherit;
            transition: opacity 0.3s ease;
        }

        .testimonial-link:hover {
            opacity: 0.85;
        }

        /* CTA Section */
        .cta {
            padding: 120px 60px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            letter-spacing: -0.025em;
            margin-bottom: 25px;
        }

        .cta p {
            color: var(--text-muted);
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Contact Section */
        .contact {
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .contact-info > p {
            color: var(--text-muted);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

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

        .contact-method {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 22px 25px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-decoration: none;
            color: inherit;
            position: relative;
        }

        .contact-method:hover {
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
            background: rgba(255, 255, 255, 0.05);
        }

        /* Arrow indicator for clickable contact methods */
        a.contact-method::after {
            content: '';
            width: 8px;
            height: 8px;
            border-right: 2px solid var(--text-muted);
            border-top: 2px solid var(--text-muted);
            transform: rotate(45deg);
            flex-shrink: 0; /* Never compress into text */
            min-width: 8px;
            margin-left: auto;
            transition: all 0.3s ease;
        }

        a.contact-method:hover::after {
            border-color: var(--primary);
            transform: rotate(45deg) translateX(3px) translateY(-3px);
        }

        /* RTL (Arabic) — reverse the directional chevron */
        [dir="rtl"] a.contact-method::after {
            transform: rotate(225deg);
            margin-left: 0;
            margin-right: auto;
        }
        [dir="rtl"] a.contact-method:hover::after {
            border-color: var(--primary);
            transform: rotate(225deg) translateX(-3px) translateY(-3px);
        }

        .contact-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .contact-icon-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.06);
            transition: opacity 0.3s ease;
        }

        .contact-method:hover .contact-icon-wrap::before {
            background: rgba(255, 255, 255, 0.1);
        }

        .contact-icon-img {
            width: 34px;
            height: 34px;
            object-fit: contain;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .contact-method-text {
            flex: 1;
            min-width: 0;
        }

        .contact-method-text h4 {
            font-size: 1.05rem;
            margin-bottom: 4px;
            color: var(--text);
            font-weight: 600;
        }

        .contact-method-text p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.5;
        }

        /* ── Contact icon themed wrappers ── */

        /* Location – warm amber */
        .icon-location.contact-icon-wrap {
            border: 1px solid rgba(255, 149, 0, 0.9);
            background: rgba(255, 149, 0, 0.22);
        }
        .icon-location.contact-icon-wrap::before {
            background: rgba(255, 149, 0, 0.55);
        }
        .icon-location .contact-icon-img {
            filter: drop-shadow(0 0 8px rgba(255, 149, 0, 1)) drop-shadow(0 0 3px rgba(255,200,80,0.8));
        }
        .contact-method:has(.icon-location) {
            border-color: rgba(255, 149, 0, 0.28);
        }
        .contact-method:has(.icon-location):hover {
            border-color: rgba(255, 149, 0, 0.65);
            box-shadow: 0 12px 35px rgba(255, 149, 0, 0.18);
        }
        .contact-method:has(.icon-location):hover::after {
            border-color: rgba(255, 149, 0, 0.9);
        }

        /* WhatsApp – brand green (image already has its own circle, no extra border/fill needed) */
        .icon-whatsapp.contact-icon-wrap {
            border: none;
            background: transparent;
        }
        .icon-whatsapp.contact-icon-wrap::before {
            background: transparent;
        }
        .contact-method:hover .icon-whatsapp.contact-icon-wrap::before {
            background: transparent;
        }
        /* WhatsApp inline SVG — scales to match wrap size at every breakpoint */
        .icon-whatsapp svg {
            width: 100%;
            height: 100%;
            display: block;
        }
        .contact-method:has(.icon-whatsapp) {
            border-color: rgba(37, 211, 102, 0.28);
        }
        .contact-method:has(.icon-whatsapp):hover {
            border-color: rgba(37, 211, 102, 0.65);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.18);
        }
        .contact-method:has(.icon-whatsapp):hover::after {
            border-color: rgba(37, 211, 102, 0.9);
        }

        /* Email – cyan */
        .icon-email.contact-icon-wrap {
            border: 1px solid rgba(0, 212, 255, 0.85);
            background: rgba(0, 212, 255, 0.20);
        }
        .icon-email.contact-icon-wrap::before {
            background: rgba(0, 212, 255, 0.52);
        }
        .icon-email .contact-icon-img {
            filter: drop-shadow(0 0 8px rgba(0, 212, 255, 1)) drop-shadow(0 0 3px rgba(120,240,255,0.8));
        }
        .contact-method:has(.icon-email) {
            border-color: rgba(0, 212, 255, 0.28);
        }
        .contact-method:has(.icon-email):hover {
            border-color: rgba(0, 212, 255, 0.65);
            box-shadow: 0 12px 35px rgba(0, 212, 255, 0.18);
        }
        .contact-method:has(.icon-email):hover::after {
            border-color: rgba(0, 212, 255, 0.9);
        }

        /* Hours – primary purple */
        .icon-hours.contact-icon-wrap {
            border: 1px solid rgba(180, 138, 230, 0.9);
            background: rgba(180, 138, 230, 0.22);
        }
        .icon-hours.contact-icon-wrap::before {
            background: rgba(180, 138, 230, 0.55);
        }
        .icon-hours .contact-icon-img {
            filter: drop-shadow(0 0 8px rgba(180, 138, 230, 1)) drop-shadow(0 0 3px rgba(220,190,255,0.8));
        }
        .contact-method:has(.icon-hours) {
            border-color: rgba(180, 138, 230, 0.28);
        }
        .contact-method:has(.icon-hours):hover {
            border-color: rgba(180, 138, 230, 0.65);
            box-shadow: 0 12px 35px rgba(180, 138, 230, 0.18);
        }

        /* Icon glow intensifies on card hover */
        .contact-method:hover .icon-location.contact-icon-wrap::before {
            background: rgba(255, 149, 0, 0.72);
        }
        .contact-method:hover .icon-email.contact-icon-wrap::before {
            background: rgba(0, 212, 255, 0.68);
        }
        .contact-method:hover .icon-hours.contact-icon-wrap::before {
            background: rgba(180, 138, 230, 0.72);
        }

        /* Footer */
        footer {
            background: var(--dark-light);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 60px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--text-muted);
            margin-bottom: 25px;
            line-height: 1.7;
        }

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

        .footer-social a {
            width: 48px;
            height: 48px;
            background: var(--gray);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, var(--purple-deep), var(--purple));
            color: #fff;
            transform: translateY(-5px);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            margin-bottom: 25px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-size: 0.8rem;
            color: var(--gold-light);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 25px 60px;
            padding-bottom: max(25px, env(safe-area-inset-bottom));
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .elanova-credit {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.35);
            text-decoration: none;
            letter-spacing: 0.3px;
            transition: color 0.25s;
        }
        .elanova-credit:hover {
            color: rgba(255,255,255,0.75);
        }
        .elanova-credit span.elanova-name {
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .elanova-brand-credit {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            letter-spacing: 0.2px;
            transition: color 0.25s;
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 18px;
        }
        .elanova-brand-credit:hover {
            color: rgba(255,255,255,0.8);
        }
        .elanova-brand-credit .elanova-name {
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 0.88rem;
        }

        /* Elanova AI – fixed floating badge */
        .elanova-float {
            position: fixed;
            bottom: 28px;
            left: 24px;
            z-index: 800;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 15px 9px 11px;
            background: rgba(18, 18, 26, 0.82);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(180, 138, 230, 0.3);
            border-radius: 50px;
            text-decoration: none;
            color: rgba(255,255,255,0.7);
            font-size: 0.78rem;
            letter-spacing: 0.2px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(180,138,230,0);
            transition: border-color 0.3s, box-shadow 0.3s, color 0.3s, transform 0.3s;
        }
        .elanova-float:hover {
            border-color: rgba(180, 138, 230, 0.7);
            box-shadow: 0 6px 32px rgba(0,0,0,0.4), 0 0 18px rgba(180,138,230,0.2);
            color: #fff;
            transform: translateY(-2px);
        }
        .elanova-float-label strong {
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }
        @media (max-width: 480px) {
            .elanova-float {
                bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
                left: 16px;
            }
        }

        /* ── Floating Contact FAB ── */
        .contact-fab {
            position: fixed;
            bottom: 28px;
            right: 24px;
            z-index: 801;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .fab-options {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            pointer-events: none;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .contact-fab.is-open .fab-options {
            pointer-events: all;
            opacity: 1;
            transform: translateY(0);
        }

        .fab-option {
            position: relative;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(0,0,0,0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .fab-option:hover {
            transform: scale(1.12);
            box-shadow: 0 6px 22px rgba(0,0,0,0.45);
        }
        .fab-whatsapp  { background: #25D366; }
        .fab-phone     { background: rgba(255, 149, 0, 0.95); }
        .fab-email     { background: rgba(0, 170, 210, 0.95); }

        /* Tooltip label on the left of each option */
        .fab-tooltip {
            position: absolute;
            right: calc(100% + 12px);
            white-space: nowrap;
            background: rgba(18,18,26,0.9);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 500;
            padding: 5px 11px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            pointer-events: none;
            opacity: 0;
            transform: translateX(4px);
            transition: opacity 0.2s, transform 0.2s;
        }
        .fab-option:hover .fab-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* Main toggle button */
        .fab-main {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--purple-deep), var(--purple));
            box-shadow: 0 4px 20px rgba(var(--purple-rgb),0.35), 0 2px 8px rgba(0,0,0,0.3);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            position: relative;
        }
        .fab-main:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(var(--purple-rgb),0.5), 0 2px 10px rgba(0,0,0,0.35);
        }
        .fab-main:active { transform: scale(0.96); }

        /* Icon swap: show phone when closed, X when open */
        .fab-icon-open  { display: block; transition: opacity 0.2s; }
        .fab-icon-close { display: none;  transition: opacity 0.2s; }
        .contact-fab.is-open .fab-icon-open  { display: none; }
        .contact-fab.is-open .fab-icon-close { display: block; }

        /* Pulse ring when closed */
        .fab-main::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid rgba(var(--purple-rgb),0.45);
            animation: fab-pulse 2.2s ease-out infinite;
        }
        .contact-fab.is-open .fab-main::after { animation: none; opacity: 0; }
        @keyframes fab-pulse {
            0%   { transform: scale(1);    opacity: 0.7; }
            70%  { transform: scale(1.35); opacity: 0; }
            100% { transform: scale(1.35); opacity: 0; }
        }

        @media (max-width: 480px) {
            .contact-fab {
                bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
                right: 16px;
            }
            .fab-tooltip { display: none; }
        }

        /* Mobile Navigation Overlay */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            height: 100svh; /* Progressive: full screen excluding browser chrome */
            background: rgba(10, 10, 15, 0.99);
            z-index: 1001;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--primary);
        }

        .mobile-nav .close-menu {
            position: absolute;
            top: 25px;
            right: max(30px, env(safe-area-inset-right));
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text);
            background: none;
            border: none;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            nav {
                padding: 15px 30px;
            }

            nav.scrolled {
                padding: 12px 30px;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                padding: 110px 30px 60px;
                gap: 40px;
                text-align: center;
            }

            /* Hide decorative line on smaller screens */
            .process::before {
                display: none;
            }

            .hero-image {
                display: none;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-stat {
                text-align: center;
            }

            .hero-description {
                margin: 0 auto 40px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .services,
            .contact,
            .process,
            .testimonials,
            .cta {
                padding: 80px 30px;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                padding: 60px 30px;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .features-bar-content {
                justify-content: center;
                padding: 0 20px;
                gap: 20px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
                padding: 15px 28px;
                font-size: 0.95rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 50px 20px;
                gap: 40px;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                padding: 20px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .contact-info h2 {
                font-size: 1.8rem;
            }

            .hero-stats {
                gap: 25px;
            }

            .hero-stat h3, .hero-stat .hero-num {
                font-size: 2rem;
            }

            .hero-badge {
                font-size: 0.8rem;
                padding: 8px 16px;
            }

            .testimonial-card {
                padding: 30px 20px;
            }

            .contact-method {
                padding: 18px;
                gap: 15px;
            }

            .contact-icon-wrap {
                width: 48px;
                height: 48px;
            }

            .contact-icon-img {
                width: 28px;
                height: 28px;
            }

            /* Disable hover transforms on touch-sized screens */
            .service-card:hover {
                transform: none;
            }

            .contact-method:hover {
                transform: none;
            }

            /* Touch active feedback */
            .btn:active {
                transform: scale(0.97) !important;
                opacity: 0.9;
            }

            .service-card:active {
                opacity: 0.9;
            }

            .contact-method:active {
                background: rgba(255, 255, 255, 0.06);
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 12px 16px;
            }

            nav.scrolled {
                padding: 10px 16px;
            }

            .logo {
                font-size: 1.2rem;
                gap: 8px;
            }

            .logo img {
                width: 35px !important;
                height: 52px !important;
            }

            .hero-container {
                padding: 100px 16px 40px;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.25;
                margin-bottom: 20px;
            }

            .hero-description {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 6px 12px;
                gap: 6px;
                margin-bottom: 20px;
            }

            .hero-badge img {
                width: 20px !important;
                height: 30px !important;
            }

            .hero-stats {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .hero-stat h3, .hero-stat .hero-num {
                font-size: 1.8rem;
            }

            .hero-stat p {
                font-size: 0.8rem;
            }

            .hero-buttons {
                margin-bottom: 30px;
            }

            .btn {
                padding: 14px 24px;
                font-size: 0.9rem;
                border-radius: 12px;
            }

            .features-bar {
                padding: 20px 0;
            }

            .features-bar-content {
                flex-direction: column;
                padding: 0 16px;
                gap: 16px;
                align-items: flex-start;
            }

            .feature-item {
                gap: 10px;
            }

            .feature-item img {
                width: 30px;
                height: 30px;
            }

            .feature-item span {
                font-size: 0.85rem;
            }

            .services,
            .contact,
            .process,
            .testimonials,
            .cta {
                padding: 60px 16px;
            }

            .section-label {
                font-size: 0.75rem;
                padding: 6px 14px;
                letter-spacing: 1px;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .section-header {
                margin-bottom: 30px;
            }

            .service-content {
                padding: 20px;
            }

            .service-card h3 {
                font-size: 1.15rem;
            }

            .service-card p {
                font-size: 0.9rem;
            }

            .process-number {
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
            }

            .testimonials-grid {
                gap: 20px;
            }

            .testimonial-card {
                padding: 25px 16px;
                border-radius: 16px;
            }

            .testimonial-card p {
                font-size: 0.9rem;
                line-height: 1.7;
            }

            .testimonial-card::before {
                font-size: 2.5rem;
                top: 8px;
                right: 14px;
                opacity: 0.25;
            }

            .cta h2 {
                font-size: 1.6rem;
            }

            .cta p {
                font-size: 1rem;
            }

            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .contact-info h2 {
                font-size: 1.5rem;
            }

            .contact-info > p {
                font-size: 0.95rem;
            }

            .contact-method {
                padding: 15px;
                gap: 12px;
                border-radius: 12px;
            }

            .contact-icon-wrap {
                width: 42px;
                height: 42px;
                border-radius: 10px;
            }

            .contact-icon-img {
                width: 24px;
                height: 24px;
            }

            .contact-method-text h4 {
                font-size: 0.95rem;
            }

            .contact-method-text p {
                font-size: 0.85rem;
            }

            .footer-main {
                padding: 40px 16px;
                gap: 30px;
            }

            .footer-brand p {
                font-size: 0.9rem;
            }

            .footer-column h4 {
                margin-bottom: 15px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 18px 16px;
                padding-bottom: max(18px, env(safe-area-inset-bottom));
                font-size: 0.8rem;
                gap: 8px;
            }

            .mobile-nav a {
                font-size: 1.1rem;
            }

            .mobile-nav .close-menu {
                top: 15px;
                right: 16px;
            }
        }

        /* Landscape phones - reduce hero height */
        @media (max-width: 992px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 80px 0 40px;
            }

            .hero-container {
                padding-top: 80px;
                padding-bottom: 40px;
            }

            .hero-stats {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .hero-buttons {
                flex-direction: row;
            }

            .btn {
                width: auto;
                max-width: none;
            }
        }

        /* Respect reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Inline SVG icon styles */
        .icon-svg {
            display: inline-block;
            width: 1em;
            height: 1em;
            fill: currentColor;
            vertical-align: -0.125em;
        }

        /* Ensure all images are responsive */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Eliminate 300ms tap delay + suppress grey tap flash on Android */
        a, button, .mobile-menu, .contact-method {
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        /* Smooth momentum scrolling on iOS */
        html {
            -webkit-overflow-scrolling: touch;
        }

        /* Ensure minimum touch target size (44px) */
        .footer-social a {
            min-width: 44px;
            min-height: 44px;
        }

        .mobile-nav .close-menu {
            min-width: 44px;
            min-height: 44px;
        }

        /* Prevent text overflow on mobile */
        .hero-badge {
            word-break: break-word;
        }

        .contact-method-text p {
            word-break: break-word;
        }

        /* ============================================================
           MOBILE UX — ADDITIONAL IMPROVEMENTS
           ============================================================ */

        /* 1. Scroll-margin so sticky nav (≈80px) never hides sections */
        section[id] {
            scroll-margin-top: 80px;
        }
        /* contact section has the ID on a wrapper div */
        #contact {
            scroll-margin-top: 80px;
        }

        /* 2. Legal Info Section — responsive padding
              The section uses an inline style so we need !important  */
        .legal-info-section {
            scroll-margin-top: 80px;
        }
        @media (max-width: 768px) {
            .legal-info-section { padding: 72px 24px !important; }
        }
        @media (max-width: 480px) {
            .legal-info-section { padding: 60px 16px !important; }
            /* also shrink the inner section heading gap */
            .legal-info-section > div > div:first-child {
                margin-bottom: 36px !important;
            }
            /* reduce legal card inner padding on tiny screens */
            .legal-info-section [id] {
                padding: 26px 20px !important;
                border-radius: 16px !important;
            }
        }

        /* 3. Mobile nav — scrollable + proper touch targets */
        .mobile-nav {
            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            padding-bottom: max(44px, env(safe-area-inset-bottom));
        }
        /* Increase touch area for every link in mobile nav */
        .mobile-nav > a {
            padding: 8px 20px;
            min-height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            text-align: center;
        }

        /* 4. Service card image — less vertical space on small phones */
        @media (max-width: 480px) {
            .service-image {
                height: 190px;
            }
        }

        /* 5. CTA phone buttons — always full-width stacked on mobile */
        @media (max-width: 600px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .cta-buttons .btn {
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }
        }

        /* 6. Floating cards — hide on very small screens to avoid overflow */
        @media (max-width: 480px) {
            .floating-card {
                display: none;
            }
        }

        /* 7. Hero badge + process + testimonial — better layout on very narrow screens */
        @media (max-width: 360px) {
            .hero-badge {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
            .hero h1 {
                font-size: 1.75rem;
            }
            .process-number {
                width: 52px;
                height: 52px;
                font-size: 1.2rem;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
            .contact-method {
                gap: 10px;
                padding: 13px 12px;
            }
            .contact-icon-wrap {
                width: 38px;
                height: 38px;
            }
        }

        /* 8. Footer brand description wraps cleanly */
        @media (max-width: 480px) {
            .footer-brand p {
                font-size: 0.88rem;
                line-height: 1.65;
            }
        }

        /* 9. Prevent horizontal scroll from oversized decorative glows */
        .hero, .process, .cta, .legal-info-section {
            overflow-x: hidden;
        }
    
        /* Impressum Section (matches Hero colors/background) */
        .impressum {
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
            scroll-margin-top: 110px;
        }

        .impressum .hero-bg img {
            opacity: 0.25;
        }

        .impressum-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 60px;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .impressum-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .impressum-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
            line-height: 1.2;
        }

        .impressum-header p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 720px;
            margin: 0 auto;
        }

        .legal-card {
            background: rgba(26, 26, 37, 0.86);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px 34px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
        }

        .legal-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px 28px;
        }

        .legal-block h3 {
            font-size: 1.05rem;
            margin-bottom: 10px;
            color: var(--text);
        }

        .legal-block p,
        .legal-block a {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.75;
            text-decoration: none;
            word-break: break-word;
        }

        .legal-block a:hover {
            color: var(--primary);
        }

        .legal-note {
            margin-top: 26px;
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.7;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
        }

        @media (max-width: 992px) {
            .impressum {
                padding: 110px 0 70px;
            }

            .impressum-container {
                padding: 0 30px;
            }

            .legal-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .impressum {
                padding: 100px 0 60px;
            }

            .impressum-container {
                padding: 0 16px;
            }

            .legal-card {
                padding: 28px 18px;
                border-radius: 18px;
            }
        }

    

        /* Language Switcher */
        .lang-switch {
            position: relative;
            display: inline-flex;
            align-items: center;
            margin-left: 18px;
        }

        .lang-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            cursor: pointer;
            font-weight: 600;
            font-size: 0.92rem;
            -webkit-tap-highlight-color: transparent;
        }

        .lang-btn:hover {
            border-color: rgba(var(--primary-rgb), 0.35);
        }

        .lang-btn .lang-pill {
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .lang-menu {
            position: absolute;
            right: 0;
            top: calc(100% + 10px);
            min-width: 220px;
            background: rgba(18, 18, 26, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 16px;
            padding: 10px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
            display: none;
            z-index: 1200;
            backdrop-filter: blur(10px);
        }

        .lang-switch.open .lang-menu {
            display: block;
        }

        .lang-item {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 12px;
            background: transparent;
            border: none;
            color: var(--text);
            cursor: pointer;
            font-weight: 600;
            text-align: left;
        }

        .lang-item span {
            color: var(--text-muted);
            font-weight: 500;
        }

        .lang-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .lang-item.active {
            background: rgba(var(--cyan-rgb), 0.10);
            border: 1px solid rgba(var(--cyan-rgb), 0.22);
        }

        @media (max-width: 992px) {
            .lang-switch { display: none; }
        }


        /* Mobile language row */
        .lang-mobile {
            display: none;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0 18px;
            margin-bottom: 10px;
        }
        .lang-chip {
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            cursor: pointer;
            font-weight: 700;
            font-size: 0.95rem;
        }
        .lang-chip.active {
            background: rgba(var(--cyan-rgb), 0.10);
            border-color: rgba(var(--cyan-rgb), 0.25);
        }
        @media (max-width: 992px) {
            .lang-mobile { display: flex; }
        }

        /* ============================================================
           MOBILE UX — LEGAL PAGES & GLOBAL FIXES
           ============================================================ */

        /* 1. Spacing + divider between stacked legal-block elements
              Applies when blocks are direct children of legal-card
              (garantie.html + datenschutz.html — NOT the grid in impressum.html) */
        .legal-card > .legal-block + .legal-block {
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }

        /* 2. Warranty badge — allow text to wrap on 320 px phones */
        .warranty-badge {
            flex-wrap: wrap;
        }

        /* 3. Simple footer links row — wrap gracefully on narrow screens */
        .simple-footer-links {
            flex-wrap: wrap;
        }

        /* 4. Mobile bottom padding — clear the floating back-btn on legal pages */
        @media (max-width: 480px) {
            .legal-page-content {
                padding-bottom: 110px;
            }

            /* Tighten divider spacing a touch on small phones */
            .legal-card > .legal-block + .legal-block {
                margin-top: 20px;
                padding-top: 20px;
            }

            /* 5. Mobile nav gap — reduce so all items fit on short phones */
            .mobile-nav {
                gap: 16px;
            }

            /* 6. Features bar — centre items when stacked to match page rhythm */
            .features-bar-content {
                align-items: center;
            }
        }

        /* ============================================================
           MOBILE UX — ADDITIONAL TOUCH TARGET & INTERACTION FIXES
           ============================================================ */

        /* Footer column links: bigger tap area on mobile */
        @media (max-width: 992px) {
            .footer-column li {
                margin-bottom: 2px;
            }
            .footer-column a {
                display: flex;
                align-items: center;
                padding: 8px 0;
                min-height: 44px;
            }
        }

        /* contact-method: comfortable minimum tap height */
        @media (max-width: 992px) {
            .contact-method {
                min-height: 72px;
            }
        }

        /* Elanova-float: avoid overlapping FAB on very narrow landscape phones */
        @media (max-width: 480px) and (orientation: landscape) {
            .elanova-float {
                bottom: max(16px, env(safe-area-inset-bottom));
                font-size: 0.72rem;
                padding: 6px 10px 6px 8px;
            }
            .contact-fab {
                bottom: max(16px, env(safe-area-inset-bottom));
            }
        }

        /* ============================================================
           SCROLL-TRIGGERED REVEAL ANIMATIONS
           ============================================================ */

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays for grid children */
        .services-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.10s; }
        .services-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.20s; }
        .services-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.30s; }
        .services-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.40s; }
        .services-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.50s; }

        .process-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.10s; }
        .process-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.20s; }
        .process-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.30s; }

        .testimonials-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
        .testimonials-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }

        /* Contact methods stagger */
        .contact-methods .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
        .contact-methods .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
        .contact-methods .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }

        /* Respect reduced motion — skip all animations */
        @media (prefers-reduced-motion: reduce) {
            .animate-on-scroll {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }

        /* ============================================================
           LUXURY HEADING ENHANCEMENTS
           ============================================================ */

        /* Thin gold overline before section-header blocks */
        .section-header {
            position: relative;
        }

        /* CTA Section — subtle gold ambient glow background */
        .cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60%;
            height: 70%;
            background: radial-gradient(ellipse, rgba(var(--purple-rgb), 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Feature item text — slightly brighter */
        .feature-item span {
            font-weight: 500;
            color: rgba(245, 239, 255, 0.7);
        }

        /* Premium border treatment on contact section heading */
        .contact-info .section-label {
            display: inline-block;
        }