/* Shared marketing styles extracted from inline static page CSS (marketing-home-clone.css) */
:root {
           --navy: #1b3a57;
           --navy-light: #234668;
           --navy-dark: #122840;
           --gold: #c9a227;
           --gold-light: #d9b84a;
           --gold-dark: #a8871f;
           --gold-accessible: #8a6d14;
           --gold-glow: rgba(201, 162, 39, 0.15);
           --slate: #1c2128;
           --graphite: #2d333b;
           --steel: #444c56;
           --mist: #768390;
           --cloud: #adbac7;
           --snow: #f0f3f6;
           --white: #ffffff;
           --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
           --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
           --shadow-lg: 0 20px 60px rgba(27, 58, 87, 0.12);
           --heading: 'Fraunces', Georgia, serif;
           --body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
           --content-card-border: inset 2px 0 0 var(--navy), inset -2px 0 0 var(--navy), inset 0 2px 0 var(--navy);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--body);
            background: var(--white);
            color: var(--slate);
            line-height: 1.6;
           -webkit-font-smoothing: antialiased;
           -moz-osx-font-smoothing: grayscale;
        }

        /* Top License Bar */
        .license-bar {
            background: var(--navy-dark);
            padding: 0.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
        }

        .license-bar a {
            color: var(--gold);
            text-decoration: none;
        }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            background: var(--navy-dark);
            border-bottom: 3px solid var(--gold);
            transition: all 0.3s ease;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo svg {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
        }

        .logo-img {
            height: 52px;
            width: auto;
        }

        .logo-text {
            font-family: var(--heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: clamp(0.75rem, 1.5vw, 1.75rem);
            list-style: none;
            flex-shrink: 1;
            min-width: 0;
        }

        .nav-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            white-space: nowrap;
            transition: color 0.2s ease;
        }

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

        .nav-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--steel);
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .nav-phone:hover {
            color: var(--gold-dark);
        }

        .nav-phone svg {
            width: 18px;
            height: 18px;
        }

        .btn.btn-nav-cta {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 2px solid transparent;
        }

        .btn.btn-nav-cta svg {
            flex-shrink: 0;
        }

        .nav-cta-label-expanded {
            display: none;
        }

        nav .btn.btn-primary {
            background: var(--gold);
            color: var(--navy-dark);
            border-color: var(--gold);
        }

        nav .btn.btn-primary:hover {
            background: var(--gold-light);
            border-color: var(--gold-light);
        }

        nav .btn.btn-outline {
            border-color: rgba(255,255,255,0.4);
            color: var(--white);
        }

        nav .btn.btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--gold);
            color: var(--gold);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 101;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            z-index: 99;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--navy);
            text-decoration: none;
            padding: 0.5rem 1rem;
        }

        .mobile-menu a:hover {
            color: var(--gold);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-family: var(--body);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--navy);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--navy-light);
            transform: translateY(-1px);
        }

        .hero-actions .btn.btn-primary:active {
            background: var(--gold);
            color: var(--navy-dark);
            transform: translateY(0);
        }

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

        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }

        .cta-buttons .btn.btn-gold:active {
            background: var(--gold-dark);
            color: var(--navy-dark);
            transform: translateY(0);
        }

        .btn-secondary {
            background: var(--snow);
            color: var(--navy);
        }

        .btn-secondary:hover {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--navy);
            color: var(--navy);
        }

        .btn-outline:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-1px);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        /* Hero Section */
        .hero {
            padding: 2.75rem 4rem 4rem;
            background: var(--snow);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }

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

        .hero-logo {
            width: 140px;
            height: 140px;
            margin-bottom: 1.5rem;
        }

        .hero-badge {
            display: inline-block;
            align-items: center;
            background: var(--snow);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--navy);
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gold);
        }

        .hero-badge::before {
            content: '';
            color: var(--gold);
        }

        .hero h1 {
            font-family: var(--heading);
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--navy);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            color: var(--gold-dark);
        }

        .hero-text {
            font-size: 1.15rem;
            color: var(--steel);
            max-width: 700px;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.25rem;
            width: 100%;
            max-width: 980px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-actions .btn,
        .cta-buttons .btn {
            min-width: 220px;
            text-align: center;
            justify-content: center;
            flex: 1;
        }

        .hero-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.08);
            width: 100%;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--steel);
        }

        .trust-badge svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
        }

        /* Section Styles */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gold-dark);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--heading);
            font-size: clamp(1.85rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 16px 34px rgba(18, 40, 64, 0.14);
            background: rgba(18, 40, 64, 0.08);
        }

        .section-icon svg {
            width: 48px;
            height: 48px;
            color: var(--navy);
        }

        .section-icon-image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .cta-section .section-icon svg {
            color: var(--gold);
        }

        .cta-section .section-icon {
            width: auto;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .cta-section .section-icon::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: rgba(173, 186, 199, 0.45);
            border-radius: 0;
        }

        .situation-icon {
            width: 56px;
            height: 56px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .situation-icon svg {
            width: 28px;
            height: 28px;
            color: var(--gold);
        }

        .tier-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
        }

        .tier-icon svg {
            width: 32px;
            height: 32px;
            color: var(--gold);
        }

        .section-title::before {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--gold);
            margin: 0 auto 1rem;
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--steel);
            max-width: 700px;
            margin: 0 auto;
        }

        .section-actions {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
        }

        /* Services Section */
        .services {
            padding: 7rem 4rem 4.75rem;
            background: var(--white);
        }

        .support-services {
            padding: 7rem 4rem;
            background: var(--white);
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            align-items: flex-start;
        }

        .services-grid .service-card {
            flex: 0 1 calc(33.333% - 1.34rem);
            min-width: 280px;
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            text-align: center;
            box-shadow: inset 2px 0 0 var(--navy), inset -2px 0 0 var(--navy), inset 0 2px 0 var(--navy);
        }

        .support-services .service-card {
            background: var(--snow);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            color: var(--gold);
        }

        .service-card h3 {
            font-family: var(--heading);
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .service-card p {
            font-size: 0.95rem;
            color: var(--steel);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-card > .service-list {
            display: none;
            flex-direction: column;
            gap: 0;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .service-card > .service-list.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .service-card-toggle {
            margin: auto -2.5rem -2.5rem;
            padding: 1rem 1.5rem;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--navy-dark);
            background: var(--gold-glow);
            border: 2px solid var(--gold);
            border-radius: 0 0 16px 16px;
            transition: background 0.2s ease;
        }

        .service-card-toggle:hover {
            background: rgba(201, 162, 39, 0.25);
        }

        .service-card-toggle .chevron {
            transition: transform 0.3s ease;
            font-size: 1.4rem;
            transform: scaleX(1.8);
        }

        .service-card-toggle.active .chevron {
            transform: rotate(180deg) scaleX(1.8);
        }

        .service-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .service-item {
            display: flex;
            flex-direction: column;
        }

        .service-tag {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--steel);
            background: var(--white);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            border: 1px solid rgba(0,0,0,0.08);
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
            gap: 0.5rem;
        }

        .service-tag .svc-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            color: var(--gold);
            transition: color 0.2s ease;
        }

        .service-tag:hover .svc-icon {
            color: var(--navy);
        }

        .service-tag.active .svc-icon {
            color: var(--navy-dark);
        }

        .service-tag .svc-label {
            flex: 1;
        }

        .service-tag:hover {
            background: var(--gold-glow);
            border-color: var(--gold);
            color: var(--navy);
        }

        .service-tag.active {
            background: var(--gold);
            color: var(--navy-dark);
            border-color: var(--gold);
        }

        .beta-tag {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: var(--navy);
            background: transparent;
            border: 1.5px solid var(--navy);
            padding: 0.15rem 0.45rem;
            border-radius: 4px;
            margin-left: 0.5rem;
            flex-shrink: 0;
        }

        .service-tag:hover .beta-tag {
            color: var(--navy-dark);
            border-color: var(--navy-dark);
        }

        .service-tag.active .beta-tag {
            color: var(--navy-dark);
            border-color: var(--navy-dark);
        }

        .service-tag::after {
            content: '+';
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--gold);
            margin-left: auto;
        }

        .service-tag.active::after {
            content: '×';
        }

        .auto-tag {
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            color: var(--gold-dark);
            background: var(--gold-glow);
            border: 1px solid var(--gold-dark);
            padding: 0.15rem 0.45rem;
            border-radius: 4px;
            margin-left: 0.35rem;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .service-tag:hover .auto-tag {
            background: rgba(201, 162, 39, 0.25);
        }

        .service-tag.active .auto-tag {
            background: rgba(255, 255, 255, 0.3);
            color: var(--navy-dark);
        }

        .trusted-tag {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: var(--steel);
            background: transparent;
            border: 1.5px solid var(--steel);
            padding: 0.15rem 0.45rem;
            border-radius: 4px;
            margin-left: 0.5rem;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .service-tag:hover .trusted-tag {
            color: var(--navy-dark);
            border-color: var(--navy-dark);
        }

        .service-tag.active .trusted-tag {
            color: var(--navy-dark);
            border-color: var(--navy-dark);
        }

        .service-details {
            display: none;
        }

        .service-overlay {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 200;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.2s ease;
        }

        .service-overlay-content {
            background: var(--white);
            width: 92vw;
            max-width: 720px;
            max-height: 88vh;
            overflow-y: auto;
            border-radius: 16px;
            padding: 2.5rem;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
            animation: slideUp 0.25s ease;
        }

        .service-overlay-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 48px;
            height: 48px;
            border: 2px solid rgba(18, 40, 64, 0.12);
            background: rgba(255, 255, 255, 0.98);
            border-radius: 50%;
            box-shadow: 0 10px 24px rgba(18, 40, 64, 0.14);
            font-size: 2rem;
            font-weight: 900;
            line-height: 1;
            color: var(--navy-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
        }

        .service-overlay-close:hover {
            background: var(--navy-dark);
            border-color: var(--navy-dark);
            color: var(--white);
            transform: scale(1.03);
        }

        .service-overlay-title {
            font-family: var(--heading);
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            padding-right: 2rem;
            border-bottom: 2px solid var(--gold);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-overlay-content.contact-chooser {
            max-width: 560px;
            padding: 2.35rem;
        }

        .contact-choice-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .contact-choice-btn {
            width: 100%;
            justify-content: center;
            min-height: 62px;
        }

        .overlay-title-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            color: var(--gold);
        }

        .service-overlay-body p {
            font-size: 0.95rem;
            color: var(--steel);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .service-overlay-body p:last-child {
            margin-bottom: 0;
        }

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

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Services Section */
        .services-types {
            padding: 7rem 4rem;
            background: var(--snow);
        }

        .auto-types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            align-items: start;
        }

        .auto-type-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: inset 2px 0 0 var(--navy), inset -2px 0 0 var(--navy), inset 0 2px 0 var(--navy);
        }

        .auto-type-card .auto-type-icon {
            width: 48px;
            height: 48px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: var(--shadow-sm);
        }

        .auto-type-card .auto-type-icon svg {
            width: 24px;
            height: 24px;
            color: var(--gold);
        }

        .auto-type-card h3 {
            font-family: var(--heading);
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .auto-type-card p {
            font-size: 0.9rem;
            color: var(--steel);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .auto-type-card .service-list {
            margin-top: 0;
            margin-bottom: 1.5rem;
            text-align: left;
            display: none;
            flex-direction: column;
            gap: 0;
        }

        .auto-type-card .service-list.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .auto-type-card .service-card-toggle {
            margin: auto -2rem -2rem;
        }

        .investigations {
            padding: 7rem 4rem;
            background: var(--snow);
        }

        .situations-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            align-items: flex-start;
        }

        .situations-grid .situation-card {
            flex: 0 1 calc(33.333% - 1.34rem);
            min-width: 280px;
        }

        .situation-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            text-align: center;
            box-shadow: inset 2px 0 0 var(--navy), inset -2px 0 0 var(--navy), inset 0 2px 0 var(--navy);
        }

        .situation-card .investigation-tags {
            display: none;
        }

        .situation-card .investigation-tags.active {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
            animation: fadeIn 0.3s ease;
        }

        .situation-card h2 {
            font-family: var(--heading);
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .situation-card p {
            font-size: 0.95rem;
            color: var(--steel);
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }

        .investigation-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .situation-tag {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--navy);
            background: var(--snow);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            border: 1px solid rgba(0,0,0,0.06);
        }


        /* What's Included Section */
        .whats-included {
            padding: 7rem 4rem;
            background: var(--snow);
        }

        /* Pricing Section */
        .pricing {
            padding: 7rem 4rem 4.75rem;
            background: var(--white);
        }

        .pricing-tiers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 16px;
            box-shadow: inset 2px 0 0 var(--navy), inset -2px 0 0 var(--navy), inset 0 2px 0 var(--navy), inset 0 -2px 0 var(--navy);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
            transform: scale(1.03);
            box-shadow: inset 2px 0 0 var(--navy), inset -2px 0 0 var(--navy), inset 0 2px 0 var(--navy), inset 0 -2px 0 var(--navy);
        }

        .pricing-header {
            background: var(--navy);
            color: var(--white);
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
        }

        .pricing-card.featured .pricing-header {
            background: var(--navy-dark);
        }

        .pricing-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold);
        }

        .pricing-tier-name {
            font-family: var(--body);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gold);
            margin-bottom: 0.75rem;
        }

        .pricing-price {
            font-family: var(--heading);
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .pricing-price span {
            font-family: var(--body);
            font-size: 1.1rem;
            font-weight: 400;
            opacity: 0.8;
        }

        .pricing-tagline {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .pricing-highlight {
            display: inline-block;
            background: var(--gold);
            color: var(--navy-dark);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-body {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .pricing-includes {
            margin-bottom: 0;
        }

        .pricing-includes h3 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }

        .pricing-includes ul {
            list-style: none;
            padding: 0;
        }

        .pricing-includes li {
            font-size: 0.9rem;
            color: var(--steel);
            padding: 0.4rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            line-height: 1.5;
        }

        .pricing-includes li::before {
            content: '✓';
            color: var(--gold-dark);
            font-weight: 700;
            flex-shrink: 0;
        }

        .pricing-rates {
            margin-top: 0.5rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
        }

        .pricing-rates h3 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }

        .pricing-rates ul {
            list-style: none;
            padding: 0;
        }

        .pricing-rates li {
            font-size: 0.9rem;
            color: var(--steel);
            padding: 0.4rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            line-height: 1.5;
        }

        .pricing-rates li::before {
            content: '+';
            color: var(--steel);
            font-weight: 700;
            flex-shrink: 0;
        }

        .pricing-cta {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: auto;
            border-top: 1px solid var(--snow);
        }

        .pricing-cta .btn {
            width: 100%;
        }

        .pricing-guarantee {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: var(--mist);
        }

        /* Shared Pricing Details */
        .pricing-details {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            box-shadow: inset 2px 0 0 var(--navy), inset -2px 0 0 var(--navy), inset 0 2px 0 var(--navy);
            padding: 3rem;
        }

        .pricing-details-title {
            font-family: var(--heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .pricing-feature {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .pricing-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--gold-glow);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pricing-feature-icon svg {
            width: 20px;
            height: 20px;
            color: var(--gold-dark);
        }

        .pricing-feature h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.25rem;
        }

        .pricing-feature p {
            font-size: 0.85rem;
            color: var(--steel);
            line-height: 1.5;
        }

        /* Steps in CTA */
        .cta-steps {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 3rem auto 0;
        }

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

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--navy-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: var(--heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gold);
        }

        .step-card h3 {
            font-family: var(--heading);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.75rem;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--cloud);
            line-height: 1.6;
        }

        .step-connector {
            position: absolute;
            top: 24px;
            left: calc(50% + 32px);
            width: calc(100% - 64px);
            height: 2px;
            background: linear-gradient(90deg, var(--gold), transparent);
            opacity: 0.3;
        }

        .step-card:last-child .step-connector {
            display: none;
        }

        .steps-grid .step-card:nth-child(4) .step-connector {
            display: none;
        }

        /* Trust Section */
        .trust-section {
            padding: 5rem 4rem 3.5rem;
            background: var(--snow);
            border-top: 1px solid rgba(0,0,0,0.06);
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .trust-section .section-subtitle {
            max-width: 700px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .trust-block {
            text-align: center;
            background: var(--white);
            border: 1px solid rgba(27,58,87,0.12);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
        }

        .trust-block-icon {
            width: 48px;
            height: 48px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: var(--shadow-sm);
        }

        .trust-block-icon svg {
            width: 24px;
            height: 24px;
            color: var(--gold);
        }

        .trust-block h3 {
            font-family: var(--heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .trust-block p {
            font-size: 0.85rem;
            color: var(--steel);
            line-height: 1.5;
        }

        /* Reviews */
        .reviews {
            padding: 7rem 4rem 4.75rem;
            background: var(--white);
        }

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

        .review-card {
            background: var(--snow);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid rgba(27,58,87,0.12);
            box-shadow: var(--shadow-sm);
        }

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

        .review-stars svg {
            width: 18px;
            height: 18px;
            color: var(--gold);
            fill: var(--gold);
        }

        .review-text {
            font-size: 1rem;
            color: var(--slate);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            background: var(--gold-glow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--gold-accessible);
            font-size: 0.9rem;
        }

        .review-name {
            font-weight: 600;
            color: var(--navy);
            font-size: 0.95rem;
        }

        .review-date {
            font-size: 0.8rem;
            color: var(--steel);
        }

        /* Service Area */
        .service-area {
            padding: 5rem 4rem;
            background: var(--white);
        }

        .service-area-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .service-area .section-subtitle {
            max-width: 700px;
        }

        .service-area-map {
            margin-top: 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            position: relative;
        }

        #locations-map {
            width: 100%;
            height: 480px;
        }

        /* CTA Section */
        .cta-section {
            padding: 7rem 4rem;
            background: var(--navy);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section .btn.btn-outline {
            border-color: rgba(255,255,255,0.4);
            color: var(--white);
        }

        .cta-section .btn.btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--gold);
            color: var(--gold);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 600px;
            background: radial-gradient(circle, var(--gold-glow) 0%, transparent 50%);
            opacity: 0.5;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: var(--heading);
            font-size: clamp(1.85rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .cta-content p {
            font-size: 1.1rem;
            color: var(--cloud);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-review.hero-review--cta {
            margin-top: 2.5rem;
            background: var(--snow);
        }

        .cta-note {
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: var(--mist);
        }

        /* Footer */
        footer {
            background: var(--navy-dark);
            color: var(--white);
            padding: 4rem 4rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand .logo-text {
            font-family: var(--heading);
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-brand p {
            font-size: 0.95rem;
            color: var(--cloud);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-license {
            font-size: 0.85rem;
            color: var(--mist);
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            border-left: 3px solid var(--gold);
        }

        .footer-column h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            font-size: 0.95rem;
            color: var(--cloud);
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            list-style: none;
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            color: var(--cloud);
            font-size: 1.1rem;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }

        .social-icons a svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .social-icons a:hover {
            background: var(--gold);
            color: var(--navy-dark);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            font-size: 0.85rem;
            color: var(--cloud);
        }

        .footer-bottom a {
            color: var(--cloud);
            text-decoration: none;
        }

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

        .footer-quote {
            max-width: 1200px;
            margin: 2rem auto 0;
            padding-top: 2rem;
            border-top: none;
            font-size: 0.85rem;
            color: var(--cloud);
            font-style: italic;
            text-align: center;
            line-height: 1.8;
        }


        /* Case Studies Section */
        .case-studies {
            padding: 7rem 4rem 4.75rem;
            background: var(--snow);
        }

        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .case-card {
            background: var(--snow);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: inset 2px 0 0 var(--navy), inset -2px 0 0 var(--navy), inset 0 2px 0 var(--navy);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        .case-icon {
            width: 56px;
            height: 56px;
            background: var(--white);
            border-radius: 8px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
        }

        .case-icon svg {
            width: 28px;
            height: 28px;
            color: var(--gold);
        }

        .case-card > p {
            font-size: 0.95rem;
            color: var(--steel);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .case-card h3 {
            font-family: var(--heading);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .case-body {
            display: none;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .case-body.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .case-section {
            margin-bottom: 1.25rem;
        }

        .case-section:last-child {
            margin-bottom: 0;
        }

        .case-section h4 {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .case-section p {
            font-size: 0.9rem;
            color: var(--steel);
            line-height: 1.6;
        }

        .case-outcome p {
            color: var(--slate);
            font-weight: 500;
        }

        .case-toggle {
            margin: auto -2.5rem -2.5rem;
            padding: 1rem 1.5rem;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--navy-dark);
            background: var(--gold-glow);
            border: 2px solid var(--gold);
            border-radius: 0 0 16px 16px;
            transition: background 0.2s ease;
        }

        .case-toggle:hover {
            background: rgba(201, 162, 39, 0.25);
        }

        .case-toggle .chevron {
            transition: transform 0.3s ease;
            font-size: 1.4rem;
            transform: scaleX(1.8);
        }

        .case-toggle.active .chevron {
            transform: rotate(180deg) scaleX(1.8);
        }

        /* FAQs Section */
        .faqs-section {
            padding: 7rem 4rem 4.75rem;
            background: var(--snow);
        }

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

        .faq-item {
            background: var(--white);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid rgba(27,58,87,0.12);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--navy);
            transition: all 0.2s ease;
        }

        .faq-question:hover {
            background: var(--gold-glow);
        }

        .faq-question::after {
            content: '+';
            font-family: var(--body);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gold);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: auto;
            padding-left: 1rem;
        }

        .faq-question.active::after {
            content: '−';
        }

        .faq-answer {
            display: none;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .faq-answer p {
            font-size: 1rem;
            color: var(--steel);
            line-height: 1.7;
        }

        /* Hero Review Badge */
        .hero-review {
            margin-top: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.9rem;
            color: var(--navy);
            background: var(--white);
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e8ecf1;
        }

        /* Footer Privacy Link Spacing */
        .footer-privacy-link {
            margin-left: 1.5rem;
        }

        /* Hero Review Inline Style Replacements */
        .hero-review-stars {
            color: var(--gold);
            letter-spacing: 2px;
            font-size: 1rem;
        }

        .hero-review-score {
            font-weight: 600;
        }

        .hero-review-divider,
        .hero-review-quote {
            color: var(--steel);
        }

        /* Hero Situations Spacing */
        .hero-situations {
            margin-top: 4rem;
        }

        /* About Section Header Override */
        .section-header--about {
            text-align: center;
            padding: 3rem 0 0;
            max-width: 1200px;
            margin: 0 auto 4rem;
        }

        /* Verify & Review Source Links */
        .link-underline {
            color: var(--navy);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid var(--gold);
        }

        .link-underline--sm {
            font-size: 0.85rem;
        }

        /* Pricing CTA Stacked Buttons */
        .pricing-cta .btn + .btn {
            margin-top: 0.75rem;
        }

        /* CTA Steps Content Spacing */
        .cta-content--steps {
            margin-top: 3rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .pricing-features {
                grid-template-columns: 1fr;
            }

            .pricing-tiers {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto 3rem;
            }

            .pricing-card.featured {
                transform: none;
            }
        }

        @media (max-width: 1100px) {
            nav {
                padding: 1rem 2rem;
            }

            .logo-text {
                display: none;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: block;
                order: 3;
            }

            .nav-right {
                order: 2;
                flex: 1;
                justify-content: center;
                gap: 0.75rem;
            }

            .btn.btn-nav-cta {
                flex: 1;
                padding: 0.65rem 1.25rem;
                font-size: 0.9rem;
                justify-content: center;
            }

            .nav-cta-label-default {
                display: none;
            }

            .nav-cta-label-expanded {
                display: inline;
            }

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

            .step-connector {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .license-bar {
                display: none;
            }

            .hero, .services, .support-services, .reviews, .cta-section, .pricing, .whats-included, .case-studies, .faqs-section, .services-types, .investigations, .trust-section, .service-area {
                padding: 4rem 2rem;
            }

            .services-grid,
            .situations-grid {
                flex-direction: column;
            }

            .services-grid .service-card,
            .situations-grid .situation-card {
                flex: 0 1 100%;
            }

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

            .auto-types-grid {
                grid-template-columns: 1fr;
            }

            .case-studies-grid {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
 
            .step-connector {
                display: none;
            }

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

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

        @media (max-width: 768px) {
            nav {
                padding: 0.75rem 1rem;
                gap: 0.75rem;
            }

            .logo-text {
                display: none;
            }

            .nav-right {
                flex-shrink: 1;
                min-width: 0;
            }

            .btn.btn-nav-cta {
                padding: 0.5rem 0.75rem;
                font-size: 0.8rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn,
            .cta-buttons .btn {
                width: 100%;
            }

            .hero-trust {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .steps-grid, .trust-grid {
                grid-template-columns: 1fr;
            }
 
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .contact-choice-grid {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }

            .footer-bottom > div {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }

            .footer-bottom a {
                margin: 0;
            }

            #locations-map {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .nav-cta-label {
                display: none;
            }

            .btn.btn-nav-cta {
                padding: 0.5rem;
                gap: 0;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .hero-text {
                font-size: 1.05rem;
            }

            .hero-review {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
            }
        }

        /* Accessibility: Skip Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--navy);
            color: var(--white);
            padding: 8px 16px;
            z-index: 1000;
            text-decoration: none;
            font-weight: 500;
        }

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

        /* Accessibility: Focus Visible (with fallback for older browsers) */
        *:focus {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        *:focus:not(:focus-visible) {
            outline: none;
        }

        *:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        /* Accessibility: Screen Reader Only */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Accessibility: Touch Targets */
        @media (pointer: coarse) {
            .nav-links a,
            .cta-primary,
            .cta-secondary,
            .btn-primary,
            .btn-outline,
            .btn-secondary,
            .service-tag,
            .faq-question,
            .footer-links a,
            .social-links a {
                min-height: 48px;
                min-width: 48px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .btn.btn-nav-cta {
                min-height: unset;
            }

            .service-tag,
            .faq-question {
                display: flex;
                justify-content: space-between;
            }
        }

        /* Accessibility: Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Print Styles */
        @media print {
            .skip-link,
            .btn,
            .hero-actions,
            .cta-section,
            nav {
                display: none !important;
            }
            body {
                font-size: 12pt;
                background: white;
                color: black;
            }
            a {
                text-decoration: underline;
                color: black;
            }
            .hero,
            .services,
            .support-services,
            .whats-included,
            .pricing,
            .trust-section,
            .service-area,
            .reviews,
            footer {
                background: white !important;
                color: black !important;
            }
            h1, h2, h3, h4, h5, p {
                color: black !important;
            }
            img {
                max-width: 100%;
                page-break-inside: avoid;
            }
        }

        /* Flex Gap Fallback for Safari < 14.1 (.no-flexgap class added by detection script) */
        .no-flexgap nav > * + * { margin-left: 2rem; }
        .no-flexgap .nav-links > * + * { margin-left: 1.25rem; }
        .no-flexgap .nav-right > * + * { margin-left: 0.75rem; }
        .no-flexgap .hero-badge > * + * { margin-left: 0.5rem; }
        .no-flexgap .hero-review > * + * { margin-left: 0.6rem; }
        .no-flexgap .hero-actions > * + * { margin-left: 1rem; }
        .no-flexgap .hero-trust > * + * { margin-left: 2rem; }
        .no-flexgap .trust-badge > * + * { margin-left: 0.5rem; }
        .no-flexgap .btn > * + * { margin-left: 0.5rem; }
        .no-flexgap .cta-buttons > * + * { margin-left: 1rem; }
        .no-flexgap .review-author > * + * { margin-left: 0.75rem; }
        .no-flexgap .review-stars > * + * { margin-left: 0.25rem; }
        .no-flexgap .pricing-feature > * + * { margin-left: 1rem; }
        .no-flexgap .pricing-includes li > * + * { margin-left: 0.5rem; }
        .no-flexgap .pricing-rates li > * + * { margin-left: 0.5rem; }
        .no-flexgap .service-card-toggle > * + * { margin-top: 0.35rem; }
        .no-flexgap .case-toggle > * + * { margin-top: 0.35rem; }
        .no-flexgap .mobile-menu > * + * { margin-top: 1.5rem; }
        .no-flexgap .services-grid { margin: -1rem; }
        .no-flexgap .services-grid > * { margin: 1rem; }
        .no-flexgap .situations-grid { margin: -1rem; }
        .no-flexgap .situations-grid > * { margin: 1rem; }
        .no-flexgap .investigation-tags { margin: -0.25rem; }
        .no-flexgap .investigation-tags > * { margin: 0.25rem; }
        .no-flexgap .social-icons { margin: -0.5rem; }
        .no-flexgap .social-icons > * { margin: 0.5rem; }

        @media (max-width: 992px) {
            .no-flexgap .services-grid,
            .no-flexgap .situations-grid { margin: 0; }
            .no-flexgap .services-grid > *,
            .no-flexgap .situations-grid > * { margin: 0; }
            .no-flexgap .services-grid > * + *,
            .no-flexgap .situations-grid > * + * { margin-top: 2rem; }
        }

        @media (max-width: 768px) {
            .no-flexgap nav > * + * { margin-left: 0.75rem; }
            .no-flexgap .hero-actions > * + * { margin-left: 0; margin-top: 1rem; }
            .no-flexgap .hero-trust > * + * { margin-left: 0; margin-top: 1rem; }
            .no-flexgap .cta-buttons > * + * { margin-left: 0; margin-top: 1rem; }
            .no-flexgap .footer-bottom { margin: -0.25rem -0.75rem; }
            .no-flexgap .footer-bottom > * { margin: 0.25rem 0.75rem; }
        }

        @media (max-width: 480px) {
            .no-flexgap .btn.btn-nav-cta > * + * { margin-left: 0; }
        }
    
        /* Inline SVG icons */
        .hp-icon { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; vertical-align: -0.125em; }
