/* =====================================================
   DoctorsManagement — Coding & Documentation Review
   Extracted from mockup, namespaced under .dmc-coding-review
   ===================================================== */

/* =====================================================
   GOOGLE FONTS
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Libre+Franklin:wght@300;400;500;600;700&family=DM+Serif+Display&display=swap');

/* =====================================================
   WRAPPER ISOLATION
   ===================================================== */
.dmc-coding-review {
    all: initial;
    display: block;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #182B49;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    box-sizing: border-box;

    /* CSS Variables */
    --dark-blue: #182B49;
    --primary-blue: #006A96;
    --gold: #C69214;
    --teal: #00C6D7;
    --green: #6E963B;
    --orange: #FC8900;
    --black: #000000;
    --cool-gray: #747678;
    --warm-gray: #B6B1A9;
    --light-gray: #F8F9FB;
    --off-white: #FAFBFC;
    --white: #FFFFFF;
    --font-display: 'Comfortaa', cursive;
    --font-serif: 'DM Serif Display', serif;
    --font-body: 'Libre Franklin', sans-serif;
    --shadow-sm: 0 1px 3px rgba(24, 43, 73, 0.06);
    --shadow-md: 0 4px 16px rgba(24, 43, 73, 0.08);
    --shadow-lg: 0 12px 32px rgba(24, 43, 73, 0.12);
    --shadow-xl: 0 24px 64px rgba(24, 43, 73, 0.16);
}

.dmc-coding-review *,
.dmc-coding-review *::before,
.dmc-coding-review *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.dmc-coding-review img {
    max-width: 100%;
    height: auto;
    display: block;
}

.dmc-coding-review a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dmc-coding-review a:hover {
    color: var(--gold);
    text-decoration: none;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.dmc-coding-review h1,
.dmc-coding-review h2,
.dmc-coding-review h3,
.dmc-coding-review h4,
.dmc-coding-review h5,
.dmc-coding-review h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    color: var(--dark-blue);
}

.dmc-cr-serif-heading {
    font-family: var(--font-serif);
    font-weight: 400;
}

.dmc-coding-review h1 { font-size: clamp(40px, 5vw, 64px); }
.dmc-coding-review h2 { font-size: clamp(30px, 4vw, 44px); }
.dmc-coding-review h3 { font-size: clamp(24px, 3vw, 32px); }
.dmc-coding-review h4 { font-size: clamp(20px, 2vw, 24px); }
.dmc-coding-review h5 { font-size: 18px; }

.dmc-coding-review p {
    margin-bottom: 20px;
    font-size: 17px;
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--dark-blue);
}

.dmc-cr-lead {
    font-size: 19px;
    line-height: 1.8;
    color: var(--cool-gray);
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.dmc-cr-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.dmc-cr-container-narrow {
    max-width: 900px;
}

.dmc-cr-section {
    padding: 80px 0;
}

.dmc-cr-section-lg {
    padding: 96px 0;
}

.dmc-cr-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.dmc-cr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.dmc-cr-btn:hover {
    text-decoration: none;
}

.dmc-cr-btn-primary {
    background: var(--gold);
    color: var(--dark-blue);
    border-color: var(--gold);
}

.dmc-cr-btn-primary:hover {
    background: #d9a116;
    border-color: #d9a116;
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 146, 20, 0.35);
    text-decoration: none;
}

.dmc-cr-btn-dark {
    background: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

.dmc-cr-btn-dark:hover {
    background: #1e3a5f;
    border-color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.dmc-cr-btn-outline {
    background: transparent;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.dmc-cr-btn-outline:hover {
    background: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
}

.dmc-cr-btn-white {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.dmc-cr-btn-white:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    text-decoration: none;
}

.dmc-cr-btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.dmc-cr-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1e3a5f 50%, var(--primary-blue) 100%);
    overflow: hidden;
}

.dmc-cr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 198, 215, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(198, 146, 20, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.dmc-cr-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.dmc-cr-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dmc-cr-hero-content {
    color: var(--white);
}

.dmc-cr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
}

.dmc-cr-hero-badge svg {
    width: 16px;
    height: 16px;
}

.dmc-coding-review .dmc-cr-hero-title {
    margin-bottom: 24px;
    line-height: 1.15;
    color: #FFFFFF;
}

.dmc-cr-hero-title span {
    color: var(--gold);
}

.dmc-cr-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.8;
}

.dmc-cr-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.dmc-cr-hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.dmc-cr-hero-stat {
    text-align: left;
}

.dmc-cr-hero-stat-number {
    font-family: var(--font-serif);
    font-size: 40px;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.dmc-cr-hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.dmc-cr-hero-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.dmc-cr-hero-form-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.dmc-cr-hero-form-card > p {
    color: var(--cool-gray);
    margin-bottom: 24px;
    font-size: 15px;
}

/* Gravity Forms inside hero card */
.dmc-cr-hero-form-card .gform_wrapper {
    margin: 0;
    padding: 0;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.dmc-cr-trust-bar {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.dmc-cr-trust-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.dmc-cr-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cool-gray);
    font-size: 15px;
    font-family: var(--font-body);
}

.dmc-cr-trust-item svg {
    width: 22px;
    height: 22px;
    color: var(--green);
}

/* =====================================================
   WHAT IS MEDICAL BILLING AUDIT SECTION
   ===================================================== */
.dmc-cr-what-is-section {
    background: var(--light-gray);
}

.dmc-cr-what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.dmc-cr-what-is-content h2 {
    margin-bottom: 24px;
}

.dmc-cr-what-is-content p {
    color: var(--cool-gray);
}

.dmc-cr-what-is-content .dmc-cr-lead {
    margin-bottom: 24px;
}

.dmc-cr-approach-cards {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.dmc-cr-approach-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.dmc-cr-approach-number {
    width: 40px;
    height: 40px;
    background: var(--dark-blue);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.dmc-cr-approach-card h5 {
    margin-bottom: 4px;
}

.dmc-cr-approach-card p {
    font-size: 15px;
    color: var(--cool-gray);
    margin-bottom: 0;
}

.dmc-cr-what-is-image {
    position: relative;
}

.dmc-cr-what-is-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.dmc-cr-floating-stat {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.dmc-cr-floating-stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmc-cr-floating-stat-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.dmc-cr-floating-stat-text strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--dark-blue);
    line-height: 1;
}

.dmc-cr-floating-stat-text span {
    font-size: 13px;
    color: var(--cool-gray);
    font-family: var(--font-body);
}

/* =====================================================
   MEDICAL BILLING AUDIT TYPES
   ===================================================== */
.dmc-cr-audit-types-section {
    background: var(--white);
}

.dmc-cr-audit-types-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.dmc-cr-audit-types-header h2 {
    margin-bottom: 16px;
}

.dmc-cr-audit-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dmc-cr-audit-type-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.dmc-cr-audit-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dmc-cr-audit-type-card:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.dmc-cr-audit-type-card:hover::before {
    transform: scaleX(1);
}

.dmc-cr-audit-type-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmc-cr-audit-type-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.dmc-cr-audit-type-card h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.dmc-cr-audit-type-card p {
    font-size: 15px;
    color: var(--cool-gray);
    margin-bottom: 0;
}

/* =====================================================
   OUR AUDIT SERVICES
   ===================================================== */
.dmc-cr-services-section {
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.dmc-cr-services-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 215, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dmc-cr-services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.dmc-cr-services-header h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.dmc-cr-services-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.dmc-cr-services-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.dmc-cr-service-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dmc-cr-service-step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.dmc-cr-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.dmc-cr-step-number {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.dmc-cr-service-step h4 {
    color: var(--white);
    font-size: 20px;
}

.dmc-cr-service-step p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* =====================================================
   MEDICAL BILLING AUDIT PROCESS
   ===================================================== */
.dmc-cr-process-section {
    background: var(--light-gray);
}

.dmc-cr-process-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.dmc-cr-process-content h2 {
    margin-bottom: 24px;
}

.dmc-cr-process-content > p {
    color: var(--cool-gray);
    margin-bottom: 32px;
}

.dmc-cr-process-checklist {
    list-style: none;
}

.dmc-cr-process-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    font-family: var(--font-body);
}

.dmc-cr-process-checklist li:last-child {
    border-bottom: none;
}

.dmc-cr-process-checklist svg {
    width: 24px;
    height: 24px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.dmc-cr-process-checklist strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark-blue);
    font-family: var(--font-body);
}

.dmc-cr-process-checklist span {
    font-size: 15px;
    color: var(--cool-gray);
    font-family: var(--font-body);
}

.dmc-cr-process-timeline {
    position: relative;
    padding-left: 48px;
}

.dmc-cr-process-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--teal));
}

.dmc-cr-timeline-step {
    position: relative;
    padding-bottom: 40px;
}

.dmc-cr-timeline-step:last-child {
    padding-bottom: 0;
}

.dmc-cr-timeline-step::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 4px;
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--light-gray);
    box-shadow: 0 0 0 2px var(--gold);
}

.dmc-cr-timeline-step h5 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 18px;
}

.dmc-cr-timeline-step p {
    color: var(--cool-gray);
    font-size: 15px;
    margin-bottom: 0;
}

/* =====================================================
   IMPORTANCE SECTION
   ===================================================== */
.dmc-cr-importance-section {
    background: var(--white);
}

.dmc-cr-importance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.dmc-cr-importance-content h2 {
    margin-bottom: 24px;
}

.dmc-cr-importance-content > p {
    color: var(--cool-gray);
    margin-bottom: 24px;
}

.dmc-cr-importance-list {
    list-style: none;
    margin-bottom: 32px;
}

.dmc-cr-importance-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--dark-blue);
}

.dmc-cr-importance-list svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.dmc-cr-benefits-cards {
    display: grid;
    gap: 24px;
}

.dmc-cr-benefit-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.dmc-cr-benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.dmc-cr-benefit-card h5 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.dmc-cr-benefit-card p {
    font-size: 15px;
    color: var(--cool-gray);
    margin-bottom: 0;
}

/* =====================================================
   WHEN TO CONDUCT AUDIT
   ===================================================== */
.dmc-cr-when-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.dmc-cr-when-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198, 146, 20, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dmc-cr-when-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.dmc-cr-when-header h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.dmc-cr-when-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
}

.dmc-cr-when-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.dmc-cr-when-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.dmc-cr-when-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.dmc-cr-when-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmc-cr-when-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--dark-blue);
}

.dmc-cr-when-card h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.dmc-cr-when-card p {
    font-size: 15px;
    color: var(--cool-gray);
    margin-bottom: 0;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.dmc-cr-why-section {
    background: var(--light-gray);
}

.dmc-cr-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.dmc-cr-why-content h2 {
    margin-bottom: 24px;
}

.dmc-cr-why-content > p {
    color: var(--cool-gray);
    margin-bottom: 32px;
}

.dmc-cr-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dmc-cr-why-feature {
    display: flex;
    gap: 16px;
}

.dmc-cr-why-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.dmc-cr-why-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.dmc-cr-why-feature h5 {
    margin-bottom: 4px;
    font-size: 16px;
}

.dmc-cr-why-feature p {
    font-size: 14px;
    color: var(--cool-gray);
    margin-bottom: 0;
}

.dmc-cr-team-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dmc-cr-team-member {
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.dmc-cr-team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.dmc-cr-team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--light-gray);
}

.dmc-cr-team-member h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.dmc-cr-team-member span {
    font-size: 13px;
    color: var(--cool-gray);
    font-family: var(--font-body);
}

/* =====================================================
   MEDICAL BILLING AUDIT FAQ
   ===================================================== */
.dmc-cr-faq-section {
    background: var(--white);
}

.dmc-cr-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.dmc-cr-faq-header h2 {
    margin-bottom: 16px;
}

.dmc-cr-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dmc-cr-faq-item {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 32px;
    border-top: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.dmc-cr-faq-item:hover {
    box-shadow: var(--shadow-md);
}

.dmc-cr-faq-item h4 {
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-size: 18px;
}

.dmc-cr-faq-item p {
    color: var(--cool-gray);
    margin-bottom: 0;
    font-size: 15px;
}

/* =====================================================
   TEAM TRAINING CALLOUT
   ===================================================== */
.dmc-cr-training-callout {
    background: var(--light-gray);
}

.dmc-cr-training-callout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.dmc-cr-training-callout-content h2 {
    margin-bottom: 24px;
}

.dmc-cr-training-callout-content > p {
    color: var(--cool-gray);
    margin-bottom: 32px;
    font-size: 17px;
}

.dmc-cr-training-callout-features {
    display: grid;
    gap: 24px;
}

.dmc-cr-training-callout-feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.dmc-cr-training-callout-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    text-decoration: none;
}

.dmc-cr-training-callout-feature svg {
    width: 28px;
    height: 28px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.dmc-cr-training-callout-feature strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark-blue);
    font-size: 16px;
}

.dmc-cr-training-callout-feature span {
    font-size: 15px;
    color: var(--cool-gray);
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.dmc-cr-cta-banner {
    background: var(--dark-blue);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dmc-cr-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.dmc-cr-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.dmc-cr-cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.dmc-cr-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    margin-bottom: 32px;
}

.dmc-cr-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.dmc-cr-contact-section {
    background: var(--light-gray);
}

.dmc-cr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.dmc-cr-contact-info h2 {
    margin-bottom: 24px;
}

.dmc-cr-contact-info > p {
    color: var(--cool-gray);
    margin-bottom: 32px;
}

.dmc-cr-contact-methods {
    display: grid;
    gap: 24px;
}

.dmc-cr-contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dmc-cr-contact-method-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.dmc-cr-contact-method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.dmc-cr-contact-method-text strong {
    display: block;
    margin-bottom: 2px;
    font-family: var(--font-body);
    color: var(--dark-blue);
}

.dmc-cr-contact-method-text a,
.dmc-cr-contact-method-text span {
    color: var(--cool-gray);
    font-size: 15px;
    font-family: var(--font-body);
}

.dmc-cr-contact-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.dmc-cr-contact-form-wrapper h3 {
    margin-bottom: 24px;
    color: var(--dark-blue);
}

/* Gravity Forms inside contact wrapper */
.dmc-cr-contact-form-wrapper .gform_wrapper {
    margin: 0;
    padding: 0;
}

.dmc-cr-contact-disclaimer {
    font-size: 13px;
    color: var(--cool-gray);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 1200px) {
    .dmc-cr-audit-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .dmc-cr-training-callout-grid {
        grid-template-columns: 1fr;
    }

    .dmc-cr-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dmc-cr-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .dmc-cr-hero-buttons {
        justify-content: center;
    }

    .dmc-cr-hero-stats {
        justify-content: center;
    }

    .dmc-cr-hero-form-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .dmc-cr-what-is-grid,
    .dmc-cr-process-grid,
    .dmc-cr-importance-grid,
    .dmc-cr-why-grid,
    .dmc-cr-contact-grid {
        grid-template-columns: 1fr;
    }

    .dmc-cr-services-steps {
        grid-template-columns: 1fr;
    }

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

    .dmc-cr-faq-grid {
        grid-template-columns: 1fr;
    }

    .dmc-cr-floating-stat {
        position: static;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .dmc-cr-section {
        padding: 64px 0;
    }

    .dmc-cr-section-lg {
        padding: 64px 0;
    }

    .dmc-cr-hero {
        min-height: auto;
        padding: 80px 0 64px;
    }

    .dmc-cr-hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .dmc-cr-audit-types-grid,
    .dmc-cr-when-grid {
        grid-template-columns: 1fr;
    }

    .dmc-cr-why-features {
        grid-template-columns: 1fr;
    }

    .dmc-cr-team-preview {
        grid-template-columns: 1fr;
    }

    .dmc-cr-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dmc-cr-container {
        padding: 0 20px;
    }
}
