.reviews {
    padding: 100px 24px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 0% 30%, rgba(72, 32, 159, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 35% 40% at 100% 70%, rgba(224, 49, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reviews-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
}

.reviews .section-eyebrow { color: var(--color-orange); }
.reviews .section-eyebrow::before { background: var(--color-orange); }
.reviews .section-heading { color: #111111; }
.reviews .section-sub { color: #666666; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    background: #f9f9f9;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: rgba(224, 49, 0, 0.08);
    font-weight: 800;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-star {
    color: #e03100;
    font-size: 1rem;
}

.review-text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: #444444;
    line-height: 1.75;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.07);
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}

.review-avatar--purple { background: var(--color-purple); }
.review-avatar--dark { background: #333333; }

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111111;
}

.review-meta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #999999;
}

.review-google {
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.3;
}

.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0f0f0f;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 16px;
    gap: 12px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-sticky.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 13px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.3s ease;
}

.mobile-sticky-call:hover { background: rgba(255,255,255,0.1); }

.mobile-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1.5;
    padding: 13px 16px;
    background: var(--color-orange);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.3s ease;
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.mobile-sticky-cta:hover { background: var(--color-orange-h); }

@media (max-width: 767px) {
    .reviews { padding: 72px 20px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .reviews-header { margin-bottom: 40px; }
    .review-card { padding: 28px 24px; }
    .mobile-sticky { display: flex; }
    body { padding-bottom: 72px; }
}

@media (min-width: 768px) {
    .mobile-sticky { display: none !important; }
}