        :root {
            --color-primary: #000000;
            --color-secondary: #b7c6c2;
            --color-accent: #0046B4;
            --color-accent-light: #4A90E2;
            --color-dark: #171e19;
            --color-light: #ffffff;
            --color-gray: #6B7280;
            --color-success: #10B981;
            --spacing-unit: 8px;
            --max-width: 1200px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--color-light);
            color: var(--color-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Anton', sans-serif;
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 4rem);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 70, 180, 0.2);
            animation: slideDown 0.6s ease-out;
        }

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

        nav {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: calc(var(--spacing-unit) * 2);
            position: relative;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: -12px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--color-accent);
        }

        .logo-icon {
            background: var(--color-primary);
            color: white;
            padding: 8px 16px;
            font-family: 'Anton', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 0.08em;
            border-radius: 6px;
            border: 2px solid var(--color-primary);
            transition: all 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 70, 180, 0.3);
        }

        .logo-a11y-number {
            color: var(--color-accent-light);
        }

        .logo-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-dark);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .nav-links {
            display: flex;
            gap: calc(var(--spacing-unit) * 4);
            list-style: none;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 10);
        }

        .hero-background {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: var(--color-light);
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background: transparent;
            z-index: 1;
        }

        .hero-content {
            max-width: var(--max-width);
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: calc(var(--spacing-unit) * 2);
            padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
            background: var(--color-primary);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
            margin-bottom: calc(var(--spacing-unit) * 4);
            animation: fadeInUp 0.8s ease-out 0.2s both;
            box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
            border: 2px solid var(--color-accent-light);
        }

        .badge-highlight {
            color: var(--color-accent-light);
            font-weight: 700;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: var(--color-success);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

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

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

        .hero h1 {
            margin-bottom: calc(var(--spacing-unit) * 3);
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--color-gray);
            max-width: 700px;
            margin: 0 auto calc(var(--spacing-unit) * 6);
            animation: fadeInUp 0.8s ease-out 0.6s both;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: calc(var(--spacing-unit) * 3);
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .btn {
            padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: calc(var(--spacing-unit) * 2);
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
            color: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
            transition: left 0.5s ease;
        }

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

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 70, 180, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }

        .btn-secondary:hover {
            background: var(--color-primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        /* Stats Section */
        .stats {
            background: #000000;
            color: white;
            padding: calc(var(--spacing-unit) * 8) calc(var(--spacing-unit) * 4);
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            inset: 0;
            background: transparent;
            pointer-events: none;
        }

        .stats-grid {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: calc(var(--spacing-unit) * 6);
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out both;
        }

        .stat-item:nth-child(1) { animation-delay: 0.1s; }
        .stat-item:nth-child(2) { animation-delay: 0.2s; }
        .stat-item:nth-child(3) { animation-delay: 0.3s; }
        .stat-item:nth-child(4) { animation-delay: 0.4s; }

        .stat-number {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            color: white;
            margin-bottom: calc(var(--spacing-unit) * 2);
            position: relative;
        }

        .stat-number::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--color-accent-light);
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

        /* Services Section */
        .services {
            padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
            background: var(--color-light);
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto calc(var(--spacing-unit) * 10);
            text-align: center;
        }

        .section-label {
            display: inline-block;
            padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
            background: rgba(0, 70, 180, 0.08);
            color: var(--color-primary);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: calc(var(--spacing-unit) * 3);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 1px solid var(--color-accent);
        }

        .section-header h2 {
            margin-bottom: calc(var(--spacing-unit) * 3);
            color: var(--color-dark);
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--color-gray);
            line-height: 1.7;
        }

        .services-grid {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: calc(var(--spacing-unit) * 4);
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: calc(var(--spacing-unit) * 5);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--color-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 70, 180, 0.4);
        }

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

        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 70, 180, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: calc(var(--spacing-unit) * 3);
            border: 2px solid var(--color-accent);
        }

        .service-card h3 {
            margin-bottom: calc(var(--spacing-unit) * 2);
            color: var(--color-dark);
        }

        .service-card p {
            color: var(--color-gray);
            line-height: 1.7;
            margin-bottom: calc(var(--spacing-unit) * 3);
        }

        .service-features {
            list-style: none;
            margin-bottom: calc(var(--spacing-unit) * 4);
        }

        .service-features li {
            padding: calc(var(--spacing-unit) * 1.5) 0;
            border-bottom: 1px solid rgba(183, 198, 194, 0.3);
            color: var(--color-gray);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: calc(var(--spacing-unit) * 2);
        }

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

        .service-features li::before {
            content: '✓';
            color: var(--color-success);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .service-link {
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: calc(var(--spacing-unit) * 1);
            transition: all 0.3s ease;
        }

        .service-link:hover {
            color: var(--color-accent);
            gap: calc(var(--spacing-unit) * 2);
        }

        /* About/Founder Section */
        .founder {
            padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
            background: white;
        }

        .founder-content {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: calc(var(--spacing-unit) * 8);
            align-items: center;
        }

        .founder-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        }

        .founder-image::before {
            content: '👨‍💻';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 8rem;
            opacity: 0.3;
        }

        .founder-text h2 {
            margin-bottom: calc(var(--spacing-unit) * 3);
        }

        .founder-text p {
            font-size: 1.1rem;
            color: var(--color-gray);
            line-height: 1.8;
            margin-bottom: calc(var(--spacing-unit) * 3);
        }

        .credentials {
            display: flex;
            flex-direction: column;
            gap: calc(var(--spacing-unit) * 2);
            margin: calc(var(--spacing-unit) * 4) 0;
        }

        .credential-item {
            display: flex;
            align-items: center;
            gap: calc(var(--spacing-unit) * 2);
            padding: calc(var(--spacing-unit) * 2);
            background: rgba(183, 198, 194, 0.15);
            border-radius: 12px;
            font-weight: 600;
        }

        .credential-icon {
            width: 40px;
            height: 40px;
            background: var(--color-primary);
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            border: 2px solid var(--color-accent);
        }

        /* Plugin Showcase */
        .plugin {
            padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
            background: #000000;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .plugin::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: transparent;
            pointer-events: none;
        }

        .plugin-content {
            max-width: var(--max-width);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .plugin-header {
            text-align: center;
            margin-bottom: calc(var(--spacing-unit) * 10);
        }

        .plugin-header h2 {
            color: white;
            margin-bottom: calc(var(--spacing-unit) * 3);
        }

        .plugin-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .plugin-demo {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: calc(var(--spacing-unit) * 6);
            backdrop-filter: blur(10px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: calc(var(--spacing-unit) * 6);
            align-items: center;
        }

        .plugin-visual {
            aspect-ratio: 16/10;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .plugin-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
            opacity: 0.3;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% {
                transform: translateX(-100%);
            }
            50% {
                transform: translateX(100%);
            }
        }

        .plugin-details h3 {
            font-size: 2rem;
            margin-bottom: calc(var(--spacing-unit) * 3);
        }

        .plugin-features {
            list-style: none;
            margin-bottom: calc(var(--spacing-unit) * 5);
        }

        .plugin-features li {
            padding: calc(var(--spacing-unit) * 2) 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: calc(var(--spacing-unit) * 2);
            color: rgba(255, 255, 255, 0.8);
        }

        .plugin-features li::before {
            content: '⚡';
            font-size: 1.3rem;
        }

        .download-buttons {
            display: flex;
            gap: calc(var(--spacing-unit) * 3);
            flex-wrap: wrap;
        }

        .btn-download {
            padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 4);
            background: white;
            color: var(--color-dark);
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: calc(var(--spacing-unit) * 2);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
        }

        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
        }

        /* Blog Section */
        .blog {
            padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
            background: var(--color-light);
        }

        .blog-grid {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: calc(var(--spacing-unit) * 4);
            margin-top: calc(var(--spacing-unit) * 10);
        }

        .blog-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

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

        .blog-image {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            position: relative;
            overflow: hidden;
        }

        .blog-image::before {
            content: '📝';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            opacity: 0.3;
        }

        .blog-content {
            padding: calc(var(--spacing-unit) * 4);
        }

        .blog-meta {
            display: flex;
            gap: calc(var(--spacing-unit) * 3);
            margin-bottom: calc(var(--spacing-unit) * 2);
            font-size: 0.85rem;
            color: var(--color-gray);
        }

        .blog-card h3 {
            margin-bottom: calc(var(--spacing-unit) * 2);
            font-size: 1.5rem;
        }

        .blog-card p {
            color: var(--color-gray);
            line-height: 1.7;
            margin-bottom: calc(var(--spacing-unit) * 3);
        }

        /* Contact Section */
        .contact {
            padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
            background: white;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            background: rgba(183, 198, 194, 0.1);
            border-radius: 24px;
            padding: calc(var(--spacing-unit) * 6);
            margin-top: calc(var(--spacing-unit) * 8);
        }

        .form-group {
            margin-bottom: calc(var(--spacing-unit) * 4);
        }

        .form-group label {
            display: block;
            margin-bottom: calc(var(--spacing-unit) * 2);
            font-weight: 700;
            color: var(--color-dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: calc(var(--spacing-unit) * 2.5);
            border: 2px solid rgba(183, 198, 194, 0.3);
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 0 4px rgba(0, 70, 180, 0.15);
        }

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

        /* Footer */
        footer {
            background: #000000;
            color: white;
            padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 5);
        }

        .footer-content {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: calc(var(--spacing-unit) * 6);
            margin-bottom: calc(var(--spacing-unit) * 8);
        }

        .footer-brand h3 {
            font-family: 'Anton', sans-serif;
            color: white;
            margin-bottom: calc(var(--spacing-unit) * 2);
            font-size: 1.8rem;
            letter-spacing: 0.05em;
            position: relative;
            display: inline-block;
        }

        .footer-brand h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50%;
            height: 3px;
            background: var(--color-accent-light);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        .footer-links h4 {
            margin-bottom: calc(var(--spacing-unit) * 3);
            font-size: 1.1rem;
        }

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

        .footer-links li {
            margin-bottom: calc(var(--spacing-unit) * 2);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-top: calc(var(--spacing-unit) * 4);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: calc(var(--spacing-unit) * 3);
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--color-accent);
            transform: translateY(-2px);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--color-dark);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .founder-content,
            .plugin-demo,
            .footer-content {
                grid-template-columns: 1fr;
            }

            /* Third sector section mobile */
            .third-sector-benefits > div > div {
                grid-template-columns: 1fr !important;
                gap: calc(var(--spacing-unit) * 6) !important;
            }

            h1 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            :root {
                --spacing-unit: 6px;
            }

            .services-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

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

        /* Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--color-primary);
            color: white;
            padding: calc(var(--spacing-unit) * 2);
            text-decoration: none;
            z-index: 10000;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Focus visible for keyboard navigation */
        *:focus-visible {
            outline: 3px solid var(--color-accent);
            outline-offset: 2px;
        }

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(0, 70, 180, 0.1);
    color: var(--color-accent);
}

.lang-btn.active {
    background: var(--color-accent);
    color: white;
}

.lang-btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ========== BLOG SECTION ========== */
.blog {
    background: var(--color-light);
}

.blog-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing-unit) * 5);
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #d0dcd8 100%);
    display: block;
}

.blog-content {
    padding: calc(var(--spacing-unit) * 4);
}

.blog-meta {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card h3 {
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 1.4rem;
    line-height: 1.3;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--color-dark);
}

.blog-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

/* ========== RESPONSIVE - NAVIGATION ========== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: calc(var(--spacing-unit) * 4);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        gap: calc(var(--spacing-unit) * 3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .lang-switcher {
        order: -1; /* Mostrar primero en móvil */
    }
}

@media (min-width: 969px) {
    .nav-container {
        display: flex;
        align-items: center;
        gap: calc(var(--spacing-unit) * 4);
    }
    
    .nav-links {
        flex: 1;
    }
}
/* ========== PLUGIN SECTION - NEW DESIGN ========== */
.plugin {
    padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
    background: #000000;
    color: white;
    position: relative;
    overflow: hidden;
}

.plugin-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.plugin-header h2 {
    color: white;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.plugin-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Plugin Demo */
.plugin-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 10);
    align-items: center;
    margin-bottom: calc(var(--spacing-unit) * 15);
}

.plugin-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plugin-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-content {
    padding: calc(var(--spacing-unit) * 5);
    text-align: center;
}

.mockup-icon {
    font-size: 4rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.mockup-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 4);
    text-transform: none;
}

.mockup-stats {
    display: flex;
    justify-content: space-around;
    gap: calc(var(--spacing-unit) * 3);
}

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

.stat-value {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--color-accent-light);
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Plugin Info */
.plugin-info h3 {
    font-size: 1.8rem;
    margin-bottom: calc(var(--spacing-unit) * 5);
    color: white;
}

.plugin-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 4);
}

.plugin-features li {
    display: flex;
    gap: calc(var(--spacing-unit) * 3);
    align-items: flex-start;
}

.plugin-features .feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.plugin-features strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--color-accent-light);
}

.plugin-features p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Browser Cards */
.plugin-browsers {
    margin-bottom: calc(var(--spacing-unit) * 15);
}

.plugin-browsers h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: calc(var(--spacing-unit) * 6);
    color: white;
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing-unit) * 5);
    max-width: 900px;
    margin: 0 auto;
}

.browser-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: calc(var(--spacing-unit) * 5);
    transition: all 0.3s ease;
}

.browser-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-light);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.browser-icon {
    color: var(--color-accent-light);
}

.browser-header h4 {
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 0;
    text-transform: none;
}

.browser-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.6;
}

.browser-features {
    list-style: none;
    margin: calc(var(--spacing-unit) * 4) 0;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.browser-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.btn-browser {
    display: block;
    width: 100%;
    text-align: center;
    padding: calc(var(--spacing-unit) * 2.5);
    background: var(--color-accent-light);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: calc(var(--spacing-unit) * 4);
}

.btn-browser:hover {
    background: var(--color-accent);
    transform: scale(1.02);
}

.browser-note {
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 2);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* How it Works */
.plugin-how {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: calc(var(--spacing-unit) * 8);
    margin-bottom: calc(var(--spacing-unit) * 15);
}

.plugin-how h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: calc(var(--spacing-unit) * 8);
    color: white;
}

.plugin-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: calc(var(--spacing-unit) * 3);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.plugin-step {
    text-align: center;
    grid-column: span 1;
}

.step-step-arrow {
    font-size: 2rem;
    color: var(--color-accent-light);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-accent-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    margin: 0 auto calc(var(--spacing-unit) * 3);
}

.plugin-step h4 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-transform: none;
}

.plugin-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Requirements */
.plugin-requirements {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: calc(var(--spacing-unit) * 8);
}

.plugin-requirements h4 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: calc(var(--spacing-unit) * 6);
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 5);
}

.req-box h5 {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--color-accent-light);
    text-transform: none;
}

.req-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.req-box li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 968px) {
    .plugin-demo {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .plugin-steps {
        grid-template-columns: 1fr;
    }
    
    .step-step-arrow {
        transform: rotate(90deg);
    }
    
    .browser-grid {
        grid-template-columns: 1fr;
    }
}
