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

        :root {
            --primary-dark: #001a3d;
            --primary-blue: #002B5C;
            --secondary-blue: #1a5490;
            --accent-gold: #D4AF37;
            --dark-text: #1a1a1a;
            --light-gray: #f5f5f5;
            --border-radius: 8px;
            --transition: 0.3s ease;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: #f8f9fa;
        }

        /* Navigation */
        .navbar {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 27, 61, 0.15);
        }

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

        .logo {
            font-family: 'Merriweather', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition);
            position: relative;
        }

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

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--secondary-blue) 100%);
            color: white;
            padding: 120px 2rem 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 600px;
            height: 600px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 50%;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Merriweather', serif;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.4;
        }

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

        .btn {
            padding: 0.9rem 2.5rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            transition: all var(--transition);
            font-family: 'Inter', sans-serif;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
        }

        .btn-primary:hover {
            background-color: #ffd700;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Stats Section */
        .stats {
            background: white;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: -50px auto 0;
            position: relative;
            z-index: 10;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 27, 61, 0.15);
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            font-family: 'Merriweather', serif;
        }

        .stat-label {
            color: #666;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        /* Services Section */
        .services {
            padding: 4rem 2rem;
            background-color: #f8f9fa;
        }

        .section-title {
            font-family: 'Merriweather', serif;
            font-size: 2.5rem;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 3rem;
        }

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

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all var(--transition);
            border-left: 4px solid var(--primary-blue);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 28px rgba(0, 27, 61, 0.2);
            border-left-color: var(--accent-gold);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .service-card h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-family: 'Merriweather', serif;
        }

        .service-card p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-card a {
            color: var(--secondary-blue);
            text-decoration: none;
            font-weight: 600;
            transition: color var(--transition);
        }

        .service-card a:hover {
            color: var(--accent-gold);
        }

        /* Features Section */
        .features {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: white;
        }

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

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

        .feature-item {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .feature-item h4 {
            font-family: 'Merriweather', serif;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
            color: var(--accent-gold);
        }

        .feature-item p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 4rem 2rem;
            background-color: #f8f9fa;
        }

        .testimonials .section-title {
            color: var(--primary-dark);
        }

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

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .stars {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .testimonial p {
            color: #666;
            margin-bottom: 1rem;
            font-style: italic;
            line-height: 1.6;
        }

        .testimonial-author {
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            text-align: center;
        }

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

        .cta-section h2 {
            font-family: 'Merriweather', serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-section h4 {
            font-family: 'Merriweather', serif;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color var(--transition);
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 1rem;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .stats {
                grid-template-columns: 1fr 1fr;
                margin-top: -40px;
            }

            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }
   /* mobile menu button injected by navigation.js */
.nav-toggle { display:none; background:none; border:0; cursor:pointer; padding:.4rem;
              flex-direction:column; gap:5px; }
.nav-toggle span { display:block; width:24px; height:2px; background:#fff; border-radius:2px;
                   transition:transform .25s, opacity .25s; }
.nav-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
@media (max-width:860px) {
  .nav-toggle { display:flex; order:2; }
  .navbar .nav-links { display:none; width:100%; order:3; flex-direction:column;
                       gap:.8rem; padding-top:.9rem; }
  .navbar .nav-links.open { display:flex; }
}

/* lawandorders.us rebuild: headings in the "Start Here" band are links; keep the heading colour */
.feature-item h4 a { color: inherit; text-decoration: none; }
.feature-item h4 a:hover { text-decoration: underline; }
