/* =====================================================
   PAYTRINSIC COMPLETE MASTER CSS
   Upload to: /wp-content/themes/hello-child/css/paytrinsic-master.css
   
   Contents:
   - Page Content CSS (all your working styles)
   - Header CSS (navigation, dropdown)
   - Footer CSS (already in backup)
   - Mobile Fixes (already in backup)
   ===================================================== */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            /* Refined Color Palette */
            --primary-dark: #1a4d2e;
            --primary: #2d5f2d;
            --primary-light: #4a7c4a;
            --accent: #8bc68b;
            --accent-light: #a8d5a8;
            --accent-pale: #e8f5e8;
            
            --neutral-900: #1a1a1a;
            --neutral-800: #2d2d2d;
            --neutral-700: #4a4a4a;
            --neutral-600: #666666;
            --neutral-500: #808080;
            --neutral-300: #cccccc;
            --neutral-200: #e5e5e5;
            --neutral-100: #f8f9fa;
            --white: #ffffff;
            
            /* Typography - Modern Sans-Serif */
            --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            
            /* Spacing Scale */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-2xl: 64px;
            --space-3xl: 96px;
            
            /* Border Radius */
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-full: 9999px;
            
            /* Shadows */
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.16);
        }
        
        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--neutral-800);
            font-size: 18px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }
        
        /* Hero Section - Enhanced with Background Graphics */
        .hero {
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
            padding: var(--space-3xl) 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .eyebrow {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: var(--space-sm);
            display: inline-block;
        }
        
        .hero h1 {
            font-family: var(--font-display);
            font-size: 58px;
            font-weight: 800;
            line-height: 1.1;
            color: var(--neutral-900);
            margin-bottom: var(--space-lg);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: -0.03em;
        }
        
        .hero-subheadline {
            font-size: 21px;
            line-height: 1.6;
            color: var(--neutral-800);
            max-width: 800px;
            margin: 0 auto var(--space-xl);
            font-weight: 400;
        }
        
        .cta-group {
            display: flex;
            gap: var(--space-sm);
            justify-content: center;
            margin-bottom: var(--space-2xl);
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--primary);
            color: var(--white);
            padding: 16px 32px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(29, 95, 45, 0.2);
            font-family: var(--font-display);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(29, 95, 45, 0.3);
        }
        
        .btn-primary:active {
            transform: translateY(0);
        }
        
        .btn-secondary {
            color: var(--primary-dark);
            padding: 16px 32px;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
            font-family: var(--font-display);
        }
        
        .btn-secondary:hover {
            gap: 10px;
            color: var(--primary);
        }
        
        .trust-row {
            display: flex;
            gap: var(--space-md);
            justify-content: center;
            flex-wrap: wrap;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-dark);
            font-size: 15px;
            font-weight: 600;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-full);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-family: var(--font-display);
        }
        
        .trust-item svg {
            width: 18px;
            height: 18px;
            stroke: var(--primary);
            stroke-width: 3;
            fill: none;
        }
        
        /* Section Styles - Enhanced */
        section {
            padding: var(--space-3xl) 0;
        }
        
        .section-white {
            background: var(--white);
        }
        
        .section-light {
            background: var(--neutral-100);
            position: relative;
        }
        
        .section-light::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--neutral-200) 50%, transparent 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
        }
        
        .section-header h2 {
            font-family: var(--font-display);
            font-size: 46px;
            font-weight: 800;
            margin-bottom: var(--space-md);
            color: var(--neutral-900);
            letter-spacing: -0.03em;
        }
        
        .section-intro {
            font-size: 20px;
            color: var(--neutral-700);
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* How We're Different Cards - Premium Style */
        .different-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: var(--space-lg);
        }
        
        .different-card {
            background: var(--white);
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        .different-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: var(--radius-lg);
            border: 2px solid var(--primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .different-card:hover {
            border-color: transparent;
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        
        .different-card:hover::before {
            opacity: 1;
        }
        
        .different-card-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--accent-pale) 0%, var(--accent-light) 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-md);
            box-shadow: var(--shadow-sm);
        }
        
        .different-card-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--primary);
            stroke-width: 2;
            fill: none;
        }
        
        .different-card h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: var(--space-sm);
            color: var(--neutral-900);
            line-height: 1.3;
        }
        
        .different-card-intro {
            font-size: 17px;
            line-height: 1.6;
            color: var(--neutral-700);
            margin-bottom: var(--space-md);
        }
        
        .what-you-get {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-display);
        }
        
        .different-card ul {
            list-style: none;
        }
        
        .different-card li {
            padding-left: 28px;
            margin-bottom: 12px;
            position: relative;
            font-size: 16px;
            color: var(--neutral-800);
            line-height: 1.5;
        }
        
        .different-card li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 18px;
            height: 18px;
            background: var(--accent-pale);
            border-radius: 50%;
            border: 2px solid var(--primary);
        }
        
        .different-card li:after {
            content: "✓";
            position: absolute;
            left: 4px;
            top: 5px;
            color: var(--primary);
            font-weight: 700;
            font-size: 12px;
        }
        
        /* Specialty Cards - Enhanced with Data Viz */
        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: var(--space-lg);
        }
        
        .specialty-card {
            background: var(--white);
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        
        .specialty-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--accent-pale) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .specialty-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--primary-light);
        }
        
        .specialty-card:hover::after {
            opacity: 1;
        }
        
        .specialty-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-md);
            box-shadow: 0 4px 12px rgba(45, 95, 45, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .specialty-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--white);
            stroke-width: 2;
            fill: none;
        }
        
        .specialty-card h3 {
            font-family: var(--font-display);
            font-size: 26px;
            font-weight: 800;
            margin-bottom: var(--space-sm);
            color: var(--neutral-900);
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }
        
        .specialty-card-intro {
            font-size: 17px;
            line-height: 1.6;
            color: var(--neutral-700);
            margin-bottom: var(--space-lg);
            position: relative;
            z-index: 1;
        }
        
        .specialty-subsection {
            margin-bottom: var(--space-md);
            padding: var(--space-md);
            background: var(--neutral-100);
            border-radius: var(--radius-sm);
            border-left: 3px solid var(--primary);
            position: relative;
            z-index: 1;
        }
        
        .specialty-subsection:last-child {
            margin-bottom: 0;
        }
        
        .subsection-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-display);
        }
        
        .specialty-subsection ul {
            list-style: none;
        }
        
        .specialty-subsection li {
            padding-left: 24px;
            margin-bottom: 10px;
            position: relative;
            font-size: 16px;
            color: var(--neutral-800);
            line-height: 1.5;
        }
        
        .specialty-subsection li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }
        
        /* Industries - Clean Grid */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-md);
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .industry-item {
            background: var(--white);
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-md);
            padding: var(--space-lg);
            transition: all 0.2s ease;
        }
        
        .industry-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
        }
        
        .industry-item h3 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--neutral-900);
            font-family: var(--font-display);
        }
        
        .industry-item p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--neutral-700);
        }
        
        /* Process Cards - Timeline Style with Visual Enhancement */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: var(--space-lg);
            position: relative;
        }
        
        .process-card {
            background: var(--white);
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .process-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }
        
        .process-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            margin-bottom: var(--space-md);
            box-shadow: 0 4px 12px rgba(45, 95, 45, 0.25);
            font-family: var(--font-display);
        }
        
        .process-card h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: var(--space-sm);
            color: var(--neutral-900);
            line-height: 1.3;
        }
        
        .process-card p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--neutral-700);
        }
        
        /* Credentials - Premium Typography */
        .credentials {
            background: var(--white);
            text-align: center;
        }
        
        .credentials-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .credentials h2 {
            font-family: var(--font-display);
            font-size: 40px;
            font-weight: 800;
            margin-bottom: var(--space-lg);
            line-height: 1.3;
            color: var(--neutral-900);
            letter-spacing: -0.02em;
        }
        
        .credentials-intro {
            font-size: 20px;
            line-height: 1.7;
            color: var(--primary-dark);
            margin-bottom: var(--space-md);
            font-weight: 600;
        }
        
        .credentials-details {
            font-size: 17px;
            line-height: 1.8;
            color: var(--neutral-700);
            margin-bottom: var(--space-lg);
        }
        
        .credentials-footer {
            font-size: 15px;
            color: var(--neutral-600);
            font-style: italic;
            padding-top: var(--space-md);
            border-top: 1px solid var(--neutral-200);
        }
        
        /* Final CTA - Enhanced */
        .final-cta {
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .final-cta::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .final-cta::after {
            content: '';
            position: absolute;
            bottom: -40%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .final-cta-content {
            position: relative;
            z-index: 1;
        }
        
        .final-cta h2 {
            font-family: var(--font-display);
            font-size: 44px;
            font-weight: 800;
            margin-bottom: var(--space-md);
            color: var(--neutral-900);
            letter-spacing: -0.03em;
        }
        
        .final-cta p {
            font-size: 19px;
            line-height: 1.6;
            color: var(--neutral-800);
            max-width: 720px;
            margin: 0 auto var(--space-xl);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            :root {
                --space-3xl: 64px;
                --space-2xl: 48px;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .hero-subheadline {
                font-size: 19px;
            }
            
            .section-header h2 {
                font-size: 36px;
            }
            
            .different-grid,
            .specialties-grid,
            .process-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-row {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-group {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn-primary,
            .btn-secondary {
                justify-content: center;
            }
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

.different-card-icon svg,
.specialty-icon svg,
.trust-item svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.btn-primary {
    background: #2d5f2d !important;
}

.btn-primary:hover {
    background: #1a4d2e !important;
}
/* Fix industry card text overlap */
.industry-item h3,
.industry-item p {
    text-decoration: none !important;
    position: relative !important;
    z-index: 1 !important;
}

.industry-item {
    overflow: visible !important;
}
/* Fix text overlapping itself - line height and spacing */

/* Industries section */
.industry-item h3 {
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    display: block !important;
    clear: both !important;
}

.industry-item p {
    line-height: 1.6 !important;
    display: block !important;
    clear: both !important;
}

/* Credentials section */
.credentials-footer {
    line-height: 1.7 !important;
    margin-top: 24px !important;
    padding-top: 20px !important;
    display: block !important;
    clear: both !important;
}

.credentials-details {
    line-height: 1.8 !important;
    margin-bottom: 32px !important;
    display: block !important;
}

/* Force proper text rendering */
.industry-item,
.credentials-content {
    font-smoothing: antialiased !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
/* SERVICE FEE PAGE - NEW CSS ONLY */

/* Opportunity Box */
.opportunity-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.opportunity-box h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--neutral-900);
}

.opportunity-box p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-700);
    margin-bottom: var(--space-md);
}

.opportunity-box p:last-child {
    margin-bottom: 0;
}

.savings-highlight {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Comparison Table */
.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

thead {
    background: var(--primary);
    color: var(--white);
}

th {
    padding: 20px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
}

td {
    padding: 20px;
    border-bottom: 1px solid var(--neutral-200);
    font-size: 16px;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: var(--accent-pale);
}

td:first-child {
    font-weight: 600;
    color: var(--neutral-900);
}

/* Program Cards */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.program-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.program-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--neutral-900);
}

.program-card-intro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--neutral-700);
    margin-bottom: var(--space-md);
}

.program-card ul {
    list-style: none;
    margin-bottom: var(--space-md);
}

.program-card li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    color: var(--neutral-800);
    line-height: 1.5;
}

.program-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.best-for {
    background: var(--accent-pale);
    border-left: 3px solid var(--primary);
    padding: var(--space-md);
    margin-top: var(--space-md);
    border-radius: var(--radius-sm);
}

.best-for-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.best-for p {
    font-size: 15px;
    color: var(--neutral-800);
    margin: 0;
}

/* Case Study Metrics */
.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: var(--neutral-100);
    border-radius: var(--radius-sm);
}

.metric {
    text-align: center;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
}

.metric-label {
    font-size: 13px;
    color: var(--neutral-600);
    margin-top: 4px;
    display: block;
}

.case-details {
    font-size: 15px;
    line-height: 1.7;
    color: var(--neutral-700);
}

.case-details strong {
    color: var(--neutral-900);
}

/* Implementation Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-display);
    flex-shrink: 0;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--neutral-900);
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-700);
    margin: 0;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    th, td {
        padding: 12px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-number {
        margin-bottom: var(--space-sm);
    }
}
/* FIX 1: Hide broken SVG icons */
.value-icon svg,
.feature-icon svg {
    display: none;
}

.value-icon,
.feature-icon {
    background: linear-gradient(135deg, var(--accent-pale) 0%, var(--accent-light) 100%);
}

/* FIX 2: Make hero stats visible */
.hero-stats {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.stat-item {
    min-width: 150px;
}

/* FIX 3: Fix program card overlapping text */
.program-card h3 {
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    display: block !important;
    clear: both !important;
}

.program-card-intro {
    line-height: 1.6 !important;
    display: block !important;
    clear: both !important;
    margin-bottom: var(--space-md) !important;
}

.program-card ul {
    display: block !important;
    clear: both !important;
    margin-bottom: var(--space-md) !important;
}

.program-card li {
    line-height: 1.6 !important;
    display: block !important;
}

.best-for {
    clear: both !important;
    display: block !important;
    margin-top: var(--space-md) !important;
}
/* Fix "Why Work With Paytrinsic" cards */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.value-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--neutral-900);
    line-height: 1.3;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-700);
    margin: 0;
}
/* FIX 1: Hero Section - Remove white bar and fix overlap */
.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--neutral-800);
    margin-bottom: var(--space-lg);
    background: transparent !important;
    padding: 0 !important;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.9) !important;
    padding: var(--space-lg) !important;
    border-radius: var(--radius-lg) !important;
    margin: var(--space-xl) auto !important;
    max-width: 700px;
    clear: both !important;
    display: flex !important;
}

/* FIX 2: Comparison Table - Make text readable */
th {
    color: var(--white) !important;
    font-weight: 700 !important;
}

td {
    color: var(--neutral-900) !important;
    font-weight: 400 !important;
}

tbody tr {
    background: var(--white) !important;
}

/* FIX 3: Best For boxes - Fix overlap */
.best-for {
    background: var(--accent-pale) !important;
    border-left: 3px solid var(--primary) !important;
    padding: var(--space-md) !important;
    margin-top: var(--space-md) !important;
    border-radius: var(--radius-sm) !important;
    clear: both !important;
    display: block !important;
}

.best-for-label {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
    display: block !important;
    line-height: 1.3 !important;
}

.best-for p {
    font-size: 15px !important;
    color: var(--neutral-800) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* FIX 4: Case Studies - Proper grid layout */
.case-studies-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: var(--space-lg) !important;
}

.case-study {
    background: var(--white) !important;
    border: 1px solid var(--neutral-200) !important;
    border-radius: var(--radius-lg) !important;
    padding: var(--space-xl) !important;
}

.case-study-label {
    font-size: 14px !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: var(--space-sm) !important;
    display: block !important;
}

.case-study h3 {
    font-family: var(--font-display) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: var(--space-md) !important;
    color: var(--neutral-900) !important;
    line-height: 1.3 !important;
}

.case-metrics {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-md) !important;
    margin-bottom: var(--space-md) !important;
    padding: var(--space-md) !important;
    background: var(--neutral-100) !important;
    border-radius: var(--radius-sm) !important;
}

.metric {
    text-align: center !important;
}

.metric-value {
    font-family: var(--font-display) !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    display: block !important;
    line-height: 1 !important;
}

.metric-label {
    font-size: 13px !important;
    color: var(--neutral-600) !important;
    margin-top: 4px !important;
    display: block !important;
}

.case-details {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--neutral-700) !important;
}

.case-details strong {
    color: var(--neutral-900) !important;
    font-weight: 600 !important;
}

/* Additional hero fix - remove any conflicting white backgrounds */
.hero-content {
    background: transparent !important;
}

.hero p {
    background: transparent !important;
}
/* Fix case study metric spacing */
.metric-value {
    font-family: var(--font-display) !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    display: block !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
}

.metric-label {
    font-size: 13px !important;
    color: var(--neutral-600) !important;
    margin-top: 0 !important;
    display: block !important;
    line-height: 1.4 !important;
    clear: both !important;
}

.metric {
    text-align: center !important;
    padding: 4px 0 !important;
}
/* Complete hero section fix */
.hero {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%) !important;
    padding: var(--space-3xl) 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-content {
    position: relative !important;
    z-index: 1 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
    background: transparent !important;
    padding: 0 !important;
}

.hero h1 {
    font-family: var(--font-display) !important;
    font-size: 52px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: var(--neutral-900) !important;
    margin-bottom: var(--space-md) !important;
    letter-spacing: -0.03em !important;
    background: transparent !important;
    padding: 0 !important;
}

.hero-intro {
    font-size: 20px !important;
    line-height: 1.7 !important;
    color: var(--neutral-800) !important;
    margin-bottom: var(--space-xl) !important;
    background: transparent !important;
    padding: 0 !important;
    display: block !important;
    clear: both !important;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: var(--space-md) var(--space-lg) !important;
    border-radius: var(--radius-lg) !important;
    margin: 0 auto var(--space-xl) !important;
    max-width: 700px !important;
    display: flex !important;
    gap: var(--space-xl) !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

.stat-item {
    text-align: center !important;
    min-width: 150px !important;
    background: transparent !important;
    padding: var(--space-sm) 0 !important;
}

.stat-number {
    font-family: var(--font-display) !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    display: block !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
}

.stat-label {
    font-size: 15px !important;
    color: var(--neutral-700) !important;
    font-weight: 500 !important;
    display: block !important;
    line-height: 1.3 !important;
}

.cta-group {
    display: flex !important;
    gap: var(--space-sm) !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 0 !important;
}
/* Fix CTA headline overlap */
.final-cta h2 {
    font-size: 42px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: var(--space-md) !important;
    word-spacing: normal !important;
}

/* Fix opportunity box headline overlap */
.opportunity-box h3 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: var(--space-md) !important;
    word-spacing: normal !important;
}

/* Darken and fix spacing for "Who this works for" cards */
.features-grid .program-card p {
    color: var(--neutral-800) !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
    display: block !important;
    clear: both !important;
}

.features-grid .program-card h3 {
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    display: block !important;
    clear: both !important;
}

/* Darken all section intro text */
.section-intro {
    color: var(--neutral-800) !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    line-height: 1.6 !important;
}

/* Ensure all body copy is readable with proper spacing */
.program-card p,
.value-card p,
.case-details,
.opportunity-box p {
    color: var(--neutral-800) !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    display: block !important;
}

/* Fix any text rendering issues */
* {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
/* Fix case study label overlap */
.case-study-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 8px !important;
    display: block !important;
    line-height: 1.2 !important;
}

.case-study h3 {
    font-family: var(--font-display) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-top: 8px !important;
    margin-bottom: var(--space-md) !important;
    color: var(--neutral-900) !important;
    line-height: 1.3 !important;
    clear: both !important;
}

/* Fix metrics alignment */
.case-metrics {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-md) !important;
    margin-bottom: var(--space-md) !important;
    padding: var(--space-md) !important;
    background: var(--neutral-100) !important;
    border-radius: var(--radius-sm) !important;
    align-items: center !important;
}

.metric {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 80px !important;
}

.metric-value {
    font-family: var(--font-display) !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    display: block !important;
    line-height: 1.1 !important;
    margin-bottom: 6px !important;
}

.metric-label {
    font-size: 13px !important;
    color: var(--neutral-600) !important;
    display: block !important;
    line-height: 1.3 !important;
}
/* /* 
/* =====================================================
   PAYTRINSIC FOOTER STYLES
   Add to your theme's CSS or Additional CSS
   ===================================================== */

/* Footer Container */
.pt-site-footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 60px 0 0 0;
  margin-top: 80px;
}

.pt-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Footer Grid */
.pt-footer-main {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr !important;
  gap: 60px !important;
  padding-bottom: 48px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Brand Column */
.pt-footer-brand {
  max-width: 300px !important;
}

.pt-footer-logo {
  display: block !important;
  margin-bottom: 20px !important;
}

.pt-footer-logo img {
  height: 36px !important;
  width: auto !important;
  display: block !important;
}

.pt-footer-description {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #9ca3af !important;
  margin: 0 !important;
}

/* Footer Columns */
.pt-footer-column {
  display: block !important;
}

.pt-footer-heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 20px !important;
  margin-top: 0 !important;
}

/* Footer Links */
.pt-footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pt-footer-links li {
  margin-bottom: 12px !important;
  list-style: none !important;
}

.pt-footer-links a {
  font-size: 14px !important;
  color: #d1d5db !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  display: inline-block !important;
}

.pt-footer-links a:hover {
  color: #ffffff !important;
}

/* Contact Info */
.pt-footer-contact-item {
  margin-bottom: 12px !important;
  clear: both !important;
  display: block !important;
}

.pt-footer-contact-item:last-child {
  margin-bottom: 0 !important;
}

.pt-footer-contact-label {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 3px !important;
  margin-top: 0 !important;
  display: block !important;
  line-height: 1 !important;
  clear: both !important;
}

.pt-footer-contact-value {
  font-size: 14px !important;
  color: #d1d5db !important;
  text-decoration: none !important;
  display: block !important;
  transition: color 0.3s ease !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.3 !important;
  clear: both !important;
}

.pt-footer-contact-value:hover {
  color: #ffffff !important;
}

.pt-footer-address {
  font-size: 14px !important;
  color: #9ca3af !important;
  line-height: 1.4 !important;
  font-style: normal !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: block !important;
  clear: both !important;
}

/* Footer Bottom */
.pt-footer-bottom {
  padding: 24px 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
}

.pt-footer-copyright {
  font-size: 14px !important;
  color: #6b7280 !important;
}

/* Social Icons */
.pt-footer-social {
  display: flex !important;
  gap: 16px !important;
  align-items: center !important;
}

.pt-footer-social-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #d1d5db !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.pt-footer-social-link:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.pt-footer-social-link svg {
  width: 20px !important;
  height: 20px !important;
}

.pt-footer-legal {
  display: flex !important;
  gap: 24px !important;
}

.pt-footer-legal a {
  font-size: 14px !important;
  color: #6b7280 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.pt-footer-legal a:hover {
  color: #d1d5db !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .pt-site-footer {
    padding: 40px 0 0 0 !important;
    margin-top: 60px !important;
  }
  
  .pt-footer-container {
    padding: 0 20px !important;
  }
  
  .pt-footer-main {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding-bottom: 32px !important;
  }
  
  .pt-footer-brand {
    max-width: 100% !important;
  }
  
  .pt-footer-logo img {
    height: 32px !important;
  }
  
  .pt-footer-bottom {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
    padding: 20px 0 !important;
  }
  
  .pt-footer-social {
    order: 2 !important;
  }
  
  .pt-footer-copyright {
    order: 1 !important;
  }
  
  .pt-footer-legal {
    flex-direction: column !important;
    gap: 12px !important;
    order: 3 !important;
  }
}

/* =====================================================
   HEADER STYLES (ADDED TO COMPLETE THE MASTER CSS)
   ===================================================== */

/* Header Container */
.pt-site-header {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.pt-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo */
.pt-logo {
  display: flex;
  align-items: center;
}

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

/* ===== END OF COMPLETE MASTER CSS ===== */
/* ===== CONTACT PAGE SPECIFIC FIXES ===== */

/* Fix EMAIL/PHONE/OFFICE label overlap */
.contact-info h3,
.contact-info h4,
.contact-info .contact-label,
[style*="font-size: 12px"][style*="text-transform: uppercase"] {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 6px !important;
  margin-top: 0 !important;
  display: block !important;
  line-height: 1.1 !important;
  clear: both !important;
}

/* Fix email/phone values spacing */
.contact-info p,
.contact-info a,
[style*="font-size: 18px"] {
  margin-top: 6px !important;
  margin-bottom: 0 !important;
  line-height: 1.4 !important;
  display: block !important;
  clear: both !important;
}

/* Fix contact info item spacing */
.contact-info > div,
[style*="margin-bottom: 24px"] {
  margin-bottom: 28px !important;
  padding-bottom: 4px !important;
  clear: both !important;
}

/* Fix "Send us a message" heading overlap */
.contact-form h2,
[style*="font-size: 36px"],
[style*="font-size: 32px"] {
  font-size: 32px !important;
  line-height: 1.2 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.01em !important;
  word-spacing: normal !important;
}

/* Fix "Send us a message" subtitle spacing */
.contact-form p:first-of-type,
.contact-form > p {
  margin-top: 12px !important;
  margin-bottom: 24px !important;
  line-height: 1.6 !important;
  clear: both !important;
}

/* Fix WPForms "How can we help?" dropdown */
.wpforms-field-container .wpforms-field-select select,
select[name*="wpforms"] {
  height: 48px !important;
  padding: 12px 40px 12px 16px !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
  background-position: right 12px center !important;
  background-repeat: no-repeat !important;
  background-size: 20px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

/* Fix dropdown option text visibility */
.wpforms-field-container .wpforms-field-select option {
  padding: 8px !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}

/* Ensure all form labels have proper spacing */
.wpforms-field-label,
.wpforms-field-container label {
  margin-bottom: 8px !important;
  margin-top: 0 !important;
  line-height: 1.4 !important;
  display: block !important;
}
/* ===== PRICING PAGE ALIGNMENT FIXES ===== */

/* Fix pricing card title overlap */
.pricing-card h3 {
  line-height: 1.3 !important;
  margin-bottom: 12px !important;
  clear: both !important;
}

.pricing-card .card-subtitle {
  margin-top: 8px !important;
  margin-bottom: 16px !important;
  clear: both !important;
}

/* Fix "What's included" checkmark alignment */
.included-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  clear: both !important;
}

.included-item svg {
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.included-item-text {
  flex: 1 !important;
}

.included-item h4 {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
  line-height: 1.4 !important;
}

.included-item p {
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
/* ===== PRICING PAGE OVERLAP FIXES ===== */

/* Fix "What's included" checkmark items */
.included-features > div,
.feature-list > div,
[style*="display: flex"][style*="gap: 12px"] {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  clear: both !important;
}

.included-features svg,
.feature-list svg {
  flex-shrink: 0 !important;
  width: 24px !important;
  height: 24px !important;
  margin-top: 2px !important;
}

.included-features h4,
.feature-list h4,
.included-features strong,
.feature-list strong {
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
  margin-top: 0 !important;
  line-height: 1.3 !important;
  display: block !important;
  clear: both !important;
}

.included-features p,
.feature-list p {
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  clear: both !important;
  display: block !important;
}

/* Fix pricing card title overlap */
.pricing-card h3,
.pricing-box h3,
[style*="font-size: 22px"][style*="font-weight: 700"],
[style*="font-size: 24px"][style*="font-weight: 700"] {
  font-size: 22px !important;
  line-height: 1.3 !important;
  margin-bottom: 8px !important;
  margin-top: 0 !important;
  clear: both !important;
  display: block !important;
  word-spacing: normal !important;
}

/* Fix pricing card subtitle (the rate) */
.pricing-card h4,
.pricing-box h4,
.card-rate,
[style*="font-size: 32px"],
[style*="font-size: 28px"] {
  font-size: 28px !important;
  line-height: 1.2 !important;
  margin-top: 12px !important;
  margin-bottom: 16px !important;
  clear: both !important;
  display: block !important;
}

/* Ensure pricing card content spacing */
.pricing-card > *,
.pricing-box > * {
  margin-bottom: 12px !important;
  clear: both !important;
}

.pricing-card p,
.pricing-box p {
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
}

/* Force text wrapping in pricing cards */
.pricing-card,
.pricing-box {
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
}

/* Fix "Plus:" and "Includes:" labels in pricing cards */
.pricing-card strong:first-of-type,
.pricing-box strong:first-of-type {
  display: block !important;
  margin-top: 12px !important;
  margin-bottom: 6px !important;
}
/* Fix for "What's included" section - Pricing Page */
.section-white .container > div[style*="grid-template-columns: repeat(2, 1fr)"] > div {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
}

.section-white .container > div[style*="grid-template-columns: repeat(2, 1fr)"] > div > div {
    flex: 1 !important;
}

.section-white .container > div[style*="grid-template-columns: repeat(2, 1fr)"] > div > div p {
    margin: 0 !important;
    line-height: 1.5 !important;
    display: block !important;
    clear: both !important;
}

.section-white .container > div[style*="grid-template-columns: repeat(2, 1fr)"] > div > div p:first-child {
    margin-bottom: 4px !important;
}

/* Ensure SVG checkmarks don't overlap */
.section-white .container > div[style*="grid-template-columns: repeat(2, 1fr)"] svg {
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}
/* Fix paragraph spacing in "No contracts" section */
.section-white div[style*="max-width: 900px; margin: 0 auto; text-align: center"] p {
    margin-bottom: 20px !important;
    display: block !important;
    clear: both !important;
    line-height: 1.7 !important;
}

.section-white div[style*="max-width: 900px; margin: 0 auto; text-align: center"] p[style*="font-size: 18px"] {
    margin-bottom: 32px !important;
}

.section-white div[style*="max-width: 900px; margin: 0 auto; text-align: center"] p[style*="font-size: 16px"] {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Force proper paragraph breaks */
.section-white p + p {
    margin-top: 20px !important;
}
/* Fix pricing card headers overlapping with price */
.section-light div[style*="grid-template-columns: repeat(3, 1fr)"] > div h3 {
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    min-height: 60px !important;
    display: block !important;
    clear: both !important;
}

.section-light div[style*="grid-template-columns: repeat(3, 1fr)"] > div p[style*="font-size: 28px"] {
    margin-top: 4px !important;
    margin-bottom: 8px !important;
    display: block !important;
    clear: both !important;
    line-height: 1.2 !important;
}

.section-light div[style*="grid-template-columns: repeat(3, 1fr)"] > div p[style*="font-size: 14px"] {
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
    display: block !important;
    clear: both !important;
}

/* Fix "No hidden fees" section overlap */
.section-white div[style*="max-width: 900px"] p strong {
    display: inline-block !important;
    margin-right: 6px !important;
}

.section-white div[style*="max-width: 900px"] p[style*="font-size: 16px"] {
    line-height: 1.7 !important;
    word-spacing: normal !important;
    display: block !important;
    clear: both !important;
}

/* Ensure proper spacing in no contracts section */
.section-white h2[style*="font-size: 36px"] {
    line-height: 1.3 !important;
    margin-bottom: 24px !important;
    word-spacing: normal !important;
}

.section-white h2[style*="font-size: 36px"] + p {
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
    display: block !important;
    clear: both !important;
}
/* Fix mobile section title overlap - all pages */
@media (max-width: 768px) {
    h1, h2, h3 {
        word-spacing: normal !important;
        letter-spacing: normal !important;
        line-height: 1.25 !important;
        display: block !important;
        clear: both !important;
        overflow: visible !important;
        text-rendering: optimizeLegibility !important;
        -webkit-font-smoothing: antialiased !important;
    }
    
    .section-header h2,
    section h2 {
        font-size: 28px !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
        padding-bottom: 8px !important;
    }
    
    .hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    /* Fix specific overlapping headers */
    h2[style*="font-size: 46px"],
    h2[style*="font-size: 40px"],
    h2[style*="font-size: 36px"] {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }
 /* MOBILE MENU - EXACT WORKING VERSION */
@media (max-width: 768px) {
  .pt-header-inner {
    height: 70px;
  }
  
  .pt-menu-toggle {
    display: block !important;
  }
  
  .pt-nav {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    flex-direction: column !important;
    padding: 20px !important;
    border-top: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
  }
  
  .pt-nav.open {
    max-height: 600px !important;
  }
  
  .pt-nav-list {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
  }
  
  .pt-nav-item {
    width: 100% !important;
    border-bottom: 1px solid #e5e7eb !important;
  }
  
  .pt-nav-link {
    padding: 16px 0 !important;
    width: 100% !important;
    justify-content: space-between !important;
  }
  
  /* Mobile dropdown */
  .pt-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid #e5e7eb !important;
    margin-top: 0 !important;
    padding: 0 !important;
    background: #f9fafb !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
  }
  
  .pt-nav-item.has-dropdown.open .pt-dropdown {
    max-height: 300px !important;
    padding: 12px 0 !important;
  }
}