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

        :root {
            --primary: #F4D03F;
            --primary-dark: #D4AF37;
            --forest-green: #1B5E20;
            --forest-green-light: #2E7D32;
            --bg: #ffffff;
            --bg-secondary: #f8f9fa;
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --card-bg: #ffffff;
            --border: rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(to bottom,
                #FFFEF5 0%,      /* Very light cream */
                #FFFDF0 25%,     /* Light ivory */
                #FFFAEB 50%,     /* Pale yellow */
                #FFF9E6 75%,     /* Soft vanilla */
                #FFF7E0 100%     /* Light buttercream */
            );
            background-attachment: fixed;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--primary);
            transform-origin: left;
            z-index: 9999;
            transition: width 0.1s ease-out;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        nav {
            max-width: 1920px;
            margin: 0 auto;
            padding: 1rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 3s ease-in-out infinite;
            border-radius: 50%;
            overflow: hidden;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        /* Language Toggle */
        .lang-toggle {
            background: rgba(244, 208, 63, 0.1);
            color: var(--forest-green);
            border: 2px solid var(--primary);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 3rem;
        }

        .lang-toggle:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--forest-green);
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(244, 208, 63, 0.5);
        }

        /* Hero Section */
        .hero {
            max-width: 1920px;
            margin: 0 auto;
            padding: 8rem 3rem 3rem;
            min-height: 95vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
            margin-bottom: 4rem;
        }

        .hero-text h1 {
            font-size: clamp(3rem, 6vw, 6rem);
            font-weight: 800;
            line-height: 0.95;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-text .highlight {
            color: var(--primary);
        }

        .hero-text p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 45rem;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

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

        /* Floating Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            width: 100%;
            max-width: 500px;
        }

        .floating-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.25rem;
            border-radius: 1.25rem;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .floating-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .card-animate {
            opacity: 0;
            transform: translateY(30px);
            animation: cardFadeIn 0.6s ease-out forwards;
        }

        @keyframes cardFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .floating-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .floating-card-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(244, 208, 63, 0.1);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .progress-bar {
            height: 0.5rem;
            background: rgba(0, 0, 0, 0.08);
            border-radius: 1rem;
            overflow: hidden;
            margin-bottom: 0.75rem;
        }

        .progress-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 1rem;
            animation: progressFill 1.5s ease-out 1s forwards;
            width: 0%;
        }

        @keyframes progressFill {
            to { width: 78%; }
        }

        /* Hero Image with Notch */
        .hero-image-container {
            position: relative;
            width: 100%;
            height: 65vh;
            margin-top: 4rem;
        }

        /* The Notch Mask */
        .notch {
            position: absolute;
            top: 0;
            left: 0;
            width: 280px;
            height: 120px;
            background: var(--bg);
            border-bottom-right-radius: 3rem;
            z-index: 20;
        }

        /* CTA in the notch */
        .notch-cta {
            position: absolute;
            top: 2rem;
            left: 2rem;
            z-index: 30;
        }

        .notch-cta .btn-primary {
            font-size: 1.125rem;
            padding: 1rem 2rem;
        }

        /* Main Hero Image */
        .hero-image {
            width: 100%;
            height: 100%;
            border-radius: 2.5rem;
            overflow: hidden;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
            z-index: 1;
        }

        /* Floating Badge on Image */
        .image-badge {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            z-index: 20;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            padding: 1rem 1.5rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            animation: floatBadge 3s ease-in-out infinite;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

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

        .status-dot {
            width: 0.75rem;
            height: 0.75rem;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Capabilities Section */
        .capabilities {
            background: #f9fafb;
            padding: 8rem 3rem;
        }

        .capabilities-container {
            max-width: 1920px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .capabilities-sticky {
            position: sticky;
            top: 8rem;
            align-self: start;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(244, 208, 63, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 2rem;
        }

        .capabilities-sticky h2 {
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .capabilities-sticky .highlight {
            color: rgba(244, 208, 63, 0.8);
        }

        .capability-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border);
            transition: all 0.5s;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .capability-card:hover {
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(244, 208, 63, 0.15);
            transform: translateY(-4px);
        }

        .capability-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            transition: transform 0.3s;
        }

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

        .capability-card h3 {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .capability-card p {
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .capability-stat {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 700;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        /* Parallax Visual Break */
        .parallax-section {
            position: relative;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .parallax-image {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .parallax-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .parallax-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.3), rgba(255,255,255,0.9));
            z-index: 1;
        }

        .parallax-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 56rem;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 3rem;
            border: 1px solid var(--border);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        .parallax-content h2 {
            font-size: clamp(2.5rem, 4vw, 4rem);
            margin-bottom: 1.5rem;
        }

        /* Bento Grid */
        .bento-section {
            padding: 8rem 3rem;
        }

        .bento-container {
            max-width: 1920px;
            margin: 0 auto;
        }

        .bento-header {
            max-width: 48rem;
            margin-bottom: 5rem;
        }

        .bento-header h2 {
            font-size: clamp(2rem, 3vw, 3rem);
            margin-bottom: 1.5rem;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .bento-card {
            background: white;
            backdrop-filter: blur(12px);
            border-radius: 2rem;
            padding: 2.5rem;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 300px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .bento-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .bento-card.highlight {
            grid-column: span 3;
            background: var(--primary);
            color: var(--forest-green);
        }

        .bento-card.highlight::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 16rem;
            height: 16rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
        }

        .bento-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .bento-card:not(.highlight) .bento-icon {
            background: #f9fafb;
            border: 1px solid var(--border);
        }

        .bento-card.highlight .bento-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        /* How It Works Section */
        .how-it-works {
            padding: 8rem 3rem;
            background: white;
        }

        .how-it-works-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .how-it-works-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .how-it-works-header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--forest-green);
            margin-bottom: 1.5rem;
        }

        .how-it-works-header p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .step-card {
            position: relative;
            padding: 2.5rem;
            background: linear-gradient(135deg, #FFFAEB 0%, #FFF7E0 100%);
            border-radius: 1.5rem;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .step-number {
            position: absolute;
            top: -1.5rem;
            left: 2rem;
            width: 4rem;
            height: 4rem;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--forest-green);
            box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
        }

        .step-icon {
            width: 4rem;
            height: 4rem;
            background: rgba(27, 94, 32, 0.1);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--forest-green);
            margin: 2rem 0 1.5rem;
        }

        .step-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--forest-green);
            margin-bottom: 1rem;
        }

        .step-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Security Section */
        .security-section {
            background: var(--forest-green);
            padding: 8rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .security-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background: radial-gradient(circle at center, var(--primary), transparent);
        }

        .security-container {
            max-width: 1920px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
        }

        .security-title {
            font-size: clamp(3rem, 5vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: white;
        }

        .security-title .line1 {
            display: block;
            color: white;
        }

        .security-title .line2 {
            display: block;
        }

        .security-gradient {
            background: linear-gradient(90deg, var(--primary) 0%, #fbbf24 50%, #a78bfa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .security-description {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            max-width: 40rem;
        }

        .security-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2.5rem;
        }

        .security-spec {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .terminal {
            background: linear-gradient(135deg, #1f2937, #111827);
            padding: 2rem;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .terminal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
        }

        .terminal-dots {
            display: flex;
            gap: 0.5rem;
        }

        .terminal-dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
        }

        .terminal-content {
            font-family: 'Courier New', monospace;
            font-size: 0.875rem;
            color: #22c55e;
        }

        .terminal-line {
            margin-bottom: 1rem;
        }

        /* Final CTA */
        .final-cta {
            padding: 8rem 3rem;
        }

        .cta-box {
            max-width: 1600px;
            margin: 0 auto;
            background: #f9fafb;
            border-radius: 3rem;
            padding: 6rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--forest-green), var(--primary));
        }

        .cta-box h2 {
            font-size: clamp(3rem, 5vw, 5rem);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: white;
            color: var(--forest-green);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.125rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Footer */
        footer {
            background: #f9fafb;
            border-top: 1px solid var(--border);
            padding: 5rem 3rem 3rem;
        }

        .footer-content {
            max-width: 1920px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-logo .logo-icon {
            width: 40px;
            height: 40px;
        }

        .footer-section h4 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

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

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 0.75rem;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-secondary);
        }

        /* Contact Form Section */
        .contact-section {
            padding: 8rem 3rem;
            background: linear-gradient(135deg, #FFFAEB 0%, #FFF7E0 100%);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            color: var(--forest-green);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

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

        .contact-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .contact-feature {
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .contact-feature-icon {
            width: 3rem;
            height: 3rem;
            background: white;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .contact-feature h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--forest-green);
            margin-bottom: 0.25rem;
        }

        .contact-feature p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .contact-form-wrapper {
            background: white;
            padding: 2.5rem;
            border-radius: 1.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--forest-green);
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 0.5rem;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-submit {
            width: 100%;
            padding: 1rem 2rem;
            background: var(--forest-green);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .form-submit:hover {
            background: var(--forest-green-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        .form-note {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-top: 1rem;
            text-align: center;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 8rem 3rem;
            background: white;
        }

        .pricing-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .pricing-header h2 {
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 800;
            color: var(--forest-green);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .pricing-header p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .pricing-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .pricing-card {
            background: white;
            border: 2px solid var(--border);
            border-radius: 1.5rem;
            padding: 2.5rem;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
            color: white;
            border-color: var(--forest-green);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--forest-green);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .pricing-card.featured .pricing-badge {
            background: var(--primary);
            color: var(--forest-green);
        }

        .pricing-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-card.featured h3 {
            color: white;
        }

        .pricing-card p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .pricing-card.featured p {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-price {
            margin-bottom: 2rem;
        }

        .pricing-amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--forest-green);
            line-height: 1;
        }

        .pricing-card.featured .pricing-amount {
            color: white;
        }

        .pricing-period {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .pricing-card.featured .pricing-period {
            color: rgba(255, 255, 255, 0.8);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            display: flex;
            align-items: start;
            gap: 0.75rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border);
        }

        .pricing-card.featured .pricing-features li {
            color: rgba(255, 255, 255, 0.95);
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features svg {
            flex-shrink: 0;
            color: #22c55e;
        }

        .pricing-card.featured .pricing-features svg {
            color: var(--primary);
        }

        .pricing-cta {
            width: 100%;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .pricing-card:not(.featured) .pricing-cta {
            background: var(--forest-green);
            color: white;
        }

        .pricing-card:not(.featured) .pricing-cta:hover {
            background: var(--forest-green-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
        }

        .pricing-card.featured .pricing-cta {
            background: var(--primary);
            color: var(--forest-green);
        }

        .pricing-card.featured .pricing-cta:hover {
            background: #D4AF37;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(244, 208, 63, 0.4);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 3.5rem;
            height: 3.5rem;
            background: var(--primary);
            color: var(--forest-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(244, 208, 63, 0.6);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--forest-green);
            margin: 5px 0;
            transition: all 0.3s;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            padding: 6rem 2rem 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        .mobile-menu nav {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .mobile-menu a {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--forest-green);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }

        .mobile-menu a:hover {
            border-bottom-color: var(--primary);
            color: var(--primary);
        }

        /* Scroll Animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content,
            .capabilities-container,
            .security-container,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .capabilities-sticky {
                position: static;
            }

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

            .bento-card.highlight {
                grid-column: span 1;
            }

            .notch {
                display: none;
            }

            .notch-cta {
                position: static;
                margin-bottom: 2rem;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .mobile-menu {
                display: block;
            }

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

            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 640px) {
            .floating-card {
                padding: 1rem;
            }

            .floating-card-icon {
                width: 2rem;
                height: 2rem;
            }
        }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.98) 0%, rgba(46, 125, 50, 0.98) 100%);
  backdrop-filter: blur(20px);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  animation: slideUpBanner 0.3s ease-out;
  border-top: 3px solid var(--primary);
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.cookie-banner-description {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--forest-green);
}

.btn-cookie-accept:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cookie-more-info {
  color: var(--primary);
  text-decoration: underline;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cookie-more-info:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
  }
}

/* ===== Styles extraits des attributs inline ===== */

.skip-link-hidden {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background: var(--primary);
    color: var(--forest-green);
    text-decoration: none;
    font-weight: bold;
}

.img-full-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.anim-delay-0-2s {
    animation-delay: 0.2s;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.flex-between-sm {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 500;
}

.inline-style-1 {
    color: var(--primary);
}

.anim-delay-0-4s {
    animation-delay: 0.4s;
}

.icon-style-2 {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.w-92 {
    width: 92%;
    background: #14b8a6;
}

.inline-style-3 {
    color: #14b8a6;
}

.anim-delay-0-6s {
    animation-delay: 0.6s;
}

.icon-style-4 {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.w-85 {
    width: 85%;
    background: #22c55e;
}

.inline-style-5 {
    color: #22c55e;
}

.anim-delay-0-8s {
    animation-delay: 0.8s;
}

.icon-style-6 {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.w-94 {
    width: 94%;
    background: #06b6d4;
}

.inline-style-7 {
    color: #06b6d4;
}

.anim-delay-1-0s {
    animation-delay: 1.0s;
}

.icon-style-8 {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.w-12 {
    width: 12%;
    background: #ef4444;
}

.inline-style-9 {
    color: #ef4444;
}

.anim-delay-1-2s {
    animation-delay: 1.2s;
}

.icon-style-10 {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.w-68 {
    width: 68%;
    background: #a855f7;
}

.inline-style-11 {
    color: #a855f7;
}

.inline-style-12 {
    font-weight: 600;
    font-size: 0.875rem;
    color: #111827;
}

.inline-style-13 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--forest-green);
}

.inline-style-14 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.inline-style-15 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 28rem;
    margin-top: 2rem;
}

.icon-style-16 {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.inline-style-17 {
    color: #10b981;
}

.icon-style-18 {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.inline-style-19 {
    color: #3b82f6;
}

.icon-style-20 {
    background: rgba(132, 204, 22, 0.1);
    color: #84cc16;
}

.inline-style-21 {
    color: #84cc16;
}

.icon-style-22 {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.inline-style-23 {
    color: #9333ea;
}

.icon-style-24 {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.inline-style-25 {
    color: #ec4899;
}

.icon-style-26 {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.inline-style-27 {
    color: #f59e0b;
}

.inline-style-28 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.inline-style-29 {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.inline-style-30 {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.inline-style-31 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.inline-style-32 {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.inline-style-33 {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.inline-style-34 {
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.inline-style-35 {
    opacity: 0.9;
    font-size: 1.125rem;
}

.inline-style-36 {
    padding: 0.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.inline-style-37 {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 40rem;
    line-height: 1.8;
}

.inline-style-38 {
    font-weight: 500;
}

.inline-style-39 {
    background: #ef4444;
}

.inline-style-40 {
    background: #f59e0b;
}

.inline-style-41 {
    background: #22c55e;
}

.inline-style-42 {
    font-size: 0.75rem;
    color: #6b7280;
}

.inline-style-43 {
    color: var(--primary);
    font-weight: 700;
}

.inline-style-44 {
    animation: pulse-dot 2s ease-in-out infinite;
}

.inline-style-45 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 48rem;
    margin: 0 auto;
}

.inline-style-46 {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.inline-style-47 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 1rem;
}

.inline-style-48 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.inline-style-49 {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.inline-style-50 {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 24rem;
}

.inline-style-51 {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.inline-style-52 {
    color: var(--text-secondary);
    text-decoration: none;
}

.inline-style-53 {
    opacity: 0.5;
    cursor: not-allowed;
}
