/*
 * TempCover — Shield Theme
 * Trust-focused, clean aesthetic. Emerald & teal on dark teal.
 * Centered hero, emoji cards, circle-numbered steps, accordion FAQ.
 * ──────────────────────────────────────────────────────────── */

/* ── Override variables ──────────────────────────── */
:root {
    --tc-primary: #059669;
    --tc-primary-light: #10B981;
    --tc-primary-dark: #047857;
    --tc-secondary: #0D9488;
    --tc-accent: #10B981;
    --tc-dark: #042F2E;
    --tc-gray-900: #111827;
    --tc-gray-800: #1F2937;
    --tc-gray-700: #374151;
    --tc-gray-600: #4B5563;
    --tc-gray-500: #6B7280;
    --tc-gray-400: #9CA3AF;
    --tc-gray-300: #D1D5DB;
    --tc-gray-200: #E5E7EB;
    --tc-gray-100: #F3F4F6;
    --tc-gray-50: #F9FAFB;
    --tc-shadow-primary: 0 4px 14px rgba(5, 150, 105, 0.25);
    --tc-shadow-primary-lg: 0 8px 25px rgba(5, 150, 105, 0.35);
    --tc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Global overrides ────────────────────────────── */
body.theme-shield {
    background: #fff;
    color: var(--tc-gray-900);
    font-family: var(--tc-font);
    line-height: 1.6;
}

/* ── Header — dark teal ──────────────────────────── */
body.theme-shield .tc-header {
    background: var(--tc-dark);
    border-bottom: 2px solid var(--tc-primary);
    box-shadow: 0 2px 20px rgba(4, 47, 46, 0.5);
}
body.theme-shield .tc-header__brand-name {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}
body.theme-shield .tc-header__menu a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: color 0.2s ease;
}
body.theme-shield .tc-header__menu a:hover {
    color: var(--tc-primary-light);
}
body.theme-shield .tc-header__cta {
    background: var(--tc-primary) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    box-shadow: var(--tc-shadow-primary);
    transition: all 0.2s ease !important;
}
body.theme-shield .tc-header__cta:hover {
    background: var(--tc-primary-light) !important;
    box-shadow: var(--tc-shadow-primary-lg);
}
body.theme-shield .tc-header__toggle span {
    background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    body.theme-shield .tc-header__menu {
        background: var(--tc-dark);
        border-bottom-color: rgba(5, 150, 105, 0.2);
    }
    body.theme-shield .tc-header__menu a:hover {
        background: rgba(255, 255, 255, 0.08);
    }
}

/* ── Footer — dark teal ──────────────────────────── */
body.theme-shield .tc-footer {
    background: var(--tc-dark);
    color: rgba(255, 255, 255, 0.5);
    border-top: 3px solid var(--tc-primary);
}
body.theme-shield .tc-footer__brand { color: #fff; }
body.theme-shield .tc-footer__col h4 { color: rgba(255, 255, 255, 0.85); }
body.theme-shield .tc-footer__col a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s ease;
}
body.theme-shield .tc-footer__col a:hover { color: var(--tc-primary-light); }
body.theme-shield .tc-footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
}
body.theme-shield .tc-footer__fca,
body.theme-shield .tc-footer__reg { color: rgba(255, 255, 255, 0.25); }
body.theme-shield .tc-btn--primary {
    background: var(--tc-primary);
    color: #fff;
    box-shadow: var(--tc-shadow-primary);
    border-radius: 8px;
}
body.theme-shield .tc-btn--primary:hover {
    background: var(--tc-primary-light);
    box-shadow: var(--tc-shadow-primary-lg);
}

/* ── Shared section helpers ──────────────────────── */
.sh-section-header { margin-bottom: 40px; }
.sh-section-header--center { text-align: center; }
.sh-section-label {
    display: inline-block;
    color: var(--tc-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.sh-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--tc-dark);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 14px;
}
.sh-section-subtitle {
    font-size: 17px;
    color: var(--tc-gray-500);
    font-weight: 400;
    max-width: 560px;
    line-height: 1.6;
    margin: 0;
}
.sh-section-header--center .sh-section-subtitle { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────── */
.sh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
}
.sh-btn--primary {
    background: var(--tc-primary);
    color: #fff;
    box-shadow: var(--tc-shadow-primary);
}
.sh-btn--primary:hover {
    background: var(--tc-primary-light);
    box-shadow: var(--tc-shadow-primary-lg);
    transform: translateY(-2px);
}
.sh-btn--secondary {
    background: var(--tc-secondary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
}
.sh-btn--secondary:hover {
    background: #0F766E;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
    transform: translateY(-2px);
}
.sh-btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}
.sh-btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}
.sh-btn--lg {
    padding: 18px 44px;
    font-size: 18px;
    border-radius: 10px;
}

/* ═══════════════════════════════════════════════════
   HERO — Centered, trust-focused
   ═══════════════════════════════════════════════════ */
.sh-hero {
    position: relative;
    background: linear-gradient(160deg, var(--tc-dark) 0%, #064E3B 50%, var(--tc-primary-dark) 100%);
    overflow: hidden;
    padding: 120px 24px 100px;
    text-align: center;
    color: #fff;
}
.sh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(5, 150, 105, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 40%);
    pointer-events: none;
}
.sh-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(4, 47, 46, 0.3), transparent);
    pointer-events: none;
}
.sh-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.sh-hero__shield {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 28px;
    font-size: 32px;
}
.sh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 8px 20px;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}
.sh-hero__badge svg {
    color: var(--tc-primary-light);
    flex-shrink: 0;
}
.sh-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    color: #fff;
}
.sh-hero__title span {
    color: var(--tc-primary-light);
}
.sh-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.sh-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.sh-hero__trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}
.sh-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}
.sh-hero__trust-icon {
    width: 20px;
    height: 20px;
    color: var(--tc-primary-light);
}

/* ═══════════════════════════════════════════════════
   FEATURES — Emoji cards grid
   ═══════════════════════════════════════════════════ */
.sh-features {
    padding: 100px 24px;
    background: var(--tc-gray-50);
}
.sh-features__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.sh-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.sh-features__card {
    background: #fff;
    border: 1px solid var(--tc-gray-200);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sh-features__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.08);
}
.sh-features__emoji {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}
.sh-features__card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--tc-dark);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.sh-features__card p {
    font-size: 15px;
    color: var(--tc-gray-600);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   STATS BAR — with dividers
   ═══════════════════════════════════════════════════ */
.sh-stats {
    padding: 60px 24px;
    background: var(--tc-primary);
    position: relative;
    overflow: hidden;
}
.sh-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--tc-primary-dark), var(--tc-primary), var(--tc-secondary));
    opacity: 0.9;
}
.sh-stats__inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.sh-stats__item {
    text-align: center;
    padding: 12px 24px;
    position: relative;
}
.sh-stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}
.sh-stats__number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.sh-stats__label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS — Circle-numbered steps
   ═══════════════════════════════════════════════════ */
.sh-steps {
    padding: 100px 24px;
    background: #fff;
}
.sh-steps__inner {
    max-width: 900px;
    margin: 0 auto;
}
.sh-steps__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 48px;
}
.sh-steps__line {
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 0;
    border-top: 2px dashed var(--tc-gray-300);
    z-index: 0;
}
.sh-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}
.sh-step__circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--tc-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: var(--tc-shadow-primary);
    border: 3px solid #fff;
    outline: 2px solid var(--tc-primary);
}
.sh-step h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--tc-dark);
    margin: 0 0 8px;
}
.sh-step p {
    font-size: 14px;
    color: var(--tc-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS — Cards with stars
   ═══════════════════════════════════════════════════ */
.sh-testimonials {
    padding: 100px 24px;
    background: var(--tc-gray-50);
}
.sh-testimonials__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.sh-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.sh-testimonial__card {
    background: #fff;
    border: 1px solid var(--tc-gray-200);
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sh-testimonial__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.06);
}
.sh-testimonial__stars {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.sh-testimonial__text {
    font-size: 16px;
    color: var(--tc-gray-700);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 20px;
    border: none;
    padding: 0;
}
.sh-testimonial__author {
    font-size: 15px;
    font-weight: 800;
    color: var(--tc-dark);
}
.sh-testimonial__role {
    font-size: 13px;
    color: var(--tc-gray-500);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   FAQ — Accordion with emerald accent
   ═══════════════════════════════════════════════════ */
.sh-faq {
    padding: 100px 24px;
    background: #fff;
}
.sh-faq__inner {
    max-width: 720px;
    margin: 0 auto;
}
.sh-faq__list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sh-faq__item {
    background: var(--tc-gray-50);
    border-radius: 12px;
    border: 1px solid var(--tc-gray-200);
    border-left: 4px solid transparent;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.sh-faq__item[open] {
    border-left-color: var(--tc-primary);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.06);
    background: #fff;
}
.sh-faq__question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--tc-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s ease;
}
.sh-faq__question::-webkit-details-marker { display: none; }
.sh-faq__question::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--tc-gray-400);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.sh-faq__item[open] .sh-faq__question::after {
    content: '\2212';
    color: var(--tc-primary);
}
.sh-faq__question:hover { color: var(--tc-primary); }
.sh-faq__answer { padding: 0 24px 20px; }
.sh-faq__answer p {
    font-size: 15px;
    color: var(--tc-gray-600);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   CTA — Emerald gradient, centered
   ═══════════════════════════════════════════════════ */
.sh-cta {
    padding: 100px 24px;
    background: linear-gradient(160deg, var(--tc-dark) 0%, var(--tc-primary-dark) 50%, var(--tc-primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sh-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 480px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 10 L190 50 L190 130 C190 185 100 230 100 230 C100 230 10 185 10 130 L10 50 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='3'/%3E%3C/svg%3E") no-repeat center / contain;
    pointer-events: none;
}
.sh-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.sh-cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}
.sh-cta__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 36px;
    line-height: 1.6;
}
.sh-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.sh-cta__shield {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

/* ── Accessibility — focus & motion ──────────────── */
.sh-btn:focus-visible { outline: 3px solid var(--tc-primary-light); outline-offset: 2px; }
.sh-faq__question:focus-visible { outline: 3px solid var(--tc-primary-light); outline-offset: -2px; }

@media (prefers-reduced-motion: reduce) {
    .sh-features__card,
    .sh-testimonial__card,
    .sh-btn,
    .sh-faq__item,
    .sh-step__circle { transition: none; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 900px
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .sh-features__grid { grid-template-columns: repeat(2, 1fr); }
    .sh-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .sh-steps__track { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .sh-steps__line { display: none; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .sh-hero { padding: 90px 20px 70px; }
    .sh-hero__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .sh-hero__subtitle { font-size: 16px; }
    .sh-hero__trust { gap: 20px; }
    .sh-hero__trust-item { font-size: 13px; }

    .sh-features { padding: 70px 20px; }
    .sh-features__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .sh-features__card { padding: 28px 24px; }

    .sh-stats { padding: 40px 20px; }
    .sh-stats__inner { flex-direction: column; gap: 16px; }
    .sh-stats__item:not(:last-child)::after { display: none; }
    .sh-stats__item { border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding-bottom: 16px; }
    .sh-stats__item:last-child { border-bottom: none; padding-bottom: 12px; }
    .sh-stats__number { font-size: 26px; }

    .sh-steps { padding: 80px 20px; }
    .sh-steps__track { grid-template-columns: 1fr; gap: 32px; max-width: 360px; margin-left: auto; margin-right: auto; }
    .sh-step__circle { width: 48px; height: 48px; font-size: 18px; }

    .sh-testimonials { padding: 80px 20px; }
    .sh-testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .sh-testimonial__card { padding: 28px 24px; }
    .sh-testimonial__text { font-size: 15px; }

    .sh-faq { padding: 80px 20px; }
    .sh-faq__question { padding: 16px 20px; font-size: 15px; }
    .sh-faq__answer { padding: 0 20px 16px; }

    .sh-cta { padding: 80px 20px; }
    .sh-cta__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .sh-cta__subtitle { font-size: 15px; }

    .sh-section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .sh-section-subtitle { font-size: 15px; }

    .sh-btn { padding: 14px 28px; font-size: 15px; }
    .sh-hero__actions { flex-direction: column; align-items: center; }
    .sh-btn { width: 100%; max-width: 320px; }
    .sh-cta__actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .sh-hero { padding: 60px 14px 50px; }
    .sh-hero__shield { width: 56px; height: 56px; font-size: 26px; margin-bottom: 20px; }
    .sh-hero__trust { flex-direction: column; align-items: center; gap: 12px; }

    .sh-features { padding: 56px 14px; }
    .sh-features__card { padding: 24px 20px; }
    .sh-features__emoji { font-size: 32px; margin-bottom: 16px; }
    .sh-features__card h3 { font-size: 16px; }
    .sh-features__card p { font-size: 14px; }

    .sh-stats { padding: 32px 14px; }
    .sh-stats__number { font-size: 22px; }
    .sh-stats__label { font-size: 13px; }

    .sh-steps { padding: 56px 14px; }
    .sh-step__circle { width: 44px; height: 44px; font-size: 16px; }
    .sh-step h3 { font-size: 15px; }
    .sh-step p { font-size: 13px; }

    .sh-testimonials { padding: 56px 14px; }
    .sh-testimonial__card { padding: 24px 18px; }
    .sh-testimonial__text { font-size: 14px; }
    .sh-testimonial__stars { font-size: 16px; }

    .sh-faq { padding: 56px 14px; }
    .sh-faq__question { padding: 14px 18px; font-size: 14px; }
    .sh-faq__answer { padding: 0 18px 14px; }
    .sh-faq__answer p { font-size: 14px; }

    .sh-cta { padding: 56px 14px; }
    .sh-cta__title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
    .sh-cta__subtitle { font-size: 14px; margin-bottom: 28px; }

    .sh-section-title { font-size: 1.35rem; }
    .sh-section-subtitle { font-size: 14px; }
    .sh-section-label { font-size: 11px; }

    .sh-btn { padding: 13px 24px; font-size: 14px; }
}

/* ── Shared page styling — Shield accent overrides ── */

/* Page header */
body.theme-shield .tc-page-header {
    background: var(--tc-gray-50);
}
body.theme-shield .tc-page-header h1 {
    color: var(--tc-gray-900);
}
body.theme-shield .tc-page-header p {
    color: var(--tc-gray-600);
}
body.theme-shield .tc-breadcrumb a:hover {
    color: var(--tc-primary);
}

/* Contact cards accent */
body.theme-shield .tc-contact-card:hover {
    border-color: var(--tc-primary);
}
body.theme-shield .tc-contact-card__icon {
    background: rgba(5, 150, 105, 0.1);
    color: var(--tc-primary);
}
body.theme-shield .tc-contact-card:hover .tc-contact-card__icon {
    background: linear-gradient(135deg, var(--tc-primary), var(--tc-secondary));
    color: #fff;
}
body.theme-shield .tc-contact-card::before {
    background: linear-gradient(90deg, var(--tc-primary), var(--tc-secondary));
}
body.theme-shield .tc-contact-card a {
    color: var(--tc-primary);
    font-weight: 600;
}

/* About value cards accent */
body.theme-shield .tc-about-value:hover {
    border-color: var(--tc-primary);
}
body.theme-shield .tc-about-value::before {
    background: linear-gradient(90deg, var(--tc-primary), var(--tc-secondary));
}

/* Legal content links */
body.theme-shield .tc-legal-content a {
    color: var(--tc-primary);
}
body.theme-shield .tc-legal-content a:hover {
    color: var(--tc-primary-dark);
}

/* FAQ accent */
body.theme-shield .tc-faq__item[open] {
    border-color: var(--tc-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
}
body.theme-shield .tc-faq__question::after {
    color: var(--tc-primary);
}

/* CTA section */
body.theme-shield .tc-cta {
    background: linear-gradient(135deg, var(--tc-primary), var(--tc-secondary));
}
body.theme-shield .tc-cta h2,
body.theme-shield .tc-cta p {
    color: #fff;
}

/* Button override */
body.theme-shield .tc-btn--primary {
    background: linear-gradient(135deg, var(--tc-primary), var(--tc-primary-dark));
    box-shadow: var(--tc-shadow-primary);
}
body.theme-shield .tc-btn--primary:hover {
    background: linear-gradient(135deg, var(--tc-primary-light), var(--tc-primary));
    box-shadow: var(--tc-shadow-primary-lg);
}

/* ── Reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .sh-btn,
    .sh-features__card,
    .sh-testimonial__card,
    .sh-step__circle,
    .sh-faq__item,
    .sh-faq__question::after {
        transition: none;
    }
    .sh-features__card:hover,
    .sh-testimonial__card:hover,
    .sh-btn:hover {
        transform: none;
    }
}
