@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Roboto:wght@400;500;700&display=swap");

:root {
            --royal-blue: #1d4ed8;
            --lime: #84cc16;
            --white: #ffffff;
            --black: #000000;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-900: #111827;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-900);
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto Slab', serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.5em;
        }

        h1 {
            font-size: 3rem;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 2rem;
            letter-spacing: -0.01em;
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1em;
            color: var(--gray-700);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--royal-blue);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        button {
            font-family: inherit;
            font-size: 1rem;
            cursor: pointer;
        }

        /* Header & Navigation */
        header {
            background-color: var(--white);
            border-bottom: 1px solid var(--gray-200);
            padding: 2rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            font-family: 'Roboto Slab', serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--royal-blue);
            text-decoration: none;
        }

        .logo:hover {
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            font-weight: 500;
            color: var(--gray-900);
            text-decoration: none;
            position: relative;
            border-bottom: 2px solid transparent;
            padding-bottom: 0.25rem;
            transition: border-color 0.3s ease;
        }

        nav a:hover {
            border-bottom-color: var(--lime);
        }

        nav a.active {
            border-bottom-color: var(--royal-blue);
            color: var(--royal-blue);
        }

        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            margin-bottom: 5rem;
        }

        /* Hero Split Section */
        .hero-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 6rem;
            margin-top: 3rem;
        }

        .hero-split-text h1 {
            margin-bottom: 1rem;
            color: var(--royal-blue);
        }

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

        .hero-split-image {
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 4px;
        }

        .hero-split-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Coverage Pillars */
        .coverage-pillars {
            margin-bottom: 5rem;
        }

        .section-heading {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--royal-blue);
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .pillar-card {
            padding: 2rem;
            background-color: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .pillar-card h3 {
            color: var(--royal-blue);
        }

        .pillar-card p {
            font-size: 0.95rem;
            color: var(--gray-600);
        }

        .pillar-icon {
            width: 60px;
            height: 60px;
            background-color: var(--lime);
            border-radius: 4px;
            flex-shrink: 0;
        }

        /* Featured Stat */
        .featured-stat {
            background: linear-gradient(135deg, var(--royal-blue) 0%, #2563eb 100%);
            color: var(--white);
            padding: 4rem 3rem;
            border-radius: 4px;
            text-align: center;
            margin: 5rem 0;
        }

        .featured-stat h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .featured-stat p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-bottom: 0;
        }

        .stat-underline {
            width: 120px;
            height: 4px;
            background-color: var(--lime);
            margin: 1.5rem auto 0;
        }

        /* Review Process */
        .workflow-preview {
            margin-bottom: 5rem;
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .workflow-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--royal-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .workflow-step h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .workflow-step p {
            font-size: 0.9rem;
            color: var(--gray-600);
        }

        /* Discovery CTA */
        .discovery-cta {
            background-color: var(--gray-50);
            padding: 3rem;
            border-radius: 4px;
            margin-bottom: 5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 3rem;
        }

        .discovery-cta-text h2 {
            color: var(--royal-blue);
            margin-bottom: 0.5rem;
        }

        .discovery-cta-text p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .cta-link {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: var(--royal-blue);
            color: var(--white);
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .cta-link:hover {
            background-color: #1e40af;
            text-decoration: none;
        }

        /* Latest Reviews */
        .latest-reviews {
            margin-bottom: 5rem;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .review-card {
            background-color: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 4px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .review-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .review-card-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
            background-color: var(--gray-100);
        }

        .review-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .review-card-content {
            padding: 1.5rem;
        }

        .review-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--royal-blue);
        }

        .review-meta {
            font-size: 0.85rem;
            color: var(--gray-600);
            margin-bottom: 0.75rem;
        }

        .review-summary {
            font-size: 0.95rem;
            color: var(--gray-700);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .review-link {
            color: var(--lime);
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

        .review-link:hover {
            border-bottom-color: var(--lime);
        }

        /* Footer */
        footer {
            background-color: var(--gray-900);
            color: var(--white);
            padding: 3rem 0 1.5rem;
            margin-top: 6rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--lime);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-section h4 {
            font-size: 1rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

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

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--lime);
            text-decoration: underline;
        }

        .footer-contact {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        .footer-contact strong {
            color: var(--white);
            display: block;
            margin-bottom: 0.25rem;
        }

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

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

            h2 {
                font-size: 1.5rem;
            }

            .header-container {
                flex-direction: column;
                gap: 1.5rem;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            main {
                padding: 0 1.5rem;
            }

            .hero-split {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-split-image {
                height: 300px;
            }

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

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

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

            .discovery-cta {
                flex-direction: column;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
