/* ==========================================================================
   Components — Buttons, Cards, Forms, Trust Bars, etc.
   ========================================================================== */

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    padding: 0.875rem 1.75rem;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.btn--primary {
    background-color: var(--accent-primary);
    color: var(--white);
    border-color: var(--accent-primary);
}

.btn--primary:hover {
    background-color: var(--accent-primary-dark);
    border-color: var(--accent-primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--accent-secondary);
    color: var(--white);
    border-color: var(--accent-secondary);
}

.btn--secondary:hover {
    background-color: var(--accent-secondary-dark);
    border-color: var(--accent-secondary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn--outline {
    background-color: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn--outline:hover {
    background-color: var(--accent-primary);
    color: var(--white);
}

.btn--white {
    background-color: var(--white);
    color: var(--accent-primary);
    border-color: var(--white);
}

.btn--white:hover {
    background-color: var(--bg-secondary);
    color: var(--accent-primary-dark);
}

.btn--ghost {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn--ghost:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn--sm {
    font-size: var(--text-sm);
    padding: 0.625rem 1.25rem;
}

/* Button active (pressed) states */
.btn--primary:active { transform: translateY(0); box-shadow: none; }
.btn--secondary:active { transform: translateY(0); }
.btn--outline:active { background-color: var(--accent-primary-dark); color: var(--white); }
.btn--white:active { background-color: var(--border-color); }
.btn--ghost:active { background-color: var(--bg-secondary); }

/* Button disabled state */
.btn:disabled,
.btn[disabled],
.btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
}

/* Button loading state */
.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}
.btn--loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    border: 2px solid var(--white);
    border-right-color: transparent;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}
.btn--outline.btn--loading::after,
.btn--ghost.btn--loading::after {
    border-color: var(--accent-primary);
    border-right-color: transparent;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.btn--lg {
    font-size: var(--text-lg);
    padding: 1rem 2rem;
}

.btn--full {
    width: 100%;
}

.btn--phone {
    background: none;
    border: none;
    color: var(--accent-primary);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-lg);
    padding: 0;
}

.btn--phone:hover {
    color: var(--accent-primary-dark);
    transform: none;
    box-shadow: none;
}

.btn--phone svg {
    width: 18px;
    height: 18px;
}

/* ---------- Forms ---------- */
.form-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.form-fieldset__legend {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.form-char-count {
    display: block;
    text-align: right;
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-top: var(--space-xs);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    background-color: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input--error {
    border-color: var(--error);
}

.form-error {
    font-size: var(--text-sm);
    color: var(--error);
    margin-top: var(--space-xs);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Quote form card */
.quote-form-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.quote-form-card__title {
    font-size: var(--h3-size);
    margin-bottom: var(--space-xs);
}

.quote-form-card__subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.form-success__icon {
    width: 56px;
    height: 56px;
    background-color: var(--success-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.form-success__icon svg {
    width: 28px;
    height: 28px;
    color: var(--success);
}

.form-success h3 {
    color: var(--success);
    margin-bottom: var(--space-sm);
}

/* Quote form social proof */
.quote-form-card__proof {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-xs);
    color: var(--accent-secondary);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-lg);
}

.quote-form-card__proof svg {
    flex-shrink: 0;
}

/* Form trust signals */
.form-trust-signals {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.form-trust-signal {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
}

.form-trust-signal svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* Form loading state */
.btn--loading {
    opacity: 0.85;
    cursor: wait;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: fm-spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes fm-spin {
    to { transform: rotate(360deg); }
}

.form-error--global {
    background-color: rgba(220, 38, 38, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-lg) 0;
}

.trust-bar__items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
}

.trust-bar__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-primary);
}

.trust-bar__icon svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .trust-bar__items {
        gap: var(--space-lg);
    }

    .trust-bar__item {
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .trust-bar__items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
}

/* ---------- Service Cards ---------- */
.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    transition: all var(--transition-base);
    text-decoration: none;
    display: block;
    color: var(--text-primary);
}

.service-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--accent-primary);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-size: var(--h4-size);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--line-height);
    margin-bottom: var(--space-md);
}

.service-card__link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--accent-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card__link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card__link svg {
    transform: translateX(3px);
}

/* ---------- City Cards ---------- */
.city-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.city-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-sm);
    color: var(--accent-primary);
}

.city-card__pin {
    width: 24px;
    height: 24px;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.city-card__name {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: var(--text-base);
}

.city-card__arrow {
    margin-left: auto;
    width: 16px;
    height: 16px;
    color: var(--text-light);
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.city-card:hover .city-card__arrow {
    transform: translateX(3px);
    color: var(--accent-primary);
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    color: var(--accent-secondary);
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-card__text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--line-height);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-card__author {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: var(--text-sm);
}

.testimonial-card__location {
    font-size: var(--text-xs);
    color: var(--text-light);
}

/* ---------- Process Steps ---------- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    counter-reset: step;
}

.process-step {
    position: relative;
    text-align: center;
    counter-increment: step;
}

.process-step__number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.process-step__title {
    font-size: var(--h4-size);
    margin-bottom: var(--space-sm);
}

.process-step__time {
    display: inline-block;
    font-size: var(--text-xs);
    color: var(--accent-primary);
    font-weight: var(--font-weight-semibold);
    background: rgba(15, 76, 92, 0.08);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.process-step__desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Connector line between steps */
.process-steps--connected .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 34px);
    width: calc(100% - 68px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--border));
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 34px);
    width: calc(100% - 68px);
    height: 2px;
    background-color: var(--border);
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background-color: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    max-width: 540px;
    margin: 0 auto var(--space-xl);
}

.cta-banner__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Post Cards (Blog) ---------- */
.post-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.post-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card__content {
    padding: var(--space-lg);
}

.post-card__date {
    font-size: var(--text-xs);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-card__title {
    font-size: var(--h4-size);
    margin: var(--space-sm) 0;
}

.post-card__title a {
    color: var(--text-primary);
    text-decoration: none;
}

.post-card__title a:hover {
    color: var(--accent-primary);
}

.post-card__excerpt {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.post-card__link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--accent-primary);
}

/* ---------- Posts Grid ---------- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: var(--space-lg) 0;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--accent-primary);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-answer__inner {
    padding-bottom: var(--space-lg);
    color: var(--text-secondary);
    line-height: var(--line-height);
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    font-size: var(--text-sm);
    color: var(--text-light);
    padding: var(--space-md) 0;
}

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

.breadcrumbs a:hover {
    color: var(--accent-primary);
}

.breadcrumbs__sep {
    margin: 0 var(--space-xs);
    color: var(--border);
}

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
    background-color: var(--bg-secondary);
    padding: var(--space-3xl) 0 var(--space-2xl);
    margin-top: var(--header-height);
}

.page-hero h1 {
    margin-bottom: var(--space-sm);
}

.page-hero__desc {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 620px;
}

/* ---------- Content Body ---------- */
.content-body {
    line-height: var(--line-height);
}

.content-body h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.content-body h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.content-body ul,
.content-body ol {
    margin-bottom: var(--space-md);
}

.content-body li {
    margin-bottom: var(--space-xs);
}

.content-body p + p {
    margin-top: var(--space-md);
}

/* ---------- Mobile Sticky CTA ---------- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    padding: var(--space-sm) var(--side-padding);
    z-index: var(--z-mobile-cta);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-cta__inner {
    display: flex;
    gap: var(--space-sm);
    max-width: var(--container-max);
    margin: 0 auto;
}

.mobile-sticky-cta .btn {
    flex: 1;
    font-size: var(--text-sm);
    padding: 0.75rem 1rem;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    .site-main {
        padding-bottom: 72px;
    }
}

/* ---------- No Results ---------- */
.no-results {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.no-results h1 {
    margin-bottom: var(--space-md);
}

.no-results p {
    margin-bottom: var(--space-xl);
    color: var(--text-secondary);
}

/* ---------- Post Meta (Single) ---------- */
.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.post-meta__sep {
    color: var(--border);
}

.post-meta__category {
    color: var(--accent-primary);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
}

.post-meta__category:hover {
    color: var(--accent-primary-dark);
}

.post-meta__updated {
    font-style: italic;
    color: var(--text-light);
}

/* ---------- Social Sharing ---------- */
.post-share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    margin-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.post-share__label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    white-space: nowrap;
}

.post-share__links {
    display: flex;
    gap: var(--space-sm);
}

.post-share__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
    transition: all var(--transition-fast);
}

.post-share__link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.post-share__link--facebook:hover,
.post-share__link--facebook:focus-visible { background-color: #1877F2; }
.post-share__link--twitter:hover,
.post-share__link--twitter:focus-visible { background-color: #1DA1F2; }
.post-share__link--linkedin:hover,
.post-share__link--linkedin:focus-visible { background-color: #0A66C2; }
.post-share__link--email:hover,
.post-share__link--email:focus-visible { background-color: var(--accent-primary); }

@media (max-width: 480px) {
    .post-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------- Author Box ---------- */
.author-box {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.author-box__avatar img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-box__label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.author-box__name {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.author-box__bio {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-top: var(--space-xs);
    line-height: var(--line-height);
}

/* ---------- Post Newsletter CTA ---------- */
.post-newsletter {
    background: linear-gradient(135deg, var(--accent-primary), #0d3d4a);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    margin-top: var(--space-xl);
}

.post-newsletter__icon {
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.post-newsletter__title {
    font-size: var(--h4-size);
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.post-newsletter__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.post-newsletter__form {
    display: flex;
    gap: var(--space-xs);
    max-width: 420px;
    margin: 0 auto;
}

.post-newsletter__form .form-input {
    flex: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.post-newsletter__form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.post-newsletter__form .form-input:focus {
    border-color: var(--accent-secondary);
    background: rgba(255, 255, 255, 0.15);
}

.post-newsletter__form .btn {
    flex-shrink: 0;
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

.post-newsletter__form .btn:hover {
    background: var(--accent-secondary-dark);
    border-color: var(--accent-secondary-dark);
}

.post-newsletter__disclaimer {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-sm);
}

@media (max-width: 480px) {
    .post-newsletter__form {
        flex-direction: column;
    }
}

/* ---------- Post Navigation (Prev/Next) ---------- */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.post-nav__link {
    display: block;
    text-decoration: none;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

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

.post-nav__link--next {
    text-align: right;
}

.post-nav__label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.post-nav__title {
    display: block;
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    color: var(--accent-primary);
    font-size: var(--text-sm);
    line-height: 1.4;
}

@media (max-width: 480px) {
    .post-nav {
        grid-template-columns: 1fr;
    }
    .post-nav__link--next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-box__avatar img {
        margin: 0 auto;
    }
}

/* ---------- Archive Filters ---------- */
.archive-filters {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
}

.archive-filter {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.archive-filter:hover {
    color: var(--accent-primary);
    background-color: rgba(15, 76, 92, 0.1);
}

.archive-filter--active {
    background-color: var(--accent-primary);
    color: var(--white);
}

.archive-filter--active:hover {
    background-color: var(--accent-primary-dark);
    color: var(--white);
}

.archive-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.1);
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    margin-left: 4px;
}

.archive-filter--active .archive-filter__count {
    background: rgba(255, 255, 255, 0.2);
}

/* ---------- Post Card Meta ---------- */
.post-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.post-card__reading-time {
    font-size: var(--text-xs);
    color: var(--text-light);
}

.post-card__type {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

/* ---------- Search Suggestions ---------- */
.search-again {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    text-align: left;
}

.search-suggestions__col h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
    color: var(--accent-primary);
}

.search-suggestions__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions__col li {
    margin-bottom: var(--space-sm);
}

.search-suggestions__col a {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.search-suggestions__col a:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .search-suggestions__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background-color: var(--accent-primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    z-index: var(--z-overlay);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

/* ---------- Screen Reader Only ---------- */
.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;
}

/* ---------- Focus Styles (Accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--accent-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), background-color var(--transition-fast);
    z-index: 50;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Moving Checklist CTA ---------- */
.checklist-cta {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.checklist-cta__content .section-label {
    margin-bottom: var(--space-sm);
}

.checklist-cta__content h2 {
    margin-bottom: var(--space-md);
}

.checklist-cta__content > p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
}

.checklist-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.checklist-preview__group h3 {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.checklist-preview__group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-preview__group li {
    margin-bottom: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Interactive checklist */
.checklist-interactive label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.375rem 0;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--transition-base);
}

.checklist-interactive input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent-primary);
    flex-shrink: 0;
    cursor: pointer;
}

.checklist-interactive input[type="checkbox"]:checked + span {
    text-decoration: line-through;
    color: var(--text-light, #999);
}

.checklist-progress {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.checklist-progress__bar {
    flex: 1;
    height: 8px;
    background: var(--border-light, #e5e5e5);
    border-radius: 999px;
    overflow: hidden;
}

.checklist-progress__fill {
    height: 100%;
    width: 0;
    background: var(--accent-primary);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.checklist-progress__text {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    white-space: nowrap;
}

.checklist-reset {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: var(--space-sm);
}

.checklist-cta__box {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.checklist-cta__box h3 {
    font-size: var(--h4-size);
    margin-bottom: var(--space-sm);
}

.checklist-cta__box > p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.checklist-cta__phone {
    text-align: center;
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.checklist-cta__phone a {
    color: var(--accent-primary);
    font-weight: var(--font-weight-bold);
}

@media (max-width: 1024px) {
    .checklist-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .checklist-preview {
        grid-template-columns: 1fr;
    }
}

/* ---------- Content Freshness ---------- */
.content-freshness {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-light);
}

/* ---------- Full-Width Button ---------- */
.btn--full {
    display: block;
    width: 100%;
    text-align: center;
}

/* ---------- Footer Social Links ---------- */
.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(15, 76, 92, 0.08);
    color: var(--accent-primary);
    transition: all var(--transition-fast);
}

.footer-social__link:hover {
    background-color: var(--accent-primary);
    color: var(--white);
}

/* ---------- Blog Sidebar ---------- */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-3xl);
}

.blog-sidebar .widget {
    margin-bottom: var(--space-2xl);
}

.blog-sidebar .widget-title {
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--accent-primary);
}

.sidebar-cta {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border-light);
}

.sidebar-cta h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
}

.sidebar-cta p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.sidebar-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-posts li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-posts li:last-child {
    border-bottom: none;
}

.sidebar-posts a {
    font-size: var(--text-sm);
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sidebar-posts a:hover {
    color: var(--accent-primary);
}

.sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services li {
    margin-bottom: var(--space-xs);
}

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.sidebar-services a:hover {
    color: var(--accent-primary);
}

.sidebar-services a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media print {
    .whatsapp-float {
        display: none !important;
    }
}

/* ---------- Mobile Nav Sub-Menu Toggle ---------- */
@media (max-width: 1024px) {
    .nav-menu .menu-item-has-children {
        position: relative;
    }

    .sub-menu-toggle {
        position: absolute;
        right: 0;
        top: 0;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        transition: transform var(--transition-fast);
    }

    .sub-menu-toggle[aria-expanded="true"] {
        transform: rotate(180deg);
    }

    .sub-menu-toggle svg {
        width: 16px;
        height: 16px;
    }

    .nav-menu .sub-menu {
        display: none;
        padding-left: var(--space-md);
    }

    .nav-menu .sub-menu.is-open {
        display: block;
    }
}

@media (min-width: 1025px) {
    .sub-menu-toggle {
        display: none;
    }
}

/* ---------- Table of Contents (Auto-generated for blog posts) ---------- */
.toc {
    background: var(--bg-secondary);
    border-left: 3px solid var(--accent-primary);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    margin-bottom: var(--space-xl);
}

.toc__title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-base);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.toc__item {
    counter-increment: toc-counter;
    margin-bottom: var(--space-xs);
}

.toc__item--sub {
    padding-left: var(--space-lg);
}

.toc__link {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.toc__link::before {
    content: counter(toc-counter) ". ";
    color: var(--accent-primary);
    font-weight: var(--font-weight-semibold);
}

.toc__link:hover {
    color: var(--accent-primary);
}

@media print {
    .toc {
        border-left-color: #000;
    }
}

/* ---------- Reading Progress Bar ---------- */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    z-index: var(--z-header);
    transition: width 0.1s linear;
    pointer-events: none;
}

@media print {
    .reading-progress {
        display: none;
    }
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
    background: var(--accent-primary);
    color: var(--white);
    padding: var(--space-xs) 0;
    font-size: var(--text-sm);
    text-align: center;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.announcement-bar__text {
    margin: 0;
}

.announcement-bar__text a {
    color: inherit;
    text-decoration: underline;
    font-weight: var(--font-weight-semibold);
}

.announcement-bar__close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    flex-shrink: 0;
    line-height: 0;
}

.announcement-bar__close:hover {
    opacity: 1;
}

@media print {
    .announcement-bar {
        display: none;
    }
}

/* ---------- GDPR Consent Checkbox ---------- */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    cursor: pointer;
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

.form-consent a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.form-group--consent {
    margin-top: var(--space-sm);
}

/* ---------- CTA Banner Proof ---------- */
.cta-banner__proof {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.cta-banner__proof span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
}

.cta-banner__proof svg {
    color: var(--accent-secondary);
}

/* ---------- Sitemap Descriptions ---------- */
.sitemap-section__desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

/* ---------- Exit-Intent Modal ---------- */
.exit-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    animation: fadeIn 0.3s ease;
}

.exit-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.exit-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.exit-modal__close:hover {
    color: var(--text-primary);
}

.exit-modal__title {
    font-size: var(--h3-size);
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.exit-modal__text {
    color: var(--text-secondary);
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.exit-modal__proof {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
}

.exit-modal__dismiss {
    display: block;
    margin: var(--space-md) auto 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: var(--text-sm);
    cursor: pointer;
    text-decoration: underline;
}

.exit-modal__dismiss:hover {
    color: var(--text-secondary);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---------- Mobile Testimonial Carousel ---------- */
@media (max-width: 768px) {
    .testimonials-carousel {
        position: relative;
    }

    .testimonials-carousel .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding-bottom: var(--space-md);
    }

    .testimonials-carousel .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonials-carousel .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-right: var(--space-md);
    }

    .testimonials-carousel__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: var(--space-sm);
    }

    .testimonials-carousel__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border-color);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }

    .testimonials-carousel__dot--active {
        background: var(--accent-primary);
        transform: scale(1.3);
    }
}

@media (min-width: 769px) {
    .testimonials-carousel__dots {
        display: none;
    }
}

/* ---------- WhatsApp Float Animation ---------- */
.whatsapp-float {
    animation: whatsappFadeIn 0.6s ease-out 1s both;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappFadeIn {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0; }
}

/* ---------- Review Filter Count Badges ---------- */
.reviews-filter__btn .reviews-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.08);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    margin-left: 6px;
    line-height: 1;
}

.reviews-filter__btn--active .reviews-filter__count {
    background: rgba(255, 255, 255, 0.25);
}

/* ---------- Footer Trust Badge Staggered Animation ---------- */
.footer-trust__badge {
    opacity: 0;
    transform: translateY(12px);
}

.footer-trust__badge--visible {
    animation: trustBadgeFade 0.5s ease-out forwards;
}

.footer-trust__badge:nth-child(1).footer-trust__badge--visible { animation-delay: 0s; }
.footer-trust__badge:nth-child(2).footer-trust__badge--visible { animation-delay: 0.12s; }
.footer-trust__badge:nth-child(3).footer-trust__badge--visible { animation-delay: 0.24s; }
.footer-trust__badge:nth-child(4).footer-trust__badge--visible { animation-delay: 0.36s; }

@keyframes trustBadgeFade {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .footer-trust__badge {
        opacity: 1;
        transform: none;
    }
    .whatsapp-float {
        animation: none;
    }
    .whatsapp-float::after {
        animation: none;
    }
}

/* ---------- Search Suggestions Enhancements ---------- */
.search-popular-terms {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    justify-content: center;
}

.search-popular-terms__link {
    display: inline-block;
    padding: .5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.search-popular-terms__link:hover {
    background: var(--accent-primary);
    color: var(--white);
}

/* ---------- Areas Page City Stats ---------- */
.city-card__stat {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin-top: 2px;
}

/* ---------- Mobile Sticky CTA Smart Bar ---------- */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: var(--space-sm) var(--space-md);
    padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 0px));
    transform: translateY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-cta[hidden] {
    display: block !important;
    transform: translateY(100%);
    pointer-events: none;
}

.mobile-sticky-cta--hidden {
    transform: translateY(100%) !important;
    pointer-events: none;
}

.mobile-sticky-cta__dismiss {
    position: absolute;
    top: -10px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-primary);
    color: var(--text-light);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.mobile-sticky-cta__inner {
    display: flex;
    gap: var(--space-sm);
}

.mobile-sticky-cta__inner .btn {
    flex: 1;
    padding: .75rem 1rem;
    font-size: var(--text-sm);
    justify-content: center;
}

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

/* ---------- Moving Cost Calculator ---------- */
.cost-calculator {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 600px;
    margin: 0 auto;
}

.cost-calculator__slider-group {
    margin-bottom: var(--space-lg);
}

.cost-calculator__slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.cost-calculator__slider-label {
    font-weight: var(--font-weight-semibold);
    font-size: var(--text-sm);
}

.cost-calculator__slider-value {
    font-weight: var(--font-weight-bold);
    color: var(--accent-primary);
}

.cost-calculator__slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    border-radius: 3px;
    outline: none;
}

.cost-calculator__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-primary);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cost-calculator__slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-primary);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cost-calculator__addons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.cost-calculator__addon {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: .5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 999px;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: background 0.2s;
}

.cost-calculator__addon input {
    accent-color: var(--accent-primary);
}

.cost-calculator__addon:has(input:checked) {
    background: rgba(15, 76, 92, 0.1);
    font-weight: var(--font-weight-semibold);
}

.cost-calculator__result {
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--accent-primary), #0d3d4a);
    border-radius: var(--radius-md);
    color: var(--white);
}

.cost-calculator__price {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.cost-calculator__price-label {
    font-size: var(--text-sm);
    opacity: 0.8;
    margin-top: var(--space-xs);
}

.cost-calculator__cta {
    margin-top: var(--space-md);
}

/* ---------- Video Testimonial Section ---------- */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.video-testimonial {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.video-testimonial__player {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    cursor: pointer;
}

.video-testimonial__player img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-testimonial__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(15, 76, 92, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.video-testimonial__player:hover .video-testimonial__play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-primary);
}

.video-testimonial__info {
    padding: var(--space-md);
}

.video-testimonial__name {
    font-weight: var(--font-weight-semibold);
}

.video-testimonial__move {
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* ---------- Focus-Visible for Interactive Elements ---------- */
.testimonials-carousel__dot:focus-visible,
.video-testimonial__player:focus-visible,
.cost-calculator__slider:focus-visible,
.post-card__link:focus-visible,
.archive-filter:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.cost-calculator__addon input:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ---------- Dark Mode — Form Inputs & Cards ---------- */
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border);
}

[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder {
    color: var(--text-light);
}

[data-theme="dark"] .quote-form-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .feature-card {
    background-color: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .cost-calculator {
    background-color: var(--bg-secondary);
    border-color: var(--border);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .form-input,
    :root:not([data-theme="light"]) .form-select,
    :root:not([data-theme="light"]) .form-textarea {
        background-color: var(--bg-secondary);
        color: var(--text-primary);
        border-color: var(--border);
    }

    :root:not([data-theme="light"]) .form-input::placeholder,
    :root:not([data-theme="light"]) .form-textarea::placeholder {
        color: var(--text-light);
    }

    :root:not([data-theme="light"]) .quote-form-card,
    :root:not([data-theme="light"]) .testimonial-card,
    :root:not([data-theme="light"]) .service-card,
    :root:not([data-theme="light"]) .feature-card {
        background-color: var(--bg-secondary);
        border-color: var(--border);
    }

    :root:not([data-theme="light"]) .cost-calculator {
        background-color: var(--bg-secondary);
        border-color: var(--border);
    }

    :root:not([data-theme="light"]) .exit-modal {
        background-color: var(--bg-secondary);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    :root:not([data-theme="light"]) .post-newsletter {
        background-color: var(--bg-secondary);
        border-color: var(--border);
    }

    :root:not([data-theme="light"]) .mobile-sticky-cta {
        background-color: var(--bg-secondary);
        border-top-color: var(--border);
    }
}

/* Dark mode — manual toggle */
[data-theme="dark"] .exit-modal {
    background-color: var(--bg-secondary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .post-newsletter {
    background-color: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .mobile-sticky-cta {
    background-color: var(--bg-secondary);
    border-top-color: var(--border);
}

/* ---------- Form Loading / Disabled State ---------- */
.fm-quote-form.is-submitting .form-input,
.fm-quote-form.is-submitting .form-select,
.fm-quote-form.is-submitting .form-textarea {
    opacity: 0.6;
    pointer-events: none;
}

.fm-quote-form.is-submitting .btn[type="submit"] {
    opacity: 0.7;
    pointer-events: none;
    cursor: wait;
}

/* ---------- High Contrast Error Indicators ---------- */
@media (forced-colors: active) {
    .form-input--error,
    .form-select--error {
        border: 2px solid LinkText;
    }

    .form-error-message {
        color: LinkText;
        forced-color-adjust: none;
    }

    .form-error-message::before {
        content: "\26A0\0020";
    }
}

/* Hero Tagline — "Move With Confidence." */
.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: var(--accent-secondary);
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}
