/*
Theme Name: LeadAPoint Theme
Description: A modern, responsive WordPress theme for B2B lead generation and sales enablement services. Built with Tailwind CSS and optimized for performance and SEO.
Version: 1.0.0
Author: LeadAPoint
Author URI: https://leadapoint.com
Text Domain: leadapoint
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* About page: align icons and bullets with text */
.global-grid-1x2 .space-y-4 .flex {
    align-items: center !important;
}

/* ========================================
   SEO & PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* FAQ Section Styling */
.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    font-family: 'Lato', sans-serif;
}

.faq-section h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.faq-section p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.faq-section .bg-white {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-section .bg-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

/* FAQ Accordion Styling */
.faq-toggle {
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 16px 24px;
}

.faq-toggle h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.faq-toggle:hover {
    background-color: #f8fafc !important;
}

.faq-toggle:focus {
    outline: 2px solid var(--primary-color, #3b82f6);
    outline-offset: 2px;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-content {
    transition: all 0.3s ease;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
}

.faq-content p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.faq-content.hidden {
    max-height: 0;
    opacity: 0;
}

.faq-content:not(.hidden) {
    max-height: 200px;
    opacity: 1;
}

/* Contact Form Styling */
.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #111827;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #d1d5db;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.form-textarea {
    resize: none;
    min-height: 120px;
    font-family: inherit;
}

.form-submit-btn {
    width: 60% !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color, #3b82f6) 0%, var(--secondary-color, #1d4ed8) 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    font-family: 'Segoe UI', sans-serif !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-color, #2563eb) 0%, var(--secondary-color, #1e40af) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-submit-btn svg {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(2px);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.form-message.error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Form Validation Styles */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success,
.form-select.success,
.form-textarea.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-error {
    display: none;
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-error.show {
    display: block;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.form-submit-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#loadingIcon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Contact Form Container - Glass Effect */
.contact-form-container {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
    height: fit-content;
}

.contact-form-container:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Ensure both cards have equal height in grid */
.grid>div {
    display: flex;
    flex-direction: column;
}

.grid>div>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Schedule Consultation Heading Font Size */
.contact-form-container h3 {
    font-size: 2rem !important;
}


/* Contact Form Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1rem;
    }

    .contact-form-container input,
    .contact-form-container select,
    .contact-form-container textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
        min-height: 44px;
        /* Better touch targets */
    }

    .contact-form-container textarea {
        min-height: 120px;
    }

    .contact-form-container button {
        min-height: 48px;
        font-size: 16px;
    }
}

/* Force B2B Growth to stay on one line */
.page-about h1 span {
    white-space: nowrap !important;
}

/* Hero Section H1 Size Increase */
.hero h1,
section h1 {
    font-size: 3.078rem !important;
    /* Decreased by 5% from 3.24rem */
}

@media (min-width: 768px) {

    .hero h1,
    section h1 {
        font-size: 4.104rem !important;
        /* Decreased by 5% from 4.32rem */
    }
}


/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Critical CSS for above-the-fold content */
.hero {
    contain: layout style paint;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    color: #1e293b;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

/* Reduce layout shifts */
.service-card,
.value-card {
    min-height: 200px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    border-color: var(--primary-color, #3b82f6);
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.service-card:hover {
    border-color: var(--primary-color, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card.cta-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #bfdbfe;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles for better SEO */
@media print {

    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .btn,
    .cta-section {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1,
    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* Services page: align metrics to right side of cards - OVERRIDE EXISTING STYLES */
.metric-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.metric-row .metric-value {
    text-align: right !important;
    font-weight: 600 !important;
    margin-left: auto !important;
    font-size: 1rem !important;
    /* Override existing 1.5rem */
    color: #0f172a !important;
    /* Override existing blue color */
}

/* More specific targeting for services page metrics */
.services-2x2 .metric-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.services-2x2 .metric-row span:last-child {
    text-align: right !important;
    margin-left: auto !important;
    font-size: 1rem !important;
    color: #0f172a !important;
}

.global-grid-1x2 .space-y-4 svg {
    display: block;
}

.card .card-content li.flex {
    align-items: center !important;
}

.card .card-content li.flex>.w-2,
.card .card-content li.flex>.h-2 {
    align-self: center;
}

/* Stack complex grids vertically on mobile */
@media (max-width: 768px) {
    .mobile-stack {
        display: flex !important;
        flex-direction: column !important;
    }
}

/* Mobile menu overlay styles */
.mobile-menu-overlay {
    position: fixed;
    top: 64px;
    /* Below navbar */
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 9999;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease;
    height: calc(100vh - 64px);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    overscroll-behavior: contain;
    align-items: center;
    text-align: center;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile Menu Links */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.mobile-menu-link {
    display: block;
    width: 100%;
    padding: 0.875rem 0.75rem;
    border-radius: 0.5rem;
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    text-align: center;
}

.mobile-menu-link:hover {
    background: #f8fafc;
    color: #0f172a;
}

.mobile-menu-cta {
    background: var(--primary-color, #2563eb);
    color: #ffffff;
    border-color: var(--primary-color, #2563eb);
}

.mobile-menu-cta:hover {
    background: var(--secondary-color, #1d4ed8);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.25rem;
}

/* Force vertical centering for all items inside navbar */
.navbar-inner {
    align-items: center !important;
}

/* Also ensure the brand text has no extra top offset */
.brand-link .text-2xl {
    display: inline-flex;
    align-items: center !important;
    height: 100% !important;
}

/* Get Started Button Styling - Force White Text */
.nav-links a.cta-btn,
.nav-links a[href*="contact"]:last-child {
    background-color: #2563eb !important;
    color: #ffffff !important;
    padding: 0.25rem 1rem !important;
    border-radius: 0.375rem !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    height: 2.3rem !important;
    display: inline-flex !important;
    align-items: center !important;
}

.nav-links a.cta-btn:hover,
.nav-links a[href*="contact"]:last-child:hover {
    background-color: #1d4ed8 !important;
    color: #ffffff !important;
}

/* Vertically center the nav links within the header bar */
.nav-links {
    align-items: center !important;
    height: 64px;
    /* match h-16 */
}

/* Ensure each menu link is vertically centered within the bar */
.nav-links a {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

/* Center the brand wordmark like the nav links */
.brand-link {
    display: inline-flex !important;
    align-items: center !important;
    height: 64px !important;
    /* match header height */
    gap: 6px !important;
    /* Tight gap between logo and text */
}

/* Logo styling - Consolidated */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 !important;
    padding: 0 !important;
    height: 64px;
    flex-shrink: 0;
}

.logo-container a {
    margin-right: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.logo-container .custom-logo {
    height: 48px;
    width: 48px;
    object-fit: cover;
    transition: opacity 0.2s ease;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    display: block;
    vertical-align: middle;
    border-radius: 4px;
}

.logo-container .custom-logo:hover {
    opacity: 0.8;
}

.logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    height: 48px;
    width: 48px;
    border-radius: 4px;
}

.logo-container *,
.logo-container img {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-container .custom-logo {
        height: 41px;
        /* Reduced by 10% from 46px and made square */
        width: 41px;
        /* Square shape */
    }

    .logo-fallback svg {
        height: 41px;
        /* Reduced by 10% from 46px */
        width: 41px;
        /* Square shape */
    }

    .logo-fallback {
        height: 41px;
        /* Match mobile square logo height */
        width: 41px;
        /* Square shape */
    }
}

/* Footer Logo Styling */
.footer-brand {
    gap: 8px;
    padding-top: 8px;
    /* Add top padding to bring logo down */
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.footer-logo {
    max-height: 34px;
    /* Reduced by 10% from 38px and made square */
    width: 34px;
    /* Square shape */
    object-fit: cover;
    /* Changed to cover for square cropping */
    transition: opacity 0.2s ease;
    margin: 0;
    padding: 0;
    display: block;
    border-radius: 4px;
    /* Slight rounding for better appearance */
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    height: 34px;
    /* Reduced by 10% from 38px and made square */
    width: 34px;
    /* Square shape */
    border-radius: 4px;
    /* Slight rounding for better appearance */
}

/* Remove any spacing from footer logo elements */
.footer-logo-container,
.footer-logo-container *,
.footer-logo-container img,
.footer-logo-container .footer-logo {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
}

/* Footer section spacing adjustments */
.footer-grid>div {
    padding-top: 8px;
    /* Add top padding to all footer sections */
}

.footer-grid>div:first-child {
    padding-top: 0;
    /* Remove extra padding from first section since brand already has padding */
}

/* Enhanced Blog Grid Styles - Algogi-inspired */
.blog-post-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-post-image img {
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

/* Category Badge */
.blog-post-card .bg-blue-600 {
    background-color: #2563eb;
    font-weight: 500;
    letter-spacing: 0.025em;
}

/* Line clamp for excerpts */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More styling */
.blog-post-footer a {
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .blog-post-card {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .grid.lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

.blog-widget {
    transition: all 0.3s ease;
}

.blog-widget:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recent-post-item {
    transition: all 0.2s ease;
}

.recent-post-item:hover {
    transform: translateX(4px);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Blog Post Content Styling */
.blog-post-content {
    line-height: 1.7;
}

.blog-post-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #334155;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-post-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #475569;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-post-content p {
    margin-bottom: 1.25rem;
    color: #475569;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.blog-post-content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #64748b;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
}

.blog-post-content code {
    background: #f1f5f9;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #e11d48;
}

.blog-post-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Pagination Styles */
.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.pagination-list li {
    margin: 0;
}

.pagination-list a,
.pagination-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #64748b;
    transition: all 0.2s ease;
}

.pagination-list a:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.pagination-list .current {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-post-content h2 {
        font-size: 1.5rem;
    }

    .blog-post-content h3 {
        font-size: 1.25rem;
    }

    .blog-post-content h4 {
        font-size: 1.125rem;
    }

    .blog-post-featured-image img {
        height: 200px;
    }

    .related-posts .grid {
        grid-template-columns: 1fr;
    }
}


/* Remove underlines from nav links */
nav a {
    text-decoration: none !important;
}

/* About: Global presence 1x2 grid */
.global-grid-1x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .global-grid-1x2 {
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
    }
}

/* About: force 1x4 grid on desktop for approach */
.approach-grid-1x4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .approach-grid-1x4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 0.75rem;
    }
}

/* Tighter approach cards (About page only) */
.approach-grid-1x4 .value-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem;
}

.approach-grid-1x4 .value-card h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #0f172a;
    font-size: 1.1rem;
}

.approach-grid-1x4 .value-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* About page: 1x4 approach grid and equal cards */
.approach-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.approach-card h3 {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0f172a;
}

.approach-card p {
    color: #64748b;
}

/*
Theme Name: LeadAPoint
Description: Custom WordPress theme for LeadAPoint B2B Growth Enablement
Version: 1.0
Author: LeadAPoint
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e293b;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-50 {
    z-index: 50;
}

.w-full {
    width: 100%;
}

.border-b {
    border-bottom: 1px solid #e2e8f0;
}

.bg-white\/95 {
    background-color: rgba(255, 255, 255, 0.95);
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}

.supports-\[backdrop-filter\]\:bg-white\/60 {
    background-color: rgba(255, 255, 255, 0.6);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.flex {
    display: flex;
}

.h-16 {
    height: 4rem;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.space-x-8>*+* {
    margin-left: 2rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-bold {
    font-weight: 700;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.hidden {
    display: none;
}

.md\:flex {
    display: flex;
}

.text-slate-600 {
    color: #475569;
}

.hover\:text-slate-900:hover {
    color: #0f172a;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.font-medium {
    font-weight: 500;
}

.bg-blue-600 {
    background-color: var(--primary-color, #2563eb);
}

.hover\:bg-blue-700:hover {
    background-color: var(--secondary-color, #1d4ed8);
}

/* Hover background tints for industry cards */
.hover\:bg-blue-50:hover {
    background-color: var(--light-color, #eff6ff);
}

.hover\:bg-green-50:hover {
    background-color: #f0fdf4;
}

.hover\:bg-purple-50:hover {
    background-color: #faf5ff;
}

.hover\:bg-orange-50:hover {
    background-color: #fff7ed;
}

.hover\:bg-indigo-50:hover {
    background-color: var(--light-color, #eef2ff);
}

/* Smooth shadow transitions */
.transition-shadow {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Colored glow shadows for industry cards */
.hover\:shadow-blue-glow:hover {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.hover\:shadow-green-glow:hover {
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.25);
}

.hover\:shadow-purple-glow:hover {
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.25);
}

.hover\:shadow-orange-glow:hover {
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.25);
}

.hover\:shadow-indigo-glow:hover {
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.25);
}

/* Subtle 1px inner outlines (drawn inside using negative offset) */
.inner-outline-blue {
    outline: 1px solid var(--border-color, #bfdbfe);
    outline-offset: -1px;
}

.inner-outline-green {
    outline: 1px solid #bbf7d0;
    outline-offset: -1px;
}

.inner-outline-purple {
    outline: 1px solid #e9d5ff;
    outline-offset: -1px;
}

.inner-outline-orange {
    outline: 1px solid #fed7aa;
    outline-offset: -1px;
}

.inner-outline-indigo {
    outline: 1px solid #c7d2fe;
    outline-offset: -1px;
}

/* Ensure icon circles and SVGs are perfectly centered */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.card-icon svg {
    display: block;
}

.text-white {
    color: #ffffff;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.md\:hidden {
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    position: relative;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Ensure mobile menu toggle is hidden on desktop */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}


.hero-content {
    max-width: 4xl;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: var(--primary-color, #3b82f6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Removed highlight class since we're not using LeadAPoint with blue highlight */

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #475569;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.arrow {
    margin-left: 0.5rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color, #3b82f6) 0%, var(--secondary-color, #1d4ed8) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color, #2563eb) 0%, var(--secondary-color, #1e40af) 100%);
    color: white;
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color, #3b82f6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color, #3b82f6);
    color: white;
    border-color: var(--primary-color, #3b82f6);
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: var(--primary-color, #2563eb);
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.8) !important;
    color: white !important;
    backdrop-filter: blur(10px) !important;
    border: 3px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

/* Subtle blue glow for primary CTAs */
.btn-glow {
    /* soft ambient glow ring + drop shadow */
    box-shadow:
        0 0 0 4px rgba(59, 130, 246, 0.18),
        /* spread ring */
        0 8px 24px rgba(37, 99, 235, 0.18);
    /* soft drop */
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-glow:hover {
    box-shadow:
        0 0 0 6px rgba(59, 130, 246, 0.28),
        /* stronger ring */
        0 16px 40px rgba(37, 99, 235, 0.32),
        /* deeper drop */
        0 0 24px rgba(59, 130, 246, 0.25);
    /* extra bloom */
    transform: translateY(-2px);
}

/* Value Propositions */
.value-props {
    padding: 6rem 0;
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    align-items: stretch;
}


.value-icon-circle {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-circle {
    background: var(--primary-color, #3b82f6);
    transform: scale(1.1);
}

.value-card:hover .value-icon-circle svg {
    color: white;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card:hover h3 {
    color: var(--primary-color, #3b82f6);
    transform: translateY(-2px);
}

.value-card:hover p {
    color: #475569;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    align-items: stretch;
}


.service-title {
    color: var(--primary-color, #2563eb);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-color, #2563eb);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    color: #bfdbfe;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

/* Footer */
.bg-slate-900 {
    background-color: #0f172a;
}

.text-white {
    color: #ffffff;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.col-span-1 {
    grid-column: span 1 / span 1;
}

.md\:col-span-2 {
    grid-column: span 2 / span 2;
}

.text-blue-400 {
    color: var(--primary-color, #60a5fa);
}

.text-slate-200 {
    color: #e5e7eb;
}

.text-slate-600 {
    color: #64748b;
}

/* Footer grid layout */
@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* Footer forced layout: 2-1-1 columns on desktop */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        align-items: start;
    }
}

/* Force 2x2 layout for Services sections (desktop) */
.services-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .services-2x2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }
}

/* Metric rows: use grid with fixed right column */
.metric-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content !important;
    align-items: center !important;
    column-gap: 1rem !important;
    width: 100% !important;
}

.metric-row .metric-value {
    justify-self: end !important;
    text-align: right !important;
    font-size: inherit !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    position: static !important;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-slate-300 {
    color: #cbd5e1;
}

.max-w-md {
    max-width: 28rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.hover\:text-white:hover {
    color: #ffffff;
}

.border-t {
    border-top-width: 1px;
}

.border-slate-700 {
    border-color: #334155;
}

.mt-8 {
    margin-top: 2rem;
}

.pt-8 {
    padding-top: 2rem;
}

.text-center {
    text-align: center;
}

.text-slate-400 {
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
    .md\:grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .md\:flex {
        display: none;
    }

    .md\:hidden {
        display: block;
    }

    .hero {
        padding: 6rem 0;
    }

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

    .hero p {
        font-size: 1.125rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .value-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card,
    .service-card {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .md\:grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .value-props,
    .services-preview,
    .cta-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .value-card,
    .service-card {
        padding: 1.5rem;
    }
}

/* Additional Tailwind Classes */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-slate-50 {
    --tw-gradient-from: #f8fafc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0));
}

.to-blue-50 {
    --tw-gradient-to: var(--light-color, #eff6ff);
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-slate-900 {
    color: #0f172a;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-slate-600 {
    color: #475569;
}

.max-w-3xl {
    max-width: 48rem;
}

.leading-relaxed {
    line-height: 1.625;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.prose {
    color: #6b7280;
    max-width: 65ch;
}

.prose-lg {
    font-size: 1.125rem;
    line-height: 1.7777778;
}

/* Wider prose container for sections like Our Mission */
.prose-wide {
    max-width: 100ch;
}

@media (min-width: 1024px) {
    .prose-wide {
        max-width: 110ch;
    }
}

.prose p {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
}

.prose p:first-child {
    margin-top: 0;
}

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

.bg-slate-50 {
    background-color: #f8fafc;
}

.mb-16 {
    margin-bottom: 4rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.border-2 {
    border-width: 2px;
}

.hover\:border-blue-200:hover {
    border-color: var(--border-color, #bfdbfe);
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.p-6 {
    padding: 1.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.bg-blue-100 {
    background-color: var(--lighter-color, #dbeafe);
}

.rounded-full {
    border-radius: 9999px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-12 {
    gap: 3rem;
}

.items-center {
    align-items: center;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-x-3>*+* {
    margin-left: 0.75rem;
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.text-slate-700 {
    color: #334155;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.border-2 {
    border-width: 2px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.p-6 {
    padding: 1.5rem;
}

.text-slate-900 {
    color: #0f172a;
}

.text-slate-600 {
    color: #475569;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

/* Fine-tune vertical alignment for custom bullet dots */
.bullet-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    margin-top: 0.6rem !important;
    flex-shrink: 0;
}

.bg-blue-600 {
    background-color: var(--primary-color, #2563eb);
}

.rounded-full {
    border-radius: 9999px;
}

.bg-blue-600 {
    background-color: var(--primary-color, #2563eb);
}

.text-white {
    color: #ffffff;
}

.text-blue-100 {
    color: var(--light-text-color, #dbeafe);
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    flex-direction: row;
}

.gap-4 {
    gap: 1rem;
}

.justify-center {
    justify-content: center;
}

/* Additional Service Page Classes */
.space-y-16>*+* {
    margin-top: 4rem;
}

.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-12 {
    gap: 3rem;
}

.items-center {
    align-items: center;
}

.mr-3 {
    margin-right: 0.75rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.font-bold {
    font-weight: 700;
}

.text-slate-900 {
    color: #0f172a;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-slate-600 {
    color: #475569;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.h-5 {
    height: 1.25rem;
}

.w-5 {
    width: 1.25rem;
}

.text-green-600 {
    color: #059669;
}

/* Results That Matter section styling */
.bg-blue-50 {
    background-color: var(--light-color, #eff6ff);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.text-slate-700 {
    color: #334155;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-50 {
    --tw-gradient-from: var(--light-color, #eff6ff);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-indigo-100 {
    --tw-gradient-to: var(--lighter-color, #e0e7ff);
}

.border-2 {
    border-width: 2px;
}

.border-blue-200 {
    border-color: var(--border-color, #bfdbfe);
}

.border-blue-300 {
    border-color: #93c5fd;
}

.hover\:border-blue-400:hover {
    border-color: #60a5fa;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.p-6 {
    padding: 1.5rem;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-slate-600 {
    color: #475569;
}

.mb-4 {
    margin-bottom: 1rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.justify-between {
    justify-content: space-between;
}

.font-semibold {
    font-weight: 600;
}

.text-slate-900 {
    color: #0f172a;
}

.lg\:order-1 {
    order: 1;
}

.lg\:order-2 {
    order: 2;
}

.from-green-50 {
    --tw-gradient-from: #f0fdf4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 253, 244, 0));
}

.to-emerald-100 {
    --tw-gradient-to: #d1fae5;
}

.border-green-200 {
    border-color: #bbf7d0;
}

.border-green-300 {
    border-color: #86efac;
}

.hover\:border-green-400:hover {
    border-color: #4ade80;
}

.text-green-600 {
    color: #059669;
}

/* Results That Matter section styling */
.bg-blue-50 {
    background-color: var(--light-color, #eff6ff);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

.bg-green-600 {
    background-color: #059669;
}

.rounded-full {
    border-radius: 9999px;
}

.text-purple-600 {
    color: #9333ea;
}

.from-purple-50 {
    --tw-gradient-from: #faf5ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0));
}

.to-violet-100 {
    --tw-gradient-to: #ede9fe;
}

.border-purple-200 {
    border-color: #e9d5ff;
}

.border-purple-300 {
    border-color: #d8b4fe;
}

.hover\:border-purple-400:hover {
    border-color: #c084fc;
}

.text-purple-600 {
    color: #9333ea;
}

.from-orange-50 {
    --tw-gradient-from: #fff7ed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 247, 237, 0));
}

.to-amber-100 {
    --tw-gradient-to: #fef3c7;
}

.border-orange-200 {
    border-color: #fed7aa;
}

.border-orange-300 {
    border-color: #fdba74;
}

.hover\:border-orange-400:hover {
    border-color: #fb923c;
}

.text-orange-600 {
    color: #ea580c;
}

.bg-orange-600 {
    background-color: #ea580c;
}

.text-indigo-600 {
    color: var(--primary-color, #4f46e5);
}

.from-indigo-50 {
    --tw-gradient-from: var(--light-color, #eef2ff);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
}

.to-blue-100 {
    --tw-gradient-to: #dbeafe;
}

.border-indigo-200 {
    border-color: var(--border-color, #c7d2fe);
}

.border-indigo-300 {
    border-color: var(--border-color, #a5b4fc);
}

.hover\:border-indigo-400:hover {
    border-color: var(--border-color, #818cf8);
}

/* Contact Form Styles */
.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: all 0.15s ease-in-out;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

/* Enhanced Form Input Styles */
input[type="text"],
input[type="email"],
select,
textarea {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: all 0.2s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #ffffff;
}

/* Industry Cards */
.group:hover .group-hover\:bg-blue-200 {
    background-color: #bfdbfe;
}

.group:hover .group-hover\:bg-green-200 {
    background-color: #bbf7d0;
}

.group:hover .group-hover\:bg-purple-200 {
    background-color: #e9d5ff;
}

.group:hover .group-hover\:bg-orange-200 {
    background-color: #fed7aa;
}

.group:hover .group-hover\:bg-indigo-200 {
    background-color: var(--border-color, #c7d2fe);
}

/* Additional Homepage Classes */
.relative {
    position: relative;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-50 {
    --tw-gradient-from: var(--light-color, #eff6ff);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-indigo-100 {
    --tw-gradient-to: var(--lighter-color, #e0e7ff);
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.lg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.text-blue-100 {
    color: var(--light-text-color, #dbeafe);
}

.bg-blue-600 {
    background-color: var(--primary-color, #2563eb);
}

.text-white {
    color: #ffffff;
}

.text-blue-400 {
    color: var(--primary-color, #60a5fa);
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-slate-400 {
    color: #94a3b8;
}

.border-slate-700 {
    border-color: #334155;
}

.border-t {
    border-top-width: 1px;
}

.mt-8 {
    margin-top: 2rem;
}

.pt-8 {
    padding-top: 2rem;
}


.service-icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1rem;
}

.service-card li:before {
    content: "•";
    color: var(--primary-color, #3b82f6);
    font-weight: bold;
    position: absolute;
    left: 0;
}


.approach-grid-1x4 .value-icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem auto;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Step Styles */
.process-step {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary-color, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color, #3b82f6) 0%, var(--secondary-color, #1d4ed8) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card.bg-slate-50 {
    background-color: #f8fafc;
}

.card.border-2 {
    border-width: 2px;
}

.card.border-blue-200 {
    border-color: var(--border-color, #bfdbfe);
}

.card.max-w-2xl {
    max-width: 42rem;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: #64748b;
    margin-bottom: 0;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

/* Footer Fixes */
footer svg {
    width: 1rem !important;
    height: 1rem !important;
    flex-shrink: 0;
}

footer .flex {
    display: flex;
    align-items: center !important;
}

footer .space-x-2>*+* {
    margin-left: 0.5rem;
}

footer .space-y-2>*+* {
    margin-top: 0.5rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin: 0;
}

footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Grid Layout Fixes */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.col-span-1 {
    grid-column: span 1 / span 1;
}

.md\:col-span-2 {
    grid-column: span 2 / span 2;
}

.gap-8 {
    gap: 2rem;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .md\:grid-cols-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .md\:col-span-2 {
        grid-column: span 1 / span 1;
    }
}

/* Horizontal Card Styles */
.value-card-horizontal {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 250px;
    flex: 1;
}

.value-card-horizontal:hover {
    border-color: var(--primary-color, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card-horizontal h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-card-horizontal p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.value-card-horizontal ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-card-horizontal li {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.value-card-horizontal li:before {
    content: "•";
    color: var(--primary-color, #3b82f6);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .value-card-horizontal {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Services Page Grid Alignment Fix */
.services-section .grid {
    align-items: start !important;
}

.services-section .grid>div {
    display: flex;
    flex-direction: column;
    height: auto;
    align-self: start;
}

/* Force equal heights for 2-card grids like Sweet Spot */
.equal-cards {
    align-items: stretch !important;
}

.equal-cards>div {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.services-section .grid>div:first-child {
    justify-content: flex-start;
}

.services-section .grid>div:last-child {
    justify-content: flex-start;
    align-items: flex-start;
}

/* Metrics Grid Fix - Ensure 2x2 layout works */
.services-section .grid-cols-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch !important;
    width: 100% !important;
}

.services-section .grid-cols-2>div {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    align-self: stretch !important;
    width: 100% !important;
    min-height: 60px;
    padding: 0.5rem;
}

/* Force grid layout for all metrics */
.grid-cols-2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
}

.grid-cols-2>div {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

/* Global Alignment Fixes */
.grid {
    align-items: start !important;
}

.flex {
    align-items: flex-start !important;
}

/* Ensure proper horizontal alignment for cards */
.value-card,
.service-card,
.value-card-horizontal {
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Fix for About page Global Presence section */
.grid.items-start>div {
    align-self: start;
}

/* Additional WordPress Template Styles */

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--primary-color, #3b82f6);
}

.hero p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.service-section {
    padding: 5rem 0;
}

.service-section.white {
    background: white;
}

.service-section.gray {
    background: #f8fafc;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.service-content li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary-color, #3b82f6);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.metrics-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    border: 2px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.metrics-card.green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.metrics-card.purple {
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border-color: #c4b5fd;
}

.metrics-card.orange {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-color: #fdba74;
}

.metrics-card.indigo {
    background: linear-gradient(135deg, #eef2ff 0%, #c7d2fe 100%);
    border-color: #a5b4fc;
}

.metrics-card.teal {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-color: #5eead4;
}

.metrics-card .emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.metrics-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.metrics-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #3b82f6);
}

.metric-value.green {
    color: #059669;
}

.metric-value.purple {
    color: #7c3aed;
}

.metric-value.orange {
    color: #ea580c;
}

.metric-value.indigo {
    color: #4338ca;
}

.metric-value.teal {
    color: #0d9488;
}

.metric-label {
    font-size: 0.875rem;
    color: #64748b;
}

.metrics-list {
    text-align: left;
}

.metrics-list .metric-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metrics-list .metric-item::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary-color, #3b82f6);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.metrics-list .metric-item.green::before {
    background: #059669;
}

.metrics-list .metric-item.purple::before {
    background: #7c3aed;
}

.metrics-list .metric-item.orange::before {
    background: #ea580c;
}

.metrics-list .metric-item.indigo::before {
    background: #4338ca;
}

.metrics-list .metric-item.teal::before {
    background: #0d9488;
}

.metrics-list span {
    color: #374151;
}

.cta-section {
    background: var(--primary-color, #3b82f6);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

/* Missing Tailwind Classes for Who We Help Page */
.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.flex-col {
    flex-direction: column;
}

.gap-6 {
    gap: 1.5rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.grid-auto-rows-min {
    grid-auto-rows: min-content;
}

.grid-rows-\[auto_auto\] {
    grid-template-rows: auto auto;
}

.items-start {
    align-items: flex-start;
}

.gap-1\.5 {
    gap: 0.375rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.bg-blue-100 {
    background-color: var(--lighter-color, #dbeafe);
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-purple-100 {
    background-color: #f3e8ff;
}

.bg-orange-100 {
    background-color: #fed7aa;
}

.bg-indigo-100 {
    background-color: #e0e7ff;
}

.rounded-full {
    border-radius: 9999px;
}

.group-hover\:bg-blue-200:hover {
    background-color: #bfdbfe;
}

.group-hover\:bg-green-200:hover {
    background-color: #bbf7d0;
}

.group-hover\:bg-purple-200:hover {
    background-color: #e9d5ff;
}

.group-hover\:bg-orange-200:hover {
    background-color: #fed7aa;
}

.group-hover\:bg-indigo-200:hover {
    background-color: #c7d2fe;
}

.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.text-green-600 {
    color: #059669;
}

/* Results That Matter section styling */
.bg-blue-50 {
    background-color: var(--light-color, #eff6ff);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.text-purple-600 {
    color: #9333ea;
}

.text-orange-600 {
    color: #ea580c;
}

.text-indigo-600 {
    color: var(--primary-color, #4f46e5);
}

.leading-none {
    line-height: 1;
}

.font-semibold {
    font-weight: 600;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-slate-600 {
    color: #475569;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-50 {
    --tw-gradient-from: var(--light-color, #eff6ff);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-indigo-100 {
    --tw-gradient-to: var(--lighter-color, #e0e7ff);
}

.border-blue-200 {
    border-color: var(--border-color, #bfdbfe);
}

.border-green-200 {
    border-color: #bbf7d0;
}

.border-purple-200 {
    border-color: #e9d5ff;
}

.border-orange-200 {
    border-color: #fed7aa;
}

.border-indigo-200 {
    border-color: var(--border-color, #c7d2fe);
}

.text-slate-900 {
    color: #0f172a;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.font-medium {
    font-weight: 500;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.shrink-0 {
    flex-shrink: 0;
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus-visible\:border-ring:focus-visible {
    border-color: var(--ring-color);
}

.focus-visible\:ring-ring\/50:focus-visible {
    --tw-ring-color: rgba(var(--ring-color), 0.5);
}

.focus-visible\:ring-\[3px\]:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}

.aria-invalid\:ring-destructive\/20[aria-invalid="true"] {
    --tw-ring-color: rgba(239, 68, 68, 0.2);
}

.dark\:aria-invalid\:ring-destructive\/40[aria-invalid="true"] {
    --tw-ring-color: rgba(239, 68, 68, 0.4);
}

.aria-invalid\:border-destructive[aria-invalid="true"] {
    border-color: #ef4444;
}

.text-white {
    color: #ffffff;
}

.shadow-xs {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.h-9 {
    height: 2.25rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.bg-blue-600 {
    background-color: var(--primary-color, #2563eb);
}

.hover\:bg-blue-700:hover {
    background-color: var(--secondary-color, #1d4ed8);
}

.rounded-md {
    border-radius: 0.375rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.text-left {
    text-align: left;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.font-bold {
    font-weight: 700;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.text-green-600 {
    color: #059669;
}

/* Results That Matter section styling */
.bg-blue-50 {
    background-color: var(--light-color, #eff6ff);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.text-purple-600 {
    color: #9333ea;
}

.text-orange-600 {
    color: #ea580c;
}

.text-indigo-600 {
    color: var(--primary-color, #4f46e5);
}

.text-blue-100 {
    color: var(--light-text-color, #dbeafe);
}

.bg-blue-600 {
    background-color: var(--primary-color, #2563eb);
}

.text-white {
    color: #ffffff;
}

.border-white {
    border-color: #ffffff;
}

.hover\:bg-white:hover {
    background-color: #ffffff;
}

.hover\:text-blue-600:hover {
    color: var(--primary-color, #2563eb);
}

.h-10 {
    height: 2.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.text-secondary-foreground {
    color: var(--secondary-foreground-color);
}

.hover\:bg-secondary\/80:hover {
    background-color: rgba(var(--secondary-color), 0.8);
}

.border {
    border-width: 1px;
}

/* Utilities used by Services CTA */
.w-64 {
    width: 16rem;
}

.h-12 {
    height: 3rem;
}

/* Ensure CTA wrapper centers its children despite global flex overrides */
.cta-center {
    align-items: center !important;
    justify-content: center !important;
}

.bg-background {
    background-color: var(--background-color);
}

.dark\:bg-input\/30 {
    background-color: rgba(var(--input-color), 0.3);
}

.dark\:border-input {
    border-color: var(--input-color);
}

.dark\:hover\:bg-input\/50:hover {
    background-color: rgba(var(--input-color), 0.5);
}

.has-\[>svg\]\:px-4:has(> svg) {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Additional missing classes for Who We Help page */
.auto-rows-min {
    grid-auto-rows: min-content;
}

.grid-rows-\[auto_auto\] {
    grid-template-rows: auto auto;
}

.gap-1\.5 {
    gap: 0.375rem;
}

.group {
    position: relative;
}

.group:hover .group-hover\:bg-blue-200 {
    background-color: #bfdbfe;
}

.group:hover .group-hover\:bg-green-200 {
    background-color: #bbf7d0;
}

.group:hover .group-hover\:bg-purple-200 {
    background-color: #e9d5ff;
}

.group:hover .group-hover\:bg-orange-200 {
    background-color: #fed7aa;
}

.group:hover .group-hover\:bg-indigo-200 {
    background-color: var(--border-color, #c7d2fe);
}

.hover\:border-blue-200:hover {
    border-color: var(--border-color, #bfdbfe);
}

.hover\:border-green-200:hover {
    border-color: #bbf7d0;
}

.hover\:border-purple-200:hover {
    border-color: #e9d5ff;
}

.hover\:border-orange-200:hover {
    border-color: #fed7aa;
}

.hover\:border-indigo-200:hover {
    border-color: #c7d2fe;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.border-2 {
    border-width: 2px;
}

.border-transparent {
    border-color: transparent;
}

.w-fit {
    width: fit-content;
}

.overflow-hidden {
    overflow: hidden;
}

.focus-visible\:border-ring:focus-visible {
    border-color: var(--ring-color);
}

.focus-visible\:ring-ring\/50:focus-visible {
    --tw-ring-color: rgba(var(--ring-color), 0.5);
}

.focus-visible\:ring-\[3px\]:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}

.aria-invalid\:ring-destructive\/20[aria-invalid="true"] {
    --tw-ring-color: rgba(239, 68, 68, 0.2);
}

.dark\:aria-invalid\:ring-destructive\/40[aria-invalid="true"] {
    --tw-ring-color: rgba(239, 68, 68, 0.4);
}

.aria-invalid\:border-destructive[aria-invalid="true"] {
    border-color: #ef4444;
}

.transition-\[color\,box-shadow\] {
    transition-property: color, box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.bg-blue-100 {
    background-color: var(--lighter-color, #dbeafe);
}

.text-blue-800 {
    color: #1e40af;
}

.hover\:bg-blue-200:hover {
    background-color: #bfdbfe;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-medium {
    font-weight: 500;
}

.rounded-md {
    border-radius: 0.375rem;
}

.border {
    border-width: 1px;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.justify-center {
    justify-content: center;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.w-fit {
    width: fit-content;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.shrink-0 {
    flex-shrink: 0;
}

.gap-1 {
    gap: 0.25rem;
}

.focus-visible\:border-ring:focus-visible {
    border-color: var(--ring-color);
}

.focus-visible\:ring-ring\/50:focus-visible {
    --tw-ring-color: rgba(var(--ring-color), 0.5);
}

.focus-visible\:ring-\[3px\]:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}

.aria-invalid\:ring-destructive\/20[aria-invalid="true"] {
    --tw-ring-color: rgba(239, 68, 68, 0.2);
}

.dark\:aria-invalid\:ring-destructive\/40[aria-invalid="true"] {
    --tw-ring-color: rgba(239, 68, 68, 0.4);
}

.aria-invalid\:border-destructive[aria-invalid="true"] {
    border-color: #ef4444;
}

.transition-\[color\,box-shadow\] {
    transition-property: color, box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.overflow-hidden {
    overflow: hidden;
}

.border-transparent {
    border-color: transparent;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.leading-relaxed {
    line-height: 1.625;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-slate-600 {
    color: #475569;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.text-slate-900 {
    color: #0f172a;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.max-w-4xl {
    max-width: 56rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-slate-50 {
    --tw-gradient-from: #f8fafc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0));
}

.to-blue-50 {
    --tw-gradient-to: var(--light-color, #eff6ff);
}

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

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.bg-white {
    background-color: #ffffff;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.items-start {
    align-items: flex-start;
}

.bg-white {
    background-color: #ffffff;
}

.text-slate-900 {
    color: #0f172a;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-6 {
    gap: 1.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.border-2 {
    border-width: 2px;
}

.hover\:border-blue-200:hover {
    border-color: var(--border-color, #bfdbfe);
}

.hover\:border-green-200:hover {
    border-color: #bbf7d0;
}

.hover\:border-purple-200:hover {
    border-color: #e9d5ff;
}

.hover\:border-orange-200:hover {
    border-color: #fed7aa;
}

.hover\:border-indigo-200:hover {
    border-color: #c7d2fe;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.group {
    position: relative;
}

.grid {
    display: grid;
}

.auto-rows-min {
    grid-auto-rows: min-content;
}

.grid-rows-\[auto_auto\] {
    grid-template-rows: auto auto;
}

.items-start {
    align-items: flex-start;
}

.gap-1\.5 {
    gap: 0.375rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-4 {
    margin-bottom: 1rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.bg-blue-100 {
    background-color: var(--lighter-color, #dbeafe);
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-purple-100 {
    background-color: #f3e8ff;
}

.bg-orange-100 {
    background-color: #fed7aa;
}

.bg-indigo-100 {
    background-color: #e0e7ff;
}

.rounded-full {
    border-radius: 9999px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.group-hover\:bg-blue-200:hover {
    background-color: #bfdbfe;
}

.group-hover\:bg-green-200:hover {
    background-color: #bbf7d0;
}

.group-hover\:bg-purple-200:hover {
    background-color: #e9d5ff;
}

.group-hover\:bg-orange-200:hover {
    background-color: #fed7aa;
}

.group-hover\:bg-indigo-200:hover {
    background-color: #c7d2fe;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.text-green-600 {
    color: #059669;
}

/* Results That Matter section styling */
.bg-blue-50 {
    background-color: var(--light-color, #eff6ff);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.text-purple-600 {
    color: #9333ea;
}

.text-orange-600 {
    color: #ea580c;
}

.text-indigo-600 {
    color: var(--primary-color, #4f46e5);
}

.leading-none {
    line-height: 1;
}

.font-semibold {
    font-weight: 600;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.text-green-600 {
    color: #059669;
}

/* Results That Matter section styling */
.bg-blue-50 {
    background-color: var(--light-color, #eff6ff);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.text-purple-600 {
    color: #9333ea;
}

.text-orange-600 {
    color: #ea580c;
}

.text-indigo-600 {
    color: var(--primary-color, #4f46e5);
}

.text-slate-600 {
    color: #475569;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.text-slate-600 {
    color: #475569;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-50 {
    --tw-gradient-from: var(--light-color, #eff6ff);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-indigo-100 {
    --tw-gradient-to: var(--lighter-color, #e0e7ff);
}

.border-2 {
    border-width: 2px;
}

.border-blue-200 {
    border-color: var(--border-color, #bfdbfe);
}

.text-slate-900 {
    color: #0f172a;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-6 {
    gap: 1.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.grid {
    display: grid;
}

.auto-rows-min {
    grid-auto-rows: min-content;
}

.grid-rows-\[auto_auto\] {
    grid-template-rows: auto auto;
}

.items-start {
    align-items: flex-start;
}

.gap-1\.5 {
    gap: 0.375rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.text-center {
    text-align: center;
}

.leading-none {
    line-height: 1;
}

.font-semibold {
    font-weight: 600;
}

.text-slate-900 {
    color: #0f172a;
}

.text-slate-600 {
    color: #475569;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.font-medium {
    font-weight: 500;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.shrink-0 {
    flex-shrink: 0;
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus-visible\:border-ring:focus-visible {
    border-color: var(--ring-color);
}

.focus-visible\:ring-ring\/50:focus-visible {
    --tw-ring-color: rgba(var(--ring-color), 0.5);
}

.focus-visible\:ring-\[3px\]:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}

.aria-invalid\:ring-destructive\/20[aria-invalid="true"] {
    --tw-ring-color: rgba(239, 68, 68, 0.2);
}

.dark\:aria-invalid\:ring-destructive\/40[aria-invalid="true"] {
    --tw-ring-color: rgba(239, 68, 68, 0.4);
}

.aria-invalid\:border-destructive[aria-invalid="true"] {
    border-color: #ef4444;
}

.text-white {
    color: #ffffff;
}

.shadow-xs {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.h-9 {
    height: 2.25rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.bg-blue-600 {
    background-color: var(--primary-color, #2563eb);
}

.hover\:bg-blue-700:hover {
    background-color: var(--secondary-color, #1d4ed8);
}

.rounded-md {
    border-radius: 0.375rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.text-left {
    text-align: left;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.font-bold {
    font-weight: 700;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-blue-600 {
    color: var(--primary-color, #2563eb);
}

.text-green-600 {
    color: #059669;
}

/* Results That Matter section styling */
.bg-blue-50 {
    background-color: var(--light-color, #eff6ff);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

.text-purple-600 {
    color: #9333ea;
}

.text-orange-600 {
    color: #ea580c;
}

.text-indigo-600 {
    color: var(--primary-color, #4f46e5);
}

.text-blue-100 {
    color: var(--light-text-color, #dbeafe);
}

.bg-blue-600 {
    background-color: var(--primary-color, #2563eb);
}

.text-white {
    color: #ffffff;
}

.border-white {
    border-color: #ffffff;
}

.hover\:bg-white:hover {
    background-color: #ffffff;
}

.hover\:text-blue-600:hover {
    color: var(--primary-color, #2563eb);
}

.h-10 {
    height: 2.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.text-secondary-foreground {
    color: var(--secondary-foreground-color);
}

.hover\:bg-secondary\/80:hover {
    background-color: rgba(var(--secondary-color), 0.8);
}

.border {
    border-width: 1px;
}

.bg-background {
    background-color: var(--background-color);
}

.dark\:bg-input\/30 {
    background-color: rgba(var(--input-color), 0.3);
}

.dark\:border-input {
    border-color: var(--input-color);
}

.dark\:hover\:bg-input\/50:hover {
    background-color: rgba(var(--input-color), 0.5);
}

.has-\[>svg\]\:px-4:has(> svg) {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Responsive Design for Services HTML */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .service-content h2 {
        font-size: 1.875rem;
    }

    .cta-section h2 {
        font-size: 1.875rem;
    }

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

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Additional padding classes */
.p-8 {
    padding: 2rem;
}

/* Results That Matter gradient backgrounds */
.from-blue-50 {
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-blue-100 {
    --tw-gradient-to: #dbeafe;
}

.from-green-50 {
    --tw-gradient-from: #f0fdf4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 253, 244, 0));
}

.to-green-100 {
    --tw-gradient-to: #dcfce7;
}

.from-purple-50 {
    --tw-gradient-from: #faf5ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0));
}

.to-purple-100 {
    --tw-gradient-to: #f3e8ff;
}

.border-blue-200 {
    border-color: var(--border-color, #bfdbfe);
}

.border-green-200 {
    border-color: #bbf7d0;
}

.border-purple-200 {
    border-color: #e9d5ff;
}

.items-stretch {
    align-items: stretch;
}

/* Additional classes for pixel-perfect match */
.rounded-full {
    border-radius: 9999px;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.bg-blue-600 {
    background-color: var(--primary-color, #2563eb);
}

.text-white {
    color: #ffffff;
}

.hover\:bg-blue-700:hover {
    background-color: var(--secondary-color, #1d4ed8);
}

.hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}

.h-12 {
    height: 3rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.h-5 {
    height: 1.25rem;
}

.w-5 {
    width: 1.25rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.mr-2 {
    margin-right: 0.5rem;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.text-green-600 {
    color: #059669;
}

/* Results That Matter section styling */
.bg-blue-50 {
    background-color: var(--light-color, #eff6ff);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Force horizontal grid layout for Results That Matter */
.results-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Dynamic Color Classes - These will work with any color scheme */
.text-purple-custom {
    color: var(--primary-color, #5c1c83);
}

.bg-purple-custom {
    background-color: var(--primary-color, #5c1c83);
}

.bg-purple-custom-light {
    background-color: var(--light-color, #f3e8ff);
}

.bg-purple-custom-lighter {
    background-color: var(--lighter-color, #e9d5ff);
}

.border-purple-custom-border {
    border-color: var(--border-color, #c4b5fd);
}

.text-purple-custom-light-text {
    color: var(--light-text-color, #ddd6fe);
}

.to-purple-custom {
    --tw-gradient-to: var(--light-color, #f3e8ff);
}

/* Menu Item Styling - Translucent Colors */
.nav-links a:not(.cta-btn):not([href*="linkedin"]) {
    color: #64748b !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
}

.nav-links a:not(.cta-btn):not([href*="linkedin"]):hover {
    color: #1e293b !important;
}

/* LinkedIn Icon Styling */
.nav-links a[href*="linkedin"] {
    color: #64748b !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
}

.nav-links a[href*="linkedin"]:hover {
    color: #2563eb !important;
}

/* Force white text for Get Started button - Override any Tailwind conflicts */
.nav-links a.cta-btn,
.nav-links a[href*='contact']:last-child,
.nav-links a.text-white {
    color: #ffffff !important;
}