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

        :root {
            --primary-black: #0a0e27;
            --secondary-black: #12161f;
            --accent-lime: #CCFF00;
            --accent-lime-dark: #a8d700;
            --dark-green: #2d5016;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --text-gray: #e0e0e0;
            --border-color: #2a2a2a;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== UTILITY CLASSES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-padding-sm {
            padding: 40px 0;
        }

        .hidden {
            display: none !important;
        }

        .show {
            display: block !important;
        }

        /* ===== HEADER & NAVIGATION ===== */
        header {
            position: sticky;
            top: 0;
            background-color: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            padding: 22px 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .logo {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: -1px;
            cursor: pointer;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 250px;
            height: 84px;
            object-fit: contain;
            object-position: center;
            display: block;
            border-radius: 0;
        }

        .footer .logo-icon {
            width: 235px;
            height: 82px;
            object-fit: contain;
        }

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

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

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

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

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

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--secondary-black);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            min-width: 600px;
            display: none;
            padding: 30px;
            margin-top: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .nav-item {
            position: relative;
        }

        .nav-item:hover .dropdown-menu {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-column {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .dropdown-column h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-lime);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dropdown-column a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.2s ease;
            padding-left: 0;
        }

        .dropdown-column a:hover {
            color: var(--accent-lime);
            padding-left: 8px;
        }

        .cta-button {
            background-color: var(--accent-lime);
            color: var(--primary-black);
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            background-color: var(--accent-lime-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(204, 255, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(45, 80, 22, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-size: clamp(40px, 8vw, 70px);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 600px;
        }

        .hero-cta-group {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .cta-button-secondary {
            background-color: transparent;
            border: 2px solid var(--accent-lime);
            color: var(--accent-lime);
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button-secondary:hover {
            background-color: var(--accent-lime);
            color: var(--primary-black);
            transform: translateY(-2px);
        }

        .hero-trust {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--text-gray);
        }

        .trust-icon {
            color: var(--accent-lime);
            font-weight: bold;
            font-size: 18px;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            background-color: var(--primary-black);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: clamp(36px, 6vw, 56px);
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 16px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(30, 30, 50, 0.8) 0%, rgba(20, 20, 40, 0.8) 100%);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .service-card:hover {
            border-color: var(--accent-lime);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(204, 255, 0, 0.15);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-lime) 0%, var(--dark-green) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary-black);
            font-weight: bold;
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 700;
        }

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

        .service-features {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border-color);
        }

        .service-feature {
            font-size: 13px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-feature::before {
            content: '✓';
            color: var(--accent-lime);
            font-weight: bold;
        }

        .service-card a {
            color: var(--accent-lime);
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .service-card a:hover {
            transform: translateX(5px);
        }

        /* ===== PROCESS SECTION ===== */
        .process {
            background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 46px 34px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-lime), transparent);
            transform: translateY(-50%);
            display: none;
        }

        @media (min-width: 1024px) {
            .process-steps::before {
                display: block;
            }
        }

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

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-lime) 0%, var(--dark-green) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 900;
            margin: 0 auto 20px;
            color: var(--primary-black);
        }

        .process-step h3 {
            font-size: 18px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .process-step p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* ===== WHY CHOOSE US SECTION ===== */
        .why-choose {
            background-color: var(--primary-black);
        }

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

        .feature-item {
            background: linear-gradient(135deg, rgba(30, 30, 50, 0.5) 0%, rgba(20, 20, 40, 0.5) 100%);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            border-color: var(--accent-lime);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-lime);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 15px;
            color: var(--primary-black);
        }

        .feature-item h3 {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .feature-item p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.1) 0%, rgba(45, 80, 22, 0.1) 100%);
            border: 2px solid var(--accent-lime);
            border-radius: 16px;
            padding: 60px 40px;
            text-align: center;
            margin: 80px 0;
        }

        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 900;
        }

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

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

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

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .blog-card {
            background: linear-gradient(135deg, rgba(30, 30, 50, 0.8) 0%, rgba(20, 20, 40, 0.8) 100%);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

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

        .blog-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--accent-lime) 0%, var(--dark-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: var(--primary-black);
            font-weight: bold;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 12px;
        }

        .blog-category {
            background-color: rgba(204, 255, 0, 0.1);
            color: var(--accent-lime);
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .blog-date {
            color: var(--text-gray);
        }

        .blog-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            font-weight: 700;
            line-height: 1.4;
        }

        .blog-excerpt {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .blog-read-more {
            color: var(--accent-lime);
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .blog-read-more:hover {
            transform: translateX(5px);
        }

        /* ===== CONTACT FORM ===== */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            background-color: rgba(20, 20, 40, 0.5);
            color: var(--white);
            border-radius: 8px;
            font-family: inherit;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-lime);
            background-color: rgba(20, 20, 40, 0.8);
            box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.1);
        }

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

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #888;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        /* ===== FOOTER ===== */
        footer {
            background-color: var(--secondary-black);
            border-top: 1px solid var(--border-color);
            padding: 60px 0 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--white);
        }

        .footer-column p {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .footer-column a {
            display: block;
            font-size: 13px;
            color: var(--text-gray);
            text-decoration: none;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--accent-lime);
            padding-left: 8px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            background-color: rgba(204, 255, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-lime);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            margin-bottom: 0;
        }

        .footer-social a:hover {
            background-color: var(--accent-lime);
            color: var(--primary-black);
            transform: translateY(-3px);
            padding-left: 0;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            font-size: 12px;
            color: #888;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
            font-size: 12px;
            color: #888;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 0;
        }

        .footer-legal a:hover {
            color: var(--accent-lime);
            padding-left: 0;
        }

        /* ===== PAGE CONTENT SECTIONS ===== */
        .page-content {
            display: none;
        }

        .page-content.active {
            display: block;
            animation: fadeIn 0.3s ease-in;
        }

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

        /* ===== SERVICE PAGE DETAILS ===== */
        .service-detail-header {
            background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
            padding: 60px 0;
            margin-bottom: 40px;
        }

        .service-detail-header h1 {
            font-size: clamp(32px, 6vw, 52px);
            font-weight: 900;
            margin-bottom: 20px;
        }

        .service-detail-header p {
            font-size: 16px;
            color: var(--text-gray);
            max-width: 600px;
        }

        .service-offerings {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .offering-card {
            background: linear-gradient(135deg, rgba(30, 30, 50, 0.6) 0%, rgba(20, 20, 40, 0.6) 100%);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .offering-card:hover {
            border-color: var(--accent-lime);
            transform: translateY(-8px);
        }

        .offering-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--accent-lime);
            font-weight: 700;
        }

        .offering-card p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .process-section {
            background: linear-gradient(135deg, rgba(204, 255, 0, 0.05) 0%, rgba(45, 80, 22, 0.05) 100%);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            margin: 60px 0;
        }

        .process-section h3 {
            font-size: 24px;
            margin-bottom: 30px;
            font-weight: 900;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 20px;
            }

            .dropdown-menu {
                min-width: 400px;
            }

            .section-padding {
                padding: 50px 0;
            }

            .hero {
                padding: 80px 0;
            }

            .hero h1 {
                font-size: 48px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--secondary-black);
                border-bottom: 1px solid var(--border-color);
                flex-direction: column;
                gap: 0;
                padding: 20px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nav-links.mobile-active {
                max-height: 500px;
            }

            .nav-item {
                width: 100%;
            }

            .nav-item:hover .dropdown-menu {
                position: static;
                background-color: var(--primary-black);
                border: none;
                min-width: auto;
                padding: 15px 20px;
                margin-top: 0;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: flex;
                flex-direction: column;
                grid-template-columns: 1fr;
            }

            .dropdown-column {
                margin-bottom: 15px;
            }

            nav {
                gap: 0;
                justify-content: space-between;
            }

            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-cta-group {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta-group .cta-button,
            .hero-cta-group .cta-button-secondary {
                width: 100%;
                text-align: center;
            }

            .hero-trust {
                flex-direction: column;
                gap: 15px;
            }

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

            .section-header h2 {
                font-size: 36px;
            }

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

            .process-step:nth-child(3) {
                grid-column: 1 / -1;
            }

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

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

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

            .cta-buttons .cta-button,
            .cta-buttons .cta-button-secondary {
                width: 100%;
            }

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

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

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

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

            .service-offerings {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            header {
                padding: 12px 0;
            }

            nav {
                gap: 15px;
            }

            .logo {
                font-size: 16px;
            }

            .hero {
                padding: 40px 0;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .section-padding {
                padding: 30px 0;
            }

            .service-card {
                padding: 25px;
            }

            .dropdown-menu {
                min-width: 280px;
            }

            .nav-links {
                padding: 15px;
            }

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

            .cta-section {
                padding: 40px 20px;
            }

            .cta-section h2 {
                font-size: 28px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .service-card {
            animation: slideInUp 0.6s ease-out;
        }

        .blog-card {
            animation: slideInUp 0.6s ease-out;
        }

        /* ===== ACCESSIBILITY ===== */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background-color: var(--accent-lime);
            color: var(--primary-black);
            padding: 8px 16px;
            text-decoration: none;
            z-index: 100;
        }

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

        :focus-visible {
            outline: 2px solid var(--accent-lime);
            outline-offset: 2px;
        }

        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--accent-lime);
            outline-offset: -2px;
        }
    
        /* ===== GROWTHSTACK FINAL REFINEMENTS ===== */
        .contact-direct {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 24px;
        }
        .contact-direct a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 16px;
            border: 1px solid var(--border-color);
            border-radius: 999px;
            color: var(--white);
            text-decoration: none;
            transition: .25s ease;
        }
        .contact-direct a:hover {
            border-color: var(--accent-lime);
            color: var(--accent-lime);
            transform: translateY(-2px);
        }
        .form-note {
            margin-top: 14px;
            color: #aeb4c2;
            font-size: 13px;
            line-height: 1.6;
        }

        @media (max-width: 1023px) {
            .process-steps,
            .features-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            header { padding: 14px 0; }
            .logo-icon {
                width: 205px;
                height: 72px;
            }
            .footer .logo-icon {
                width: 205px;
                height: 72px;
            }
            .process-steps,
            .features-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .nav-links {
                gap: 18px;
            }
        }

        @media (max-width: 600px) {
            .logo-icon {
                width: 185px;
                height: 64px;
            }
            .nav-links {
                gap: 12px;
            }
            .nav-links a {
                font-size: 13px;
            }
        }
/* ===== WordPress integration ===== */
html { scroll-behavior: smooth; }
body.wp-site { margin: 0; }
.site-main { min-height: 60vh; }
img { max-width: 100%; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

