/**
 * Sharp Pearl Theme
 * Auto-generated
 */

:root {
    --achg-primary: #0d291f;
    --achg-primary-light: #5a6981;
    --achg-primary-dark: #202439;
    --achg-bronze: #f27864;
    --achg-bronze-light: #c5d1c9;
    --achg-bronze-dark: #808e9a;
    --achg-silver: #f56b68;
    --achg-silver-light: #cfd5e3;
    --achg-charcoal: #F5F5F5;
    --achg-midnight: #FEFEFE;
    --achg-slate: #FFFFFF;
    --achg-text: #E8EDF2;
    --achg-text-dim: #8192ad;
    --achg-text-dark: #0b2f28;
    --achg-border: #ECEFF1;
    --achg-success: #2ecc68;
    --achg-warning: #e04b42;
    --achg-highlight: #f5d00a;
    --achg-curve-sm: 2px;
    --achg-curve-md: 4px;
    --achg-curve-lg: 8px;
    --achg-glow: 0 1px 3px rgba(0,0,0,0.06);
    --achg-glow-bronze: 0 6px 24px rgba(241,104,102,0.25);
    --achg-anim: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --achg-font-heading: 'Inter', sans-serif;
    --achg-font-text: 'Inter', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.achg-page {
    font-family: var(--achg-font-text);
    background: linear-gradient(180deg, var(--achg-charcoal) 0%, var(--achg-midnight) 100%);
    color: var(--achg-text);
    line-height: 1.75;
    min-height: 100vh;
}

a {
    color: var(--achg-bronze);
    text-decoration: none;
    transition: var(--achg-anim);
}

a:hover {
    color: var(--achg-bronze-light);
}

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

/* ================================================
   NAVIGATION BAR
================================================ */
.achg-topbar {
    background: linear-gradient(180deg, var(--achg-primary-dark) 0%, var(--achg-charcoal) 100%);
    border-bottom: 1px solid var(--achg-border);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(14px);
}

.achg-topbar__wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 19px 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.achg-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-right: auto;
}

.achg-brand__title {
    font-family: var(--achg-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--achg-text);
    letter-spacing: 0.6px;
}

.achg-menu {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
}

.achg-menu__link {
    display: inline-block;
    padding: 8px 25px;
    color: var(--achg-text);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    border-radius: var(--achg-curve-sm);
    transition: var(--achg-anim);
}

.achg-menu__link:hover,
.achg-menu__link.current {
    color: var(--achg-bronze);
    background: rgba(242,118,94,0.12);
}

.achg-topbar__action {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 13px 29px;
    background: linear-gradient(135deg, var(--achg-bronze) 0%, var(--achg-bronze-dark) 100%);
    color: var(--achg-charcoal);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    border-radius: 53px;
    transition: var(--achg-anim);
    box-shadow: var(--achg-glow-bronze);
}

.achg-topbar__action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245,109,105,0.5);
    color: var(--achg-charcoal);
}

.achg-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
    background: transparent;
    border: 3px solid var(--achg-bronze);
    border-radius: var(--achg-curve-sm);
    cursor: pointer;
}

.achg-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--achg-bronze);
    transition: var(--achg-anim);
}

.achg-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.achg-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.achg-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.achg-drawer {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: var(--achg-primary-dark);
    transition: max-height 0.35s ease;
}

.achg-drawer.open {
    display: block;
    max-height: 420px;
    padding: 26px 29px;
}

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

.achg-drawer__nav a {
    display: block;
    padding: 13px 22px;
    color: var(--achg-text);
    font-size: 15px;
    border-radius: var(--achg-curve-sm);
}

.achg-drawer__nav a:hover {
    background: rgba(245,107,97,0.12);
    color: var(--achg-bronze);
}

/* ================================================
   LAYOUT
================================================ */
.achg-content {
    min-height: calc(100vh - 200px);
}

.achg-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 29px;
}

/* ================================================
   HERO BANNER
================================================ */
.achg-hero {
    text-align: center;
    padding: 0 0 19px;
    margin-bottom: 15px;
}

.achg-hero__tag {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(245,113,104,0.18);
    color: var(--achg-bronze);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    border-radius: 52px;
    margin-bottom: 21px;
}

.achg-hero__heading {
    font-family: var(--achg-font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--achg-text);
    margin-bottom: 19px;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.achg-hero__desc {
    font-size: 19px;
    color: var(--achg-text-dim);
    max-width: 640px;
    margin: 0 auto 39px;
}

/* ================================================
   SECTION HEADERS
================================================ */
.achg-section-intro {
    text-align: center;
    margin-bottom: 46px;
}

.achg-section-intro__label {
    display: inline-block;
    padding: 5px 21px;
    background: rgba(245,104,96,0.18);
    color: var(--achg-bronze);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 51px;
    margin-bottom: 16px;
}

.achg-section-intro__title {
    font-family: var(--achg-font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--achg-text);
    margin-bottom: 14px;
}

.achg-section-intro__text {
    font-size: 16px;
    color: var(--achg-text-dim);
}

/* ================================================
   COMPANY GRID
================================================ */
.achg-providers {
    margin: 51px 0;
    width: 90vw;
    max-width: 1160px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.achg-providers__grid {
    background: var(--achg-slate);
    border-radius: var(--achg-curve-lg);
    overflow: hidden;
    box-shadow: var(--achg-glow);
}

.achg-providers__head {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 22px;
    padding: 17px 32px;
    background: #0a1f24;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    text-align: center;
    align-items: center;
}

.achg-providers__head > div {
    text-align: center;
    color: #fff;
}

.achg-providers__row {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 21px;
    padding: 25px 31px;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #e3e6d9;
    background: #ffffff;
    transition: background 0.2s ease;
}

.achg-providers__row:nth-child(odd) {
    background: #f0f4f8;
}

.achg-providers__row:last-child {
    border-bottom: none;
}

.achg-providers__row:hover {
    background: #e8edf5;
}

.achg-providers__row.top-pick {
    background: #fef9e7;
    border-left: 4px solid #8a9da5;
}

.achg-company-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.achg-company-cell__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    border-radius: 7px;
    background: #fff;
    padding: 15px 15px;
    border: 1px solid #eee;
}

.achg-company-cell__tagline {
    font-size: 12px;
    color: #959ca0;
    text-align: center;
    font-weight: 500;
}

.achg-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.achg-perk {
    display: block;
    padding: 6px 16px;
    background: #eaf2e8;
    color: #235625;
    font-size: 11px;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
    border: 1px solid #c9ddc9;
}

.achg-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.achg-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.achg-stars__star {
    font-size: 17px;
}

.achg-stars__star.lit {
    color: #eca30a;
}

.achg-stars__star.dim {
    color: #d1d9d2;
}

.achg-score__num {
    font-weight: 700;
    color: #0a262e;
    font-size: 17px;
}

.achg-score__bbb {
    font-size: 11px;
    color: #1e5621;
    font-weight: 700;
    background: #e8f5e9;
    padding: 1px 11px;
    border-radius: 3px;
}

.achg-invest {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achg-invest__amount {
    font-weight: 700;
    color: #0c2d21;
    font-size: 17px;
}

.achg-invest__label {
    font-size: 11px;
    color: #788f95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achg-cta-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
}

.achg-cta-cell__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 21px;
    background: linear-gradient(135deg, #92969f 0%, #b7c3ca 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border-radius: 6px;
    transition: var(--achg-anim);
}

.achg-cta-cell__main:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(245,118,107,0.3);
}

.achg-cta-cell__alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    color: #5b5b58;
    border: 1px solid #c7ccca;
    font-size: 11px;
    border-radius: 7px;
    transition: var(--achg-anim);
}

.achg-cta-cell__alt:hover {
    background: #f0f0f0;
    color: #383238;
}

/* ================================================
   TABLE OF CONTENTS
================================================ */
.achg-toc {
    background: linear-gradient(135deg, rgba(245,108,99,0.12) 0%, rgba(245,107,106,0.05) 100%);
    border: 2px solid var(--achg-bronze);
    border-radius: var(--achg-curve-lg);
    padding: 29px 36px;
    margin: 39px 0;
}

.achg-toc__title {
    font-family: var(--achg-font-heading);
    font-size: 22px;
    color: var(--achg-text);
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.achg-toc__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.achg-toc__list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    color: var(--achg-text);
    font-size: 14px;
    border-radius: var(--achg-curve-sm);
    transition: var(--achg-anim);
}

.achg-toc__list li a:hover {
    background: rgba(245,113,98,0.18);
    color: var(--achg-bronze);
}

.achg-toc__list li a::before {
    content: '\2192';
    color: var(--achg-bronze);
}

/* ================================================
   ARTICLE / CONTENT BLOCKS
================================================ */
.achg-article {
    margin: 46px 0;
}

.achg-article h1 {
    font-family: var(--achg-font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--achg-text);
    margin-bottom: 27px;
    text-align: center;
}

.achg-block {
    margin: 43px 0;
    padding: 30px;
    background: var(--achg-slate);
    border-radius: var(--achg-curve-lg);
}

.achg-block#overview {
    background: transparent;
    padding: 0;
}

.achg-block h2 {
    font-family: var(--achg-font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--achg-text);
    margin-bottom: 22px;
}

.achg-block__body {
    font-size: 19px;
    line-height: 1.85;
}

.achg-block__body p {
    margin-bottom: 20px;
}

.achg-block__body ul,
.achg-block__body ol {
    margin: 15px 0;
    padding-left: 31px;
}

.achg-block__body li {
    margin-bottom: 11px;
}

.achg-block__body strong {
    color: var(--achg-text);
}

.achg-block__body img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 16px auto;
}

/* Content images */
.achg-content-image {
    margin: 37px 0;
    border-radius: var(--achg-curve-lg);
    overflow: hidden;
    box-shadow: var(--achg-glow);
}

.achg-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   FAQ SECTION
================================================ */
.achg-faq {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--achg-curve-lg);
    margin: 51px 0;
}

.achg-faq .achg-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 17px;
}

.achg-faq-header {
    text-align: center;
    margin-bottom: 43px;
}

.achg-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, #f56d5c 0%, #c2c3d2 100%);
    color: white;
    padding: 5px 14px;
    border-radius: 21px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.achg-faq-title {
    font-size: 29px;
    font-weight: 700;
    color: #18102e;
    margin: 0;
}

.achg-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achg-faq-item {
    background: white;
    border-radius: 11px;
    box-shadow: 0 1px 9px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.achg-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.achg-faq-item.active .achg-faq-answer {
    max-height: 500px;
    padding: 0 21px 23px;
}

.achg-faq-item.active .achg-faq-icon {
    transform: rotate(180deg);
}

.achg-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #112329;
    gap: 16px;
}

.achg-faq-question:hover {
    color: #f5735d;
}

.achg-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #ef6d6c;
}

.achg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 21px;
}

.achg-faq-answer-inner {
    color: #4a465b;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================================
   TESTIMONIALS SLIDER
================================================ */
.achg-reviews {
    margin: 63px 0;
    overflow: hidden;
}

.achg-reviews__carousel {
    display: flex;
    gap: 26px;
    animation: slideReviews 30s linear infinite;
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.achg-reviews__carousel:hover {
    animation-play-state: paused;
}

.achg-review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--achg-slate);
    padding: 28px;
    border-radius: var(--achg-curve-lg);
    border: 2px solid var(--achg-border);
}

.achg-review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.achg-review-card__avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--achg-bronze) 0%, var(--achg-bronze-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--achg-charcoal);
    overflow: hidden;
}

.achg-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achg-review-card__author {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.achg-review-card__name {
    font-weight: 600;
    color: var(--achg-text);
}

.achg-review-card__location {
    font-size: 13px;
    color: var(--achg-text-dim);
}

.achg-review-card__verified {
    width: 26px;
    height: 26px;
    background: var(--achg-success);
    color: var(--achg-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.achg-review-card__stars {
    margin-bottom: 13px;
}

.achg-review-card__text {
    font-size: 15px;
    color: var(--achg-text);
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.7;
}

.achg-review-card__date {
    font-size: 12px;
    color: var(--achg-text-dim);
}

/* ================================================
   FOOTER
================================================ */
.achg-footer {
    background: linear-gradient(180deg, var(--achg-charcoal) 0%, #050a14 100%);
    border-top: 1px solid var(--achg-border);
    padding: 60px 0 43px;
    margin-top: 66px;
}

.achg-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
}

.achg-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 59px;
    margin-bottom: 48px;
    padding-bottom: 41px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.achg-footer__brand-name {
    font-family: var(--achg-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--achg-text);
    margin-bottom: 16px;
}

.achg-footer__desc {
    font-size: 12px;
    line-height: 1.8;
    color: var(--achg-text-dim);
    max-width: 360px;
}

.achg-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--achg-text);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.achg-footer__links {
    list-style: none;
}

.achg-footer__links li {
    margin-bottom: 12px;
}

.achg-footer__links a {
    color: var(--achg-text-dim);
    font-size: 15px;
    transition: var(--achg-anim);
}

.achg-footer__links a:hover {
    color: var(--achg-bronze);
}

.achg-footer__bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ================================================
   EXIT POPUP
================================================ */
.achg-exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.achg-exit-popup-overlay.is-visible {
    display: flex;
}

/* ================================================
   STICKY FOOTER BAR
================================================ */
.achg-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    padding: 9px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
    .achg-providers__head {
        display: none;
    }
    .achg-providers__row {
        grid-template-columns: 1fr;
        padding: 27px 22px;
        text-align: center;
    }
    .achg-company-cell__logo {
        max-width: 200px;
    }
    .achg-providers {
        width: calc(100vw - 20px);
    }
    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .achg-menu {
        display: none;
    }
    .achg-hamburger {
        display: flex;
        margin-left: auto;
    }
    .achg-topbar__action {
        display: none;
    }
    .achg-hero__heading {
        font-size: 32px;
    }
    .achg-hero__desc {
        font-size: 16px;
    }
    .achg-toc__list {
        grid-template-columns: 1fr;
    }
    .achg-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .achg-article h1 {
        font-size: 35px;
    }
    .achg-block h2 {
        font-size: 24px;
    }
    .achg-sticky-bar {
        flex-direction: column;
        gap: 5px;
        padding: 11px 11px;
        text-align: center;
    }
    .achg-sticky-bar img {
        height: 35px;
    }
}

@media (max-width: 640px) {
    .achg-faq { padding: 40px 0; }
    .achg-faq-title { font-size: 27px; }
    .achg-faq-question { font-size: 15px; padding: 13px 23px; }
}

/* Animation helper */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Overhaul */
h1 { text-align: center !important; }
.achg-hero__tag { margin-bottom: 3px !important; margin-top: 0 !important; }
.achg-hero__heading { margin-bottom: 3px !important; margin-top: 0 !important; }
h1 { font-size: clamp(23px, 3vw, 32px) !important; margin-bottom: 15px !important; }
.achg-hero__desc { margin-bottom: 14px !important; }
.achg-hero { padding-bottom: 0 !important; margin-bottom: 0 !important; padding-top: 0 !important; }
img[class*="logo"] { border-radius: 9px !important; border: none !important; }

body.achg-page { padding-bottom: 73px !important; }


/* ===== LIGHT THEME CONTENT OVERRIDES ===== */
body.achg-page {
    background: #FEFEFE;
    color: #0a2b30;
}
.achg-content { color: #0d292a; }
.achg-hero__heading { color: #0a2425; }
.achg-hero__desc { color: #7e8696; }
.achg-section-intro__title { color: #0a3031; }
.achg-section-intro__text { color: #7d939f; }
.achg-block { background: #F5F5F5; }
.achg-block#overview { background: transparent; }
.achg-block h2 { color: #13232d; }
.achg-block__body { color: #0a1e28; }
.achg-block__body strong { color: #123023; }
.achg-article h1 { color: #0b2a1e; }
.achg-toc { background: rgba(241,117,94,0.05); }
.achg-toc__title { color: #0a292e; }
.achg-toc__list li a { color: #0a2329; }
.achg-review-card { background: #fff; border-color: #ECEFF1; }
.achg-review-card__name { color: #0d3021; }
.achg-review-card__text { color: #0a2a30; }
.achg-review-card__location { color: #7a919e; }
.achg-review-card__date { color: #718b99; }
.achg-wrapper { color: #102222; }
.achg-faq-title { color: #0a3031; }
.achg-faq-question { color: #0f2e2b; }
.achg-faq-answer-inner { color: #73919a; }
.achg-footer {
    background: linear-gradient(180deg, #12232d 0%, #191e30 100%);
}

/* Testimonials */
.achg-testimonials { margin: 39px auto; max-width: 1100px; padding: 0 21px; }
.achg-testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 33px; }
.achg-testimonial-card { background: #fff; border: 1px solid #eee; border-radius: 9px; padding: 27px; box-shadow: 0 1px 6px rgba(0,0,0,.05); }
.achg-testimonial-header { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.achg-testimonial-avatar { width: 53px; height: 50px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.achg-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.achg-testimonial-avatar span { font-size: 20px; font-weight: 600; color: #676467; }
.achg-testimonial-info { display: flex; flex-direction: column; }
.achg-testimonial-name { font-weight: 600; font-size: 16px; color: #182010; }
.achg-testimonial-location { font-size: 13px; color: #7f8084; }
.achg-testimonial-verified { color: #19c564; font-size: 18px; margin-left: auto; }
.achg-testimonial-stars { margin-bottom: 11px; color: #f59d0c; font-size: 16px; }
.achg-testimonial-text { font-size: 14px; line-height: 1.6; color: #443b3b; margin: 0 0 14px; }
.achg-testimonial-date { font-size: 9px; color: #a0afb2; }
@media (max-width: 768px) {
    .achg-testimonials-grid { grid-template-columns: 1fr; }
}

/* Override design-overhaul.css wildcard testimonial rules */
.achg-testimonial-header,
.achg-testimonial-avatar,
.achg-testimonial-info,
.achg-testimonial-stars,
.achg-testimonial-text,
.achg-testimonial-date,
.achg-testimonial-name,
.achg-testimonial-location,
.achg-testimonial-verified {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}
.achg-testimonial-card {
    padding: 23px !important;
}
.achg-testimonial-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: #f0f0f0 !important;
}
.achg-testimonial-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
.achg-testimonial-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 15px !important;
}
.achg-testimonial-stars {
    margin-bottom: 12px !important;
}
.achg-testimonial-text {
    margin: 0 0 9px !important;
}
