    :root {
        --navy-900: #001a33;
        --navy-800: #002244;
        --navy-700: #003366;
        --navy-600: #004488;
        --navy-500: #0055aa;
        --navy-400: #3377bb;
        --navy-300: #5599cc;
        --navy-200: #88bbdd;
        --navy-100: #cce0f0;
        --navy-50: #e8f4fc;
        --gold: #c9a227;
        --gold-light: #e8c547;
        --gold-pale: #f5e6b3;
        --coral: #e11d48;
        --coral-hover: #be123c;
        --warm-50: #FAFAF9;
        --warm-100: #F5F5F4;
        --warm-200: #E8E6E3;
        --warm-300: #D4D0CA;
        --warm-400: #A8A29E;
        --warm-500: #78716C;
        --warm-600: #57534E;
        --warm-700: #44403C;
        --warm-800: #292524;
        --white: #ffffff;
        --text-primary: #1a1a1a;
        --text-muted: #475569;
        --g2-red: #FF492C;
        --g2-orange: #FF6849;
        --border-subtle: rgba(0, 51, 102, 0.1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /*html {
        scroll-behavior: smooth;
    }*/
.grecaptcha-badge {
    visibility: hidden !important;
}
    body {
        font-family: 'Montserrat', sans-serif;
        background: var(--warm-50);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, .serif {
        font-family: 'Cormorant Garamond', Georgia, serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px;
    }

    .gold-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        margin-bottom: 24px;
    }

        .gold-line.center {
            margin: 0 auto 24px;
        }

    .gold {
        color: var(--gold);
        font-style: italic;
    }

    /* ============================================
       HEADER
    ============================================ */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--white);
        border-bottom: 1px solid var(--border-subtle);
        transition: all 0.3s ease;
    }

        header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
        }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 85px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .logo-mark {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--gold);
    }

        .logo-mark span {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 1px;
        }

    .logo-text {
        font-family: 'Cormorant Garamond', serif;
        font-size: 20px;
        font-weight: 600;
        color: var(--navy-800);
        letter-spacing: 1px;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .header-phone {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--warm-600);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .header-phone:hover {
            color: var(--navy-700);
        }

        .header-phone svg {
            width: 16px;
            height: 16px;
        }

    .header-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 28px;
        background: var(--coral);
        color: var(--white);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .header-cta:hover {
            background: var(--coral-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
        }

    /* ============================================
       BLOG HERO
    ============================================ */
    .blog-hero {
        position: relative;
        padding: 140px 0 70px;
        background: linear-gradient(135deg, var(--warm-50) 0%, var(--warm-100) 100%);
        overflow: hidden;
    }

        .blog-hero .hero-bg {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: linear-gradient(var(--navy-700) 1px, transparent 1px), linear-gradient(90deg, var(--navy-700) 1px, transparent 1px);
            background-size: 80px 80px;
        }

        .blog-hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0,1fr) 380px;
            gap: 60px;
            align-items: center;
        }

    .blog-hero-content {
        max-width: 700px;
    }

    .blog-breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
    }

        .blog-breadcrumb a {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .blog-breadcrumb a:hover {
                color: var(--gold);
            }

        .blog-breadcrumb .separator {
            color: var(--warm-300);
            font-size: 10px;
        }

        .blog-breadcrumb .current {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
        }

    .hero-label-row {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 24px;
    }

    .hero-label {
        display: inline-flex;
        align-items: center;
        gap: 16px;
    }

        .hero-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .hero-label span {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
        }

    .partner-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        background: var(--white);
        border: 1px solid var(--navy-200);
    }

    .partner-badge-logo {
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--g2-red);
        padding-right: 10px;
        border-right: 1px solid var(--warm-300);
    }

    .partner-badge-text {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--navy-700);
    }

    .blog-hero h1 {
        font-size: clamp(32px, 3.5vw, 44px);
        font-weight: 400;
        line-height: 1.15;
        color: var(--navy-800);
        margin-bottom: 20px;
    }

        .blog-hero h1 .highlight {
            color: var(--navy-800);
            font-weight: 600;
            font-size: 1.05em;
        }

    .blog-hero-subtitle {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-muted);
        max-width: 560px;
        margin-bottom: 28px;
    }

    .blog-meta {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .blog-meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--text-muted);
    }

        .blog-meta-item svg {
            width: 16px;
            height: 16px;
            color: var(--navy-400);
        }

    .blog-meta-divider {
        width: 1px;
        height: 16px;
        background: var(--warm-300);
    }

    .blog-author-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 13px;
        color: var(--white);
    }

    /* Hero Visual Card */
    .hero-visual-card {
        position: relative;
        background: var(--white);
        border: 1px solid var(--border-subtle);
        box-shadow: 0 20px 60px rgba(0, 51, 102, 0.1);
        padding: 36px;
    }

    .visual-card-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--warm-200);
    }

    .partner-logo-large {
        width: 72px;
        height: 72px;
        background: var(--warm-100);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .partner-logo-large svg {
            width: 40px;
            height: 40px;
            color: var(--g2-red);
        }

    .visual-card-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--navy-800);
    }

    .visual-card-subtitle {
        font-size: 13px;
        color: var(--text-muted);
        margin-top: 4px;
    }

    .visual-features {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-bottom: 24px;
    }

    .visual-feature {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .visual-feature-icon {
        width: 38px;
        height: 38px;
        border: 1px solid var(--navy-200);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .visual-feature-icon svg {
            width: 16px;
            height: 16px;
            color: var(--gold);
        }

    .visual-feature-text {
        font-size: 13px;
        color: var(--warm-700);
    }

    .visual-accent {
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #FF492C, #FF6849);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 2px solid var(--white);
        box-shadow: 0 12px 40px rgba(255, 73, 44, 0.25);
    }

        .visual-accent .number {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }

        .visual-accent .label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--white);
            opacity: 0.9;
            margin-top: 4px;
        }


    .g2-badges-row {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 28px;
    }

        .g2-badges-row > svg {
            height: 130px;
            width: auto;
        }

    /* ============================================
       SECTION LABELS
    ============================================ */
    .section-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-bottom: 16px;
    }

        .section-label::before,
        .section-label::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .section-label span {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
        }

    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 48px;
    }

    .section-title {
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(28px, 3vw, 36px);
        font-weight: 700;
        color: var(--navy-800);
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 16px;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* ============================================
       BLOG CONTENT LAYOUT
    ============================================ */
    .blog-layout {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 60px;
        padding: 60px 0 20px;
    }

    /* ============================================
       ARTICLE CONTENT
    ============================================ */
    .article-content {
        max-width: 740px;
    }

        .article-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--navy-800);
            margin: 48px 0 20px;
            position: relative;
            padding-top: 48px;
        }

            .article-content h2::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 40px;
                height: 2px;
                background: linear-gradient(90deg, var(--gold), var(--gold-light));
            }

            .article-content h2:first-child {
                margin-top: 0;
            }

        .article-content p {
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .article-content strong {
            color: var(--navy-800);
            font-weight: 600;
        }

        .article-content a {
            color: var(--navy-600);
            text-decoration: underline;
            text-decoration-color: var(--navy-200);
            text-underline-offset: 3px;
            transition: all 0.3s ease;
        }

            .article-content a:hover {
                color: var(--gold);
                text-decoration-color: var(--gold);
            }

    /* ============================================
       G2 RECOGNITION CARDS
    ============================================ */
    .g2-highlights-section {
        margin: 28px 0 32px;
    }

    .g2-highlight-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .g2-highlight-card {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        background: var(--white);
        border: 1px solid var(--border-subtle);
        padding: 24px;
        transition: all 0.3s ease;
    }

        .g2-highlight-card:hover {
            border-color: var(--gold);
            box-shadow: 0 8px 24px rgba(0, 51, 102, 0.08);
            transform: translateY(-4px);
        }

    .g2-highlight-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .g2-highlight-icon svg {
            width: 22px;
            height: 22px;
            color: var(--gold-light);
        }

    .g2-highlight-content h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 20px;
        font-weight: 600;
        color: var(--navy-800);
        margin-bottom: 6px;
    }

    .g2-highlight-content p {
        font-size: 13px;
        line-height: 1.6;
        color: var(--text-muted);
        margin: 0;
    }

    /* ============================================
       REVIEW QUOTE CARDS
    ============================================ */
    .review-cards-section {
        margin: 28px 0 32px;
    }

    .review-card {
        background: var(--white);
        border: 1px solid var(--border-subtle);
        padding: 28px 28px 24px;
        margin-bottom: 16px;
        position: relative;
        transition: all 0.3s ease;
    }

        .review-card:hover {
            border-color: var(--gold);
            box-shadow: 0 8px 24px rgba(0, 51, 102, 0.08);
        }

        .review-card::before {
            content: '\201C';
            position: absolute;
            top: 12px;
            left: 20px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 60px;
            color: var(--gold-pale);
            line-height: 1;
        }

        .review-card blockquote {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-muted);
            font-style: italic;
            margin: 0;
            padding-left: 8px;
        }

        .review-card .review-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 12px;
            padding-left: 8px;
        }

            .review-card .review-stars svg {
                width: 16px;
                height: 16px;
                color: var(--gold);
                fill: var(--gold);
            }

        .review-card .review-source {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--warm-200);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--warm-500);
            padding-left: 8px;
        }

            .review-card .review-source .g2-dot {
                width: 8px;
                height: 8px;
                background: var(--g2-red);
                border-radius: 50%;
            }

    /* ============================================
       SIDEBAR
    ============================================ */
    .blog-sidebar {
        position: sticky;
        top: 110px;
        align-self: start;
    }

    .sidebar-toc {
        background: var(--white);
        border: 1px solid var(--border-subtle);
        padding: 28px;
        margin-bottom: 24px;
    }

        .sidebar-toc h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 16px;
        }

    .toc-list {
        list-style: none;
    }

        .toc-list li {
            border-left: 2px solid var(--warm-200);
            transition: all 0.3s ease;
        }

            .toc-list li.active {
                border-left-color: var(--gold);
            }

            .toc-list li a {
                display: block;
                padding: 8px 16px;
                font-size: 13px;
                color: var(--text-muted);
                text-decoration: none;
                transition: all 0.3s ease;
            }

                .toc-list li a:hover {
                    color: var(--gold);
                }

            .toc-list li.active a {
                color: var(--navy-800);
                font-weight: 500;
            }

    .sidebar-cta {
        background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
        padding: 28px;
        margin-bottom: 24px;
    }

        .sidebar-cta h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 500;
            color: var(--white);
            margin-bottom: 12px;
        }

        .sidebar-cta p {
            font-size: 13px;
            color: var(--navy-200);
            line-height: 1.7;
            margin-bottom: 20px;
        }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background: var(--coral);
        color: var(--white);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .btn-primary:hover {
            background: var(--coral-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
        }

        .btn-primary svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

    .sidebar-related {
        background: var(--white);
        border: 1px solid var(--border-subtle);
        padding: 28px;
    }

        .sidebar-related h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--navy-800);
            margin-bottom: 16px;
        }

    .related-post {
        display: block;
        text-decoration: none;
        padding: 14px 0;
        border-bottom: 1px solid var(--warm-200);
        transition: all 0.3s ease;
    }

        .related-post:last-child {
            border-bottom: none;
        }

        .related-post:hover {
            padding-left: 8px;
        }

    .related-post-category {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 4px;
    }

    .related-post-title {
        font-size: 14px;
        font-weight: 500;
        color: var(--navy-800);
        line-height: 1.5;
    }

    /* ============================================
       ARTICLE CALLOUT
    ============================================ */
    .article-callout {
        background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
        padding: 44px;
        margin: 48px 0;
        position: relative;
        overflow: hidden;
    }

        .article-callout::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
        }

        .article-callout h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }

        .article-callout p {
            font-size: 15px;
            color: var(--navy-200);
            line-height: 1.8;
            margin-bottom: 24px;
            max-width: 600px;
        }

    .callout-features {
        display: flex;
        gap: 28px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }

    .callout-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: var(--navy-200);
    }

        .callout-feature svg {
            width: 18px;
            height: 18px;
            color: var(--gold);
            flex-shrink: 0;
        }

    /* ============================================
       PROCESS / WHY G2 SECTION
    ============================================ */
    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        position: relative;
    }

        .process-grid::before {
            content: '';
            position: absolute;
            top: 36px;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

    .process-step {
        text-align: center;
        position: relative;
    }

    .process-number {
        width: 72px;
        height: 72px;
        border: 1px solid var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        background: var(--white);
        position: relative;
        z-index: 1;
    }

        .process-number svg {
            width: 28px;
            height: 28px;
            color: var(--navy-700);
        }

    .process-step-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 8px;
    }

    .process-step h3 {
        font-size: 22px;
        font-weight: 500;
        color: var(--navy-800);
        margin-bottom: 10px;
    }

    .process-step p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-muted);
    }

    /* ============================================
       CTA SECTION
    ============================================ */
.cta-section {
    padding: 80px 0;
    padding-top: 130px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    position: relative;
    overflow: hidden;
}

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
        }

    .cta-inner {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 60px;
        align-items: start;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px;
    }

    .cta-content {
        padding-top: 12px;
    }

    .section-label-light::before,
    .section-label-light::after {
        background: var(--gold);
        opacity: 0.5;
    }

    .cta-title {
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(28px, 3vw, 36px);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .cta-subtitle {
        font-size: 16px;
        color: var(--navy-200);
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .cta-features {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 32px;
    }

    .cta-feature {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: var(--navy-200);
    }

        .cta-feature svg {
            width: 18px;
            height: 18px;
            color: var(--gold);
            flex-shrink: 0;
        }

    .cta-contact {
        margin-top: 8px;
    }

        .cta-contact p {
            font-size: 13px;
            color: var(--navy-300);
            margin-bottom: 8px;
        }

    .cta-phone {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 18px;
        font-weight: 500;
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .cta-phone:hover {
            color: var(--gold);
        }

        .cta-phone svg {
            width: 20px;
            height: 20px;
        }

    /* ============================================
       CTA FORM
    ============================================ */
    .cta-form-container {
        background: var(--white);
        padding: 36px;
    }

    .form-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 26px;
        font-weight: 500;
        color: var(--navy-800);
        margin-bottom: 8px;
    }

    .form-title-line {
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 18px;
    }

        .form-group label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--navy-600);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--navy-100);
            font-size: 14px;
            font-family: inherit;
            transition: all 0.2s ease;
            background: var(--warm-50);
        }

            .form-group input:focus,
            .form-group textarea:focus {
                outline: none;
                border-color: var(--navy-400);
                background: var(--white);
                box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.08);
            }

            .form-group input::placeholder,
            .form-group textarea::placeholder {
                color: var(--warm-400);
            }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

    .form-submit {
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 32px;
        background: var(--coral);
        color: var(--white);
        border: none;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .form-submit:hover {
            background: var(--coral-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
        }

        .form-submit svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }

        .form-submit:hover svg {
            transform: translateX(4px);
        }

    .form-disclaimer {
        font-size: 12px;
        color: var(--text-muted);
        text-align: center;
        margin-top: 16px;
    }

        .form-disclaimer a {
            color: var(--navy-600);
            text-decoration: none;
        }

            .form-disclaimer a:hover {
                text-decoration: underline;
            }

    /* ============================================
       FOOTER
    ============================================ */
    footer {
        padding: 28px 0;
        background: var(--navy-900);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px;
    }

    .footer-brand {
        display: flex;
        align-items: center;
    }

        .footer-brand .logo-mark {
            background: transparent;
            border-color: var(--navy-400);
        }

            .footer-brand .logo-mark span {
                color: var(--navy-300);
            }

        .footer-brand .logo-text {
            color: var(--white);
        }

    .footer-text {
        font-size: 13px;
        color: var(--navy-400);
        margin-left: 24px;
    }

    .footer-links {
        display: flex;
        gap: 24px;
    }

        .footer-links a {
            font-size: 13px;
            color: var(--navy-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-links a:hover {
                color: var(--gold);
            }

    /* ============================================
       MOBILE MENU
    ============================================ */
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--navy-700);
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

    /* ============================================
       SCROLL ANIMATIONS
    ============================================ */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

    /* ============================================
       QUOTE MODAL
    ============================================ */
    .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 26, 51, 0.6);
        backdrop-filter: blur(4px);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 24px;
    }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

    .modal {
        background: var(--white);
        width: 100%;
        max-width: 600px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 32px 80px rgba(0, 26, 51, 0.3);
        transform: translateY(20px) scale(0.97);
        transition: all 0.3s ease;
    }

    .modal-overlay.active .modal {
        transform: translateY(0) scale(1);
    }

    .modal-header {
        background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
        padding: 24px 32px 20px;
        position: relative;
    }

        .modal-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
        }

        .modal-header h3 {
            font-size: 24px;
            font-weight: 500;
            color: var(--white);
            margin-bottom: 4px;
        }

        .modal-header p {
            font-size: 13px;
            color: var(--navy-200);
            line-height: 1.5;
        }

    .modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--gold);
        }

        .modal-close svg {
            width: 18px;
            height: 18px;
            color: var(--white);
        }

    .modal-body {
        padding: 24px 32px 28px;
    }

        .modal-body .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .modal-body .form-group {
            margin-bottom: 14px;
        }

            .modal-body .form-group label {
                display: block;
                font-size: 10px;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: var(--navy-600);
                margin-bottom: 6px;
            }

            .modal-body .form-group input,
            .modal-body .form-group textarea {
                width: 100%;
                padding: 11px 14px;
                border: 1px solid var(--navy-100);
                font-size: 14px;
                font-family: inherit;
                transition: all 0.2s ease;
                background: var(--warm-50);
            }

                .modal-body .form-group input:focus,
                .modal-body .form-group textarea:focus {
                    outline: none;
                    border-color: var(--navy-400);
                    background: var(--white);
                    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.08);
                }

                .modal-body .form-group input::placeholder,
                .modal-body .form-group textarea::placeholder {
                    color: var(--warm-400);
                }

            .modal-body .form-group textarea {
                resize: vertical;
                min-height: 60px;
            }

        .modal-body .form-submit {
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--coral);
            color: var(--white);
            border: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
        }

            .modal-body .form-submit:hover {
                background: var(--coral-hover);
                transform: translateY(-2px);
                box-shadow: 0 4px 16px rgba(225, 29, 72, 0.25);
            }

            .modal-body .form-submit svg {
                width: 16px;
                height: 16px;
                transition: transform 0.2s ease;
            }

            .modal-body .form-submit:hover svg {
                transform: translateX(4px);
            }

        .modal-body .form-disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            margin-top: 16px;
        }

            .modal-body .form-disclaimer a {
                color: var(--navy-600);
                text-decoration: none;
            }

                .modal-body .form-disclaimer a:hover {
                    text-decoration: underline;
                }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
        .header-right .header-phone {
            display: none;
        }

        .blog-hero .container {
            grid-template-columns: 1fr;
        }

        .hero-visual-card {
            display: none;
        }

        .blog-layout {
            grid-template-columns: 1fr;
        }

        .blog-sidebar {
            position: static;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .sidebar-toc {
            display: none;
        }

        .process-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .cta-inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .cta-content {
            text-align: center;
        }

        .cta-features {
            align-items: center;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 24px;
        }

        .header-inner {
            padding: 0 24px;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        .blog-hero h1 {
            font-size: 32px;
        }

        .blog-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .blog-meta-divider {
            display: none;
        }

        .g2-highlight-grid {
            grid-template-columns: 1fr;
        }

        .process-grid {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

            .process-grid::before {
                display: none;
            }

        .blog-sidebar {
            grid-template-columns: 1fr;
        }

        .cta-inner {
            padding: 0 24px;
        }

        .cta-form-container {
            padding: 28px;
        }

        .footer-inner {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }

        .footer-text {
            margin-left: 0;
            margin-top: 8px;
        }
    }

    @media (max-width: 640px) {
        .blog-hero {
            padding: 120px 0 50px;
        }

        .hero-label-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .blog-layout {
            padding: 40px 0 20px;
        }

        .article-callout {
            padding: 28px;
        }

        .callout-features {
            flex-direction: column;
            gap: 12px;
        }

        .process-grid {
            grid-template-columns: 1fr;
        }

        .cta-title {
            font-size: 32px;
        }
    }

    @media (max-width: 640px) {
        .modal-header {
            padding: 24px;
        }

        .modal-body {
            padding: 24px;
        }
    }

    .blog-hero > .container {
        max-width: 1200px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: minmax(0,1fr) 380px;
        gap: 60px;
        align-items: center;
    }
