        :root {
            --primary-dark: #0A0E1A;
            --secondary-dark: #1A202C;
            --accent-orange: #f4941c;
            --accent-orange-hover: #E55A2B;
            --text-primary: #F7FAFC;
            --text-secondary: #E2E8F0;
            --text-muted: #A0AEC0;
            --border-color: #2D3748;
            --card-bg: #1A202C;
            --gradient-primary: linear-gradient(135deg, #f4941c 0%, #E55A2B 100%);
        }

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

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

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 26, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: all 0.3s ease;
        }

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

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

        .logo img {
            height: 50px;
            width: auto;
            margin-right: 1rem;
        }

        .logo-text {
            display: none; /* Hide text when logo loads successfully */
        }

        /* Mobile hamburger button */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 999;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            transition: all 0.3s ease;
        }

        .nav-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
        }

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

        /* Mobile Navigation Overlay */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Close button in mobile menu */
        .nav-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            display: none;
            z-index: 1003;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

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

        .hero-text p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        /* Security Visualization Canvas */
        .network-visual {
            position: relative;
            height: 400px;
            background: radial-gradient(circle at center, rgba(255, 107, 53, 0.05) 0%, rgba(10, 14, 26, 0.95) 70%);
            border: 1px solid rgba(255, 107, 53, 0.2);
            border-radius: 16px;
            overflow: hidden;
        }

        .security-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
        }

        .security-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255, 107, 53, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 107, 53, 0.08) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.4;
            animation: gridPulse 8s ease-in-out infinite alternate;
        }

        @keyframes gridPulse {
            0% { opacity: 0.2; }
            100% { opacity: 0.4; }
        }

        /* Texas Flag Easter Egg */
        .texas-flag {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 267px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            z-index: 10000;
        }

        .texas-flag.show {
            display: block;
            animation: texasPride 4s ease-in-out;
        }

        .texas-blue-field {
            position: absolute;
            left: 0;
            top: 0;
            width: 33.333%;
            height: 100%;
            background: #002868;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .texas-star {
            width: 80px;
            height: 80px;
            background: white;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .texas-white-stripe {
            position: absolute;
            left: 33.333%;
            top: 0;
            width: 66.667%;
            height: 50%;
            background: white;
        }

        .texas-red-stripe {
            position: absolute;
            left: 33.333%;
            top: 50%;
            width: 66.667%;
            height: 50%;
            background: #BF0A30;
        }

        .texas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            display: none;
        }

        .texas-overlay.show {
            display: block;
            animation: fadeIn 5s ease-in-out;
        }

        /* Texas Confetti */
        .texas-confetti {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10001;
            display: none;
        }

        .texas-confetti.show {
            display: block;
        }

        .confetti-piece {
            position: absolute;
            width: 8px;
            height: 8px;
            animation: confettiFall 3s linear forwards;
        }

        .confetti-red { background: #BF0A30; }
        .confetti-white { background: white; }
        .confetti-blue { background: #002868; }
        .confetti-orange { background: #f4941c; }

        @keyframes texasPride {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.1) rotate(-10deg); }
            25% { opacity: 1; transform: translate(-50%, -50%) scale(1.1) rotate(2deg); }
            85% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(0.1) rotate(10deg); }
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            25% { opacity: 1; }
            85% { opacity: 1; }
            100% { opacity: 0; }
        }

        @keyframes confettiFall {
            0% {
                transform: translateY(-100vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: var(--secondary-dark);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
        }

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

        .service-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .service-icon svg {
            width: 30px;
            height: 30px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .service-card p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            color: var(--text-muted);
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .service-features li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.5em;
            width: 8px;
            height: 4px;
            border-left: 2px solid var(--accent-orange);
            border-bottom: 2px solid var(--accent-orange);
            transform: rotate(-45deg);
            margin-top: -2px;
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: var(--primary-dark);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Trust Flow - Story-driven approach */
        .trust-flow {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .trust-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s ease;
            text-align: center;
        }

        .trust-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-orange);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
        }

        .trust-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }

        .trust-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--accent-orange);
            font-weight: 600;
        }

        .trust-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Process Flow */
        .process-flow {
            margin-top: 4rem;
            text-align: center;
        }

        .process-title {
            font-size: 1.8rem;
            margin-bottom: 3rem;
            color: var(--text-primary);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .process-step {
            background: rgba(255, 107, 53, 0.05);
            border: 2px solid rgba(255, 107, 53, 0.2);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            border-color: var(--accent-orange);
            background: rgba(255, 107, 53, 0.1);
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 1rem;
            font-size: 1.2rem;
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent-orange);
            margin-bottom: 0.5rem;
        }

        .step-description {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Connection arrows between steps */
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -1.5rem;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid var(--accent-orange);
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            z-index: 1;
        }

        /* Reviews Slider Section */
        .reviews-slider {
            padding: 6rem 2rem;
            background: var(--secondary-dark);
        }

        .slider-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 16px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
        }

        .review-slides {
            display: flex;
            transition: transform 0.6s ease-in-out;
            width: 600%; /* This is adjusted when you add reviews */
        }

        .review-slide {
            width: 16.666%; /* adjust this when you add sildes */
            padding: 3rem 2rem;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .review-slide.active {
            opacity: 1;
        }

        .review-content {
            text-align: center;
            max-width: 100%;
        }

        .stars {
            display: flex;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 2rem;
        }

        .review-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            font-style: italic;
            margin: 0 0 2rem 0;
            position: relative;
        }
/*
        .review-text::before {
            content: '"';
            position: absolute;
            left: -2rem;
            top: -1rem;
            font-size: 4rem;
            color: var(--accent-orange);
            opacity: 0.3;
            font-family: serif;
        }

        .review-text::after {
            content: '"';
            position: absolute;
            right: -1rem;
            bottom: -2rem;
            font-size: 4rem;
            color: var(--accent-orange);
            opacity: 0.3;
            font-family: serif;
        }
*/
        .review-author {
            border-top: 1px solid var(--border-color);
            padding-top: 1.5rem;
        }

        .author-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .author-company {
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .project-type {
            font-size: 0.9rem;
            color: var(--accent-orange);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-nav:hover {
            background: var(--accent-orange);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 1rem;
        }

        .slider-nav.next {
            right: 1rem;
        }

        /* Slider Dots */
        .slider-dots {
            text-align: center;
            padding: 1.5rem 0 1rem;
            background: var(--card-bg);
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background-color: var(--accent-orange);
            transform: scale(1.2);
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: var(--primary-dark);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 12px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--primary-dark);
            color: var(--text-primary);
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-orange);
        }

        .form-group select {
            cursor: pointer;
        }

        /* Consent Checkbox Styling */
        .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
            line-height: 1.5;
        }

        .checkbox-container input[type="checkbox"] {
            width: auto;
            min-width: 18px;
            height: 18px;
            margin: 0;
            cursor: pointer;
            accent-color: var(--accent-orange);
        }

        .checkbox-container label {
            margin: 0;
            cursor: pointer;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        .checkbox-container a {
            color: var(--accent-orange);
            text-decoration: underline;
        }

        .checkbox-container a:hover {
            color: var(--accent-orange-hover);
        }

        /* Honeypot field - hidden from users */
        .honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        /* Footer */
        .footer {
            padding: 3rem 2rem 1rem;
            background: var(--secondary-dark);
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
        }

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

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Portal Login Modal */
        .login-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: relative;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            animation: modalAppear 0.3s ease-out;
        }

        @keyframes modalAppear {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal-header {
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            color: var(--text-primary);
            font-size: 1.5rem;
            margin: 0;
        }

        .modal-close {
            font-size: 2rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: color 0.3s ease;
            line-height: 1;
        }

        .modal-close:hover {
            color: var(--accent-orange);
        }

        .login-form {
            padding: 2rem;
        }

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

        .login-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .login-form input[type="text"],
        .login-form input[type="password"] {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--primary-dark);
            color: var(--text-primary);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .login-form input:focus {
            outline: none;
            border-color: var(--accent-orange);
        }

        .login-form .checkbox-container {
            display: flex;
            align-items: center;
            cursor: pointer;
            margin-bottom: 0;
        }

        .login-form .checkbox-container input[type="checkbox"] {
            width: auto;
            margin-right: 0.5rem;
            accent-color: var(--accent-orange);
        }

        .login-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            display: none;
        }

        .login-message.success {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #10B981;
        }

        .login-message.error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #EF4444;
        }

        .login-footer {
            padding: 1rem 2rem 2rem;
            text-align: center;
        }

        .login-footer p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--card-bg);
                backdrop-filter: blur(20px);
                border-left: 1px solid var(--border-color);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                padding: 5rem 2rem 2rem;
                gap: 0;
                z-index: 1001;
                transition: right 0.3s ease;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 1rem 0;
                font-size: 1.1rem;
                border-bottom: none;
            }

            .nav-close {
                display: block;
            }

            .hero {
                min-height: 100vh;
                min-height: 100svh;
                padding: 5rem 0 1rem;
                display: flex;
                align-items: flex-start;
                justify-content: center;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 1rem;
                gap: 1.5rem;
                margin-top: 1rem;
            }

            .hero-text h1 {
                font-size: 2.2rem;
                line-height: 1.1;
                margin-bottom: 0.75rem;
            }

            .hero-text p {
                font-size: 1rem;
                margin-bottom: 1.25rem;
            }

            .network-visual {
                height: 200px;
                margin-top: 1rem;
            }

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

            .trust-flow {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

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

            .process-step:not(:last-child)::after {
                content: '';
                right: 50%;
                top: 100%;
                transform: translateX(50%);
                bottom: -1.5rem;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-top: 10px solid var(--accent-orange);
                border-bottom: none;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .trust-card {
                padding: 2rem;
            }

            .trust-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

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

            .review-slide {
                padding: 2rem 1.5rem;
            }
            
            .review-text {
                font-size: 1rem;
            }
            
            .review-text::before,
            .review-text::after {
                font-size: 3rem;
            }
            
            .review-text::before {
                left: -1rem;
            }
            
            .review-text::after {
                right: -0.5rem;
            }
            
            .slider-nav {
                width: 40px;
                height: 40px;
            }
            
            .slider-nav.prev {
                left: 0.5rem;
            }
            
            .slider-nav.next {
                right: 0.5rem;
            }

            .checkbox-container {
                gap: 0.5rem;
            }

            .checkbox-container label {
                font-size: 0.9rem;
            }
        }

        /* Additional landscape orientation fix for mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                min-height: 100vh;
                padding: 3rem 0 1rem;
                align-items: flex-start;
                justify-content: flex-start;
                padding-top: 4rem; /* Account for fixed header */
            }

            .hero-content {
                margin-top: 0;
                gap: 1rem;
                padding: 0.5rem;
                align-items: flex-start;
            }

            .hero-text {
                order: 1;
            }

            .hero-text h1 {
                font-size: 1.6rem;
                margin-bottom: 0.5rem;
                line-height: 1.1;
            }

            .hero-text p {
                font-size: 0.85rem;
                margin-bottom: 1rem;
                line-height: 1.4;
            }

            .network-visual {
                height: 120px;
                margin-top: 0.5rem;
                order: 2;
            }

            .cta-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }
    </style>

/* Mobile Landscape Mode Fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .header {
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .header.show-in-landscape {
        transform: translateY(0);
    }
    
    .landscape-header-toggle {
        position: fixed;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background: rgba(26, 32, 44, 0.9);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 999;
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .landscape-header-toggle:hover {
        opacity: 1;
        background: var(--accent-orange);
    }
    
    .hero {
        padding-top: 1rem;
    }
    
    .hero-content {
        margin-top: 0;
        padding-top: 0;
    }
