/* =========================================
   1. VARIABLES & RESETS
   ========================================= */
:root {
    /* Brand Colors */
    --color-primary: #C2185B;
    --color-primary-light: #F7CAC9;
    --color-white: #FFFFFF;
    --color-border: #2F7F4F;
    --color-accent-orange: #F9A064;
    --color-accent-purple: #9D84B7;
    --color-pod-bg: #F5F8FA;
    --color-card-bg: #EBECF2;
    --color-cream-bg: #FDF8F3;
    --color-navy: #000035;
    --color-error: #cc071E;
    --color-link: #006596;

    /* Typography */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Desktop Sizes */
    --h1-desktop: 48px;
    --h1-line-height-desktop: 56px;
    --h2-desktop: 36px;
    --h2-line-height-desktop: 44px;
    --h3-desktop: 30px;
    --h4-desktop: 25px;
    --body-desktop: 19px;
    --body-line-height-desktop: 32px;

    /* Mobile Sizes */
    --h1-mobile: 32px;
    --h2-mobile: 28px;
    --h3-mobile: 24px;
    --h4-mobile: 20px;
    --body-mobile: 18px;
    --body-line-height-mobile: 30px;

    /* Utilities */
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: var(--body-desktop);
    line-height: var(--body-line-height-desktop);
    color: var(--color-navy);
    background-color: var(--color-white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-link); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary); }

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Accessibility Utilities */
.skip-link {
    position: absolute; top: -100px; left: 0; background: var(--color-primary); 
    color: white; padding: 1rem; z-index: 100; transition: top 0.3s;
}
.skip-link:focus { top: 0; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Layout Containers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 { 
    font-family: var(--font-heading); color: var(--color-navy); 
    line-height: 1.2; margin-bottom: 1rem; 
}
h1 { font-size: var(--h1-desktop); line-height: var(--h1-line-height-desktop); }
h2 { font-size: var(--h2-desktop); line-height: var(--h2-line-height-desktop); }
h3 { font-size: var(--h3-desktop); }
p { margin-bottom: 1.5rem; }

.statement h2 { white-space: normal; }

@media (max-width: 768px) {
    h1 {
        font-size: var(--h1-mobile);
        line-height: 1.25;   /* 40px at 32px — proper mobile leading */
    }
    h2 {
        font-size: var(--h2-mobile);
        line-height: 1.3;    /* ~36px at 28px */
    }
}

/* =========================================
   3. BUTTONS & CARETS
   ========================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background-color: var(--color-primary); color: white; padding: 0.75rem 1.5rem;
    border-radius: 8px; font-weight: 600; text-align: center; border: none; cursor: pointer;
    font-size: 18px; text-decoration: none;
}
.btn:hover { 
    background-color: var(--color-link); 
    color: white; 
}

.btn-secondary {
    display: inline-flex; 
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem; 
    background-color: transparent;
    color: var(--color-primary); 
    border: 2px solid var(--color-primary);
    border-radius: 6px; 
    font-family: var(--font-body);
    font-size: var(--body-desktop);
    font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none;
}
.btn-secondary:hover { 
    background-color: var(--color-primary);
     color: white;
     }

.btn-outline {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-accent-purple);
    border-radius: 8px; 
    color: var(--color-navy);
    background-color: transparent;
    font-weight: 600; 
    text-decoration: none; 
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background-color: var(--color-accent-purple);
    border-color: var(--color-accent-purple); color: white;
}

/* Unified Caret Style */
.caret, .nav-caret, .caret-down {
    width: 16px !important; 
    height: 16px !important;
    flex-shrink: 0; 
    vertical-align: middle;
    display: inline-block !important; 
    visibility: visible !important; 
    opacity: 1 !important;
    stroke: currentColor;
}

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
header {
    background-color: var(--color-cream-bg); border-bottom: 1px solid var(--color-card-bg);
    position: sticky; top: 0; z-index: 50;
}
.header-container {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px; 
    margin: 0 auto;
}
.logo img { 
    height: 70px; 
    width: auto; 
    display: block;
    margin-left: -0.375rem;
    
 }

/* Desktop Nav */
nav ul {
     display: flex; 
     list-style: none;
     gap: 2rem; 
     align-items: center;
     }
nav a,
nav button.dropdown-toggle {
    color: var(--color-navy);
    font-weight: 500;
    padding: 0.5rem;
}

nav a:hover,
nav button.dropdown-toggle:hover {
    color: var(--color-primary);
}
nav a.active { 
    color: var(--color-navy);
    border-bottom: 3px solid var(--color-border); 
    padding-bottom: 4px;
 }

.menu-toggle {
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer;
    flex-direction: column; 
    align-items: center; 
    gap: 0.25rem;
    font-family: var(--font-body);
    font-weight: 600; 
    font-size: 0.9rem; 
    color: var(--color-navy);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Dropdowns */
.dropdown { 
    position: relative;
 }
.dropdown-toggle { 
    display: flex; 
    align-items: center; 
    gap: 0.25rem; 
    cursor: pointer;
 }
.dropdown-menu {
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: white;
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 53, 0.15);
    opacity: 0; 
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none; 
    display: flex !important;
    flex-direction: column !important;
}
.dropdown:hover .dropdown-menu {
     opacity: 1;
    visibility: visible; 
    transform: translateY(0); 
}
.dropdown-menu a {
    display: block; 
    padding: 0.75rem 1.5rem;
    border-bottom: none !important;
    text-align: center;
    font-weight: 400;
    color: var(--color-navy);
}
.dropdown-menu a:hover { 
    background-color: var(--color-pod-bg);
     color: var(--color-primary);
     }
.dropdown-menu a.active { 
    background-color: var(--color-primary); 
    color: white;
    font-weight: 600;
 }

.dropdown-toggle.active { 
    color: var(--color-navy);
    border-bottom: 3px solid var(--color-border);
    padding-bottom: 4px;
 }
button.dropdown-toggle {
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    padding: 0;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-caret { 
    margin-left: 4px;
    transition: transform 0.3s ease;
 }

nav a:hover .nav-caret {
     transform: rotate(180deg);
}
.dropdown.open .dropdown-toggle svg,
.dropdown-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg) !important;
}
.menu-close {
     display: none;
     }          /* hidden on desktop */

body.menu-open { 
    overflow: hidden;
 }

@media (max-width: 768px) {
    .menu-toggle { 
        display: flex !important;
     }
     header .btn,
     header .btn-outline {
        margin-top: 0.75rem;
     }

    nav {
         display: none; 
         visibility: hidden;
    }

    nav.active {
        display: block;
        position: fixed;
        inset: 0;                 /* entire viewport */
        z-index: 999;             /* above the header (50) → covers the WHOLE page */
        background-color: var(--color-cream-bg);
        overflow-y: auto;
        padding: 4.5rem 1.5rem 2.5rem;
        visibility: visible;
    }

    .menu-close {
        display: flex;
        align-items: center; 
        justify-content: center;
        position: absolute; 
        top: 1rem; 
        right: 1.25rem;
        width: 3.5rem;            /* was 44px */
        height: 3.5rem;           /* was 44px */
        background: none;
        border: none;
        border-radius: 8px;
        color: var(--color-navy);
        font-size: 2.25rem;       /* was 1.5rem – bigger × */
        cursor: pointer;
    }

    nav ul { 
        flex-direction: column; 
        gap: 0;
        padding: 0; 
        margin: 0; 
    }
    nav li { width: 100%; }
    nav a {
        display: block; padding: 1.1rem 0.25rem;
        border-bottom: var(--color-border);
        font-size: 1.125rem; 
        font-weight: 600; 
        color: var(--color-navy);
    }
   

    /* Accordions */
    .dropdown-menu {
        position: static !important; 
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: transparent; 
        min-width: 0;
        padding: 0 0 0.5rem 1rem;
        display: none !important;
    }
    .dropdown.active .dropdown-menu { 
        display: flex !important;
        border-top: 1px solid var(--color-border);
        padding-top: 0.75rem;
        margin-top: 0.75rem;
        
     }
    .dropdown-menu a { 
        font-weight: 400; 
        font-size: 1rem; 
        padding: 0.9rem 0.25rem;
        text-align: left;
    }
    .dropdown-toggle .nav-caret { 
        transition: transform 0.3s ease;
     }
    .dropdown.active .dropdown-toggle .nav-caret { 
        transform: rotate(180deg); 
    }
    .dropdown-toggle .nav-caret { 
        transform: rotate(180deg); 
    }
} 
/* =========================================
   5. FOOTER
   ========================================= */
 footer {
     background-color: var(--color-cream-bg); 
     padding: 3rem 2rem 1rem;
}
.footer-container {
     max-width: 1200px;
     margin: 0 auto;
}
.footer-top {
    display: flex; 
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left { 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo-link img { 
    height: 60px;
    width: auto;
    display: block;
    margin-left: -0.375rem;
}

.social-links {
    display: flex; 
    gap: 1rem; 
    margin-top: 0.25rem; 
    list-style: none;
    padding-left: 2rem;
}

.social-links a {
    display: inline-flex; 
    width: 30px;
    height: 30px; 
    align-items: center; 
    justify-content: center;
    color: var(--color-navy);
    background: none;
    border-radius: 0;

}

.social-links svg { 
    width: 24px; 
    height: 24px;
    overflow: visible;
}

.social-links a {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background-position: center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
}

/* Bluesky */
.social-links a[aria-label="Bluesky"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230085FF' d='M12 10.8c-1.087-2.114-4.046-6.053-6.798-7.995C2.566.944 1.561 1.266.902 1.565.139 1.908 0 3.08 0 3.768c0 .69.378 5.65.624 6.479.815 2.736 3.713 3.66 6.383 3.364.136-.02.275-.039.415-.056-.138.022-.276.04-.415.056-3.912.58-7.387 2.005-2.83 7.078 5.013 5.19 6.87-1.113 7.823-4.308.953 3.195 2.81 9.498 7.823 4.308 4.557-5.073 1.082-6.498-2.83-7.078a6.75 6.75 0 0 1-.415-.056c.14.017.279.036.415.056 2.67.297 5.568-.628 6.383-3.364.246-.828.624-5.79.624-6.478 0-.69-.139-1.861-.902-2.206-.659-.298-1.664-.62-4.3 1.24C16.046 4.748 13.087 8.687 12 10.8Z'/%3E%3C/svg%3E");
}
.social-links a[aria-label="Bluesky"]:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23C2185B' d='M12 10.8c-1.087-2.114-4.046-6.053-6.798-7.995C2.566.944 1.561 1.266.902 1.565.139 1.908 0 3.08 0 3.768c0 .69.378 5.65.624 6.479.815 2.736 3.713 3.66 6.383 3.364.136-.02.275-.039.415-.056-.138.022-.276.04-.415.056-3.912.58-7.387 2.005-2.83 7.078 5.013 5.19 6.87-1.113 7.823-4.308.953 3.195 2.81 9.498 7.823 4.308 4.557-5.073 1.082-6.498-2.83-7.078a6.75 6.75 0 0 1-.415-.056c.14.017.279.036.415.056 2.67.297 5.568-.628 6.383-3.364.246-.828.624-5.79.624-6.478 0-.69-.139-1.861-.902-2.206-.659-.298-1.664-.62-4.3 1.24C16.046 4.748 13.087 8.687 12 10.8Z'/%3E%3C/svg%3E");
}

/* Facebook */
.social-links a[aria-label="Facebook"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231877F2' d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}
.social-links a[aria-label="Facebook"]:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23C2185B' d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

/* Instagram */
.social-links a[aria-label="Instagram"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23E1306C' d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.057 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z'/%3E%3C/svg%3E");
}
.social-links a[aria-label="Instagram"]:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000035' d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.057 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z'/%3E%3C/svg%3E");
}

/* LinkedIn */
.social-links a[aria-label="LinkedIn"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230A66C2' d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E");
}
.social-links a[aria-label="LinkedIn"]:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23C2185B' d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E");
}

.footer-links {
    display: flex; 
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none; 
    padding-top: 1.25rem;
}
.footer-links a { 
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem; 
}
.footer-links a:hover { 
    color: var(--color-primary); 
    gap: 0.5rem;
}

.footer-links .caret { 
    stroke: var(--color-primary);
    margin-left: 4px; 
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    text-align: left; 
    font-size: 14px; 
    color: var(--color-navy);
    opacity: 0.7;
}
@media (max-width: 768px) {
    .social-links { 
        padding-left: 0.5rem;
        margin-top: 1.5rem;
    }
    .footer-top {
        gap: 1.5rem;
    }         /* space between the social row and the links */
    .footer-bottom { 
        margin-top: 1rem;
     }  /* space above the copyright */
}



/* =========================================
   6. HOMEPAGE HERO
   ========================================= */
.hero {
    max-width: 1200px; margin: 0 auto; padding: 6rem 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-content { max-width: 550px; }
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content p {
    font-size: var(--body-desktop); line-height: var(--body-line-height-desktop);
    margin-bottom: 2rem; overflow-wrap: break-word;
}
.hero-image img { width: 100%; height: auto; border-radius: 16px; }

/* =========================================
   7. HOMEPAGE: MOST AGENCIES SECTION
   ========================================= */
.most-agencies-section { 
    background-color: var(--color-pod-bg);
     padding: 3rem 0;
}
.home-value-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.home-value-card {
    background-color: #E4E6EF;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 90px auto;
    column-gap: 1.5rem;
    align-items: start;
    text-align: left;
}
.home-value-card img {
    grid-row: 1;
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.home-value-card h4 {
    grid-row: 1;
    font-size: 1.25rem;
    margin: 0;
    padding-top: 1.75rem;
    color: var(--color-navy);
}
.home-value-card p {
    grid-column: 1 / -1;
    margin: 1.5rem 0 0;
}

@media (max-width: 768px) {
    .home-value-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* =========================================
   8. HOMEPAGE: TAILORED SOLUTIONS
   ========================================= */
.solutions-section { background-color: var(--color-primary-light); padding: 5rem 0; }
.solutions-header { text-align: center !important; margin-bottom: 3rem; width: 100%; }
.solutions-header h2 {
    font-size: var(--h2-desktop); color: var(--color-navy);
    margin: 0 auto; max-width: 800px;
}
.solutions-section .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.solutions-section .container > .solutions-grid {
    display: grid !important; grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important; width: 100% !important; max-width: 1000px !important;
    margin: 0 auto !important; padding: 0 !important;
}

.solution-card {
    background-color: var(--color-cream-bg); border: 3px solid var(--color-border);
    border-radius: 12px; padding: 2.5rem; text-align: left; width: 100%;
}
.solution-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--color-navy); }
.solution-card p {
    font-size: var(--body-desktop); line-height: var(--body-line-height-desktop);
    margin-bottom: 1.5rem;
}
.solution-card .btn-link {
    color: var(--color-primary); 
    font-weight: 600;
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    text-decoration: none;
}
.solution-card .text-link {
    color: var(--color-primary); 
    font-weight: 600;
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem;
    text-decoration: none; 
    transition: opacity 0.3s ease;
}
.solution-card .text-link:hover {
    color: var(--color-link, #006596);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}
.solution-card .text-link .caret { 
    stroke: var(--color-primary);
 }

@media (max-width: 768px) {
    .solutions-section .container > .solutions-grid {
        grid-template-columns: 1fr !important;   /* ✅ stacks the cards */
        gap: 1.5rem !important;
    }

    .solution-card { padding: 1.5rem; }          /* 2.5rem is a lot on a phone */

    /* same specificity bug as the H1: this h2 ignores the mobile size override */
    .solutions-header h2 { 
        font-size: var(--h2-mobile);
        line-height: 1.3;
        text-align: left;
     }
}
/* =========================================
   9. PROCESS PAGE & HOMEPAGE PROCESS SECTION
   ========================================= */
.process-intro {
    background-color: #F5F8FA;   
    background-color: var(--color-pod-bg);
    padding: 3rem 0; 
    width: 100%;
}

.process-intro .eyebrow {
    font-weight: 700;
    font-size: var(--body-desktop);
    margin-bottom: 0.5rem;
    display: block;
    color: var(--color-navy);
}

.process-intro > .container > p {
    max-width: 900px;
}
.process-cta .btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-accent-purple);
    border-radius: 8px;
    color: var(--color-navy);
    background-color: transparent;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.process-cta {
    text-align: center !important;
    margin-top: 4rem;
}
/* =========================================
   PROCESS PAGE: WHY CLIENTS TRUST (VALUES)
   ========================================= */
.values-section {
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5rem;
}

.values-section .value-card {
    display: flex;
    flex-direction: column;
    align-items: center;      /* centers the img AND the p block */
    text-align: center;
}
.values-section .value-card img {
    display: block;
    height: 120px;
    width: auto;
    margin: 0 auto 1.5rem;
}
.values-section .value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}
.values-section .value-card p {
    margin-bottom: 0;         
    width: 100%;
    text-align: center;
    text-wrap: pretty;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
   .values-section .value-card h4 {
        text-align: center !important;
        width: 100%;        
   } 
   .values-section .value-card img{
        max-width: 200px;
        max-height: 200px;
        margin: 0 auto;
     }
   }

/* =========================================
   PROCESS SECTION HOMEPAGE
   ========================================= */
.process-section { background-color: var(--color-cream-bg); padding: 3rem 0; }
.process-section .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.process-header { text-align: center; max-width: 800px; margin: 0 auto 2rem; }
.process-header h2 { margin-bottom: .5rem; }
.process-header p { font-size: var(--body-desktop); line-height: var(--body-line-height-desktop); margin: 0; }

.process-desktop-img {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 3rem;
    height: auto;
}
.process-mobile-img {
    display: none;          
}
div.home-process-steps {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

article.home-process-step {
    display: flex !important;
    flex-direction: column !important;   /* heading over paragraph */
    align-items: center;
    text-align: center;
}

article.home-process-step h3 {
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
    color: var(--color-navy);
    width: 100%;
    text-align: center !important;
}

article.home-process-step p {
    font-size: var(--body-desktop);
    line-height: var(--body-line-height-desktop);
    margin: 0;
    width: 100%;
    text-align: left;
}

@media (max-width: 768px) {
    div.home-process-steps {
        grid-template-columns: 1fr !important;
    }
    .process-desktop-img { display: none; }
    .process-mobile-img {
        display: block;
        width: auto;        /* tune 120–160px */
        height: 100px;
        margin: 0 auto 1rem;
    }
}
 

/* ✅ GLOBAL NAVY CTA SECTION - Used on ALL pages */
.cta-section{
    background-color: #000035;
}
.cta-section .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 3rem;
    align-items: center;
}
.cta-section .container div {
    display: contents;
}
.cta-section .container h2 {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    margin-bottom: 1rem;
    color:#F5F8FA
}
.cta-section .container p {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
    color:#F5F8FA
}
.cta-section .container a[class*="btn"] {
    grid-column: 2;
    grid-row: 1 / -1;
    display: inline-flex;
    width: auto;
    margin: 0;
    justify-self: end;
}
@media (max-width: 768px) {
    .cta-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 1.5rem;
    }

    .cta-section .container h2 {
        grid-column: 1;
        grid-row: auto;
        text-align: center;
    }

    .cta-section .container p {
        grid-column: 1;
        grid-row: auto;
        text-align: left;
    }

    .cta-section .container a[class*="btn"] {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
    }
}

/* =========================================
   PROCESS PAGE: DETAIL STEPS
   ========================================= */
.process-detail-section {
    background-color: var(--color-cream-bg);
    padding: 5rem 0;
}

.process-detail-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* 2x2 cards – replaces the zigzag */
.process-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.process-row {
    display: flex;
    flex-direction: column;
    background: var(--color-cream-bg, #fff);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 0;
}
.process-row-img {
    height: 160px;                 /* identical slot on every card – tune to taste */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-row-img img {
     height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;           /* scales each drawing into the slot, no distortion */
    margin: 0;
}

.process-row-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
}
.process-row-content {
    display: flex;
    flex-direction: column;
    flex: 1;                        /* fills the card height */
}
.process-row-content p {
    margin-bottom: 1rem;
    text-align: left;
}
.process-row-content p:not(.deliverables) {
    flex: 1;                       /* body copy stretches, deliverables drop to the bottom */
}
.deliverables {
    color: var(--color-primary);   /* pink restored */
    font-weight: 700;
}

@media (max-width: 768px) {
    .process-steps-list {
        grid-template-columns: 1fr;   /* cards stack on phones */
    }

}

/* =========================================
   10. SERVICES PAGES
   ========================================= */
.services-intro, 
.small-biz-hero, 
.mid-biz-hero { 
    background-color: var(--color-pod-bg); 
    padding: 3rem 0 2.5rem;
}
.services-intro .eyebrow, 
.small-biz-hero .eyebrow,
.mid-biz-hero .eyebrow {
    font-weight: 700;
    font-size: var(--body-desktop); 
    margin-bottom: 0.5rem; 
    display: block;
}
.services-intro > .container > p, 
.small-biz-hero > .container > p,
.mid-biz-hero > .container > p { 
    max-width: 900px;
    margin-bottom: 0;   /* kills the invisible extra height */
}
.small-biz-hero .btn,
.mid-biz-hero .btn {
    margin-top: 2rem;   /* restores breathing room now the p margin is gone */
}
.small-biz-hero .btn:focus,
.small-biz-hero .btn:focus-visible,
.mid-biz-hero .btn:focus,
.mid-biz-hero .btn:focus-visible {
    outline: 3px solid var(--color-navy);
    outline-offset: 3px;
}
.what-we-do { 
    padding: 5rem 0;
 }
.what-we-do h2 { 
    text-align: center;
    margin-bottom: 1rem;
 }
.what-we-do > .container > p {
    max-width: none;              
    margin: 0 0 3rem;
    text-align: left;
    text-wrap: pretty;
}

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

.service-card {
    background-color: var(--color-cream-bg); 
    padding: 2rem; 
    border-radius: 12px; 
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}
.service-card.orange { 
    border-color: #F9A064;
 }
.service-card.purple { 
    border-color: #9D84B7; 
}
.service-card.pink { 
    border-color: #F7CAC9;
 }

.service-card img { 
    height: 180px; 
    width: auto;
    max-width: 100%;
    margin: 0 auto 1.5rem; 
    display: block;
    object-fit: contain;
 }
.service-card h3 { 
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
    text-align: center; 
    width: 100%;
 }
.service-card p { 
    font-size: 1.25rem; 
    line-height: 1.6; 
    margin-bottom: 0; 
    text-align: left;
    width: 100%;
}
.tailored-solutions { 
    padding: 5rem 0;
    background-color: var(--color-primary-light);
 }
.tailored-solutions h2 { 
    text-align: center; 
    margin-bottom: 0.5rem; 
}
.tailored-solutions > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}
.business-types { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
 }
.business-card {
   background-color: var(--color-cream-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid var(--color-border);
    display: flex;
    flex-direction: column;
}
.business-card h3 {  
    margin-bottom: 1rem; 
}
.business-card .btn-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    text-decoration: none;
}
/* =========================================
   SERVICES PAGE: BUILD YOUR OWN ENGAGEMENT
   ========================================= */

.build-engagement {
    background-color: var(--color-pod-bg);
    padding: 5rem 0;
}

.build-engagement h2 {
    text-align: left;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    
}

.build-engagement > .container > p {
    text-align: left;
    max-width: 1005px;
    margin: 0 0 3rem;
    padding-left: 2.5rem;
}

.engagement-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* Remove gap so borders sit perfectly between padded columns */
}

.engagement-column {
    padding: 0 2.5rem;
}
.engagement-column:not(:last-child) {
    border-right: 1px solid var(--color-navy);
}

.engagement-column h3 {
    font-size: 1.5rem; /* ✅ Larger heading to match Figma */
    margin-bottom: 2rem; /* ✅ More space below heading */
    color: var(--color-navy);
    border-bottom: none !important;
    white-space: nowrap;
}

.engagement-column ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin: 0;
}

.engagement-column li {
    margin-bottom: 2rem; /* ✅ More space between list items */
    font-size: 18px; /* ✅ Larger body copy to match Figma */
    line-height: 1.6; /* ✅ Better line height for readability */
}

.engagement-column li strong {
    display: inline;
    color: var(--color-navy);
    font-weight: 700;
}

/* ✅ Mobile adjustments */
@media (max-width: 768px) {
    .engagement-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .engagement-column:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--color-navy);
        padding-bottom: 2rem;
    }
    .engagement-column li {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }
    .build-engagement h2,
    .build-engagement > .container > p {
        text-align: center;
        padding-left: 0;   /* drops the desktop 2.5rem inset */
    }
}
/* Small Business Specific */
.big-agency { 
    padding: 5rem 0;
 }

.big-agency h2 { 
    text-align: left;
    margin-bottom: 2rem; 
    font-size: 2rem; 
}
.big-agency-grid {
     display: grid; 
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: start;
 }
.big-agency-grid img { 
    width: 100%;
    max-width: 560px; 
    height: 300px; 
    border-radius: 12px;
 }

.choose-start { 
    padding: 5rem 0;
 }
 .choose-start h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.quick-wins-intro {
    text-align: left;
    max-width: 100%;
    margin: 0 auto 3rem;
}
.quick-wins-intro h3 {
    margin-bottom: 0.5rem;
    text-align: left;
}
.decorative-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #EBECF2 18%, #F7CAC9 30%, #F9A064 51%, #9D84B7 73%, #2F7F4F 97%);
    margin: 0;
    padding: 0;
    border: none;
}
/* ===== MID-BIZ: DEFINITIVE VERSION ===== */
.partnerships-section {
    padding: 2.5rem 0 0;
}
.partnerships-section h2 {
    text-align: center;
    padding: 0;
}
.pricing-overhaul {
    padding: 1.5rem 0 0;

}
.ongoing-support {
    padding: 2.5rem 0 3.5rem;
   
}
.pricing-overhaul h3,
.ongoing-support h3 {
    text-align: left;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    padding: 0;
}
.pricing-overhaul > .container > p,
.ongoing-support > .container > p {
    margin: 0 0 2.5rem;
}
.pricing-grid.two-up {
    max-width: none;   /* cards line up with their own heading */
    margin: 0;
}

/* =========================================
   SERVICES PAGE: PRICING CARDS (single source of truth)
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    row-gap: 1.25rem;
    align-items: stretch;
}

.pricing-card {
    grid-row: span 7;              /* header, price, desc, subhead, list, note, button */
    grid-template-rows: subgrid;   /* ✅ rows are SHARED across all cards */
    grid-template-columns: 85px 1fr;
    column-gap: 1.5rem;
    align-items: start;
    background-color: var(--color-cream-bg);
    border: 3px solid var(--color-primary);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);;
}

/* Row 1 – icon + title */
.pricing-card img {
    grid-column: 1;
    grid-row: 1;
    width: 85px; 
    height: 80px;
    object-fit: contain;
    align-self: center;
    margin: 0;
}
.pricing-card h4 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-navy);
    line-height: 1.2;
    align-self: center;
}

/* Row 2 – price */
.pricing-card .price {
    grid-column: 1 / -1;
    grid-row: 2;
    color: var(--color-primary);
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    display: block;
    text-align: center;
}

/* Row 3 – description (matches with OR without the card-desc class) */
.pricing-card .card-desc,
.pricing-card .price + p {
    grid-column: 1 / -1; 
    grid-row: 3;
    margin: 0;
    margin-top: 0.5rem;
}

/* Row 4 – divider + "What you get:" */
.pricing-card .card-subhead {
    grid-column: 1 / -1; grid-row: 4;
    font-family: var(--font-body);
    font-size: var(--body-desktop);
    line-height: var(--body-line-height-desktop);
    color: var(--color-navy);
    font-weight: 700;
    margin: 1rem 0 0;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-border);
}

/* Row 5 – bullets */
.pricing-card ul {
    grid-column: 1 / -1; grid-row: 5;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    margin-bottom: 1rem;
}
.pricing-card ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 18px;
}
.pricing-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.60rem;
    width: 12px; 
    height: 12px;
    border-radius: 25%;
    background-color: var(--color-border);
}

/* Row 6 – the "*cost depends on recruiting" footnote */
.pricing-card ul + p {
    grid-column: 1 / -1; grid-row: 6;
    margin: 0;
    font-size: 0.85rem;
}

/* Row 7 – button */
.pricing-card .btn-outline {
    grid-column: 1 / -1; grid-row: 7;
    width: auto;
    justify-self: start;
    align-self: stretch;
    justify-content: flex-start;
    text-align: left;
    color: var(--color-navy);
}

/* Section coding: borders + buttons */
.pricing-card.pink   { 
    border-color: var(--color-primary-light);
    background-color: var(--color-cream-bg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
 }
.pricing-card.orange { 
    border-color: var(--color-accent-orange); 
    background-color: var(--color-cream-bg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.pricing-card.pink .btn-outline { 
    border-color: var(--color-primary-light);
 }
.pricing-card.orange .btn-outline { 
    border-color: var(--color-accent-orange);
 }
.pricing-card.pink .btn-outline:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary-light);
    color: var(--color-white);
}
.pricing-card.orange .btn-outline:hover {
    background-color: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
    color: var(--color-navy);
}

/* Section headers (unchanged) */
.high-impact { 
    padding: 1rem 0; 
}
.high-impact h2 { 
    font-size: 1.75rem; 
    margin-bottom: 0.5rem; 
    text-align: left;
 }
.high-impact-intro { 
    text-align: left; 
    max-width: 100%;
     margin: 0 auto 3rem;
     }
/* HEADER LOCK – icon left, title right.
   Keep this at the END of the pricing card styles. */
article.pricing-card {
    display: grid;
    grid-template-columns: 85px 1fr;
}

article.pricing-card > img {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 85px;
    height: 80px;
    object-fit: contain;
    align-self: center;
    margin: 0;
}

article.pricing-card > h4 {
    grid-column: 2 !important;   /* title in the column right of the icon */
    grid-row: 1 !important;
    align-self: center;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--color-navy);
}
/* Buttons: smaller label, centered in the card */
article.pricing-card .btn-outline {
    grid-column: 1 / -1;
    grid-row: 7;
    width: auto;
    min-height: 3.5rem;
    justify-self: center;    /* ✅ centers the button horizontally in the card */
    align-self: stretch;
    font-size: 18px;         /* ✅ was inheriting the 20px body size */
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: minmax(0, 1fr) !important;  /* track capped at container width */
    }
    .pricing-card {
        min-width: 0;          /* cards can't push the track open */
    }
    .pricing-card .btn-outline {
        white-space: normal;   /* labels wrap on phones */
        max-width: 100%;
    }
}
/* ---- Two-card row (mid biz page): compact height ---- */
.pricing-grid.two-up {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;          /* keeps the two cards from getting overly wide */
    margin: 0 auto;
    row-gap: 1rem;              /* tighter rhythm than the 3-up rows */
}

.pricing-grid.two-up .pricing-card {
    grid-template-rows: subgrid;  /* the two cards still align with EACH OTHER */
    margin-bottom: 0;
    align-content: start;
}

/* Remove any forced band heights on this row – let content set the height */
.pricing-grid.two-up .card-desc,
.pricing-grid.two-up .price + p {
    min-height: 0;
}

.pricing-grid.two-up .card-subhead {
    margin-top: 1rem;
    padding-top: 1rem;
}

.pricing-grid.two-up ul {
    margin-bottom: 0.5rem;
}

.pricing-card.overhaul{
    border-color: #9D84B7;
    border-width: 2px;
    padding-bottom: 3rem;
}
.pricing-card.ongoing {
    border-color:#2F7F4F;
    border-width: 2px;
}

/* Two-up row ONLY – uniform buttons for the ongoing section */
.pricing-grid.two-up .btn-outline {
    width: 100%;              /* both buttons identical width */
    justify-self: stretch;
    justify-content: center;  /* label + caret centered inside */
    text-align: center;
    align-self: stretch;      /* identical heights */
    min-height: 3.5rem;
}
/* Three-across row on mid biz (overhaul cards) – its own button style */
.pricing-card.overhaul .btn-outline { 
    border-color: var(--color-accent-purple);
    width: auto;    
    max-height: 3rem;          /* all three buttons identical width */
    justify-self: stretch;
    justify-content: center;  /* label + caret centered inside */
    text-align: left;
    align-self: stretch;      /* identical heights */
    min-height: 3.5rem;
    white-space: nowrap;
    
 }
.pricing-card.ongoing .btn-outline { 
    border-color: var(--color-border);
 }
.pricing-card.overhaul .btn-outline:hover {
    background-color: var(--color-primary);
    border-color: var(--color-accent-purple);
    color: var(--color-white);
}
.pricing-card.ongoing .btn-outline:hover {
    background-color: var(--color-primary);
    border-color: var(--color-border);
    color: var(--color-cream-bg);
}

@media (max-width: 768px) {
    .pricing-grid.two-up {
        grid-template-columns: 1fr !important;   /* stack like the section above */
        max-width: 100% !important;              /* cards use the full container width */
    }
}
/* =========================================
   11. BLOG STYLES
   ========================================= */
.blog-hero {
    background-color: var(--color-pod-bg); 
    padding: 4rem 0 3rem; 
}
.blog-hero h1 {
   margin-bottom: 1rem; 
}
.blog-hero p {
    font-size: var(--body-desktop);
    max-width: none;
    text-align: left;
    text-wrap: pretty;
}


.posts-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
 }
 
.post-card {
    display: flex; 
    flex-direction: column;
    background-color: var(--color-card-bg);
    border-radius: 12px; 
    overflow: hidden; 
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) ;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);

}

.post-card:hover { 
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
 }
.post-card a {
     margin-top: auto; 
     font-size: 18px; 
     display: inline-flex; 
     align-items: center; 
     gap: 0.5rem;
     min-height: 44px;
     color: var(--color-primary);
 }

 .post-card a:hover {
    color: var(--color-link);
    text-decoration: underline;
}

.featured-post {
    padding: 5rem 0;
}

.featured-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    gap: 4rem;
 }

 .featured-grid > img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.post-badge {
    display: inline-block;
    background-color: var(--color-border);   
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
}


.featured-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}
.featured-excerpt {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-navy);
}

.recent-posts {
    padding: 0 0 5rem 0;

}

.recent-posts h2{
    font-size: 2rem; 
    margin-bottom: 3rem; 
    color: var(--color-navy);
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .featured-title {
        font-size: var(--h2-mobile);
        line-height: 1.3;
    }
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.post-header {
    background-color: var(--color-pod-bg);
    padding: 2.5rem 0 1rem;
    margin-bottom: 3rem;
}
.post-header .container { 
    max-width: 1100px; 
}
.post-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.post-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
}
.post-header .back-link svg {
    width: 16px;
    height: 16px;
    transform: rotate(180deg);
}
.post-header .post-date {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-navy);
}
.post-header h1 { 
    margin-bottom: 1rem;
    font-size: 2.5rem;
    line-height: 1.2;
}
.post-header .post-author {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
}
.post-content {
    padding: 0 0 2.5rem 0;
}
.post-content li { 
    font-size: 1.125rem; 
    line-height: 1.6; 
    margin-bottom: 0.5rem;
    color: var(--color-navy);   /* was: -var(--color-navy) — invalid, rule ignored */
}
.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 3.5rem;    /* was 2rem – nudged toward center, still left-anchored */
}
@media (max-width: 768px) {
    .post-content ul,
    .post-content ol { padding-left: 1.5rem; }   /* don't eat phone width */
}
.post-header .header-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.label-problem {
    color: var(--color-primary);
 }
.label-fix     { 
    color: var(--color-border);
 }
 .post-card h3 {
    min-height: 4.8em;   /* 4 lines × 1.2 line-height = one uniform heading slot */
}
@media (max-width: 768px) {
    .post-header-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .post-header h1{
        font-size: var(--h1-mobile)
    }
    .post-header {
        margin-bottom: 2rem;
    }
    .post-card h3 { 
        min-height: 0;
     }  /* don't waste space when stacked */
}
/* =========================================
   12. FORMS & CONTACT
   ========================================= */
.contact-hero {
    background-color: var(--color-pod-bg);
    padding: 2rem 0 1rem;              /* shortened, per your earlier note */
}
.contact-hero p {
    max-width: 800px;
    font-size: var(--body-desktop);
    line-height: var(--body-line-height-desktop);
}
.contact-form-section { 
    padding: 2.5rem 0 4rem;
 }

#contactForm h2 { 
    margin-bottom: 0.5rem; 
}
.form-note { 
    font-size: 0.9rem; 
    margin-bottom: 2rem;
 }
.selected-service {
    background: var(--color-pod-bg);
    border-left: 4px solid var(--color-border);
    padding: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.selected-service input[readonly] {
    font-weight: 600;
}

.selected-service-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--color-navy);
    cursor: pointer;
}

#contactForm > div { 
    margin-bottom: 1.5rem;
 }
#contactForm > div > label { 
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 600;
 }

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #9D84B7;
    border-radius: 8px;
    font-size: 18px;
    box-sizing: border-box;
}

textarea.form-input { 
    font-family: inherit; 
    resize: vertical; 
}

.checkbox-group { margin-bottom: 0.75rem; }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}
.checkbox-label input[type="checkbox"] { margin-right: 0; }  /* gap handles spacing */
.other-input {
    border: none;
    border-bottom: 2px solid #9D84B7;
    border-radius: 0;
    width: 150px;
    padding: 0 0 2px;
    font-size: 1rem;
}

#projectDetails-counter {
    font-size: 14px;
    color: var(--color-navy);
    margin-top: 0.25rem;
    text-align: right;
}
.g-recaptcha + .form-error { 
    margin-bottom: 1rem; 
}

input[type="checkbox"], input[type="radio"] {
    appearance: none; -webkit-appearance: none;
    width: 20px; height: 20px; border: 2px solid #9D84B7;
    background-color: white; cursor: pointer; position: relative;
    margin-right: 8px; vertical-align: middle;
}
input[type="radio"] {
     border-radius: 50%; 
    }
input[type="checkbox"] { 
    border-radius: 4px;
 }
input[type="checkbox"]:checked::after {
    content: '✔'; 
    color: #2F7F4F; 
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: 14px;
    line-height: 1;
}
input[type="radio"]:checked::after {
    content: ''; width: 10px; height: 10px; background-color: #2F7F4F;
    border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
input[type="checkbox"]:focus-visible, input[type="radio"]:focus-visible { outline: 2px solid #2F7F4F; outline-offset: 2px; }

/* Business size – desktop: classic radio options in a row */
.business-size-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}
.business-size-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.business-size-group label:has(input:checked) { 
    background-color: #FDFBF7; 
    border-color: #2F7F4F; 
}
.business-size-group input[type="radio"] { 
   margin-right: 0;
}

.business-size-group input[type="radio"]:focus-visible + span {
    outline: 2px solid #2F7F4F;
    outline-offset: 2px;
}

#contactForm fieldset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0;          /* stops fieldset overflow quirks in flex/grid */
}
#contactForm > div,
#contactForm > fieldset {
    margin-bottom: 1.5rem;
}
#contactForm > div > label,
#contactForm > fieldset > legend {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    padding: 0;
}

.form-hint {
    font-size: .95rem;
    margin: -0.75rem 0 1rem;
}

#contactForm button[type="submit"] {
    display: block; 
    width: 80%; 
    max-width: 300px; 
    margin: 2rem 0 0; 
    padding: 1rem;

}

.error-message {
    background-color: #fee; 
    border: 1px solid #fcc; 
    color: #CC071E;
    padding: 1rem; 
    border-radius: 8px; 
    margin-bottom: 1.5rem;
    font-size: 16px;
    display: none;
}
.error-message ul { 
    margin: 0.5rem 0 0 1.5rem;
     padding: 0;
}

.error-message li { 
    margin-bottom: 0.25rem;
}

.form-error { 
    color: #CC071E;
    font-size: 14px; 
    margin-top: 0.25rem; 
    display: none; 
}

.input-error { 
    border-color: #CC071E !important;
}

.g-recaptcha { 
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: left;
 }

 select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000035' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;   /* distance from the edge */
    background-size: 1.25rem;                 /* caret size */
    padding-right: 3rem;                      /* keeps text clear of the caret */
}
.thankyou-section {
    background-color: var(--color-pod-bg);
    padding: 5rem 0;
    min-height: 60vh;
}
.thankyou-section .container { 
    max-width: 850px; 
}

.thankyou-section h1,
.thankyou-section h2 { 
    margin-bottom: 2rem; 
}

.next-steps {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}
.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.next-steps li:last-child { margin-bottom: 0; }

.step-number {
    background-color: var(--color-primary);   /* ← the circle color, one line to swap */
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.next-steps h3 { margin-bottom: 0.5rem; }
.next-steps p {
    font-size: var(--body-desktop);
    line-height: var(--body-line-height-desktop);
    margin: 0;
}

@media (max-width: 768px) {
    .step-number { width: 48px; height: 48px; font-size: 20px; }
    .next-steps li { gap: 1rem; }
}

@media (max-width: 768px) {
    input[type="checkbox"],
    input[type="radio"] {
        width: 28px;
        height: 28px;
    }
    input[type="checkbox"]:checked::after {
        font-size: 18px;                 /* checkmark grows with the box */
    }
    input[type="radio"]:checked::after {
        width: 14px;
        height: 14px;                    
    }
     .business-size-group {
        flex-direction: column;
        gap: 1rem;
    }
    .business-size-group label {
        justify-content: center;
        padding: 1rem;
        border: 2px solid #9D84B7;
        border-radius: 8px;
        background-color: white;
        font-size: 18px;
        font-weight: 600;
        color: var(--color-navy);
        box-sizing: border-box;
        transition: all 0.2s ease;
    }
    .business-size-group label:has(input:checked) {
        background-color: #FDFBF7;
        border-color: #2F7F4F;
    }
    .business-size-group input[type="radio"] {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    .business-size-group input[type="radio"]:focus-visible + span {
        outline: 2px solid #2F7F4F;
        outline-offset: 2px;
    }

    #contactForm button[type="submit"] { 
        margin: 2rem auto 0; 
    }
}

/* =========================================
   13. 404 PAGE
   ========================================= */
.error-content { max-width: 800px; margin: 0 auto; padding: 6rem 2rem; text-align: center; }
.error-code {
    font-family: var(--font-heading); font-size: 120px; font-weight: 800;
    color: var(--color-navy); line-height: 1; margin-bottom: 1rem; opacity: 0.15;
}
.error-title {
    font-family: var(--font-heading); font-size: var(--h1-desktop);
    line-height: var(--h1-line-height-desktop); font-weight: 800;
    color: var(--color-navy); margin-bottom: 1.5rem;
}
.error-message {
    font-size: var(--body-desktop); line-height: var(--body-line-height-desktop);
    color: var(--color-navy); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto;
}
.error-illustration { margin-bottom: 2rem; display: flex; justify-content: center; align-items: center; }
.error-illustration img {
    max-width: 100%; width: 600px; height: auto; border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 53, 0.1);
}
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================
   14. RESPONSIVE DESIGN
   ========================================= */

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .why-trust-grid, .services-grid, .engagement-columns, .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-content h2 { font-size: 2rem; }
    .featured-grid { gap: 2rem; }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    /* Typography */
    body { font-size: var(--body-mobile); line-height: var(--body-line-height-mobile); }
    h1 { font-size: var(--h1-mobile); }
    h2 { font-size: var(--h2-mobile); }
    h3 { font-size: var(--h3-mobile); }
    h4 { font-size: var(--h4-mobile); }
    .btn { font-size: var(--body-mobile); }

    /* Header & Nav */
    .menu-toggle { display: flex !important; }
    
    nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background-color: var(--color-cream-bg); box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    nav.active { display: block; }
    nav ul { flex-direction: column; padding: 1rem 2rem; gap: 0; }
    nav li { width: 100%; }
    nav a { display: block; padding: 1rem; border-bottom: 1px solid rgba(0,0,0,0.05); }

    
    /* Layouts */
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
    .why-trust-grid, .services-grid, .business-types, .engagement-columns,
    .pricing-grid, .big-agency-grid, .process-step, .featured-grid, .posts-grid {
        grid-template-columns: 1fr !important;
    }
    .process-page .process-step { flex-direction: column !important; gap: 2rem; }
    .process-page .step-image { order: 1 !important; }
    .process-page .step-content { order: 2 !important; }
    .process-page .step-image img { max-width: 250px !important; width: 100% !important; margin: 0 auto; }
    .process-page .step-content h3, .step-content h4 { text-align: center; }

    /* Footer */
    .footer-top { flex-direction: column; width: 100%; }
    .footer-links { flex-direction: column; gap: 1rem; width: 100%; padding-top: 1rem; }

    /* Blog & Forms */
    .post-card a { width: 100%; justify-content: flex-start; padding: 1rem !important; font-size: 16px !important; }
    .business-size-group { flex-direction: column; gap: 1rem; }
    .business-size-group input[type="radio"] { display: none; }
    .stat-highlight { padding: 1rem !important; }
    .signs-checklist ul li { font-size: 0.95rem !important; }

    /* Page Specific Padding */
    .process-intro, .services-intro, .small-biz-hero { padding: 3rem 0 2rem; }

    /* Homepage Hero Mobile */
    .hero {
        grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; text-align: center;
    }
    .hero-content { max-width: 100%; margin: 0 auto; text-align: left; }
    .hero-image { display: none; }

    /* Homepage Value Cards Mobile */
    .most-agencies-section { padding: 3rem 0; }
    .value-cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    /* Process Section Mobile */
    .process-desktop-img { display: none !important; }
    .process-mobile-img { display: block !important; width: 100%; max-width: 250px; margin: 0 auto 1.5rem; }
    .process-steps { grid-template-columns: 1fr; gap: 3rem; }

    /* Solutions Section Mobile */
    .solutions-section { padding: 3rem 0; }
    .solutions-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
/* ===== MOBILE MENU: UNIFIED ROWS ===== */
@media (max-width: 768px) {
    nav > ul > li > a,
    nav > ul > li > button.dropdown-toggle {
        display: block;
        width: 100%;
        padding: 1.1rem 0.25rem;      /* identical inset for links AND toggles */
        font-size: 1.125rem;
        font-weight: 600;
        text-align: left;
        color: var(--color-navy);
        background: none;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);  /* the gray divider on every row */
        cursor: pointer;
    }

    /* active page keeps a gray divider too, bold text marks it instead */
    nav > ul > li > a.active,
    nav > ul > li > button.dropdown-toggle.active {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-weight: 700;
    }

    /* Contact button lines up with the text edge */
    nav > ul > li > .btn {
        margin: 1.5rem 0 0 0.25rem;
    }
  
    .dropdown.active .dropdown-menu {
        border-top: none;
    }

}

/* Extra Small (Max 480px) */
@media (max-width: 480px) {
    .blog-hero h1 { font-size: 2rem; }
    .featured-content h2 { font-size: 1.75rem !important; }
}
/* =========================================
   15. ABOUT PAGE HERO
   ========================================= */
.about-intro {
    background-color: var(--color-pod-bg); /* ✅ Light gray/blue (#F5F8FA) */
    padding: 3rem 0; /* ✅ Generous vertical spacing */
}

.about-intro .eyebrow {
    font-weight: 700;
    font-size: var(--body-desktop);
    margin-bottom: 1rem;
    display: block;
    color: var(--color-navy);
}

.about-intro h1 {
    margin-bottom: 1.5rem;
    max-width: 900px; /* ✅ Prevents heading from stretching too wide */
}

.about-intro p {
    font-size: var(--body-desktop);
    line-height: var(--body-line-height-desktop);
    max-width: 800px;
    margin-bottom: 0;
}
/* =========================================
   ABOUT PAGE: WHY SECTION
   ========================================= */
.why-section {
    padding: 5rem 0;
}

.why-content {
    max-width: 1170px;
    margin: 0 auto;   
}

.why-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.why-content p {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* =========================================
   ABOUT PAGE: MEET THE FOUNDER
   ========================================= */
.founder-section {
    background-color: var(--color-pod-bg); /* ✅ Restores light gray/blue background */
    padding: 5rem 0;
}

/* ✅ Creates the side-by-side layout */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-text h2 {
    margin-bottom: 1.5rem;
}

.founder-text p {
    margin-bottom: 1.5rem;
}

/* ✅ Image and LinkedIn Icon positioning */
.founder-image-container {
    position: relative;
    display: inline-block;
}

.founder-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.linkedin-link {
    position: absolute;
    bottom: -16px; /* Positions icon just below the image */
    left: 0;
    background-color: var(--color-white);
    padding: 4px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ✅ Stack columns on mobile */
@media (max-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .founder-text h2 {
     margin-bottom: 1.5rem;
     text-align: center;
}
}

/* =========================================
   ABOUT PAGE: WHAT WE BELIEVE
   ========================================= */
.beliefs-section {
    padding: 5rem 0;
}

.beliefs-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.beliefs-grid .value-card {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the image and heading horizontally */
}

.beliefs-grid .value-card img {
    height: 160px; /* ✅ Fixed height guarantees vertical alignment */
    width: auto;
    max-width: 100%;
    margin: 0 auto 1.5rem; 
    display: block;
    object-fit: contain;
}


.beliefs-grid .value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
    text-align: center;
    width: 100%;
}

.beliefs-grid .value-card p {
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
  ABOUT PAGE: How We Work Differently
   ========================================= */

/* Stack all two-column sections on mobile */
@media (max-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 2rem;              /* 4rem is a lot of air on a phone */
    }
    #work-heading {
        text-align: center;
    }
}
/* Keep the illustration responsive */
.work-image-container img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 2rem;
}

.work-differently-section {
    background-color: var(--color-pod-bg);
    padding: 5rem 0;
}
.work-differently-section .two-col-grid {
    align-items: center;        
}
   
/* Caption */
.work-image-container { 
    margin: 0;
 }   
.work-image-container figcaption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* =========================================
   PROCESS PAGE: FAQ ACCORDION
   ========================================= */
.faq-section {
    background-color: var(--color-pod-bg);
    padding: 2.5rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.faq-item {
    background-color: white;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: var(--body-desktop);
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}
.faq-question:hover {
    background-color: var(--color-pod-bg);
}
.faq-question:focus,
.faq-question:focus-visible {
    outline: 3px solid var(--color-primary); 
    outline-offset: -3px;                    
}

.faq-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.faq-icon svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}
.faq-answer p {
    padding-bottom: 1.5rem;
    margin: 0;
    padding-left: 48px; 
    padding-right: 48px
}

.faq-answer a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-hero {
    background-color: var(--color-pod-bg);
    padding: 4rem 0 2rem;              /* tightened bottom from 3rem to 2rem */
}
.faq-hero h1 {
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}
.faq-hero p {
    font-size: 1.125rem;
    max-width: 1000px;
    color: var(--color-navy);
}
.faq-hero a {
    color: var(--color-link);       /* #006596 if you don't have a variable */
    text-decoration: underline;
}

.faq-section {
    padding: 2rem 0 6rem;              /* tightened top from 4rem to 2rem */
}
.faq-section .container {
    max-width: 900px;
}

.minus-icon {
    display: none;                     /* hides the minus icon by default */
}

@media (max-width: 768px) {
    .faq-hero h1 { font-size: var(--h2-mobile); }
}

/* =========================================
   FAQ ACTIVE STATES (Triggered by JS)
   ========================================= */
.faq-item.active .faq-answer {
    max-height: 500px; 
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .plus-icon { display: none; }
.faq-item.active .minus-icon { display: block !important; }
.faq-item.active .faq-icon {
    background-color: var(--color-border);
}
.faq-item.active .faq-icon svg {
    stroke: white;
}
/* =========================================
   FOOTER UTILITY PAGES
   ========================================= */
.utility-content { 
    padding: 4rem 0 6rem;
 }
.utility-content .container {
    max-width: 800px; 
}
.utility-content h1 { 
    margin-bottom: 1rem; 
    color: var(--color-navy); 
}
.utility-content .updated { 
    font-size: 0.9rem; 
    opacity: 0.75; 
    margin-bottom: 2.5rem; 
}
.utility-content h2 { 
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem; 
    color: var(--color-navy); 
}
.utility-content p,
.utility-content li { 
    line-height: 1.7; 
    color: var(--color-navy);
    margin-bottom: 1rem; 
}
.utility-content ul { 
    margin: 0 0 1rem 1.25rem;
}
.utility-content a { 
    color: var(--color-link); 
    text-decoration: underline;
}

.sitemap > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.125rem;
}
.sitemap li {
     margin-bottom: 1rem;
}
.sitemap .sitemap-top { 
    font-weight: 700; 
    font-size: 1.25rem;
}
.sitemap span.sitemap-top { 
    color: var(--color-navy);
}
.sitemap ul ul {
    list-style: none;
    margin: 0.5rem 0 0.5rem 1.5rem;
}
.sitemap ul ul li { 
    margin-bottom: 0.75rem; 
}

.build-engagement { 
    scroll-margin-top: 6rem;
}
.utility-hero {
    background-color: var(--color-pod-bg);
    padding: 3rem 1rem 2rem;              /* same as contact-hero */
}
.utility-hero h1 { 
    color: var(--color-navy); 
    text-align: left;
}

.utility-hero .updated {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-top: 0.5rem;
}

/* Sitemap: force vertical list, visible at all widths */
nav.sitemap,
nav.sitemap > ul,
nav.sitemap ul ul {
    display: block !important;
}
nav.sitemap li {
    display: block !important;
}
nav.sitemap a,
nav.sitemap span {
    display: inline !important;
}

@media (max-width: 768px) {
    body { display: block !important; }          /* kills flex ordering/reversal on the page flow */
    body > footer,
    #main-content { position: static !important; }  /* in case it's absolute-position trickery instead */
}

@media (max-width: 480px) {
    .header-container .logo img { 
        height: 60px;
     }   
}
/* =========================================
   FOOTER UTILITY PAGES
   ========================================= */

.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: var(--color-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .2);
}

.cookie-banner[hidden] { 
    display: none !important; 
}

.cookie-banner a { 
    color: #fff; 
    text-decoration: underline; 
}

.cookie-btn {
    background: #fff;
    color: var(--color-navy);
    border: none;
    border-radius: 6px;
    padding: .6rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
}
.cookie-banner a:focus,
.cookie-banner button:focus {
    outline: 3px solid var(--color-primary) !important;
    outline-offset: 2px !important;
}
/* ===== UNIFIED HERO PARAGRAPH WIDTH ===== */
[class*="hero"] .container > p,
[class*="intro"] .container > p {
    max-width: 90%;
    text-wrap: pretty;
}
[class*="hero"] .container > h1,
[class*="intro"] .container > h1 {
    max-width: 90%;
}

/* ===== GRAND OPENING SALE RIBBON ===== */
.sale-ribbon {
    background-color: var(--color-primary-light);  /* matches your button pink; falls back if the var name differs */
    color: #ffffff;
    text-align: center;
    padding: 0.6rem 1.5rem;
}
.sale-ribbon p {
    margin: 0;
    color: var(--color-navy);
}
.sale-ribbon-text {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
}

.sale-ribbon-text strong{
    font-weight: 800;
}

.sale-ribbon-footnote {
    font-size: 0.8rem;
    margin-top: 0.3rem;
    opacity: 0.9;
}

/* ===== GOOGLE ADS LANDING PAGE ===== */
.lp-hero { background: var(--color-pod-bg, #f6efef); padding: 4.5rem 0 3.5rem; }
.lp-eyebrow { text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--color-accent-pink, #B0255A); margin-bottom: 1rem; }
.lp-subhead { font-size: 1.25rem; max-width: 62ch; margin-bottom: 2rem; }
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 1.75rem; }
.lp-urgency { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0; }
.lp-urgency li { background: #fff; border: 1px solid var(--color-accent-pink, #B0255A); color: var(--color-navy); border-radius: 999px; padding: .35rem .9rem; font-size: .85rem; font-weight: 600; }
.lp-urgency.light li { background: transparent; border-color: #fff; color: #fff; }

.lp-problem, .lp-included, .lp-proof, .lp-pricing { padding: 2.5rem 0; }
.lp-problem, .lp-proof { background: #fff; }
.lp-included { background: var(--color-cream-bg, #f5f2ee); }
.lp-problem-list { max-width: 700px; margin: 0 0 1.5rem; padding-left: 1.2rem; display: grid; gap: .75rem; }
.lp-urgency-line { font-weight: 700; color: var(--color-accent-pink, #B0255A); }

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



.lp-sale { background: var(--color-card-bg); color: var(--color-navy); text-align: center; padding: 2.5rem 0; }
.lp-final { background: var(--color-navy); color: var(--color-cream-bg); text-align: center; padding: 4rem 0; }
.lp-sale h2 { color: var(--color-navy); }
.lp-final h2 { color: var(--color-cream-bg); }
.lp-sale p { color: var(--color-navy); }
.lp-sale .btn, .lp-final .btn { display: block; width: fit-content; margin: 1.5rem auto; }
.lp-countdown { font-size: 1.5rem; font-weight: 800; letter-spacing: .03em; margin: 1rem 0 0; font-variant-numeric: tabular-nums; color: #fff; }
.lp-sale .lp-urgency, .lp-final .lp-urgency { justify-content: center; margin-top: 1.5rem; }

.lp-checklist { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .75rem; max-width: 700px; }
.lp-checklist li { padding-left: 2rem; position: relative; }
.lp-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--color-accent-green, #2E6B4F); font-weight: 800; }

.lp-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0 1.5rem; }
.lp-price-card { 
    background: #fff; 
    border: 2px solid var(--color-accent-pink, #B0255A); 
    border-radius: 12px; padding: 1.5rem; text-align: center; }
.lp-was { text-decoration: line-through; color: var(--color-navy); margin: 0; }
.lp-now { font-size: 2rem; font-weight: 800; color: var(--color-accent-pink, #B0255A); margin: 0; }
.lp-pricing a {
    text-decoration: underline !important;
}
a.btn,
a.btn-outline {
    text-decoration: none !important;
}
.lp-pricing {
    background: var(--color-card-bg, #f6efef);  /* soft rose — ties to the sale */
}
.lp-price-subhead {
    text-align: left;
    margin: 1.5rem 0 0.75rem;
    font-weight: bold;
    color: var(--color-navy);
}
@media (max-width: 768px) {
    .lp-pricing .btn {
        display: block;
        width: fit-content;
        margin: 1rem auto 0;
    }
}
/* ===== LANDING PAGE PRICE CARDS: HEADING FIX ===== */
.lp-price-card h4 {
    font-size: 1.25rem;          /* Clearly the title now */
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 0.75rem;        /* Tightens the gap to the price */
    color: var(--color-navy, #0a0a33);
}
/* ===== LANDING PAGE PRICE CARDS: LIST CLEANUP ===== */
.lp-price-card .card-subhead {
    text-align: left;
    margin: 1.25rem 0 0.75rem;
    padding: 0;
    margin-left: 0;
    text-indent: 0;
}
.lp-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    text-align: left;
}
.lp-price-card ul li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.45;
    font-size: 1rem;
}
.lp-price-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-border);
    font-weight: 800;
}
.lp-price-card > p:not([class]) {
    text-align: left;
    font-size: .95rem;
    line-height: 1.5;
    margin: 1rem 0 0;
    color: var(--color-navy, #0a0a33);
    opacity: 0.85;
    text-wrap: pretty;   /* browser balances line breaks, kills ugly rags/orphans */
    hyphens: auto; 
}
/* ===== PROBLEM SECTION: COPY + IMAGE SPLIT ===== */
.lp-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
}
.lp-split-art img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}
@media (max-width: 900px) {
    .lp-split { grid-template-columns: 1fr; }
}
@media (min-width: 769px) {
    .lp-price-card > p:not([class]) {
        min-height: 7.5em;   /* 5 lines × 1.5 line-height */
    }
}
@media (max-width: 768px) {
    .lp-price-grid { grid-template-columns: 1fr; }
}

/* ===== LANDING PAGE HERO & FORM ===== */
.lp-hero { /* FIXED: Changed from .hero to .lp-hero */
  padding: 4rem 0;
}
.lp-hero h1{
    color: var(--color-primary);
}
.lp-hero h2{
    color: var(--color-primary);
}
.lp-hero ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-border);
    font-weight: 800;
}
.hero-inner {
  display: flex !important;
  flex-direction: row !important; /* Forces side-by-side on desktop */
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-right {
  flex: 0 0 420px; /* Slightly wider to give the form breathing room */
  width: 100%;
  max-width: 420px; 
}

.hero-right form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;               /* NEW */
  flex-direction: column;
}
.field-error {
    color: #CC071E;
    font-size: 0.8rem;
    display: block;
    margin-top: -0.5rem;
    margin-bottom: 0.75rem;
}
.hero-right h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--color-error);
}

.hero-right p {
  text-align: left;
  font-size: 0.95rem;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

.hero-right label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-navy, #0a0a33);
}

.hero-right input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc; /* Safe fallback if variable is missing */
  border: 1px solid var(--color-accent-purple, #ccc); 
  border-radius: 6px;
  box-sizing: border-box; 
}

.hero-right button.btn { /* Targeted specifically to win the specificity war */
  align-self: center;          /* Centers the button horizontally */
  min-width: 200px;
  margin-top: 1rem;
  justify-content: center;
  text-align: center;
}

.value-stack {
  margin-top: 1.5rem;
}

.value-stack h2 {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.value-stack ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-stack li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  font-size: 1.25rem;
}

.value-stack li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #444;
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
  .lp-hero {
    padding: 2.5rem 0;
  }

  .hero-inner {
    flex-direction: column !important;
    gap: 2rem;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  /* NEW: Left-align the value stack on mobile */
  .value-stack {
    text-align: left;
    max-width: 400px;
    margin: 1.5rem auto 0;    /* Centers the block itself */
  }

  .value-stack h2 {
    text-align: left;       /* Keep the heading centered */
  }

  .value-stack ul {
    text-align: left;
  }

  .hero-right {
    flex: none !important;
    width: 100% !important;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-right form {
    display: block;
    width: 100%;
  }

  .hero-right button.btn {
    align-self: auto;
    width: 100%;
    min-width: unset;
    margin: 1rem 0 0;
  }
  
  .hero-left .lp-subhead {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;         /* Prevents the subhead from stretching too wide */
  }

  .hero-right, 
  .hero-right form, 
  .hero-right label, 
  .hero-right input {
    text-align: left;
  }
}