/* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            color: #333;
        }

        /* Layout utilities */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .flex {
            display: flex;
        }

        .items-center {
            align-items: center;
        }

        .justify-between {
            justify-content: space-between;
        }

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

        .gap-2 { gap: 0.5rem; }
        .gap-3 { gap: 0.75rem; }
        .gap-4 { gap: 1rem; }
        .gap-6 { gap: 1.5rem; }
        .gap-8 { gap: 2rem; }

        .grid {
            display: grid;
        }

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

        .grid-cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }

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

        .hidden {
            display: none;
        }

        @media (min-width: 768px) {
            .md-flex {
                display: flex;
            }
            .md-grid-cols-2 {
                grid-template-columns: repeat(2, 1fr);
            }
            .md-grid-cols-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(3, 7, 18, 0.9);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            height: 4rem;
            /*display: flex;
            align-items: center;*/
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo {
            height: 3.0rem;
            width: auto;
        }
        
        .brand-name {
            color: #007FC6;
            font-weight: bold;
            display: none;
            letter-spacing: -0.025em;
        }

        @media (min-width: 960px) {
            .logo {
                height: 2.0rem;
            }
            .brand-name {
                font-size: 1.25rem;
                display: block;
            }
        }

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

        @media (min-width: 960px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-link {
            color: #d1d5db;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: white;
        }

        .nav-actions {
            gap: 0.5rem;
        }

        @media (min-width: 960px) {
            .nav-actions {
                display: flex;
                align-items: center;
                gap: 1rem;
            }
        }

        .btn {
            padding: 0.25rem 0.5rem;
            border-radius: 0.375rem;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-block;
        }

        @media (min-width: 960px) {
            .btn {
                padding: 0.5rem 1rem;
            }
        }

        .btn-primary {
            background: #528af4;
            color: white;
        }

        .btn-primary:hover {
            background: #3a74e0;
        }

        .btn-ghost {
            color: #9ca3af;
        }

        .btn-ghost:hover {
            color: white;
        }

        /* Hero section */
        .hero {
            background: #030712;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .hero-bg {
            position: absolute;
            top: -10rem;
            left: 50%;
            transform: translateX(-50%);
            width: 50rem;
            height: 37.5rem;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 50%;
            filter: blur(3rem);
        }

        .hero-content {
            position: relative;
            text-align: center;
            max-width: 64rem;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(245, 158, 11, 0.3);
            background: rgba(245, 158, 11, 0.1);
            padding: 0.375rem 1rem;
            border-radius: 9999px;
            margin-bottom: 2rem;
        }

        .badge-text {
            color: #f59e0b;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }

        .hero-highlight {
            color: #f59e0b;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #9ca3af;
            max-width: 32rem;
            margin: 0 auto 1rem;
        }

        .hero-description {
            font-size: 1.125rem;
            color: #6b7280;
            max-width: 24rem;
            margin: 0 auto 2.5rem;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 5rem;
        }

        @media (min-width: 640px) {
            .hero-actions {
                flex-direction: row;
            }
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 0.375rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-yellow {
            background: #f59e0b;
            color: #1f2937;
        }

        .btn-yellow:hover {
            background: #fbbf24;
        }

        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            overflow: hidden;
            max-width: 32rem;
            margin: 0 auto;
        }

        .stat {
            background: #111827;
            padding: 1.5rem 2rem;
            text-align: center;
        }

        .stat-number {
            font-size: 1.875rem;
            font-weight: bold;
            margin-bottom: 0.25rem;
        }

        .stat-number.yellow {
            color: #f59e0b;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #9ca3af;
        }

        /* Sections */
        .section {
            padding: 6rem 0;
        }

        .section-white {
            background: white;
        }

        .section-gray {
            background: #f9fafb;
        }

        .section-dark {
            background: #030712;
            color: white;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #111827;
        }

        .section-dark .section-title {
            color: white;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #6b7280;
            max-width: 32rem;
            margin: 0 auto 4rem;
        }

        .section-dark .section-subtitle {
            color: #9ca3af;
        }

        /* Comparison cards */
        .comparison {
            display: grid;
            gap: 2rem;
            max-width: 80rem;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .comparison {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .comparison-card {
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid;
        }

        .comparison-bad {
            border-color: #fecaca;
            background: #fef2f2;
        }

        .comparison-good {
            border-color: #fde68a;
            background: #fffbeb;
        }

        .comparison-label {
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .comparison-bad .comparison-label {
            color: #dc2626;
        }

        .comparison-good .comparison-label {
            color: #d97706;
        }

        .comparison-list {
            list-style: none;
        }

        .comparison-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: #374151;
        }

        .comparison-icon {
            width: 1.25rem;
            height: 1.25rem;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }

        .icon-x {
            color: #f87171;
        }

        .icon-check {
            color: #f59e0b;
        }

        /* Features grid */
        .features-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 640px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: box-shadow 0.2s;
        }

        .feature-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 2rem;
            height: 2rem;
            background: #fef3c7;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-dot {
            width: 0.75rem;
            height: 0.75rem;
            background: #f59e0b;
            border-radius: 50%;
        }

        .feature-title {
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.5rem;
        }

        .feature-description {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .testimonial-card {
            background: #111827;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            padding: 1.5rem;
        }

        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .star {
            width: 1rem;
            height: 1rem;
            color: #f59e0b;
            fill: currentColor;
        }

        .testimonial-text {
            color: #d1d5db;
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            color: white;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .testimonial-org {
            color: #6b7280;
            font-size: 0.75rem;
        }

        /* Service features */
        .service-grid {
            display: grid;
            gap: 1.5rem;
            max-width: 48rem;
            margin: 0 auto;
            text-align: left;
        }

        @media (min-width: 640px) {
            .service-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .service-card {
            background: #f9fafb;
            border-radius: 0.75rem;
            padding: 1.5rem;
        }

        .service-dot {
            width: 0.5rem;
            height: 0.5rem;
            background: #f59e0b;
            border-radius: 50%;
            margin-bottom: 0.75rem;
        }

        .service-title {
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.5rem;
        }

        .service-description {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Quote */
        .quote {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            font-style: italic;
            text-align: center;
            margin-top: 3rem;
        }

        /* Footer */
        .footer {
            background: #030712;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 0;
            color: white;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            height: 4rem;
            width: auto;
        }

        .footer-brand {
            color: #007FC6;
            font-weight: bold;
            font-size: 1.125rem;
        }

        .footer-tagline {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            font-size: 0.875rem;
            color: #6b7280;
            margin-top: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.75rem;
            color: #6b7280;
        }