/* ============================================================================
   ACCESSIBLE.ORG — CUSTOM CSS

   Structure:
   1. Imports
   2. Site-wide styles (forms, typography, navigation, tables, components)
   3. Page-specific styles (blog, news, services, process, product, cart)
   4. Homepage styles — refined CloudMagnus-inspired theme, placed at bottom
      so it wins the cascade without needing override hacks

   To iterate on the homepage look, edit only the final section.
   ============================================================================ */

/* Inter font — one import covers site-wide and homepage use */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* ============================================================================
   SITE-WIDE STYLES
   ============================================================================ */

button.wpcf7-submit,
.Purple-button {
    color: white !important;
    background-color: #0a0e27 !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    line-height: normal !important;
}

#gp-custom-search-field-header,
#gp-custom-search-field-footer {
    border: 1px solid #777777 !important;
}

.entry-content code {
    color: #c42568 !important;
}

#about-heading {
    color: white;
    text-align: center;
}

.contact_us_social_buttons .gb-button-text:hover {
    color: white !important;
    text-decoration: underline;
}

.gp-custom-search-bar-container {
    box-shadow: none !important;
}

.contact-form label span.required,
.grunion-label-required {
    opacity: .8;
}

#gp-custom-search-field-header::placeholder {
    font-weight: bold;
    opacity: .6 !important;
    color: black !important;
}

a.custom-white-focus-outline:focus-visible,
a.skip-link:focus-visible {
    outline: 3px solid #ffffff !important;
    outline-offset: 4px;
    border-radius: 4px;
}

.scc-checkbox-text {
    color: #5413D8;
}

.wcag-dropdown-menu--active {
    width: max-content;
}

.header-text p {
    margin-bottom: 0px !important;
}

.easy-notification-bar-container {
    justify-content: center;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.easy-notification-bar-message {
    font-size: 16px;
    color: #fff;
}

.easy-notification-bar-button__link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #000000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.easy-notification-bar-button__link:hover {
    background-color: #005bb5;
}

.easy-notification-bar-button__link:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    ol,
    ul {
        padding-left: 0;
    }
}

.site-content:has(.livechat-form-wrapper) {
    flex-direction: column;
}

.pricing_page img,
.pricing_page iframe {
    border-radius: 8px;
}

@media only screen and (max-width: 600px) {
    .pricetable {
        font-size: 12px;
    }
    .pricetable caption {
        font-size: 14px;
    }
    .pricetable th,
    .pricetable td {
        padding: 6px 4px;
    }
}

.wp-block-list li {
    font-size: 15px !important;
}

@media (max-width: 768px) {
    .wp-block-list {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .entry-content h2 {
        font-size: 26px !important;
    }
}

.footer a {
    font-weight: 350;
}

.screenshot-wrapper {
    perspective: 1200px;
    padding: 2rem 0;
    position: relative;
    background: white;
}

.screenshot-wrapper .jetpack-boost-guide {
    display: none !important;
}

.screenshot-wrapper figure {
    transform: rotateX(-5deg) rotateY(8deg) rotateZ(-1deg);
    transform-style: preserve-3d;
    position: relative;
    overflow: visible;
    border-radius: 12px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15),
                0 30px 60px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 0;
    background: #f6f6f6;
    padding-top: 40px;
}

.screenshot-wrapper figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom,
        #f6f6f6 0%,
        #f1f1f1 50%,
        #e8e8e8 100%);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #d1d1d1;
    z-index: 3;
    background-image:
        radial-gradient(circle at 6px 6px, #ff5f57 5px, transparent 5px),
        radial-gradient(circle at 6px 6px, #ffbd2e 5px, transparent 5px),
        radial-gradient(circle at 6px 6px, #28ca42 5px, transparent 5px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
    background-position:
        16px 14px,
        36px 14px,
        56px 14px,
        0 0;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat-x;
    background-size: 12px 12px, 12px 12px, 12px 12px, 100% 20px;
}

.screenshot-wrapper figure::after {
    content: 'accessibilitytracker.com/dashboard';
    position: absolute;
    top: 8px;
    left: 80px;
    right: 16px;
    height: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    color: #333;
    line-height: 24px;
    padding: 0 10px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.screenshot-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 0 0 12px 12px;
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 0;
}

@media (max-width: 768px) {
    .screenshot-wrapper figure {
        transform: rotateX(-3deg) rotateY(4deg) rotateZ(-0.5deg);
        padding-top: 36px;
    }
    .screenshot-wrapper {
        perspective: 800px;
        padding: 20px;
    }
    .screenshot-wrapper figure::before {
        height: 36px;
    }
    .screenshot-wrapper figure::after {
        top: 6px;
        left: 70px;
        height: 22px;
        font-size: 12px;
        line-height: 22px;
        padding: 0 8px;
    }
}


/* ============================================
   NAVIGATION — Linear.app style
   ============================================ */

.main-navigation .menu-item-has-children > a::after {
    color: #FFFFFF !important;
}

header a:focus,
header button:focus {
    outline: 3px solid #fff !important;
    outline-offset: 4px;
    border-radius: 2px;
    transition: outline 0.1s ease-in-out;
}

header.site-header nav li a,
#site-navigation li a,
.main-navigation li a {
    color: #FFFFFF !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.main-navigation button,
.main-navigation .menu-item-has-children > button,
.main-navigation .dropdown-menu-toggle,
.main-navigation button.menu-item-has-children,
header.site-header nav button,
#site-navigation button {
    color: #FFFFFF !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background-color: transparent !important;
    border: none !important;
    padding: 8px 20px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.main-navigation button:hover,
.main-navigation .menu-item-has-children > button:hover,
.main-navigation .dropdown-menu-toggle:hover {
    color: #ffffff !important;
    background-color: transparent !important;
}

.main-navigation .menu-item-has-children > a + button,
.main-navigation .menu-item-has-children > button + a {
    color: #FFFFFF !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}


/* ============================================
   SITE-WIDE TYPOGRAPHY — Inter
   ============================================ */

body,
a {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #333333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Preserve icon fonts */
.fa,
.fas,
.far,
.fal,
.fad,
.fab,
.fa-brands,
.fa-solid,
.fa-regular,
.fa-light,
.fa-duotone,
[class^="fa-"],
[class*=" fa-"],
.dashicons,
[class^="dashicons-"],
[class*=" dashicons-"],
.genericons,
[class^="genericon-"],
[class*=" genericon-"],
.social-icon,
.icon,
[class^="icon-"],
[class*=" icon-"] {
    font-family: inherit !important;
}

.fa:before,
.fas:before,
.far:before,
.fal:before,
.fad:before,
.fab:before {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', 'Font Awesome 5 Free', 'Font Awesome 5 Brands', FontAwesome !important;
}

.social-links a:before,
.social-links a::before,
.social-icons a:before,
.social-icons a::before,
a[href*="linkedin"]:before,
a[href*="youtube"]:before,
a[href*="twitter"]:before,
a[href*="facebook"]:before {
    font-family: inherit !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    line-height: 1.2;
    color: #0a0e27;
    margin-top: 0;
    margin-bottom: 1rem;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h4 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.005em;
    margin-bottom: 0.875rem;
}

h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.entry-content p,
.site-main p {
    margin-bottom: 20px !important;
    line-height: 1.7 !important;
}

a {
    font-family: inherit;
    font-weight: 500;
    transition: all 0.2s ease;
}

strong,
b {
    font-weight: 600;
}

ul,
ol {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }
    h5 { font-size: 16px; }
    body, p { font-size: 15px; }
}

.entry-content * {
    font-family: inherit !important;
}

.gb-headline,
.wp-block-heading,
.entry-title,
.widget-title {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

table,
table * {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

input,
textarea,
select,
button {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}


/* ============================================
   MOBILE HEADER, FOOTER, MISC OVERRIDES
   ============================================ */

@media (min-width: 1080px) {
    #mobile-header {
        display: none !important;
    }
}

@media (max-width: 1080px) {
    #mobile-header {
        display: block;
    }
}

.site-footer .gp-custom-search-form {
    padding-top: 30px;
    padding-bottom: 30px;
}

.archivo_bold_button a {
    font-family: 'Archivo Black', sans-serif;
}

.card-buttons {
    max-width: fit-content;
    transition: outline 0.3s ease, outline-offset 0.3s ease;
}

.card-buttons:hover {
    outline: 2px solid #000;
    outline-offset: 4px;
    border-radius: 6px;
}

.video-container iframe,
.author-image-contianer img {
    border-radius: 12px;
}

.page-id-5016438,
.page-id-5016309 {
    font-family: Space Mono, monospace;
}

h2.gb-headline {
    font-family: 'Archivo Black', sans-serif;
}

.stk-fdbba79-inner-blocks {
    min-width: max-content;
}

.ab-author-box .consultation-button,
.ab-link-social-container .consultation-button {
    color: white !important;
}


/* ============================================
   PRODUCT PAGES
   ============================================ */

.site-content:has(.product) {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    display: grid;
}

.site-content:has(.product) .site-main {
    margin: 0 auto;
}

article.product {
    margin: 0;
    padding: 0;
}

.product .inside-article {
    padding: 0;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .product .woocommerce-product-gallery {
        width: 48%;
        float: left;
        margin-right: 4%;
    }
    .product .summary.entry-summary {
        width: 48%;
        float: left;
    }
    .product .woocommerce-tabs {
        clear: both;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .site-content:has(.product) {
        padding: 0 15px;
    }
    .product .woocommerce-product-gallery,
    .product .summary.entry-summary {
        width: 100%;
        margin-bottom: 20px;
    }
    .product .woocommerce-product-gallery__wrapper img {
        width: 100%;
        height: auto;
    }
    .product .product_title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-top: 0;
    }
    .product .quantity {
        padding-bottom: 20px;
    }
    .product .single_add_to_cart_button {
        margin-top: 20px;
        width: 100%;
    }
}

.grunion-label-required {
    color: #333333 !important;
}

.promo-box {
    margin-top: 70px !important;
}

.contact-form__error a {
    color: #DBDBDB !important;
    text-decoration: underline;
}


/* ============================================
   BLOG, NEWS, AND SEARCH PAGES
   ============================================ */

.category-blog h1,
.category-blog h2,
.category-blog h3,
.category-blog h4,
.category-blog h5,
.category-blog h6,
.category-news h1,
.category-news h2,
.category-news h3,
.category-news h4,
.category-news h5,
.category-news h6 {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    letter-spacing: 0.025em !important;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.category-blog h1,
.category-news h1 {
    font-size: 55px !important;
    margin-bottom: 25px;
}

.category-blog h2,
.category-news h2 {
    font-size: 35px !important;
    margin-bottom: 20px;
}

.category-blog h3,
.category-news h3 {
    font-size: 25px !important;
    margin-bottom: 18px;
}

.category-blog h4,
.category-news h4 {
    font-size: 20px !important;
    margin-bottom: 16px;
}

.category-blog h5,
.category-news h5 {
    font-size: 16px !important;
    margin-bottom: 14px;
}

.category-blog h6,
.category-news h6 {
    font-size: 14px !important;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .category-blog h1,
    .category-news h1 { font-size: 44px !important; }
    .category-blog h2,
    .category-news h2 { font-size: 28px !important; }
    .category-blog h3,
    .category-news h3 { font-size: 22px !important; }
    .category-blog h4,
    .category-news h4 { font-size: 18px !important; }
    .category-blog h5,
    .category-news h5 { font-size: 14px !important; }
    .category-blog h6,
    .category-news h6 { font-size: 12px !important; }
}

.entry-summary .woocommerce-Price-amount.amount {
    color: #006400;
}

.entry-meta .byline {
    border-bottom: none;
}

.entry-meta .byline a {
    text-decoration: none;
    border-bottom: 2px solid #002d78;
    transition: all 0.2s ease;
}

.entry-meta .byline a:hover {
    text-decoration: none !important;
    border: 2px solid #002d78;
    transition: all 0.2s ease;
    border-radius: 5px;
}

.woocommerce-cart .entry-content .alignwide,
.woocommerce-cart body:not(.no-sidebar) .entry-content .alignfull,
.woocommerce-checkout .entry-content .alignwide,
.woocommerce-checkout body:not(.no-sidebar) .entry-content .alignfull {
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.wc-blocks-components-select .wc-blocks-components-select__select {
    padding-left: 20px !important;
    padding-top: 0 !important;
}

.wc-blocks-components-select__container {
    margin-top: 30px !important;
}

.wc-blocks-components-select .wc-blocks-components-select__label {
    top: -28px !important;
    left: 0px !important;
}

@media (max-width: 480px) {
    .wc-blocks-components-select .wc-blocks-components-select__label {
        top: -25px !important;
        left: 0px !important;
    }
}

.wc-block-components-address-form__address_2-toggle {
    color: white !important;
}

.text_strike {
    color: #76748A;
    text-decoration: line-through;
}

h1 {
    padding-bottom: 10px;
}

body.search-results h1 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

body.search-results article {
    margin: 0 auto !important;
    max-width: 1000px;
}

article.category-blog,
article.category-news {
    margin: 0 auto !important;
    max-width: 1200px;
}

article.category-blog .inside-article,
article.category-news .inside-article,
body.search-results article .inside-article {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 2px solid #e0e0e0;
}

article.category-blog:has(h2.entry-title),
article.category-news:has(h2.entry-title) {
    max-width: 1000px;
}

article.category-blog .inside-article .entry-title a,
article.category-news .inside-article .entry-title a,
body.search-results article .inside-article .entry-title a {
    font-size: 21px;
    font-weight: 600;
    color: #002d78;
    text-decoration: none;
    letter-spacing: 0px;
}

article.category-blog .inside-article .entry-title a:hover,
article.category-news .inside-article .entry-title a:hover,
body.search-results article .inside-article .entry-title a:hover {
    text-decoration: underline;
}

article.category-blog .inside-article .entry-meta,
article.category-news .inside-article .entry-meta,
body.search-results article .inside-article .entry-meta {
    margin: 10px 0;
    color: #000;
}

.category-blog a,
.category-news a {
    color: #002d78;
}

article.category-blog .inside-article .entry-meta a,
article.category-news .inside-article .entry-meta a,
body.search-results article .inside-article .entry-meta a {
    color: #002d78;
    text-decoration: none;
}

article.category-blog .inside-article .entry-meta a:hover,
article.category-news .inside-article .entry-meta a:hover,
body.search-results article .inside-article .entry-meta a:hover {
    text-decoration: underline;
}

article.category-blog .inside-article p,
article.category-news .inside-article p,
body.search-results article .inside-article p {
    font-size: 16px !important;
}

article.category-blog .inside-article .continue,
article.category-news .inside-article .continue,
body.search-results article .inside-article .continue {
    display: block;
    width: max-content;
    margin-top: 20px;
    color: #000;
    font-family: 'Space Mono', monospace;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none !important;
    border: 2px solid #999;
    padding: 10px 15px;
    transition: color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

article.category-blog .inside-article .continue::after,
article.category-news .inside-article .continue::after,
body.search-results article .inside-article .continue::after {
    content: '→';
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #000;
    margin-left: 10px;
    position: relative;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    top: 3px;
}

article.category-blog .inside-article .continue span,
article.category-news .inside-article .continue span,
body.search-results article .inside-article .continue span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

article.category-blog .inside-article .continue:hover,
article.category-news .inside-article .continue:hover,
body.search-results article .inside-article .continue:hover {
    color: #002d78;
    background-color: #e3e1e1;
    border-color: #c9c9c9;
}

article.category-blog .inside-article .continue:focus,
article.category-news .inside-article .continue:focus,
body.search-results article .inside-article .continue:focus {
    outline: 2px solid #002d78;
    outline-offset: 2px;
    color: #002d78;
    border-color: #0a0a0a;
}

article.category-blog .page-hero h1,
article.category-news .page-hero h1,
body.search-results article .page-hero h1 {
    font-family: 'Rubik Mono One', sans-serif;
    font-size: 55px;
    line-height: 55px;
    letter-spacing: 0px;
    text-align: left;
    color: #222229;
}

article.category-blog h3,
article.category-news h3 {
    font-weight: bold;
}

article.category-blog .Blog_Title,
article.category-news .Blog_Title,
body.search-results article .Blog_Title {
    max-width: 700px;
    line-height: 75px;
}

.gb-grid-column:nth-child(2n) {
    border-bottom: 1px solid #d3d3d3;
    grid-column: 1 / -1;
}

.gb-grid-column:nth-last-child(-n+2) {
    border-bottom: none;
}


/* ============================================
   SERVICE PAGES
   ============================================ */

#content:has(article[id="post-2012306"]),
#content:has(article[id="post-2012374"]),
#content:has(article[id="post-2012588"]) {
    padding: 0px;
}

.service_container > div:not(:last-child) {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 40px;
    margin-bottom: 10px;
}

.service_container > div:first-child {
    border-top: 1px solid #d3d3d3;
    padding-top: 40px;
    margin-top: 40px;
}


/* ============================================
   TABLE OF CONTENTS (Rank Math)
   ============================================ */

.wp-block-rank-math-toc-block {
    font-family: 'Archivo', sans-serif;
    padding-bottom: 20px;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-bottom: 2px solid #2641b1;
}

.wp-block-rank-math-toc-block h2 {
    font-size: 24px;
    margin: 0 0 10px;
    text-align: left;
    color: #333;
    font-weight: 200;
}

.wp-block-rank-math-toc-block nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-block-rank-math-toc-block nav ul li {
    margin: 2px 0;
}

.wp-block-rank-math-toc-block nav ul li a {
    font-family: 'Archivo', sans-serif;
    text-decoration: none;
    color: #2641B1;
    font-size: 19px;
    padding: 2px 0;
    transition: color 0.3s ease;
}

.wp-block-rank-math-toc-block nav ul li a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.wp-block-rank-math-toc-block nav ul li ul {
    margin: 2px 0 2px 20px;
    padding: 0;
}

.wp-block-rank-math-toc-block nav ul li ul li {
    margin: 1px 0;
}

.wp-block-rank-math-toc-block nav ul li ul li a {
    font-size: 18px;
    color: #555;
    padding: 2px 0;
}

.wp-block-rank-math-toc-block nav ul li ul li a:hover {
    color: #333;
}

.wp-block-rank-math-toc-block nav ul li::before {
    content: '→';
    color: #2641B1;
    margin-right: 6px;
}

.wp-block-rank-math-toc-block nav ul li ul li::before {
    content: '–';
    color: #555;
    margin-right: 6px;
}


/* ============================================
   PROMO BOX
   ============================================ */

.promo-box {
    max-width: 1200px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 40px auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-family: 'Archivo', sans-serif;
}

.promo-box h2 {
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 2px;
}

.promo-box p {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.promo-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073E6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.promo-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    border-width: 4px;
    margin: -2px;
}

@media (max-width: 768px) {
    .promo-box { padding: 20px; }
    .promo-box h2 { font-size: 1.5em; }
    .promo-box p { font-size: 1em; }
    .promo-button { padding: 10px 20px; font-size: 0.9em; }
}


/* ============================================
   SOCIAL LINKS, CONSULTATION BUTTON
   ============================================ */

.ab-link-social-container a {
    color: white !important;
    text-decoration: none !important;
}

.ab-link-social-container a:hover,
.ab-link-social-container a:active,
.ab-link-social-container a:focus,
.ab-link-social-container a:visited {
    color: white !important;
}

a[href*="consultation"] {
    color: white !important;
    text-decoration: none !important;
}

.ab-link-social-container a[href*="consultation"],
a.consultation-button,
a[href*="consultation"] {
    color: white !important;
    text-decoration: none !important;
    background-color: #0073E6;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}


/* ============================================
   LIST STYLES — arrow, byline, tick, side-by-side
   ============================================ */

.arrow_list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.arrow_list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: green;
}

.byline {
    border-bottom: 2px solid #ddd;
    font-size: 18px !important;
}

button.Contact_us_button {
    font-size: 20px !important;
}

button.Contact_us_button:hover {
    background-color: #7a42eb !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.Contact_us_button .wp-block-button__link:hover {
    background-color: #7a42eb !important;
    color: white !important;
    border-color: black;
    text-decoration: underline;
}

form p {
    margin-bottom: 0px !important;
}

.entry-summary {
    font-family: 'Space Mono';
}

form h3 {
    font-weight: 200 !important;
}

.service_navigation ul.wp-block-list {
    list-style: none;
    padding-left: 0;
}

.service_navigation ul.wp-block-list li {
    position: relative;
    padding: 2px 0;
}

.service_navigation ul.wp-block-list li a {
    text-decoration: none;
    color: #2641B1;
}

.service_navigation ul.wp-block-list li a:hover {
    text-decoration: underline;
    color: #2641B1;
}

.service_navigation ul.wp-block-list li:before {
    content: '→';
    position: absolute;
    left: -25px;
    color: grey;
}

.wp-block-list.checking_toc {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.wp-block-list.checking_toc li {
    margin-left: 0 !important;
}

@media screen and (max-width: 800px) {
    .decorative_phone_image { display: none; }
}

@media screen and (max-width: 480px) {
    .company-logo-image {
        width: 300px;
        margin: 0 auto;
    }
    h1.entry-title {
        font-size: 30px;
    }
    .entry-content h2 {
        font-size: 22px;
    }
}

.gb-container a .gb-button-text:hover {
    color: black;
    text-decoration: underline;
}


/* ============================================
   HOMEPAGE ACCESSIBILITY QUESTIONS
   ============================================ */

.accessibilityQuestionList {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accessibilityQuestion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 15px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
    width: 100%;
}

.accessibilityQuestion:hover {
    background-color: #f0f0f0;
    cursor: pointer;
    outline: none;
}

.questionIcon img {
    width: 60px;
    height: 40px;
    object-fit: contain;
}

.questionText {
    flex-grow: 1;
    margin-left: 15px;
    font-weight: 550;
    color: #333;
}

.arrowIcon {
    font-family: 'Helvetica';
    font-weight: bold;
    font-size: 35px;
    color: #999;
}

@media only screen and (max-width: 480px) {
    .accessibilityQuestion {
        margin-left: auto;
        margin-right: auto;
        padding: 8px;
        width: 90%;
    }
    .questionIcon img {
        width: 30px;
        height: 20px;
    }
    .questionText {
        font-size: 12px;
        margin-left: 8px;
    }
    .arrowIcon {
        font-size: 20px;
    }
}


/* ============================================
   SERVICE SECTION — dot pattern, labels
   ============================================ */

.accessibility-wrapper {
    position: relative;
    padding: 30px 0;
    text-align: center;
    margin: 0 auto;
}

.dot-pattern {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 860px;
    height: 416px;
    z-index: 0;
    opacity: 0.5;
}

.dot-pattern-top {
    top: -50px;
}

.dot-pattern-bottom {
    bottom: -80px;
}

.accessibility-services {
    position: relative;
    background-color: #f7f7f7;
    width: 90%;
    max-width: 1160px;
    height: auto;
    max-height: 300px;
    margin: 0 auto;
    padding: 20px 0;
    z-index: 1;
    box-sizing: border-box;
}

.services-header {
    margin-bottom: 20px;
}

.services-header .service-header-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #30454D;
    margin: 0;
    font-weight: lighter;
    font-family: Rubik Mono One, sans-serif;
}

.services-header .main-heading {
    font-size: 2.2rem;
    text-transform: uppercase;
    font-family: 'Courier New', Courier, monospace;
    margin-top: 10px;
    letter-spacing: 1px;
    font-weight: 400;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.service-item {
    position: relative;
    width: 300px;
}

.service-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.service-label {
    background-color: #fff;
    padding: 15px;
    margin-top: -20px;
    border-radius: 0 15px 0 0;
    text-align: center;
    width: 260px;
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Courier New', Courier, monospace;
    position: absolute;
    bottom: -50px;
    left: 40%;
    transform: translateX(-50%);
    box-sizing: content-box;
}

.consulting-label {
    background-color: #98d1e9;
}

.training-label {
    background-color: #c8e99e;
}

.service-label h3 {
    font-size: 1.3rem;
    margin: 0;
}

.service-label p {
    font-size: 1rem;
    text-transform: uppercase;
    margin: 5px 0 0;
}

@media (max-width: 1024px) {
    .services-container { gap: 15px; }
    .service-label h3 { font-size: 1.3rem; }
    .service-label p { font-size: 0.85rem; }
    .service-image { width: 250px; height: 250px; }
}

@media (max-width: 768px) {
    .accessibility-services {
        width: 85%;
        padding: 15px;
    }
    .services-container {
        flex-direction: column;
        gap: 90px;
    }
    .service-item { width: 100%; }
    .service-image {
        width: 85%;
        max-width: 280px;
        height: auto;
    }
    .service-label { margin: 0 auto; }
    .service-label h3 { font-size: 1.2rem; }
    .service-label p { font-size: 0.8rem; }
    .dot-pattern {
        width: 400px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .services-header .main-heading { font-size: 1.8rem; }
    .services-header .subheading { font-size: 0.9rem; }
    .service-image {
        width: 100%;
        max-width: 240px;
        height: auto;
    }
    .service-label { width: 85%; }
    .service-label h3 { font-size: 1rem; }
    .service-label p { font-size: 0.75rem; }
}


/* ============================================
   POST ARTICLE, TICK LISTS, SIDE-BY-SIDE
   ============================================ */

.site-main:has(article.type-post) {
    margin-right: 0px !important;
}

.tick-style-for-list {
    list-style: none;
    padding-left: 0;
}

.tick-style-for-list > li::before {
    content: "✓ ";
    color: black;
    margin-right: 8px;
}

.tick-style-for-list li ul {
    list-style: disc;
    padding-left: 20px;
}

.tick-style-for-list li ul li::before {
    content: none;
}

.side-by-side-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    column-gap: 20px;
    list-style-type: none;
}

.services-left-container li {
    margin-bottom: 12px;
}

.arrow-style-for-list {
    list-style-type: none;
    padding-left: 0;
}

.arrow-style-for-list li {
    position: relative;
    padding-left: 40px;
}

.arrow-style-for-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg aria-hidden="true" focusable="false" style="margin-right: 8px;" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"%3E%3Cline x1="4" y1="12" x2="20" y2="12" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3C/line%3E%3Cpolyline points="14 6 20 12 14 18" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3C/polyline%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.arrow-style-for-list li a {
    color: #2641b1;
    text-decoration: none;
}

.arrow-style-for-list li a:hover {
    text-decoration: underline;
}


/* ============================================
   SUBSCRIPTION FORM
   ============================================ */

.subscription-form {
    max-width: 600px;
    margin: 20px auto;
}

.subscription-form div {
    margin-bottom: 20px;
}

.subscription-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: monospace;
}

.subscription-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.subscription-form input:focus {
    outline: none;
    border-color: #555;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.subscription-form span[aria-hidden="true"] {
    font-size: 14px;
    color: #666;
    font-family: monospace;
}

.subscription-form span[role="alert"] {
    display: block;
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.subscription-form div:nth-last-child(2) {
    margin-bottom: 40px;
}

.subscription-form div:last-child {
    margin-bottom: 40px;
}

.subscription-form button {
    background: #000;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.subscription-form button:hover {
    background: #333;
}

.subscription-form input[aria-invalid="true"] {
    border-color: red;
    background-color: #fff;
}


/* ============================================
   HEADER — dark navy bar
   ============================================ */

.site-header {
    background-color: #0a0e27 !important;
    padding: 20px 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inside-header {
    padding: 0 40px;
}

.site-header .main-navigation a,
.site-header .main-navigation .menu-toggle,
.site-header .main-navigation .menu-bar-items,
.site-header .main-navigation .menu-item-has-children > a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    letter-spacing: normal !important;
}

.site-header .menu-item a,
.site-header #menu-main-menu li a,
.site-header #menu-main-menu-1 li a {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
}

.site-header .menu-item-has-children > a,
.site-header li.menu-item-has-children > a,
.site-header .main-navigation li.menu-item-has-children > a {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background-color: transparent !important;
}

.main-navigation .menu-item-has-children .dropdown-menu-toggle {
    color: #cbd5e1 !important;
    background-color: transparent !important;
    padding: 8px !important;
}

.main-navigation .menu-item-has-children > a.menu-item-link {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.site-branding {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.site-branding a {
    color: #ffffff !important;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.main-navigation .main-nav ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation .main-nav ul li {
    margin: 0 !important;
}

.main-navigation .main-nav ul li a,
.main-navigation .main-nav ul li.menu-item-has-children > a,
.main-navigation .menu-item-has-children > a {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 8px 20px;
    transition: color 0.2s ease;
    display: block;
    background-color: transparent !important;
    border-radius: 0;
}

.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.menu-item-has-children > a:hover {
    color: #ffffff !important;
    background-color: transparent !important;
}

.site-header #menu-main-menu li a:hover,
.site-header #menu-main-menu-1 li a:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    transform: none !important;
    border-radius: 0 !important;
}

.main-navigation .menu-item-has-children .dropdown-menu-toggle {
    color: #cbd5e1 !important;
}

.main-navigation .menu-item-has-children:hover .dropdown-menu-toggle {
    color: #ffffff !important;
}

.site-header .main-navigation .current-menu-item > a,
.site-header .main-navigation .current-menu-parent > a,
.site-header .main-navigation .current-menu-ancestor > a,
.site-header .main-navigation .current_page_item > a,
.site-header .main-navigation .current_page_parent > a,
.site-header .main-navigation .current-page-item > a,
.site-header .main-navigation .current-page-ancestor > a,
.site-header .main-navigation .menu-item-has-children.current-menu-item > a,
.site-header .main-navigation .menu-item-has-children.current-menu-parent > a,
body.home .site-header .main-navigation a[href="/"],
body.home .site-header .main-navigation a[href$="accessible.org/"] {
    color: #f1f5f9 !important;
    background-color: transparent !important;
}

.site-header #menu-main-menu .current_page_item a,
.site-header #menu-main-menu-1 .current_page_item a,
.site-header #menu-main-menu .menu-item-has-children.current-menu-parent > a {
    color: #f1f5f9 !important;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    transform: none !important;
    padding-left: 20px !important;
    font-weight: 500 !important;
}

.main-navigation .main-nav ul li:last-child a {
    background-color: transparent !important;
    color: #cbd5e1 !important;
    border-radius: 0;
    padding: 8px 20px;
    font-weight: 500;
}

.main-navigation .main-nav ul li:last-child a:hover {
    background-color: transparent !important;
    color: #ffffff !important;
}

.menu-toggle {
    color: #ffffff !important;
}

.main-navigation ul ul {
    background-color: #0f1729 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    margin-top: 5px;
}

.main-navigation .main-nav ul ul li a {
    color: #e2e8f0 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    padding: 12px 20px !important;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-navigation .main-nav ul ul li:last-child a {
    border-bottom: none;
}

.main-navigation .main-nav ul ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.main-navigation ul li ul li a {
    transform: none !important;
    text-decoration: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

@media (min-width: 769px) {
    .main-navigation .main-nav > ul {
        justify-content: flex-end;
    }
}

#site-navigation .main-navigation li a,
#site-navigation .menu-item-has-children > a,
.generate-navigation-wrapper .main-navigation li a {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background-color: transparent !important;
    letter-spacing: normal !important;
}

#site-navigation li[style] a {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.main-navigation button span,
.main-navigation a span,
.menu-item-has-children button span,
.menu-item-has-children > a span {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}

#menu-item-5017081 > a,
#menu-item-5017081 > button,
#menu-item-5017081 span {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

li.menu-item-5017081 > a,
#menu-item-5017081 > a,
.menu-item-has-children[id*="5017081"] > a {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

li.menu-item-5017081 > button,
#menu-item-5017081 > button,
.menu-item-has-children[id*="5017081"] > button {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background: transparent !important;
    border: none !important;
}

#menu-item-5017081 * {
    color: inherit !important;
    font-family: inherit !important;
}

[id*="menu-item-5017081"] a,
[id*="menu-item-5017081"] button {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

html body header.site-header nav#site-navigation ul#primary-menu > li#menu-item-5017081 > a,
html body header.site-header nav#site-navigation ul#primary-menu > li#menu-item-5017081 > button,
html body header.site-header nav ul li#menu-item-5017081 > a,
html body header.site-header nav ul li#menu-item-5017081 > button {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.site-header .main-navigation * {
    color: #cbd5e1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.site-header [style*="color"] {
    color: #cbd5e1 !important;
}

.site-header [style*="font-family"] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}


/* ============================================
   HEADER SEARCH WIDGET (non-home)
   ============================================ */

.header-widget-area,
.site-header-item.header-widget {
    background-color: #e2e8f0 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 0 !important;
    min-height: auto !important;
    height: auto !important;
}

.widget_search,
.gp-custom-search-form,
#text-4,
.header-widget-area .inner-padding {
    background-color: transparent !important;
    padding: 8px 40px !important;
    margin: 0 !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    min-height: auto !important;
}

.header-widget-area .widget {
    margin: 0 !important;
    padding: 0 !important;
}

.site-header-item.header-widget .inside-header-widget {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    margin: 0 !important;
}

.header-widget-area .widget:first-child {
    margin-top: 0 !important;
}

.header-widget-area .widget:last-child {
    margin-bottom: 0 !important;
}

.gp-custom-search-form form,
.widget_search form,
form.search-form,
form[role="search"] {
    display: flex !important;
    gap: 10px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    align-items: center !important;
}

.gp-custom-search-form input[type="search"],
.widget_search input[type="search"],
form.search-form input[type="search"],
input#s,
input.search-field {
    flex: 1 !important;
    padding: 6px 16px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 13px !important;
    background-color: #ffffff !important;
    color: #0a0e27 !important;
    height: 36px !important;
    line-height: normal !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
}

.gp-custom-search-form button,
.gp-custom-search-form input[type="submit"],
.widget_search input[type="submit"],
form.search-form button[type="submit"],
form.search-form input[type="submit"],
input#searchsubmit,
button.search-submit {
    background-color: #0a0e27 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    line-height: normal !important;
    margin: 0 !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
}

.gp-custom-search-form button.wp-block-search__button {
    background-image: none !important;
    text-indent: 0 !important;
    width: auto !important;
}

.widget-title,
.header-widget-area .widget-title {
    display: block !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 12px !important;
    color: #4a5568 !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    text-align: center !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    line-height: 1.2 !important;
}

input[type="search"]:focus {
    outline: none !important;
    border-color: #0a0e27 !important;
    box-shadow: 0 0 0 2px rgba(10, 14, 39, 0.1) !important;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: #1a1f36 !important;
    transform: translateY(-1px) !important;
}

.site-footer .gp-custom-search-form {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

@media (max-width: 768px) {
    .header-widget-area .inner-padding {
        padding: 6px 20px !important;
    }
    .gp-custom-search-form input[type="search"],
    .widget_search input[type="search"] {
        font-size: 12px !important;
        height: 32px !important;
        padding: 4px 12px !important;
    }
    .gp-custom-search-form button,
    .widget_search input[type="submit"] {
        font-size: 12px !important;
        height: 32px !important;
        padding: 4px 16px !important;
    }
    .widget-title,
    .header-widget-area .widget-title {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }
}

#gp-custom-search-field-header,
#gp-custom-search-field-footer {
    border-radius: 5px;
    max-height: 40px;
}

.site-footer .gp-custom-search-bar-container {
    padding: 30px;
}


/* ============================================
   TABLES — pricetable, infotable1, linktable
   ============================================ */

.pricetable {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
}

.pricetable caption {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    caption-side: top;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.pricetable th,
.pricetable td {
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 12px;
    text-align: left;
}

.pricetable th:last-child,
.pricetable td:last-child {
    border-right: none;
}

.pricetable tbody tr:last-child th,
.pricetable tbody tr:last-child td {
    border-bottom: none;
}

.pricetable thead tr {
    background-color: #1a2238;
    color: #ffffff;
}

.pricetable thead th {
    font-weight: bold;
    color: #ffffff;
}

.pricetable tbody tr:first-child {
    background-color: #e6f2ff;
    font-weight: bold;
}

.pricetable tbody th {
    font-weight: bold;
    background-color: inherit;
}

.pricetable tbody tr:nth-child(even):not(:first-child) {
    background-color: #f9f9f9;
}

.pricetable tbody tr:hover {
    background-color: #f5f5f5;
}

.pricetable tbody tr:first-child:hover {
    background-color: #d9ebff;
}

.pricetable thead tr:first-child th:first-child {
    border-top-left-radius: 7px;
}

.pricetable thead tr:first-child th:last-child {
    border-top-right-radius: 7px;
}

.pricetable tbody tr:last-child th:first-child,
.pricetable tbody tr:last-child td:first-child {
    border-bottom-left-radius: 7px;
}

.pricetable tbody tr:last-child td:last-child {
    border-bottom-right-radius: 7px;
}

.infotable1 {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
}

.infotable1 caption {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    caption-side: top;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.infotable1 th,
.infotable1 td {
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 12px;
    text-align: left;
    border-left: 0;
    border-top: 0;
}

.infotable1 th:last-child,
.infotable1 td:last-child {
    border-right: none;
}

.infotable1 tbody tr:last-child td,
.infotable1 tbody tr:last-child th {
    border-bottom: none;
}

.infotable1 thead tr {
    background-color: #1a2238;
    color: #ffffff;
}

.infotable1 thead th {
    font-weight: bold;
    color: #ffffff;
}

.infotable1 th[scope="row"] {
    font-weight: bold;
    color: #333;
    background-color: inherit;
}

.infotable1 tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.infotable1 tbody tr:hover {
    background-color: #f5f5f5;
}

.infotable1 thead tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

.infotable1 thead tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

.infotable1 tbody tr:last-child td:first-child,
.infotable1 tbody tr:last-child th:first-child {
    border-bottom-left-radius: 8px;
}

.infotable1 tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.linktable {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
}

.linktable caption {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    caption-side: top;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.linktable th,
.linktable td {
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 12px;
    text-align: left;
    border-left: 0;
    border-top: 0;
}

.linktable th:last-child,
.linktable td:last-child {
    border-right: none;
}

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

.linktable thead tr {
    background-color: #1a2238;
    color: #ffffff;
}

.linktable thead th {
    font-weight: bold;
    color: #ffffff;
}

.linktable tbody tr:first-child {
    background-color: #ffffff;
    font-weight: bold;
}

.linktable tbody tr:nth-child(even):not(:first-child) {
    background-color: #f9f9f9;
}

.linktable tbody tr:hover {
    background-color: #f5f5f5;
}

.linktable tbody tr:first-child:hover {
    background-color: #ffffff;
}

.linktable thead tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

.linktable thead tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

.linktable tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.linktable tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}


/* ============================================
   ACCESSIBILITY TRACKER PROMO CARD
   ============================================ */

.a11y-promo-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    background: transparent;
}

.a11y-promo-wrapper .a11y-promo-card {
    max-width: 600px !important;
    width: 100%;
    margin: 30px 20px;
}

.a11y-promo-card {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 32px 36px;
    max-width: 600px;
    width: 100%;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 20px 40px -8px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.05);
}

.a11y-promo-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 30px 60px -12px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.a11y-promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
}

.a11y-promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(59, 130, 246, 0.01),
        transparent,
        rgba(139, 92, 246, 0.01),
        transparent
    );
    animation: a11y-shimmer 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes a11y-shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.a11y-promo-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 25% 25%, #3b82f6 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #8b5cf6 2px, transparent 2px);
    background-size: 20px 20px;
}

.a11y-promo-heading {
    font-size: 26px !important;
    font-weight: 700;
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    color: #1e40af;
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2 !important;
}

.a11y-promo-tagline {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
}

.a11y-promo-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.a11y-promo-chip {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 !important;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 6px;
    font-size: 14px;
    color: #1e40af;
    font-weight: 500;
    transition: all 0.2s ease;
    list-style: none !important;
}

.a11y-promo-chip::before {
    display: none !important;
}

.a11y-promo-chip:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.15);
}

.a11y-promo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
}

.a11y-promo-cta {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
}

.a11y-promo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.a11y-promo-cta:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(59, 130, 246, 0.3),
        0 5px 10px rgba(139, 92, 246, 0.2) !important;
}

.a11y-promo-cta:hover::before {
    left: 100%;
}

.a11y-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;
}

@media (max-width: 540px) {
    .a11y-promo-card {
        width: 100%;
        padding: 20px 24px;
    }
    .a11y-promo-heading {
        font-size: 22px !important;
    }
    .a11y-promo-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .a11y-promo-cta {
        text-align: center;
        width: 100%;
    }
}

.a11y-promo-cta:focus {
    outline: 3px solid #1e40af;
    outline-offset: 2px;
}

.a11y-promo-cta:focus:not(:focus-visible) {
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    .a11y-promo-card::before { animation: none; }
    .a11y-promo-card,
    .a11y-promo-chip,
    .a11y-promo-cta,
    .a11y-promo-cta::before {
        transition: none !important;
    }
    .a11y-promo-card:hover { transform: none; }
    .a11y-promo-chip:hover { transform: none; }
    .a11y-promo-cta:hover { transform: none; }
}

@media (prefers-contrast: high) {
    .a11y-promo-heading {
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }
    .a11y-promo-card { border: 2px solid; }
    .a11y-promo-chip { border: 2px solid; }
    .a11y-promo-cta { border: 2px solid !important; }
}


/* ============================================
   SINGLE POST THUMBNAIL
   ============================================ */

.single .post-thumbnail,
.single .wp-post-image {
    padding-top: 30px;
    padding-bottom: 30px;
}


/* ============================================
   PROCESS PAGE (/process)
   ============================================ */

.process-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 10px 24px 80px;
    font-family: 'Inter', sans-serif;
}

.process-header {
    text-align: left;
    margin-bottom: 48px;
}

.process-label {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #7C4DFF;
    margin-bottom: 10px;
    display: block;
}

.process-header h2 {
    font-weight: 800;
    font-size: clamp(30px, 5vw, 42px);
    color: #1A1A2E;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.process-header p {
    font-size: 16px;
    color: #5C5C72;
    line-height: 1.7;
    max-width: 480px;
}

.process-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
}

.step-card {
    width: 100%;
    background: linear-gradient(145deg, #5228B8 0%, #4A22A8 50%, #3D1A96 100%);
    border: 1.5px solid #6B44CC;
    border-radius: 16px;
    padding: 34px 34px 30px;
    box-shadow:
        0 0 20px rgba(108, 63, 224, 0.18),
        0 0 50px rgba(108, 63, 224, 0.1),
        0 8px 24px rgba(26, 26, 46, 0.15);
    position: relative;
    overflow: visible;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.2) 70%, transparent 95%);
    border-radius: 16px 16px 0 0;
}

.step-card:not(:last-child)::after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: -51px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%237C4DFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4v16'/%3E%3Cpath d='M18 14l-6 6-6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 1px 6px rgba(124, 77, 255, 0.3));
}

.step-card:not(:last-child) {
    margin-bottom: 72px;
}

.step-card:hover {
    border-color: #7C4DFF;
    box-shadow:
        0 0 28px rgba(124, 77, 255, 0.35),
        0 0 60px rgba(108, 63, 224, 0.15),
        0 12px 32px rgba(26, 26, 46, 0.2);
}

.step-card.step-loop::after {
    bottom: -56px;
}

.step-card.step-loop .loop-label-visual {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7C4DFF;
    white-space: nowrap;
    z-index: 1;
}

.step-card.step-final {
    background: linear-gradient(145deg, #165E2E 0%, #0F4D24 50%, #0D4520 100%);
    border-color: #2E9E50;
}

.step-card.step-final::before {
    background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.15) 70%, transparent 95%);
}

.step-card.step-final:hover {
    border-color: #34D068;
    box-shadow:
        0 0 28px rgba(52, 208, 104, 0.3),
        0 0 60px rgba(52, 208, 104, 0.12),
        0 12px 32px rgba(26, 26, 46, 0.2);
}

.step-card.step-cta {
    background: linear-gradient(145deg, #1565C0 0%, #0D47A1 50%, #0A3A85 100%);
    border-color: #2979FF;
    text-align: center;
    margin-bottom: 0;
}

.step-card.step-cta::before {
    background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.15) 70%, transparent 95%);
}

.step-card.step-cta:hover {
    border-color: #448AFF;
    box-shadow:
        0 0 28px rgba(41, 121, 255, 0.3),
        0 0 60px rgba(41, 121, 255, 0.12),
        0 12px 32px rgba(26, 26, 46, 0.2);
}

.step-card.step-cta .step-desc {
    padding-left: 0;
}

.cta-button-wrap {
    text-align: center;
    margin-top: 20px;
}

.cta-link {
    display: inline-block;
    padding: 14px 36px;
    background: #FFFFFF;
    color: #0D47A1;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.25s ease;
}

.cta-link:hover {
    background: rgba(255, 255, 255, 0.88);
}

.cta-link:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 3px;
}

.step-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.step-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.step-title {
    font-weight: 700;
    font-size: 25px;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.step-desc {
    font-size: 14px;
    line-height: 1.78;
    color: #FFFFFF;
    padding-left: 68px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    margin-left: 68px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
}

.badge-cycle svg { width: 13px; height: 13px; }
.badge-done svg { width: 13px; height: 13px; }

@media (max-width: 600px) {
    .process-section { padding: 10px 16px 56px; }
    .process-header { margin-bottom: 32px; }
    .step-card { padding: 26px 22px 24px; }
    .step-card:not(:last-child) { margin-bottom: 56px; }
    .step-card:not(:last-child)::after { width: 26px; height: 26px; bottom: -43px; }
    .step-card.step-loop::after { bottom: -48px; }
    .step-card.step-loop .loop-label-visual { bottom: -36px; font-size: 10px; }
    .step-number { width: 46px; height: 46px; font-size: 18px; border-radius: 12px; }
    .step-title { font-size: 21px; }
    .step-desc { padding-left: 62px; }
    .step-card.step-cta .step-desc { padding-left: 0; }
    .badge { margin-left: 62px; }
    .cta-link { padding: 12px 28px; font-size: 14px; }
}

.step-card:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 3px;
}




/* ============================================================================
   HOMEPAGE — REFINED THEME
   ============================================================================

   CloudMagnus-inspired restraint. Navy base, subtle radial gradient,
   neutral primary button, magenta preserved as spot accent only.

   All rules scoped to .ao-homepage or .home. Placed at the end so it
   cascades naturally without needing override hacks. Iterate here.

   Edit knobs:
   • Palette: section 1 (--bg, --magenta, etc.)
   • Hero gradient intensity: section 3 (opacity in the radial-gradient)
   • CTA gradient intensity: section 10
   ============================================================================ */


/* 1. Palette — change once, cascades to every section */
.ao-homepage {
    --bg: #0B1020;
    --bg-section: #0E1428;
    --card: #141A2E;
    --card-hover: #1A2138;
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(232, 75, 232, 0.25);
    --text: #FFFFFF;
    --text-mid: #C8CFDB;
    --text-dim: #A7B0C0;
    --text-muted: #8A94A8;
    --magenta: #E84BE8;
    --magenta-bright: #F06EF0;
    --magenta-soft: rgba(232, 75, 232, 0.08);
    --accent: #6FB3A6;

    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.ao-homepage * {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* 2. Heading weights — 600 reads confident, not aggressive */
.ao-homepage h1,
.ao-homepage h2,
.ao-homepage h3,
.ao-homepage h4,
.ao-homepage h5,
.ao-homepage h6 {
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    color: var(--text);
}

/* Skip link, visually hidden, focus */
.ao-homepage .ao-skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--magenta);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-size: 1rem;
    z-index: 9999;
    transition: top 0.2s;
}
.ao-homepage .ao-skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.ao-homepage a:focus-visible,
.ao-homepage button:focus-visible,
.ao-homepage input:focus-visible,
.ao-homepage select:focus-visible,
.ao-homepage textarea:focus-visible,
.ao-homepage [tabindex]:focus-visible {
    outline: 2px solid #FFFFFF !important;
    outline-offset: 2px;
}

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

.ao-homepage ol { margin-left: 0; }


/* 3. HERO */
.ao-homepage .ao-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

/* Center radial gradient — subtle navy wash. Bump opacity below to taste. */
.ao-homepage .ao-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 900px;
    background: radial-gradient(
        ellipse at center,
        rgba(150, 165, 225, 0.18) 0%,
        rgba(120, 140, 210, 0.08) 30%,
        transparent 65%
    );
    pointer-events: none;
}

.ao-homepage .ao-hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.ao-homepage .ao-hero h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 800 !important;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
    color: var(--text);
}

/* Tracker — flat magenta accent, no glow */
.ao-homepage .ao-hero h1 .ao-tracker {
    color: var(--magenta) !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    display: inline-block;
}
.ao-homepage .ao-hero h1 .ao-tracker::before {
    display: none !important;
    content: none !important;
    animation: none !important;
}

.ao-homepage .ao-hero-sub {
    font-size: 1.5rem;
    font-weight: 400 !important;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.ao-homepage .ao-hero-cta {
    margin-top: 1.5rem;
    margin-bottom: 0;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

/* Buttons — primary neutral light, secondary transparent outline */
.ao-homepage .ao-btn {
    font-size: 1rem;
    font-weight: 500 !important;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.ao-homepage .ao-btn-primary {
    background: #E8ECF4;
    color: #0B1020 !important;
    box-shadow: none;
}
.ao-homepage .ao-btn-primary:hover {
    background: #FFFFFF;
    color: #0B1020 !important;
    box-shadow: none;
}

.ao-homepage .ao-btn-secondary {
    background: #E8ECF4 !important;
    border: none !important;
    color: #0B1020 !important;
}
.ao-homepage .ao-btn-secondary:hover {
    background: #FFFFFF !important;
    border-color: transparent !important;
    color: #0B1020 !important;
}

/* Video — hidden */
.ao-homepage .ao-video-container {
    display: none !important;
}

/* Proof row — muted teal checks, no glow */
.ao-homepage .ao-proof-row {
    margin-left: 0;
    display: flex;
    gap: 3.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
}
.ao-homepage .ao-proof-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.ao-homepage .ao-proof-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    filter: none;
}


/* 4. SERVICES */
.ao-homepage .ao-services {
    padding: 8rem 2rem;
    background: var(--bg-section);
}

.ao-homepage .ao-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ao-homepage .ao-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.ao-homepage .ao-section-label {
    font-size: 0.75rem;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--magenta);
    margin-bottom: 1rem;
}

.ao-homepage .ao-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: var(--text);
}

.ao-homepage .ao-section-desc {
    font-size: 1.125rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.ao-homepage .ao-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.ao-homepage .ao-service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}
.ao-homepage .ao-service-card:hover {
    background: var(--card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.ao-homepage .ao-service-icon {
    width: 56px;
    height: 56px;
    background: var(--magenta-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.ao-homepage .ao-service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--magenta);
}

.ao-homepage .ao-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600 !important;
    margin-bottom: 1rem;
    color: var(--text);
}
.ao-homepage .ao-service-card p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ao-homepage .ao-service-link {
    font-size: 0.875rem;
    font-weight: 500 !important;
    color: var(--magenta) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}
.ao-homepage .ao-service-link:hover {
    gap: 0.75rem;
}
.ao-homepage .ao-service-link svg {
    width: 16px;
    height: 16px;
}


/* 5. WHY */
.ao-homepage .ao-why {
    padding: 8rem 2rem;
    background: var(--bg);
}
.ao-homepage .ao-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.ao-homepage .ao-why-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: var(--text);
}
.ao-homepage .ao-why-content > p {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 3rem;
}
.ao-homepage .ao-why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ao-homepage .ao-why-item {
    display: flex;
    gap: 1rem;
}
.ao-homepage .ao-why-item-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.ao-homepage .ao-why-item-content h3 {
    font-size: 1rem;
    font-weight: 500 !important;
    margin-bottom: 0.25rem;
    color: var(--text);
}
.ao-homepage .ao-why-item-content p {
    font-size: 0.9375rem;
    color: var(--text-dim);
    line-height: 1.5;
}
.ao-homepage .ao-why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin: 0;
}
.ao-homepage .ao-why-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}
.ao-homepage .ao-why-card-row:last-child {
    border-bottom: none;
}
.ao-homepage .ao-why-card-label {
    font-size: 0.9375rem;
    color: var(--text-dim);
    margin: 0;
}
.ao-homepage .ao-why-card-value {
    font-size: 1rem;
    font-weight: 500 !important;
    color: var(--text);
    margin: 0;
}
.ao-homepage .ao-why-card-value.ao-highlight {
    color: var(--magenta);
}


/* 6. HOW IT WORKS */
.ao-homepage .ao-how {
    padding: 8rem 2rem;
    background: var(--bg-section);
}
.ao-homepage .ao-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    list-style: none;
    padding: 0;
}
.ao-homepage .ao-step {
    text-align: center;
    position: relative;
}
.ao-homepage .ao-step::after {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% + 44px);
    width: calc(100% - 88px);
    height: 2px;
    background: var(--border);
}
.ao-homepage .ao-step:last-child::after {
    display: none;
}
.ao-homepage .ao-step-number {
    width: 72px;
    height: 72px;
    background: var(--card);
    border: 1px solid rgba(232, 75, 232, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 600 !important;
    color: var(--magenta);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}
.ao-homepage .ao-step h3 {
    font-size: 1.375rem;
    font-weight: 600 !important;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.ao-homepage .ao-step p {
    font-size: 1.0625rem;
    color: var(--text-dim);
    line-height: 1.6;
}


/* 7. CTA */
.ao-homepage .ao-cta-section {
    padding: 8rem 2rem;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ao-homepage .ao-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1100px;
    height: 700px;
    background: radial-gradient(
        ellipse at center,
        rgba(150, 165, 225, 0.14) 0%,
        rgba(120, 140, 210, 0.06) 35%,
        transparent 65%
    );
    pointer-events: none;
}
.ao-homepage .ao-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.ao-homepage .ao-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: var(--text);
}
.ao-homepage .ao-cta-content p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}
.ao-homepage .ao-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}


/* 8. RESOURCES */
.ao-homepage .ao-resources {
    padding: 8rem 2rem;
    background: var(--bg-section);
}
.ao-homepage .ao-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.ao-homepage .ao-resource-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}
.ao-homepage .ao-resource-card:hover {
    background: var(--card-hover);
    border-color: rgba(232, 75, 232, 0.2);
}
.ao-homepage .ao-resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600 !important;
    margin-bottom: 1rem;
    color: var(--text);
}
.ao-homepage .ao-resource-card p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.ao-homepage .ao-resource-link-text {
    font-size: 0.9375rem;
    color: var(--text-dim);
    margin-bottom: 0;
}
.ao-homepage .ao-resource-link {
    font-weight: 500 !important;
    color: var(--magenta) !important;
    text-decoration: underline;
}
.ao-homepage .ao-resource-link:hover {
    text-decoration: underline;
}


/* 9. ABOUT */
.ao-homepage .ao-about {
    padding: 8rem 2rem;
    background: var(--bg);
}
.ao-homepage .ao-about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}
.ao-homepage .ao-about-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
}
.ao-homepage .ao-about-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600 !important;
    margin-bottom: 1.5rem;
    color: var(--text);
}
.ao-homepage .ao-about-content p {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.ao-homepage .ao-citations-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}
.ao-homepage .ao-citations-list li {
    font-size: 1rem;
    color: var(--text-dim);
    position: relative;
    padding-left: 1rem;
}
.ao-homepage .ao-citations-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--magenta);
}


/* 10. LINKS */
.ao-homepage a {
    color: var(--magenta);
}


/* 11. RESPONSIVE */
@media (max-width: 1024px) {
    .ao-homepage .ao-services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .ao-homepage .ao-why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .ao-homepage .ao-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .ao-homepage .ao-step::after {
        display: none;
    }
    .ao-homepage .ao-resources-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .ao-homepage .ao-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .ao-homepage .ao-about-image {
        max-width: 250px;
        margin: 0 auto;
    }
    .ao-homepage .ao-citations-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ao-homepage .ao-about-content p,
    .ao-homepage .ao-citations-list {
        text-align: left;
        margin: 2rem;
    }
    .ao-homepage .ao-hero { padding: 4rem 1.5rem; }
    .ao-homepage .ao-hero-content { margin-bottom: 4rem; }
    .ao-homepage .ao-hero-sub { font-size: 1.25rem; }
    .ao-homepage .ao-hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .ao-homepage .ao-btn {
        text-align: center;
        width: 100%;
    }
    .ao-homepage .ao-proof-row {
        margin-left: 0;
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        margin-top: 4rem;
    }
    .ao-homepage .ao-services,
    .ao-homepage .ao-why,
    .ao-homepage .ao-how,
    .ao-homepage .ao-cta-section,
    .ao-homepage .ao-resources,
    .ao-homepage .ao-about {
        padding: 5rem 1.5rem;
    }
    .ao-homepage .ao-steps {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 4rem auto 0 !important;
    }
    .ao-homepage .ao-cta-buttons {
        flex-direction: column;
        max-width: 280px;
        margin: 0 auto;
    }
    .ao-homepage .ao-citations-list {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* 12. HOME LAYOUT — full-width, hide page title */
.home .entry-title,
.home .page-header,
.home .page-header-container {
    display: none !important;
}

.home #page,
.home .site-content,
.home .grid-container,
.home > .site-content > .content-area,
.home .inside-article,
.home .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.home .site-main {
    width: 100% !important;
}

.home article,
.home .content-area {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body.home {
    overflow-x: hidden;
}

.home .ao-service-card,
.home .ao-resource-card {
    padding: 2rem !important;
}

.home .site-header .inside-header,
.home .site-header .grid-container {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}


/* 13. HOME SEARCH BAR — navy, no magenta glow */
.home .gp-custom-search-bar-container {
    background: #0B1020 !important;
    border: none !important;
    padding: 1.5rem 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding-left: calc(50vw - 50%) !important;
    padding-right: calc(50vw - 50%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.home .gp-custom-search-bar-container * {
    background-color: transparent;
}

.home .gp-custom-search-field {
    background: #141A2E !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}
.home .gp-custom-search-field:focus {
    outline: none !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 0 0 2px rgba(135, 150, 210, 0.25) !important;
}
.home .gp-custom-search-field::placeholder {
    color: #8A94A8 !important;
}

.home .gp-custom-search-submit-header,
.home button.gp-custom-search-submit-header,
.home .gp-custom-search-bar-container button[type="submit"] {
    background: #E8ECF4 !important;
    color: #0B1020 !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    transition: background 0.2s !important;
}
.home .gp-custom-search-submit-header:hover,
.home button.gp-custom-search-submit-header:hover,
.home .gp-custom-search-bar-container button[type="submit"]:hover {
    background: #FFFFFF !important;
    box-shadow: none !important;
}
.home .gp-custom-search-submit-header:focus,
.home button.gp-custom-search-submit-header:focus,
.home .gp-custom-search-bar-container button[type="submit"]:focus {
    outline: 2px solid #FFFFFF !important;
    outline-offset: 2px !important;
}

.home .gp-custom-search-clear-header {
    color: #8A94A8 !important;
    background: transparent !important;
}

.home .site-footer .gp-custom-search-bar-container,
.home .footer-bar .gp-custom-search-bar-container {
    display: none !important;
}


/* 14. ACCESSIBILITY — high contrast, reduced motion */
@media (prefers-contrast: high) {
    .ao-homepage .ao-btn-primary {
        border: 2px solid;
    }
    .ao-homepage .ao-service-card,
    .ao-homepage .ao-why-card,
    .ao-homepage .ao-resource-card {
        border: 2px solid;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ao-homepage .ao-service-card,
    .ao-homepage .ao-resource-card {
        transition: none !important;
    }
    .ao-homepage .ao-service-card:hover,
    .ao-homepage .ao-resource-card:hover {
        transform: none;
    }
}