/* =========================================================
   ChiTerapi 2026 Theme CSS

   Table of contents
   01. Theme variables, reset, and base styles
   02. Layout containers and shared utilities
   03. Header and navigation
   04. Homepage base sections
   05. Buttons, cards, and shared components
   06. Footer and final CTA base styles
   07. Early responsive rules
   08. Desktop Refinement Patch V1
   09. Rreth Nesh Page V1
   10. Kontakt Page V1
   11. Blog Templates V1
   12. English Landing Page V1
   13. Homepage V2 polish history
   14. Footer/final CTA polish history
   15. Homepage vertical rhythm patch
   16. Mobile header/menu polish
   17. Services page wrapper integration
   18. Loyalty app page wrapper integration
   19. Services plugin-output scoped polish
   20. About and Contact final polish

   Notes for future cleanup:
   This file currently works as a layered cascade history.
   Do not move, merge, delete, or reorder rules without visual QA.
   ========================================================= */

/* =========================================================
   01. Theme variables, reset, and base styles
   ========================================================= */

:root {
    --ct-blue: #004aad;
    --ct-blue-dark: #06306b;
    --ct-blue-soft: #e9f0ff;
    --ct-bg: #f4f6fc;
    --ct-text: #132033;
    --ct-muted: #5f6f89;
    --ct-line: rgba(0, 74, 173, 0.12);
    --ct-white: #ffffff;
    --ct-radius-sm: 16px;
    --ct-radius: 24px;
    --ct-radius-lg: 34px;
    --ct-shadow: 0 18px 45px rgba(0, 74, 173, 0.12);
    --ct-shadow-soft: 0 12px 30px rgba(19, 32, 51, 0.08);
    --ct-container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ct-text);
    background: var(--ct-bg);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    background: var(--ct-white);
    color: var(--ct-blue);
    padding: .75rem 1rem;
    border-radius: 999px;
    z-index: 999;
    box-shadow: var(--ct-shadow-soft);
}

.skip-link:focus {
    left: 1rem;
}

/* =========================================================
   02. Layout containers and shared utilities
   ========================================================= */

.ct-container,
.container,
.site-header__inner,
.site-footer__inner {
    width: min(var(--ct-container), calc(100% - 32px));
    margin-inline: auto;
}

/* =========================================================
   03. Header and navigation
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--ct-line);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #004aad;
    color: var(--ct-blue);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: 1.25rem;
}

.site-logo__image {
    display: block;
    width: 58px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.site-logo__mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--ct-blue), #0b63e5);
    color: white;
    box-shadow: 0 12px 24px rgba(0, 74, 173, .22);
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: .5rem;
    border: 0;
    background: var(--ct-blue);
    color: white;
    border-radius: 999px;
    padding: .7rem 1rem;
    font-weight: 800;
    cursor: pointer;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    content: "";
}

.nav-toggle__line::before {
    transform: translateY(-5px);
}

.nav-toggle__line::after {
    transform: translateY(3px);
}

.site-nav__list,
.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.site-nav__list a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: .55rem .8rem;
    border-radius: 999px;
    color: var(--ct-text);
    text-decoration: none;
    font-weight: 750;
    font-size: .95rem;
}

.site-nav__list a:hover,
.site-nav__list a:focus {
    background: var(--ct-blue-soft);
    color: var(--ct-blue);
    outline: none;
}

/* =========================================================
   04. Homepage base sections
   ========================================================= */

.ct-section,
.section {
    padding: clamp(64px, 8vw, 108px) 0;
}

.ct-section--white {
    background: var(--ct-white);
}

.ct-hero {
    padding: clamp(42px, 7vw, 96px) 0 56px;
    background:
        radial-gradient(circle at top right, rgba(0, 74, 173, 0.18), transparent 34%),
        radial-gradient(circle at 10% 20%, rgba(0, 74, 173, 0.09), transparent 32%),
        var(--ct-bg);
}

.ct-hero__grid,
.ct-split,
.ct-practitioner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
}

.ct-split--reverse {
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
}

.ct-hero__content,
.ct-hero__card,
.ct-feature-panel,
.ct-contact-card,
.ct-cta-panel,
.ct-disclaimer .ct-container,
.content-card {
    background: var(--ct-white);
    border: 1px solid var(--ct-line);
    border-radius: var(--ct-radius-lg);
    box-shadow: var(--ct-shadow);
}

.ct-hero__content {
    padding: clamp(32px, 6vw, 72px);
}

.ct-hero__card {
    padding: clamp(26px, 4vw, 42px);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(155deg, rgba(0, 74, 173, .98), rgba(6, 48, 107, .98)),
        var(--ct-blue);
    color: white;
}

.ct-hero__card .ct-inline-link {
    color: white;
}

.ct-card-label,
.ct-eyebrow {
    margin: 0 0 .8rem;
    color: var(--ct-blue);
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-size: .78rem;
}

.ct-card-label {
    color: rgba(255, 255, 255, .82);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
.ct-hero h1 {
    margin: 0 0 1.1rem;
    max-width: 850px;
    font-size: clamp(2.35rem, 7vw, 5.35rem);
    line-height: .98;
    letter-spacing: -0.065em;
}

h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 4.4vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

h3 {
    margin: 0 0 .6rem;
    font-size: 1.08rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

p {
    margin-block: 0 1rem;
    color: var(--ct-muted);
}

.ct-hero__lead {
    font-size: clamp(1.05rem, 2.2vw, 1.28rem);
    max-width: 720px;
}

/* =========================================================
   05. Buttons, cards, and shared components
   ========================================================= */

.ct-actions,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.6rem;
}

.ct-actions--center {
    justify-content: center;
}

.ct-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: .9rem 1.25rem;
    border-radius: 999px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.ct-button:hover,
.ct-button:focus,
.button:hover,
.button:focus {
    transform: translateY(-1px);
    outline: none;
}

.ct-button--primary,
.button-primary {
    background: var(--ct-blue);
    color: white;
    box-shadow: 0 14px 28px rgba(0, 74, 173, .22);
}

.ct-button--secondary,
.button-secondary {
    background: var(--ct-blue-soft);
    color: var(--ct-blue);
}

.ct-button--light {
    background: white;
    color: var(--ct-blue);
}

.ct-inline-link {
    color: var(--ct-blue);
    font-weight: 850;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.ct-hero__facts {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin: 1.5rem 0 0;
    padding: 0;
}

.ct-hero__facts li,
.ct-pill-grid span {
    border: 1px solid var(--ct-line);
    background: #f8fbff;
    border-radius: 999px;
    padding: .55rem .8rem;
    color: var(--ct-blue-dark);
    font-weight: 750;
    font-size: .92rem;
}

.ct-trust-strip {
    padding: 24px 0 36px;
}

.ct-trust-strip__grid,
.ct-card-grid,
.ct-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.ct-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ct-card-grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ct-mini-card,
.ct-service-card,
.ct-post-card,
.ct-steps article,
.ct-check-list article {
    background: var(--ct-white);
    border: 1px solid var(--ct-line);
    border-radius: var(--ct-radius);
    box-shadow: var(--ct-shadow-soft);
    padding: 1.25rem;
}

.ct-mini-card__icon,
.ct-steps span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 1rem;
    border-radius: 13px;
    background: var(--ct-blue-soft);
    color: var(--ct-blue);
    font-weight: 900;
}

.ct-mini-card h2 {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-bottom: .4rem;
}

.ct-mini-card p,
.ct-service-card p,
.ct-post-card p,
.ct-steps p,
.ct-check-list p {
    font-size: .94rem;
}

.ct-section-head {
    max-width: 780px;
    margin-bottom: clamp(28px, 5vw, 46px);
}

.ct-section-head p {
    font-size: 1.05rem;
}

.ct-prose p {
    font-size: 1.05rem;
}

.ct-service-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.ct-service-card a,
.ct-post-card a {
    margin-top: auto;
    color: var(--ct-blue);
    font-weight: 850;
    text-decoration: none;
}

.ct-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.ct-feature-panel {
    padding: clamp(28px, 5vw, 56px);
    background:
        linear-gradient(160deg, rgba(0, 74, 173, .97), rgba(6, 48, 107, .98)),
        var(--ct-blue);
    color: white;
}

.ct-feature-panel p {
    color: rgba(255, 255, 255, .82);
}

.ct-check-list {
    display: grid;
    gap: 1rem;
}

.ct-avatar-card {
    display: grid;
    place-items: center;
    min-height: 360px;
    border-radius: var(--ct-radius-lg);
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .9), transparent 24%),
        linear-gradient(145deg, #dce8ff, #ffffff);
    box-shadow: var(--ct-shadow);
    border: 1px solid var(--ct-line);
}

.ct-avatar-card__mark {
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
    border-radius: 46px;
    background: linear-gradient(145deg, var(--ct-blue), #0b63e5);
    color: white;
    font-size: 5rem;
    font-weight: 950;
    box-shadow: 0 28px 60px rgba(0, 74, 173, .24);
}

.ct-avatar-card--photo {
    margin: 0;
    overflow: hidden;
    padding: 12px;
}

.ct-avatar-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: calc(var(--ct-radius-lg) - 8px);
    object-fit: cover;
    object-position: center 18%;
    box-shadow: 0 18px 42px rgba(13, 45, 92, .16);
}

.ct-location {
    background: linear-gradient(180deg, var(--ct-bg), #edf3ff);
}

.ct-contact-card {
    padding: clamp(24px, 4vw, 42px);
}

.ct-contact-card a {
    color: var(--ct-blue);
    font-weight: 850;
}

.ct-cta-panel {
    max-width: 900px;
    text-align: center;
    padding: clamp(32px, 6vw, 72px);
}

.ct-cta-panel p {
    max-width: 680px;
    margin-inline: auto;
}

.ct-section-link {
    margin-top: 1.4rem;
}

.ct-faq-wrap {
    max-width: 900px;
}

.ct-faq-list {
    display: grid;
    gap: .85rem;
}

.ct-faq-list details {
    background: var(--ct-white);
    border: 1px solid var(--ct-line);
    border-radius: var(--ct-radius);
    box-shadow: var(--ct-shadow-soft);
    padding: 1.1rem 1.25rem;
}

.ct-faq-list summary {
    cursor: pointer;
    color: var(--ct-text);
    font-weight: 850;
}

.ct-faq-list details p {
    margin-top: .8rem;
    margin-bottom: 0;
}

/* =========================================================
   06. Footer and final CTA base styles
   ========================================================= */

.ct-final-cta {
    text-align: center;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .18), transparent 26%),
        linear-gradient(145deg, var(--ct-blue), var(--ct-blue-dark));
}

.ct-final-cta .ct-eyebrow,
.ct-final-cta p {
    color: rgba(255, 255, 255, .84);
}

.ct-final-cta h2 {
    color: white;
}

.ct-disclaimer {
    padding: 28px 0 52px;
    background: #061833;
}

.ct-disclaimer .ct-container {
    padding: 1.2rem 1.35rem;
    border-radius: var(--ct-radius);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
    color: white;
}

.ct-disclaimer h2 {
    font-size: 1rem;
    margin: 0 0 .35rem;
    color: white;
}

.ct-disclaimer p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
}

.site-footer {
    background: #061833;
    color: white;
    padding: 56px 0 28px;
}

.site-footer a {
    color: white;
}

.site-footer p {
    color: rgba(255, 255, 255, .76);
}

.site-footer__logo {
    color: white;
    font-size: 1.45rem;
    font-weight: 950;
    text-decoration: none;
}

.site-footer__logo-image {
    display: block;
    width: 92px;
    height: auto;
    max-height: 92px;
    object-fit: contain;
}

.site-footer__brand {
    max-width: 560px;
    margin-bottom: 32px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer h2 {
    color: white;
    font-size: 1rem;
    letter-spacing: 0;
    margin-bottom: .8rem;
}

.site-footer__links {
    display: grid;
    gap: .45rem;
}

.site-footer__links a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}

.site-footer__bottom {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

/* =========================================================
   07. Early responsive rules
   ========================================================= */

@media (max-width: 980px) {
    .ct-hero__grid,
    .ct-split,
    .ct-split--reverse,
    .ct-practitioner,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .ct-trust-strip__grid,
    .ct-card-grid,
    .ct-card-grid--services,
    .ct-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header__inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        inset: 100% 16px auto 16px;
        display: none;
        background: white;
        border: 1px solid var(--ct-line);
        border-radius: 22px;
        box-shadow: var(--ct-shadow);
        padding: .6rem;
    }

    .nav-open .site-nav {
        display: block;
    }

    .site-nav__list {
        display: grid;
        gap: .25rem;
    }

    .site-nav__list a {
        width: 100%;
        justify-content: flex-start;
    }

    .ct-trust-strip__grid,
    .ct-card-grid,
    .ct-card-grid--services,
    .ct-steps {
        grid-template-columns: 1fr;
    }

    .ct-hero__content,
    .ct-hero__card,
    .ct-feature-panel,
    .ct-contact-card,
    .ct-cta-panel,
    .content-card {
        border-radius: 26px;
    }

    .ct-actions,
    .hero-actions {
        display: grid;
    }

    .ct-button,
    .button {
        width: 100%;
    }
}

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

/* =========================================================
   ChiTerapi 2026 — Desktop Refinement Patch V1
   Purpose: reduce "document/Word page" feeling on large screens
   ========================================================= */

/* =========================================================
   08. Desktop Refinement Patch V1
   Late override block - do not reorder without visual QA.
   ========================================================= */

@media (min-width: 900px) {

    body {
        background:
            radial-gradient(circle at 10% 0%, rgba(0, 74, 173, 0.08), transparent 30%),
            radial-gradient(circle at 90% 12%, rgba(0, 74, 173, 0.10), transparent 28%),
            var(--ct-bg);
    }

    .container {
        width: min(1180px, calc(100% - 64px));
    }

    .site-main {
        overflow: hidden;
    }

    .section,
    section {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .home-hero {
        padding-top: 72px;
        padding-bottom: 88px;
    }

    .home-hero .container,
    .hero-inner,
    .hero-content {
        position: relative;
    }

    .home-hero .container {
        max-width: 1180px;
        padding: 72px;
        border-radius: 34px;
        background:
            linear-gradient(135deg, rgba(255,255,255,0.98), rgba(244,246,252,0.92)),
            #fff;
        box-shadow: 0 28px 80px rgba(0, 74, 173, 0.16);
    }

    h1 {
        max-width: 760px;
        font-size: clamp(3.4rem, 5.6vw, 5.8rem);
        line-height: 0.98;
        letter-spacing: -0.07em;
    }

    h2 {
        max-width: 760px;
        font-size: clamp(2.1rem, 3.2vw, 3.4rem);
        line-height: 1.05;
        letter-spacing: -0.045em;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.18rem;
        line-height: 1.2;
    }

    p {
        max-width: 720px;
    }

    .home-hero p,
    .section-intro,
    .lead,
    .intro-text {
        font-size: 1.14rem;
        line-height: 1.75;
        color: var(--ct-muted);
    }

    .home-hero p {
        max-width: 680px;
    }

    .hero-actions,
    .cta-actions {
        margin-top: 2rem;
    }

    .button,
    .btn,
    .cta-button {
        min-height: 54px;
        padding: 0.95rem 1.45rem;
        font-size: 1rem;
    }

    .trust-grid,
    .services-grid,
    .cards-grid,
    .conditions-grid,
    .why-grid,
    .process-grid,
    .faq-grid,
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        align-items: stretch;
    }

    .trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .content-card,
    .service-card,
    .trust-card,
    .condition-card,
    .why-card,
    .process-card,
    .faq-item,
    .blog-card,
    .cta-panel,
    .location-card {
        border-radius: 28px;
        background: rgba(255,255,255,0.94);
        border: 1px solid rgba(0, 74, 173, 0.08);
        box-shadow: 0 18px 50px rgba(0, 74, 173, 0.10);
    }

    .content-card,
    .service-card,
    .trust-card,
    .condition-card,
    .why-card,
    .process-card,
    .faq-item,
    .blog-card {
        padding: 28px;
    }

    .service-card:hover,
    .condition-card:hover,
    .why-card:hover,
    .blog-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 60px rgba(0, 74, 173, 0.14);
    }

    .split,
    .two-column,
    .intro-grid,
    .practitioner-grid,
    .location-grid,
    .cta-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 40px;
        align-items: center;
    }

    .section-header,
    .centered-section-header {
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-header p,
    .centered-section-header p {
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer__inner {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 32px;
        align-items: start;
    }
}

@media (min-width: 1200px) {
    .home-hero {
        padding-top: 88px;
    }

    .home-hero .container {
        min-height: 560px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 899px) {
    .trust-grid,
    .services-grid,
    .cards-grid,
    .conditions-grid,
    .why-grid,
    .process-grid,
    .faq-grid,
    .blog-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =========================================================
   09. Rreth Nesh Page V1
   Page-specific block - keep after shared base styles.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 — Rreth Nesh Page V1
   ========================================================= */

.about-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 74, 173, 0.08), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(0, 74, 173, 0.10), transparent 28%),
        var(--ct-bg);
}

.about-hero {
    padding: clamp(48px, 8vw, 96px) 0;
}

.about-hero__grid,
.about-split {
    display: grid;
    gap: 24px;
}

.about-hero__content,
.about-hero__card,
.about-info-card,
.credential-card,
.medical-note,
.cta-panel,
.about-location-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0, 74, 173, 0.10);
}

.about-hero__content {
    padding: clamp(32px, 6vw, 72px);
}

.about-hero__card {
    padding: 28px;
}

.about-card__label,
.eyebrow {
    color: var(--ct-blue);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .82rem;
}

.about-lead {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    color: var(--ct-muted);
    max-width: 720px;
}

.about-section {
    padding: clamp(52px, 7vw, 88px) 0;
}

.about-section--soft {
    background: rgba(255, 255, 255, 0.42);
}

.about-card-grid,
.credential-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.about-practitioner-side {
    display: grid;
    gap: 16px;
}

.about-info-card,
.credential-card {
    padding: 26px;
}

.about-practitioner-photo,
.about-team-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0, 74, 173, 0.10);
}

.about-practitioner-photo {
    margin: 0;
    overflow: hidden;
    padding: 12px;
}

.about-practitioner-photo img,
.about-team-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-practitioner-photo img {
    min-height: 320px;
    border-radius: 20px;
    object-position: center 18%;
}

.about-section--team .section-header {
    max-width: 720px;
    margin-bottom: 22px;
}

.about-team-card {
    display: grid;
    gap: 0;
    overflow: hidden;
}

.about-team-card__media {
    margin: 0;
    min-height: 280px;
    background: #e9effc;
}

.about-team-card__media img {
    object-position: center 20%;
}

.about-team-card__content {
    padding: clamp(24px, 4vw, 38px);
}

.about-team-card__content h3 {
    margin-bottom: .45rem;
    color: #071f45;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.about-team-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 1rem;
}

.about-team-card__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #e9effc;
    color: var(--ct-blue);
    font-size: .84rem;
    font-weight: 850;
}

.about-team-card__languages {
    display: grid;
    gap: 4px;
    margin: 0 0 1rem;
    padding: .82rem .95rem;
    border: 1px solid rgba(0, 74, 173, .10);
    border-radius: 18px;
    background: #f4f6fc;
}

.about-team-card__languages span {
    color: rgba(7, 31, 69, .62);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.about-team-card__languages strong {
    color: #071f45;
    font-size: .95rem;
    line-height: 1.4;
}

.credential-card span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9effc;
    color: var(--ct-blue);
    font-size: .82rem;
    font-weight: 800;
}

.standards-list {
    display: grid;
    gap: 14px;
}

.standards-list div {
    background: white;
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 12px 35px rgba(0, 74, 173, 0.08);
}

.standards-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ct-text);
}

.standards-list span {
    color: var(--ct-muted);
}

.about-location-panel,
.medical-note,
.about-final-cta .cta-panel {
    padding: clamp(28px, 5vw, 56px);
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    align-items: center;
}

.inline-link {
    color: var(--ct-blue);
    font-weight: 800;
    text-decoration: none;
}

.inline-link:hover {
    text-decoration: underline;
}

.muted {
    color: var(--ct-muted);
}

@media (min-width: 900px) {
    .about-hero__grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
        align-items: stretch;
    }

    .about-hero__card {
        align-self: end;
    }

    .about-split {
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
        gap: 42px;
    }

    .about-team-card {
        grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .about-team-card__media {
        min-height: 360px;
    }

    .about-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .credential-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-location-panel {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 32px;
        align-items: center;
    }

    .location-actions {
        justify-content: flex-end;
    }
}

/* =========================================================
   10. Kontakt Page V1
   Page-specific block - keep after shared base styles.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 — Kontakt Page V1
   ========================================================= */

.contact-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 74, 173, 0.08), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(0, 74, 173, 0.10), transparent 28%),
        var(--ct-bg);
}

.contact-hero {
    padding: clamp(48px, 8vw, 96px) 0;
}

.contact-hero__grid,
.contact-info-grid,
.appointment-panel {
    display: grid;
    gap: 24px;
}

.contact-hero__content,
.contact-card,
.contact-method-card,
.contact-panel,
.appointment-panel,
.contact-faq-item,
.contact-final-cta .cta-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0, 74, 173, 0.10);
}

.contact-hero__content {
    padding: clamp(32px, 6vw, 72px);
}

.contact-card {
    padding: 28px;
}

.contact-card--highlight {
    border-color: rgba(0, 74, 173, 0.16);
}

.contact-lead {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    color: var(--ct-muted);
    max-width: 720px;
}

.contact-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.contact-mini-list a {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    background: #e9effc;
    color: var(--ct-blue);
    font-weight: 800;
    text-decoration: none;
}

.contact-section {
    padding: clamp(52px, 7vw, 88px) 0;
}

.contact-section--soft {
    background: rgba(255, 255, 255, 0.42);
}

.contact-method-grid,
.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-method-card,
.contact-panel,
.contact-faq-item {
    padding: 26px;
}

.contact-method-card span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9effc;
    color: var(--ct-blue);
    font-size: .82rem;
    font-weight: 800;
}

.hours-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.hours-list div,
.contact-checklist div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
    background: #f8faff;
    border: 1px solid rgba(0, 74, 173, 0.08);
}

.hours-list strong {
    color: var(--ct-text);
}

.hours-list span {
    color: var(--ct-blue);
    font-weight: 800;
}

.appointment-panel {
    padding: clamp(28px, 5vw, 56px);
}

.contact-checklist {
    display: grid;
    gap: 12px;
}

.contact-checklist div {
    color: var(--ct-text);
    font-weight: 800;
}

.contact-final-cta .cta-panel {
    padding: clamp(28px, 5vw, 56px);
}

@media (min-width: 900px) {
    .contact-hero__grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
        align-items: stretch;
    }

    .contact-card {
        align-self: end;
    }

    .contact-method-grid,
    .contact-faq-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .contact-info-grid,
    .appointment-panel {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 32px;
    }
}

/* =========================================================
   11. Blog Templates V1
   Blog/archive/single template styling.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 — Blog Templates V1
   ========================================================= */

.blog-index-page,
.blog-single-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 74, 173, 0.08), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(0, 74, 173, 0.10), transparent 28%),
        var(--ct-bg);
}

.blog-hero,
.single-post-hero {
    padding: clamp(52px, 8vw, 96px) 0;
}

.blog-hero__inner,
.single-post-hero__inner,
.single-post-content,
.aside-card,
.blog-list-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0, 74, 173, 0.10);
}

.blog-hero__inner,
.single-post-hero__inner {
    padding: clamp(32px, 6vw, 72px);
}

.blog-hero h1,
.single-post-hero h1 {
    max-width: 900px;
}

.blog-list-section {
    padding: clamp(48px, 7vw, 88px) 0;
}

.blog-grid-list {
    display: grid;
    gap: 22px;
}

.blog-list-card {
    overflow: hidden;
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    background: #e9effc;
    overflow: hidden;
}

.blog-card-image img,
.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 26px;
}

.blog-card-body h2 {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.15;
    margin-top: 0;
}

.blog-card-body h2 a {
    color: var(--ct-text);
    text-decoration: none;
}

.blog-card-body h2 a:hover {
    color: var(--ct-blue);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--ct-muted);
    font-size: .9rem;
    font-weight: 700;
}

.post-featured-image {
    margin-top: -42px;
    margin-bottom: 32px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 74, 173, 0.12);
}

.post-featured-image img {
    max-height: 520px;
}

.single-post-layout {
    display: grid;
    gap: 24px;
    padding-bottom: clamp(56px, 8vw, 96px);
}

.single-post-content {
    padding: clamp(28px, 5vw, 58px);
}

.single-post-content > *:first-child {
    margin-top: 0;
}

.single-post-content h2,
.single-post-content h3 {
    margin-top: 1.8em;
}

.single-post-content p,
.single-post-content li {
    font-size: 1.04rem;
    line-height: 1.8;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
}

.single-post-content a {
    color: var(--ct-blue);
    font-weight: 700;
}

.single-post-aside {
    display: grid;
    gap: 18px;
    align-content: start;
}

.aside-card {
    padding: 24px;
}

.blog-pagination {
    margin-top: 24px;
}

.blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(0, 74, 173, 0.12);
    color: var(--ct-blue);
    font-weight: 800;
    text-decoration: none;
}

.blog-pagination .current {
    background: var(--ct-blue);
    color: white;
}

.archive-description {
    color: var(--ct-muted);
}

@media (min-width: 760px) {
    .blog-grid-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 980px) {
    .single-post-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: start;
    }
}

/* =========================================================
   ChiTerapi 2026 - Blog V2 Layout Polish
   Scoped visual refinement for blog index, archives, and single posts.
   ========================================================= */

.blog-index-page .blog-hero,
.blog-single-page .single-post-hero {
    padding: clamp(34px, 6vw, 74px) 0 clamp(28px, 5vw, 58px);
}

.blog-index-page .blog-hero__inner,
.blog-single-page .single-post-hero__inner {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 5vw, 58px);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 251, 255, .94)),
        var(--ct-white);
    border-color: rgba(0, 74, 173, .10);
    box-shadow: 0 18px 46px rgba(0, 74, 173, .09);
}

.blog-index-page .blog-hero__inner::before,
.blog-single-page .single-post-hero__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid rgba(0, 74, 173, .18);
    pointer-events: none;
}

.blog-index-page .blog-hero__inner > *,
.blog-single-page .single-post-hero__inner > * {
    position: relative;
}

.blog-index-page .blog-hero h1,
.blog-single-page .single-post-hero h1 {
    max-width: 860px;
    margin-bottom: clamp(.8rem, 2vw, 1.15rem);
    line-height: 1.04;
}

.blog-index-page .blog-hero p:not(.eyebrow),
.blog-index-page .archive-description,
.blog-single-page .single-post-hero .post-meta {
    max-width: 760px;
}

.blog-index-page .blog-list-section {
    padding: clamp(34px, 6vw, 72px) 0 clamp(58px, 8vw, 96px);
}

.blog-index-page .blog-grid-list {
    gap: clamp(18px, 3vw, 28px);
}

.blog-index-page .blog-list-card {
    position: relative;
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    border-color: rgba(0, 74, 173, .10);
    box-shadow: 0 14px 38px rgba(0, 74, 173, .08);
}

.blog-index-page .blog-card-image {
    background:
        linear-gradient(135deg, rgba(0, 74, 173, .10), rgba(244, 246, 252, .92));
}

.blog-index-page .blog-card-body {
    display: grid;
    align-content: start;
    gap: .78rem;
    padding: clamp(22px, 3vw, 30px);
}

.blog-index-page .blog-card-body h2 {
    margin-bottom: 0;
    font-size: clamp(1.28rem, 2vw, 1.72rem);
    line-height: 1.16;
}

.blog-index-page .blog-card-body p {
    margin: 0;
    color: #4a5c78;
    line-height: 1.68;
}

.blog-index-page .post-meta,
.blog-single-page .post-meta {
    gap: .5rem .75rem;
    align-items: center;
    color: #536783;
    font-size: .88rem;
    letter-spacing: .01em;
}

.blog-index-page .blog-card-meta,
.blog-single-page .single-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .6rem;
    align-items: center;
}

.blog-index-page .post-category-pill,
.blog-single-page .post-category-pill {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: .32rem .72rem;
    border: 1px solid rgba(0, 74, 173, .14);
    border-radius: 999px;
    background: #eef4ff;
    color: var(--ct-blue);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
}

.blog-index-page .post-category-pill:hover,
.blog-index-page .post-category-pill:focus,
.blog-single-page .post-category-pill:hover,
.blog-single-page .post-category-pill:focus {
    background: var(--ct-blue);
    color: white;
    outline: none;
}

.blog-index-page .inline-link {
    width: fit-content;
    margin-top: .2rem;
    text-underline-offset: 4px;
}

.blog-index-page .archive-description {
    color: #4a5c78;
    line-height: 1.7;
}

.blog-index-page .blog-pagination {
    margin-top: clamp(24px, 4vw, 36px);
}

.blog-index-page .blog-pagination .nav-links {
    justify-content: center;
}

.blog-index-page .blog-pagination a,
.blog-index-page .blog-pagination span {
    min-width: 44px;
    min-height: 44px;
    border-color: rgba(0, 74, 173, .14);
    box-shadow: 0 8px 20px rgba(0, 74, 173, .06);
}

.blog-index-page .blog-pagination a:hover,
.blog-index-page .blog-pagination a:focus {
    background: var(--ct-blue-soft);
    outline: none;
}

.blog-single-page .post-featured-image {
    margin-top: clamp(-34px, -4vw, -24px);
    margin-bottom: clamp(24px, 4vw, 40px);
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(0, 74, 173, .10);
}

.blog-single-page .single-post-layout {
    gap: clamp(22px, 4vw, 34px);
    padding-bottom: clamp(58px, 8vw, 104px);
}

.blog-single-page .single-post-main {
    display: grid;
    gap: clamp(18px, 3vw, 26px);
    min-width: 0;
}

/* ChiTerapi Blog Article System */

.blog-single-page .single-post-hero h1 {
    max-width: 860px;
    color: #071f45;
    font-size: clamp(2.25rem, 4.5vw, 4.6rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.blog-single-page .single-post-content {
    width: 100%;
    max-width: 780px;
    margin-inline: auto;
    padding: clamp(26px, 5vw, 58px);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 255, .96)),
        var(--ct-white);
    box-shadow: 0 16px 42px rgba(0, 74, 173, .08);
    color: #263a58;
    font-size: clamp(1rem, 1.05vw, 1.08rem);
    line-height: 1.82;
}

.blog-single-page .single-post-content > * {
    max-width: 100%;
}

.blog-single-page .single-post-content > *:first-child {
    margin-top: 0;
}

.blog-single-page .single-post-content > *:last-child {
    margin-bottom: 0;
}

.blog-single-page .single-post-content p,
.blog-single-page .single-post-content li {
    color: #33445f;
    font-size: inherit;
    line-height: 1.82;
}

.blog-single-page .single-post-content p {
    margin: 0 0 1.18rem;
}

.blog-single-page .single-post-content ul,
.blog-single-page .single-post-content ol {
    padding-left: 1.45rem;
    margin: 1.2rem 0 1.45rem;
}

.blog-single-page .single-post-content li + li {
    margin-top: .5rem;
}

.blog-single-page .single-post-content h2,
.blog-single-page .single-post-content h3 {
    color: #10233f;
    line-height: 1.18;
}

.blog-single-page .single-post-content h1 {
    margin: 1.8em 0 .9rem;
    color: #071f45;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.blog-single-page .single-post-content h2 {
    position: relative;
    margin: 2.15em 0 .85rem;
    padding-top: .35rem;
    color: #071f45;
    font-size: clamp(1.52rem, 2.35vw, 2.12rem);
    letter-spacing: 0;
}

.blog-single-page .single-post-content h2::before {
    content: "";
    display: block;
    width: 54px;
    height: 4px;
    margin-bottom: .82rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #004aad, rgba(0, 74, 173, .18));
}

.blog-single-page .single-post-content h3 {
    margin: 1.85em 0 .62rem;
    color: #12335f;
    font-size: clamp(1.18rem, 1.65vw, 1.46rem);
    font-weight: 850;
}

.blog-single-page .single-post-content h2 + p,
.blog-single-page .single-post-content h3 + p {
    margin-top: 0;
}

.blog-single-page .single-post-content a {
    color: #004aad;
    font-weight: 760;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.blog-single-page .single-post-content a:hover,
.blog-single-page .single-post-content a:focus {
    color: #06306b;
    outline: none;
}

.blog-single-page .single-post-content img,
.blog-single-page .single-post-content figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: clamp(1.4rem, 3vw, 2rem) 0;
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(0, 74, 173, .12);
}

.blog-single-page .single-post-content figure {
    margin: clamp(1.5rem, 3vw, 2.15rem) 0;
}

.blog-single-page .single-post-content .wp-caption {
    width: 100% !important;
    max-width: 100%;
    margin: clamp(1.5rem, 3vw, 2.15rem) 0;
}

.blog-single-page .single-post-content figure img {
    margin: 0;
}

.blog-single-page .single-post-content figcaption,
.blog-single-page .single-post-content .wp-caption-text {
    margin-top: .7rem;
    color: #64748f;
    font-size: .9rem;
    line-height: 1.55;
    text-align: center;
}

.blog-single-page .single-post-content blockquote {
    margin: clamp(1.55rem, 3vw, 2.2rem) 0;
    padding: clamp(1.1rem, 3vw, 1.55rem);
    border-left: 5px solid #004aad;
    border-radius: 22px;
    background: #f4f6fc;
    color: #243955;
    box-shadow: inset 0 0 0 1px rgba(0, 74, 173, .08);
}

.blog-single-page .single-post-content blockquote p {
    margin-bottom: 0;
    color: inherit;
    font-size: clamp(1.02rem, 1.3vw, 1.16rem);
    line-height: 1.75;
}

.blog-single-page .single-post-content .chiterapi-blog-cta,
.blog-single-page .chiterapi-blog-cta {
    margin: clamp(1.7rem, 4vw, 2.6rem) 0 0;
    padding: clamp(1.25rem, 3vw, 1.85rem);
    border: 1px solid rgba(0, 74, 173, .14);
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(0, 74, 173, .10), transparent 36%),
        linear-gradient(135deg, #ffffff, #f4f6fc);
    box-shadow: 0 16px 38px rgba(0, 74, 173, .10);
}

.blog-single-page .chiterapi-blog-cta h2,
.blog-single-page .chiterapi-blog-cta h3 {
    margin-top: 0;
    padding-top: 0;
    color: #071f45;
}

.blog-single-page .chiterapi-blog-cta h2::before {
    display: none;
}

.blog-single-page .chiterapi-blog-cta p {
    max-width: 640px;
    margin-bottom: 1rem;
    color: #40516f;
}

.blog-single-page .chiterapi-blog-cta .button,
.blog-single-page .chiterapi-blog-cta .ct-button {
    margin-top: .35rem;
}

.blog-single-page .single-post-disclaimer,
.blog-single-page .single-post-nav {
    max-width: 780px;
}

.blog-single-page .single-post-disclaimer {
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid rgba(0, 74, 173, .12);
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    box-shadow: 0 12px 30px rgba(0, 74, 173, .06);
}

.blog-single-page .single-post-disclaimer h2 {
    margin: 0 0 .45rem;
    color: #10233f;
    font-size: .98rem;
    line-height: 1.25;
}

.blog-single-page .single-post-disclaimer p {
    margin: 0;
    color: #536783;
    font-size: .95rem;
    line-height: 1.65;
}

.blog-single-page .single-post-nav {
    display: grid;
    gap: 14px;
}

.blog-single-page .single-post-nav__link {
    display: grid;
    gap: .35rem;
    min-width: 0;
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid rgba(0, 74, 173, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 30px rgba(0, 74, 173, .07);
    color: var(--ct-text);
    text-decoration: none;
}

.blog-single-page .single-post-nav__link span {
    color: var(--ct-blue);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.blog-single-page .single-post-nav__link strong {
    color: #10233f;
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    line-height: 1.28;
}

.blog-single-page .single-post-nav__link:hover,
.blog-single-page .single-post-nav__link:focus {
    border-color: rgba(0, 74, 173, .24);
    background: #f8fbff;
    outline: none;
}

.blog-single-page .single-post-aside {
    gap: 16px;
}

.blog-single-page .aside-card {
    padding: clamp(22px, 3vw, 28px);
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    border-color: rgba(0, 74, 173, .10);
    box-shadow: 0 14px 34px rgba(0, 74, 173, .08);
}

.blog-single-page .aside-card h2 {
    margin-top: 0;
    margin-bottom: .55rem;
    font-size: 1.08rem;
    line-height: 1.22;
}

.blog-single-page .aside-card p {
    margin-top: 0;
    color: #536783;
    line-height: 1.65;
}

.blog-single-page .aside-card .button {
    width: 100%;
    min-height: 48px;
}

@media (min-width: 760px) {
    .blog-index-page .blog-grid-list {
        align-items: stretch;
    }

    .blog-index-page .blog-list-card {
        display: flex;
        flex-direction: column;
    }

    .blog-index-page .blog-card-body {
        flex: 1;
    }

    .blog-single-page .single-post-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (min-width: 980px) {
    .blog-index-page .blog-hero {
        padding-top: clamp(24px, 3vw, 42px);
        padding-bottom: clamp(30px, 4vw, 54px);
    }

    .blog-index-page .blog-grid-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-index-page .blog-list-card:first-child:has(.blog-card-image) {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    }

    .blog-index-page .blog-list-card:first-child:has(.blog-card-image) .blog-card-image {
        min-height: 100%;
        aspect-ratio: auto;
    }

    .blog-index-page .blog-list-card:first-child:has(.blog-card-image) .blog-card-body {
        padding: clamp(34px, 4vw, 52px);
    }

    .blog-index-page .blog-list-card:first-child:has(.blog-card-image) .blog-card-body h2 {
        font-size: clamp(1.9rem, 3vw, 2.72rem);
        line-height: 1.07;
    }

    .blog-single-page .single-post-layout {
        grid-template-columns: minmax(0, 780px) minmax(280px, 320px);
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .blog-index-page .blog-hero,
    .blog-single-page .single-post-hero {
        padding-top: 24px;
    }

    .blog-index-page .blog-hero__inner,
    .blog-single-page .single-post-hero__inner,
    .blog-single-page .single-post-content,
    .blog-single-page .aside-card,
    .blog-index-page .blog-list-card {
        border-radius: 24px;
    }

    .blog-index-page .blog-card-body {
        gap: .65rem;
    }

    .blog-index-page .blog-card-body h2 {
        font-size: clamp(1.18rem, 6vw, 1.42rem);
    }

    .blog-index-page .blog-card-meta,
    .blog-single-page .post-meta,
    .blog-single-page .single-post-categories {
        gap: .45rem;
    }

    .blog-index-page .post-category-pill,
    .blog-single-page .post-category-pill {
        min-height: 28px;
        padding-inline: .62rem;
    }

    .blog-single-page .post-featured-image {
        margin-top: -18px;
        border-radius: 22px;
    }

    .blog-single-page .single-post-hero h1 {
        font-size: clamp(2.05rem, 9vw, 3rem);
        line-height: 1.06;
    }

    .blog-single-page .single-post-content {
        padding: 24px 20px;
        font-size: 1rem;
        line-height: 1.76;
    }

    .blog-single-page .single-post-content p,
    .blog-single-page .single-post-content li {
        line-height: 1.76;
    }

    .blog-single-page .single-post-content h1 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .blog-single-page .single-post-content h2 {
        margin-top: 1.9em;
        font-size: clamp(1.35rem, 6.5vw, 1.78rem);
    }

    .blog-single-page .single-post-content h3 {
        margin-top: 1.65em;
        font-size: clamp(1.12rem, 5.4vw, 1.34rem);
    }

    .blog-single-page .single-post-content img,
    .blog-single-page .single-post-content figure img {
        border-radius: 18px;
        box-shadow: 0 12px 26px rgba(0, 74, 173, .10);
    }

    .blog-single-page .single-post-content blockquote,
    .blog-single-page .single-post-content .chiterapi-blog-cta,
    .blog-single-page .chiterapi-blog-cta {
        border-radius: 20px;
    }

    .blog-index-page .blog-pagination .nav-links {
        justify-content: flex-start;
    }

    .blog-single-page .single-post-disclaimer,
    .blog-single-page .single-post-nav__link {
        border-radius: 22px;
    }
}

/* =========================================================
   12. English Landing Page V1
   Page-specific block - keep after shared base styles.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 — English Landing Page V1
   ========================================================= */

.english-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 74, 173, 0.08), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(0, 74, 173, 0.10), transparent 28%),
        var(--ct-bg);
}

.english-hero {
    padding: clamp(48px, 8vw, 96px) 0;
}

.english-hero__grid,
.english-split {
    display: grid;
    gap: 24px;
}

.english-hero__content,
.english-hero__card,
.english-trust-card,
.english-service-card,
.english-info-panel,
.english-process-card,
.english-location-panel,
.english-final-cta .cta-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0, 74, 173, 0.10);
}

.english-hero__content {
    padding: clamp(32px, 6vw, 72px);
}

.english-hero__card,
.english-trust-card,
.english-service-card,
.english-info-panel,
.english-process-card {
    padding: 26px;
}

.english-lead {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    color: var(--ct-muted);
    max-width: 720px;
}

.english-hero-note {
    color: var(--ct-muted);
    font-weight: 700;
    margin-top: 18px;
}

.english-section {
    padding: clamp(52px, 7vw, 88px) 0;
}

.english-section--soft {
    background: rgba(255, 255, 255, 0.42);
}

.english-trust-grid,
.english-service-grid,
.english-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.english-info-panel ul {
    margin: 0;
    padding-left: 1.2rem;
}

.english-info-panel li {
    margin-bottom: 8px;
    color: var(--ct-muted);
}

.english-service-card h3,
.english-trust-card h3,
.english-process-card h3 {
    margin-top: 0;
}

.english-process-card span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9effc;
    color: var(--ct-blue);
    font-size: .82rem;
    font-weight: 800;
}

.english-centered-action {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.english-location-panel,
.english-final-cta .cta-panel {
    padding: clamp(28px, 5vw, 56px);
}

@media (min-width: 900px) {
    .english-page .english-hero {
        padding-top: clamp(24px, 3vw, 44px);
        padding-bottom: clamp(34px, 4vw, 62px);
    }

    .english-hero__grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
        align-items: stretch;
    }

    .english-hero__card {
        align-self: end;
    }

    .english-trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }

    .english-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .english-process-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }

    .english-split {
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
        gap: 42px;
    }

    .english-location-panel {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 32px;
        align-items: center;
    }
}

/* =========================================================
   13. Homepage V2 polish history
   Late override block - do not reorder without visual QA.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 — Homepage V2 Polish Patch
   Focus: hero, header, desktop rhythm, premium visual finish
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(0, 74, 173, 0.08);
}

.site-header__inner {
    min-height: 78px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.03em;
}

.site-nav__list a {
    position: relative;
    padding: 10px 4px;
    font-size: 0.96rem;
}

.site-nav__list a::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: var(--ct-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after {
    transform: scaleX(1);
}

.home-hero,
.ct-hero {
    position: relative;
    padding-top: clamp(52px, 8vw, 112px);
    padding-bottom: clamp(56px, 8vw, 112px);
    background:
        radial-gradient(circle at 12% 12%, rgba(0, 74, 173, 0.10), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(0, 74, 173, 0.12), transparent 32%),
        linear-gradient(180deg, #f6f8fd 0%, #eef3fc 100%);
    overflow: hidden;
}

.home-hero::before,
.ct-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 74, 173, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 74, 173, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
    pointer-events: none;
}

.ct-hero__grid,
.home-hero__grid,
.hero-grid {
    position: relative;
    display: grid;
    gap: clamp(24px, 3vw, 48px);
    align-items: stretch;
}

.ct-hero__content,
.home-hero__content,
.hero-content {
    position: relative;
    overflow: hidden;
}

.ct-hero__content::after,
.home-hero__content::after,
.hero-content::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -90px;
    border-radius: 999px;
    background: rgba(0, 74, 173, 0.065);
    pointer-events: none;
}

.ct-hero__card,
.home-hero__card,
.hero-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.ct-hero__card::before,
.home-hero__card::before,
.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.24), transparent 26%),
        radial-gradient(circle at 86% 84%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(145deg, #004aad, #003985);
    z-index: -2;
}

.ct-hero__card::after,
.home-hero__card::after,
.hero-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -92px;
    top: -92px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    z-index: -1;
}

.ct-hero__card p,
.home-hero__card p,
.hero-card p {
    color: rgba(255, 255, 255, 0.72);
}

.ct-hero__card a,
.home-hero__card a,
.hero-card a {
    color: #ffffff;
    text-underline-offset: 4px;
}

.eyebrow {
    letter-spacing: 0.11em;
}

.button,
.btn,
.ct-button {
    box-shadow: 0 14px 32px rgba(0, 74, 173, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.btn:hover,
.ct-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 74, 173, 0.22);
}

.button-secondary {
    box-shadow: none;
}

@media (min-width: 900px) {
    .home-hero .container,
    .ct-hero .container {
        width: min(1240px, calc(100% - 72px));
    }

    .ct-hero__grid,
    .home-hero__grid,
    .hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    }

    .ct-hero__content,
    .home-hero__content,
    .hero-content {
        padding: clamp(54px, 5vw, 78px);
        border-radius: 34px;
    }

    .ct-hero__card,
    .home-hero__card,
    .hero-card {
        min-height: 540px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: clamp(48px, 4.8vw, 72px);
        border-radius: 34px;
    }

    .ct-hero h1,
    .home-hero h1 {
        max-width: 720px;
        font-size: clamp(3.8rem, 5.2vw, 5.45rem);
        line-height: 0.96;
        letter-spacing: -0.075em;
    }

    .ct-hero__content > p:not(.ct-eyebrow):not(.eyebrow),
    .home-hero__content > p:not(.eyebrow),
    .hero-content > p:not(.eyebrow) {
        max-width: 650px;
        font-size: 1.12rem;
        line-height: 1.85;
    }

    .ct-hero__card h2,
    .home-hero__card h2,
    .hero-card h2 {
        max-width: 520px;
        font-size: clamp(2.2rem, 3.4vw, 3.8rem);
        line-height: 1.02;
        letter-spacing: -0.055em;
    }
}

@media (max-width: 899px) {
    .site-header {
        position: sticky;
    }

    .site-header__inner {
        min-height: 64px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .home-hero,
    .ct-hero {
        padding-top: 42px;
        padding-bottom: 58px;
    }

    .ct-hero__content,
    .home-hero__content,
    .hero-content {
        border-radius: 30px;
    }

    .ct-hero h1,
    .home-hero h1 {
        font-size: clamp(2.55rem, 10.6vw, 4.1rem);
        line-height: 1.02;
        letter-spacing: -0.065em;
    }

    .ct-hero__content > p:not(.ct-eyebrow):not(.eyebrow),
    .home-hero__content > p:not(.eyebrow),
    .hero-content > p:not(.eyebrow) {
        font-size: clamp(1.08rem, 4.2vw, 1.28rem);
        line-height: 1.75;
    }

    .hero-actions {
        gap: 14px;
    }

    .button,
    .btn,
    .ct-button {
        width: 100%;
        min-height: 64px;
        font-size: 1.04rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .button,
    .btn,
    .ct-button,
    .site-nav__list a::after {
        transition: none;
    }

    .button:hover,
    .btn:hover,
    .ct-button:hover {
        transform: none;
    }
}

/* =========================================================
   ChiTerapi 2026 — Homepage V2.1 Hero Scale Refinement
   Focus: reduce oversized desktop hero and improve Albanian word fit
   ========================================================= */

@media (min-width: 900px) {
    .home-hero,
    .ct-hero {
        padding-top: 72px;
        padding-bottom: 82px;
    }

    .home-hero .container,
    .ct-hero .container {
        width: min(1160px, calc(100% - 72px));
    }

    .ct-hero__grid,
    .home-hero__grid,
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
        gap: 32px;
    }

    .ct-hero__content,
    .home-hero__content,
    .hero-content {
        padding: 56px;
        border-radius: 30px;
    }

    .ct-hero h1,
    .home-hero h1,
    .hero-content h1 {
        max-width: 620px;
        font-size: clamp(3.15rem, 4.25vw, 4.65rem);
        line-height: 1.02;
        letter-spacing: -0.055em;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: manual;
    }

    .ct-hero__content > p:not(.ct-eyebrow):not(.eyebrow),
    .home-hero__content > p:not(.eyebrow),
    .hero-content > p:not(.eyebrow) {
        max-width: 600px;
        font-size: 1.04rem;
        line-height: 1.78;
    }

    .ct-hero__card,
    .home-hero__card,
    .hero-card {
        min-height: auto;
        padding: 56px;
        border-radius: 30px;
        justify-content: center;
    }

    .ct-hero__card h2,
    .home-hero__card h2,
    .hero-card h2 {
        max-width: 430px;
        font-size: clamp(2rem, 2.75vw, 3rem);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .ct-hero__card p,
    .home-hero__card p,
    .hero-card p {
        max-width: 430px;
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (min-width: 1280px) {
    .ct-hero h1,
    .home-hero h1,
    .hero-content h1 {
        font-size: 4.8rem;
    }
}

/* =========================================================
   ChiTerapi 2026 - Homepage V2.2 Premium Hero
   Focus: consultation panel density, balance, Albanian rhythm
   ========================================================= */

.ct-hero__content,
.ct-hero__card {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
}

.ct-hero__card {
    gap: 18px;
}

.ct-hero-panel__intro {
    position: relative;
    z-index: 1;
}

.ct-hero-panel__intro h2 {
    margin-bottom: .85rem;
}

.ct-hero-panel__intro p {
    margin-bottom: 0;
}

.ct-hero-panel__steps {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.ct-hero-panel__step {
    padding: 16px 17px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.ct-hero-panel__step h3 {
    margin-bottom: .35rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.ct-hero-panel__step p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .94rem;
    line-height: 1.55;
}

.ct-hero-panel__footer {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.ct-hero-panel__footer span {
    color: rgba(255, 255, 255, .86);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.35;
}

.ct-hero-panel__link {
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

@media (min-width: 900px) {
    .home-hero,
    .ct-hero {
        padding-top: 66px;
        padding-bottom: 72px;
    }

    .ct-hero__grid,
    .home-hero__grid,
    .hero-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(380px, .86fr);
        gap: 28px;
        align-items: stretch;
    }

    .ct-hero__content,
    .home-hero__content,
    .hero-content {
        padding: clamp(46px, 4.5vw, 54px);
    }

    .ct-hero h1,
    .home-hero h1,
    .hero-content h1 {
        max-width: 650px;
        font-size: clamp(3.2rem, 4vw, 4.45rem);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .ct-hero__lead,
    .ct-hero__content > p:not(.ct-eyebrow):not(.eyebrow),
    .home-hero__content > p:not(.eyebrow),
    .hero-content > p:not(.eyebrow) {
        max-width: 620px;
        line-height: 1.72;
    }

    .ct-hero__card,
    .home-hero__card,
    .hero-card {
        padding: 34px;
        justify-content: center;
        min-height: 100%;
    }

    .ct-hero__card h2,
    .home-hero__card h2,
    .hero-card h2 {
        max-width: 460px;
        font-size: clamp(1.9rem, 2.25vw, 2.45rem);
        line-height: 1.12;
        letter-spacing: -0.025em;
    }

    .ct-hero__card p,
    .home-hero__card p,
    .hero-card p {
        max-width: 460px;
        line-height: 1.62;
    }

    .ct-hero-panel__footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 899px) {
    .ct-hero__card {
        padding: 28px;
        gap: 16px;
    }

    .ct-hero__card h2 {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
        line-height: 1.12;
        letter-spacing: -0.025em;
    }

    .ct-hero-panel__step {
        padding: 14px 15px;
        border-radius: 16px;
    }

    .ct-hero-panel__footer {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .ct-hero__card {
        padding: 24px;
        border-radius: 26px;
    }

    .ct-hero-panel__step p {
        font-size: .92rem;
    }
}

/* =========================================================
   ChiTerapi 2026 - Homepage V2.3 Hero Micro-Polish
   Focus: compact mobile consultation panel, subtle desktop balance
   ========================================================= */

.ct-hero-panel__footer {
    align-items: center;
}

.ct-hero-panel__footer span {
    display: inline-flex;
    align-items: center;
}

@media (min-width: 900px) {
    .ct-hero__card,
    .home-hero__card,
    .hero-card {
        gap: 16px;
        padding: 32px;
    }

    .ct-hero-panel__steps {
        gap: 10px;
    }

    .ct-hero-panel__step {
        padding: 15px 16px;
    }

    .ct-hero-panel__footer {
        padding-top: 12px;
    }
}

@media (max-width: 899px) {
    .ct-hero__card {
        padding: 24px;
        gap: 13px;
    }

    .ct-hero__card h2 {
        font-size: clamp(1.58rem, 6.2vw, 2.05rem);
        line-height: 1.15;
    }

    .ct-hero-panel__intro h2 {
        margin-bottom: .65rem;
    }

    .ct-hero-panel__intro p,
    .ct-hero__card p {
        line-height: 1.56;
    }

    .ct-hero-panel__steps {
        gap: 9px;
    }

    .ct-hero-panel__step {
        padding: 12px 13px;
        border-radius: 14px;
    }

    .ct-hero-panel__step h3 {
        margin-bottom: .2rem;
        font-size: .96rem;
    }

    .ct-hero-panel__step p {
        font-size: .9rem;
        line-height: 1.45;
    }

    .ct-hero-panel__footer {
        gap: 5px;
        padding-top: 10px;
    }

    .ct-hero-panel__footer span {
        font-size: .84rem;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .ct-hero__card {
        padding: 22px;
        gap: 12px;
    }

    .ct-hero-panel__step {
        padding: 11px 12px;
    }
}

/* =========================================================
   ChiTerapi 2026 - Homepage Hero V2.4 Calm Premium Polish
   Focus: mobile readability, CTA clarity, consultation card balance
   ========================================================= */

.ct-hero {
    padding-top: clamp(32px, 6vw, 72px);
    padding-bottom: clamp(34px, 6vw, 70px);
    background:
        linear-gradient(180deg, #f8fbff 0%, var(--ct-bg) 64%, #ffffff 100%);
}

.ct-hero__grid {
    gap: clamp(18px, 3.4vw, 42px);
}

.ct-hero__content {
    padding: clamp(28px, 5vw, 56px);
    border-color: rgba(0, 74, 173, .11);
    box-shadow: 0 20px 54px rgba(13, 45, 92, .09);
}

.ct-hero .ct-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: .46rem .72rem;
    border: 1px solid rgba(0, 74, 173, .12);
    border-radius: 999px;
    background: rgba(0, 74, 173, .055);
    letter-spacing: .075em;
}

.ct-hero h1 {
    max-width: 690px;
    margin-bottom: 1rem;
    color: var(--ct-blue-dark);
}

.ct-hero__lead {
    color: #40516f;
    line-height: 1.68;
}

.ct-hero .ct-actions {
    margin-top: clamp(1.2rem, 2.5vw, 1.7rem);
    gap: .72rem;
}

.ct-hero .ct-button {
    min-height: 52px;
    padding: .92rem 1.28rem;
    border: 1px solid transparent;
    box-shadow: none;
}

.ct-hero .ct-button--primary {
    background: linear-gradient(180deg, #0b5bd3 0%, var(--ct-blue) 100%);
    box-shadow: 0 14px 30px rgba(0, 74, 173, .24);
}

.ct-hero .ct-button--secondary {
    background: #ffffff;
    border-color: rgba(0, 74, 173, .15);
    color: var(--ct-blue-dark);
}

.ct-hero__facts {
    gap: .55rem;
    margin-top: 1.25rem;
}

.ct-hero__facts li {
    background: #ffffff;
    border-color: rgba(0, 74, 173, .12);
    color: #203656;
    font-size: .9rem;
}

.ct-hero__card {
    border-color: rgba(255, 255, 255, .26);
    background:
        linear-gradient(160deg, #004aad 0%, #06306b 100%);
    box-shadow: 0 22px 56px rgba(0, 47, 110, .20);
}

.ct-hero-panel__step {
    background: rgba(255, 255, 255, .105);
}

.ct-hero-panel__link {
    text-decoration-color: rgba(255, 255, 255, .55);
}

@media (min-width: 900px) {
    .ct-hero__grid {
        grid-template-columns: minmax(0, 1.06fr) minmax(360px, .82fr);
        align-items: center;
    }

    .ct-hero__content {
        min-height: 0;
    }

    .ct-hero__card {
        align-self: center;
    }
}

@media (max-width: 899px) {
    .ct-hero {
        padding-top: 28px;
        padding-bottom: 32px;
    }

    .ct-hero__content {
        padding: 26px 22px;
        border-radius: 26px;
    }

    .ct-hero h1 {
        font-size: clamp(2.25rem, 10.5vw, 3.1rem);
        line-height: 1.05;
        letter-spacing: -0.035em;
    }

    .ct-hero__lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ct-hero .ct-button {
        flex: 1 1 180px;
    }

    .ct-hero__facts {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ct-hero {
        padding-top: 22px;
    }

    .ct-hero__content,
    .ct-hero__card {
        border-radius: 24px;
    }

    .ct-hero .ct-eyebrow {
        font-size: .7rem;
        line-height: 1.25;
    }

    .ct-hero .ct-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ct-hero .ct-button {
        width: 100%;
        min-height: 48px;
    }
}

/* =========================================================
   14. Footer/final CTA polish history
   Late override block - do not reorder without visual QA.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 - Homepage Bottom + Footer V2 Premium Polish
   Focus: compact final CTA, integrated medical note, structured footer
   ========================================================= */

.ct-button--ghost-light {
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .1);
    color: #ffffff;
    box-shadow: none;
}

.ct-button--ghost-light:hover,
.ct-button--ghost-light:focus {
    background: rgba(255, 255, 255, .16);
}

.ct-final-cta {
    padding: 42px 0 34px;
    text-align: left;
    background:
        linear-gradient(180deg, var(--ct-bg) 0%, #edf3ff 18%, #061833 100%);
}

.ct-final-cta__grid {
    display: grid;
    gap: 14px;
}

.ct-final-cta__panel,
.ct-final-cta .ct-disclaimer {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 28px;
    box-shadow: 0 20px 54px rgba(0, 20, 55, .22);
}

.ct-final-cta__panel {
    padding: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .18), transparent 24%),
        linear-gradient(145deg, var(--ct-blue), var(--ct-blue-dark));
}

.ct-final-cta__panel .ct-eyebrow {
    color: rgba(255, 255, 255, .82);
}

.ct-final-cta__panel h2 {
    max-width: 620px;
    margin-bottom: .75rem;
    color: #ffffff;
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ct-final-cta__panel p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
}

.ct-final-cta__panel .ct-actions {
    margin-top: 1.35rem;
}

.ct-final-cta .ct-disclaimer {
    padding: 22px;
    background: rgba(255, 255, 255, .94);
    color: var(--ct-text);
}

.ct-final-cta .ct-disclaimer h2 {
    margin: 0 0 .45rem;
    color: var(--ct-blue-dark);
    font-size: 1.02rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.ct-final-cta .ct-disclaimer p {
    max-width: none;
    margin: 0;
    color: var(--ct-muted);
    font-size: .94rem;
    line-height: 1.62;
}

.site-footer {
    padding: 34px 0 22px;
    background:
        linear-gradient(180deg, #061833 0%, #041226 100%);
    color: #ffffff;
}

.site-footer__inner {
    display: block;
}

.site-footer__top {
    display: grid;
    gap: 22px;
}

.site-footer__brand {
    max-width: none;
    margin-bottom: 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .045);
}

.site-footer__logo {
    display: inline-flex;
    margin-bottom: .75rem;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
}

.site-footer p,
.site-footer address {
    margin: 0 0 .8rem;
    color: rgba(255, 255, 255, .74);
    font-style: normal;
    line-height: 1.58;
}

.site-footer p:last-child,
.site-footer address:last-child {
    margin-bottom: 0;
}

.site-footer a {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, .38);
    text-underline-offset: 4px;
}

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: .35rem;
    padding: .78rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--ct-blue);
    font-weight: 850;
    text-decoration: none;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 0;
    border-top: 0;
}

.site-footer__grid > section,
.site-footer__grid > nav {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .035);
}

.site-footer h2 {
    max-width: none;
    margin: 0 0 .7rem;
    color: rgba(255, 255, 255, .96);
    font-size: .88rem;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer strong {
    color: rgba(255, 255, 255, .94);
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .42rem .9rem;
}

.site-footer__links a {
    display: inline-flex;
    padding: .12rem 0;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.site-footer__bottom {
    display: grid;
    gap: .25rem;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .9rem;
}

@media (min-width: 760px) {
    .ct-final-cta__grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
        align-items: stretch;
    }

    .ct-final-cta .ct-disclaimer {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .site-footer__top {
        grid-template-columns: minmax(260px, .85fr) minmax(0, 1.5fr);
        align-items: stretch;
    }

    .site-footer__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(170px, .62fr) minmax(220px, .8fr);
    }

    .site-footer__links {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

@media (min-width: 900px) {
    .ct-final-cta {
        padding-top: 48px;
        padding-bottom: 38px;
    }

    .ct-final-cta__panel {
        padding: 32px;
    }

    .ct-final-cta__panel h2 {
        font-size: clamp(2.15rem, 3vw, 3.05rem);
    }

    .ct-final-cta .ct-disclaimer {
        padding: 24px;
    }

    .site-footer {
        padding-top: 38px;
    }
}

@media (max-width: 560px) {
    .ct-final-cta {
        padding-top: 34px;
    }

    .ct-final-cta__panel,
    .ct-final-cta .ct-disclaimer {
        border-radius: 24px;
    }

    .ct-final-cta__panel {
        padding: 24px;
    }

    .ct-final-cta .ct-disclaimer {
        padding: 18px;
    }

    .site-footer__links {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ChiTerapi 2026 - Footer V2.1 CTA/Button and Color Correction
   Focus: visible footer CTA, refined navy, compact contrast
   ========================================================= */

.site-footer {
    padding: 30px 0 18px;
    background:
        radial-gradient(circle at 18% 0%, rgba(0, 74, 173, .28), transparent 32%),
        radial-gradient(circle at 92% 18%, rgba(31, 107, 214, .16), transparent 30%),
        linear-gradient(180deg, #071f45 0%, #051832 48%, #031126 100%);
}

.site-footer__top {
    gap: 18px;
}

.site-footer__brand,
.site-footer__grid > section,
.site-footer__grid > nav {
    border-color: rgba(186, 211, 255, .16);
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

.site-footer__brand {
    padding: 20px;
}

.site-footer__grid {
    gap: 16px;
}

.site-footer__grid > section,
.site-footer__grid > nav {
    padding: 16px;
}

.site-footer a {
    color: rgba(255, 255, 255, .9);
}

.site-footer .site-footer__cta,
.ct-final-cta .ct-button--light,
.ct-button--light {
    color: var(--ct-blue);
}

.site-footer .site-footer__cta {
    min-height: 42px;
    margin-top: .25rem;
    padding: .72rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .92);
    box-shadow: 0 12px 28px rgba(0, 74, 173, .2);
    text-decoration: none;
}

.site-footer .site-footer__cta:hover,
.site-footer .site-footer__cta:focus {
    background: #e9f0ff;
    color: var(--ct-blue-dark);
    box-shadow: 0 16px 34px rgba(0, 74, 173, .28);
    transform: translateY(-1px);
}

.site-footer__links a {
    color: rgba(255, 255, 255, .82);
}

.site-footer__bottom {
    margin-top: 18px;
    padding-top: 14px;
}

@media (min-width: 900px) {
    .site-footer {
        padding-top: 32px;
    }
}

@media (max-width: 560px) {
    .site-footer {
        padding-top: 26px;
    }

    .site-footer__brand {
        padding: 18px;
    }

    .site-footer__grid > section,
    .site-footer__grid > nav {
        padding: 15px;
    }
}

/* =========================================================
   15. Homepage vertical rhythm patch
   Late override block - do not reorder without visual QA.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 - Homepage V2.4 Vertical Rhythm
   Focus: tighter middle sections, calmer hierarchy, mobile scan
   ========================================================= */

.ct-home {
    --ct-home-section-y: clamp(46px, 5.6vw, 74px);
    --ct-home-section-y-compact: clamp(38px, 4.8vw, 62px);
    --ct-home-section-y-tight: clamp(32px, 4vw, 52px);
    --ct-home-card-pad: clamp(18px, 2.2vw, 24px);
    --ct-home-grid-gap: clamp(14px, 1.8vw, 20px);
}

.ct-home .ct-section {
    padding-top: var(--ct-home-section-y);
    padding-bottom: var(--ct-home-section-y);
}

.ct-home .ct-section--compact {
    padding-top: var(--ct-home-section-y-compact);
    padding-bottom: var(--ct-home-section-y-compact);
}

.ct-home .ct-section--tight {
    padding-top: var(--ct-home-section-y-tight);
    padding-bottom: var(--ct-home-section-y-tight);
}

.ct-home .ct-section--intro {
    padding-top: clamp(42px, 5vw, 66px);
}

.ct-home .ct-section-head {
    max-width: 700px;
    margin-bottom: clamp(18px, 2.6vw, 30px);
}

.ct-home .ct-section-head p,
.ct-home .ct-prose p {
    font-size: clamp(.98rem, 1vw, 1.04rem);
    line-height: 1.62;
}

.ct-home .ct-section:not(.ct-final-cta) h2 {
    font-size: clamp(1.65rem, 2.7vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.032em;
}

.ct-home .ct-card-grid,
.ct-home .ct-card-grid--services,
.ct-home .ct-steps,
.ct-home .ct-check-list {
    gap: var(--ct-home-grid-gap);
}

.ct-home .ct-mini-card,
.ct-home .ct-service-card,
.ct-home .ct-post-card,
.ct-home .ct-steps article,
.ct-home .ct-check-list article {
    border-radius: 20px;
    padding: var(--ct-home-card-pad);
}

.ct-home .ct-service-card {
    min-height: 188px;
    gap: .45rem;
}

.ct-home .ct-service-card h3,
.ct-home .ct-post-card h3,
.ct-home .ct-steps h3,
.ct-home .ct-check-list h3 {
    margin-bottom: .45rem;
    font-size: 1.04rem;
    line-height: 1.22;
    letter-spacing: -0.012em;
}

.ct-home .ct-service-card p,
.ct-home .ct-post-card p,
.ct-home .ct-steps p,
.ct-home .ct-check-list p {
    margin-bottom: .75rem;
    font-size: .92rem;
    line-height: 1.55;
}

.ct-home .ct-service-card p {
    flex: 1;
}

.ct-home .ct-service-card a,
.ct-home .ct-post-card a {
    padding-top: .15rem;
    line-height: 1.25;
}

.ct-home .ct-pill-grid {
    gap: .55rem;
}

.ct-home .ct-pill-grid span {
    padding: .45rem .72rem;
    font-size: .9rem;
    line-height: 1.25;
}

.ct-home .ct-services-support {
    display: grid;
    gap: clamp(14px, 2vw, 22px);
    margin-top: clamp(20px, 3vw, 34px);
    padding: clamp(18px, 2.8vw, 28px);
    border: 1px solid rgba(0, 74, 173, .10);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(244, 246, 252, .90));
    box-shadow: 0 12px 34px rgba(13, 45, 92, .07);
}

.ct-home .ct-services-support .ct-eyebrow {
    margin-bottom: .35rem;
}

.ct-home .ct-services-support h3 {
    margin: 0;
    color: #071f45;
    font-size: clamp(1.08rem, 1.7vw, 1.38rem);
    line-height: 1.18;
}

.ct-home .ct-feature-panel {
    padding: clamp(22px, 3.3vw, 38px);
    border-radius: 24px;
}

.ct-home .ct-check-list {
    gap: 12px;
}

.ct-home .ct-practitioner {
    gap: clamp(20px, 3.2vw, 38px);
    align-items: center;
}

.ct-home .ct-practitioner-label {
    margin-bottom: clamp(12px, 2vw, 18px);
}

.ct-home .ct-practitioner-label .ct-eyebrow {
    margin-bottom: 0;
}

.ct-home .ct-practitioner-support {
    margin-top: clamp(18px, 3vw, 32px);
}

.ct-home .ct-practitioner-support .ct-team-mini-card {
    margin-top: 0;
}

.ct-home .ct-avatar-card {
    min-height: clamp(220px, 27vw, 300px);
    border-radius: 26px;
}

.ct-home .ct-avatar-card__mark {
    width: clamp(104px, 12vw, 132px);
    height: clamp(104px, 12vw, 132px);
    border-radius: 34px;
    font-size: clamp(3.5rem, 6vw, 4.4rem);
}

.ct-home .ct-avatar-card__image {
    min-height: clamp(220px, 27vw, 300px);
}

.ct-home .ct-team-mini-card {
    display: grid;
    gap: 0;
    max-width: 360px;
    margin-top: 24px;
    border: 1px solid rgba(0, 74, 173, .10);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 246, 252, .92));
    box-shadow: 0 14px 36px rgba(13, 45, 92, .08);
    overflow: hidden;
}

.ct-home .ct-team-mini-card__media {
    margin: 0;
    aspect-ratio: 4 / 3.8;
    background: #e9effc;
}

.ct-home .ct-team-mini-card__image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center 34%;
}

.ct-home .ct-team-mini-card__content {
    padding: 18px;
}

.ct-home .ct-team-mini-card h3 {
    margin-bottom: .25rem;
    color: #071f45;
    font-size: 1.22rem;
}

.ct-home .ct-team-mini-card p {
    margin-bottom: .45rem;
    line-height: 1.5;
}

.ct-home .ct-team-mini-card p:last-child {
    margin-bottom: 0;
}

.ct-home .ct-team-mini-card__role {
    color: rgba(7, 31, 69, .78);
    font-weight: 850;
    line-height: 1.35;
}

.ct-home .ct-team-mini-card__tags {
    color: var(--ct-blue);
    font-size: .9rem;
    font-weight: 800;
}

.ct-home .ct-team-mini-card__languages {
    display: grid;
    gap: 3px;
    margin: .7rem 0 .8rem;
    padding: .72rem .85rem;
    border: 1px solid rgba(0, 74, 173, .10);
    border-radius: 16px;
    background: rgba(244, 246, 252, .72);
}

.ct-home .ct-team-mini-card__languages span {
    color: rgba(7, 31, 69, .62);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ct-home .ct-team-mini-card__languages strong {
    color: #071f45;
    font-size: .9rem;
    line-height: 1.35;
}

.ct-home .ct-section--process .ct-section-head,
.ct-home .ct-section--faq .ct-section-head {
    margin-bottom: 18px;
}

.ct-home .ct-steps span {
    width: 34px;
    height: 34px;
    margin-bottom: .7rem;
    border-radius: 11px;
}

.ct-home .ct-location .ct-split {
    gap: clamp(20px, 3.2vw, 38px);
}

.ct-home .ct-location p {
    line-height: 1.6;
}

.ct-home .ct-contact-card {
    padding: clamp(20px, 3vw, 30px);
    border-radius: 24px;
}

.ct-home .ct-contact-card p {
    margin-bottom: .75rem;
}

.ct-home .ct-contact-card p:last-child {
    margin-bottom: 0;
}

.ct-home .ct-cta-panel {
    padding: clamp(26px, 4vw, 46px);
    border-radius: 26px;
}

.ct-home .ct-section--loyalty {
    position: relative;
    overflow: hidden;
    padding-top: clamp(26px, 3.5vw, 42px);
    padding-bottom: clamp(26px, 3.5vw, 42px);
    background:
        radial-gradient(circle at 88% 18%, rgba(214, 168, 79, .18), transparent 24%),
        linear-gradient(135deg, #fffaf0 0%, #fff3d7 100%);
}

.ct-home .ct-section--loyalty::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(214, 168, 79, .95), rgba(240, 217, 167, .55));
}

.ct-home .ct-loyalty-card {
    position: relative;
    gap: clamp(16px, 2.6vw, 30px);
    align-items: center;
    padding: clamp(18px, 2.6vw, 28px);
    border: 1px solid #f0d9a7;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 247, 230, .84));
    box-shadow: 0 14px 36px rgba(74, 48, 12, .08);
}

.ct-home .ct-loyalty-card > * {
    position: relative;
    z-index: 1;
}

.ct-home .ct-section--loyalty .ct-eyebrow {
    color: #9a6a12;
}

.ct-home .ct-section--loyalty h2 {
    max-width: 560px;
    color: #071c3a;
}

.ct-home .ct-section--loyalty .ct-prose p {
    color: rgba(7, 28, 58, .78);
}

.ct-home .ct-loyalty-rewards {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .85rem;
}

.ct-home .ct-loyalty-rewards span {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    min-height: 34px;
    padding: .38rem .78rem .38rem .48rem;
    border: 1px solid rgba(214, 168, 79, .35);
    border-radius: 999px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 247, 230, .78));
    color: #071c3a;
    font-size: .84rem;
    font-weight: 850;
    line-height: 1.1;
    box-shadow: 0 8px 18px rgba(74, 48, 12, .06);
}

.ct-home .ct-loyalty-rewards i {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(214, 168, 79, .18);
    border: 1px solid rgba(214, 168, 79, .28);
    font-style: normal;
    flex: 0 0 auto;
}

.ct-home .ct-loyalty-rewards i::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d6a84f;
    box-shadow: 0 0 0 3px rgba(214, 168, 79, .14);
}

.ct-home .ct-loyalty-rewards span:nth-child(2) i {
    background: rgba(0, 74, 173, .10);
    border-color: rgba(0, 74, 173, .18);
}

.ct-home .ct-loyalty-rewards span:nth-child(2) i::before {
    background: #004aad;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, .10);
}

.ct-home .ct-loyalty-rewards span:nth-child(3) i {
    background: rgba(56, 132, 91, .12);
    border-color: rgba(56, 132, 91, .20);
}

.ct-home .ct-loyalty-rewards span:nth-child(3) i::before {
    background: #38845b;
    box-shadow: 0 0 0 3px rgba(56, 132, 91, .11);
}

.ct-home .ct-loyalty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: flex-start;
    margin-top: 1rem;
}

.ct-home .ct-loyalty-actions .ct-button,
.ct-home .ct-loyalty-details summary {
    min-height: 42px;
    padding: .72rem 1rem;
}

.ct-home .ct-loyalty-details {
    flex: 1 1 210px;
    min-width: min(100%, 210px);
}

.ct-home .ct-loyalty-details summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    width: 100%;
    border: 1px solid rgba(0, 74, 173, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--ct-blue);
    cursor: pointer;
    font-weight: 850;
    line-height: 1;
    list-style: none;
}

.ct-home .ct-loyalty-details summary::-webkit-details-marker {
    display: none;
}

.ct-home .ct-loyalty-details summary:focus-visible {
    outline: 3px solid rgba(0, 74, 173, .22);
    outline-offset: 3px;
}

.ct-home .ct-loyalty-details p {
    margin: .75rem 0 0;
    padding: .95rem 1rem;
    border: 1px solid rgba(214, 168, 79, .24);
    border-radius: 18px;
    background: rgba(255, 255, 255, .70);
    color: rgba(7, 28, 58, .76);
    font-size: .94rem;
    line-height: 1.58;
}

.ct-home .ct-section-link {
    margin-top: 1rem;
}

.ct-home .ct-faq-wrap {
    max-width: 820px;
}

.ct-home .ct-faq-list {
    gap: .6rem;
}

.ct-home .ct-faq-list details {
    border-radius: 18px;
    padding: .9rem 1rem;
}

.ct-home .ct-faq-list summary {
    line-height: 1.35;
}

.ct-home .ct-faq-list details p {
    margin-top: .65rem;
    line-height: 1.55;
}

@media (min-width: 981px) {
    .ct-home .ct-section--services .ct-card-grid--services {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ct-home .ct-services-support {
        grid-template-columns: minmax(210px, .42fr) minmax(0, 1fr);
        align-items: center;
    }

    .ct-home .ct-section--process .ct-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ct-home .ct-section--practitioner .ct-practitioner {
        grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
    }

    .ct-home .ct-section--practitioner .ct-avatar-card {
        width: min(100%, 370px);
        justify-self: end;
        min-height: 270px;
    }

    .ct-home .ct-section--practitioner .ct-avatar-card__image {
        min-height: 270px;
    }

    .ct-home .ct-practitioner-support {
        display: flex;
        justify-content: center;
    }

    .ct-home .ct-practitioner-support .ct-team-mini-card {
        width: min(100%, 760px);
        max-width: 760px;
        grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .ct-home .ct-practitioner-support .ct-team-mini-card__media {
        aspect-ratio: auto;
        min-height: 270px;
    }

    .ct-home .ct-practitioner-support .ct-team-mini-card__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: clamp(22px, 3vw, 34px);
    }
}

@media (max-width: 980px) {
    .ct-home {
        --ct-home-section-y: clamp(38px, 7vw, 54px);
        --ct-home-section-y-compact: clamp(32px, 6vw, 46px);
        --ct-home-section-y-tight: clamp(28px, 5.2vw, 40px);
        --ct-home-card-pad: 17px;
        --ct-home-grid-gap: 12px;
    }

    .ct-home .ct-section:not(.ct-final-cta) h2 {
        font-size: clamp(1.45rem, 6vw, 2rem);
        letter-spacing: -0.025em;
    }

    .ct-home .ct-section-head {
        margin-bottom: 16px;
    }

    .ct-home .ct-service-card {
        min-height: 0;
    }

    .ct-home .ct-avatar-card {
        min-height: 188px;
    }

    .ct-home .ct-avatar-card__image {
        min-height: 188px;
    }
}

@media (max-width: 560px) {
    .ct-home {
        --ct-home-section-y: 36px;
        --ct-home-section-y-compact: 30px;
        --ct-home-section-y-tight: 26px;
        --ct-home-card-pad: 15px;
    }

    .ct-home .ct-section--intro {
        padding-top: 32px;
    }

    .ct-home .ct-section-head p,
    .ct-home .ct-prose p,
    .ct-home .ct-location p {
        font-size: .96rem;
        line-height: 1.55;
    }

    .ct-home .ct-pill-grid {
        gap: .45rem;
    }

    .ct-home .ct-pill-grid span {
        padding: .4rem .62rem;
        font-size: .86rem;
    }

    .ct-home .ct-services-support {
        margin-top: 18px;
        padding: 16px;
        border-radius: 22px;
    }

    .ct-home .ct-loyalty-card {
        padding: 16px;
        border-radius: 22px;
    }

    .ct-home .ct-loyalty-rewards {
        margin-top: .7rem;
        gap: .38rem;
    }

    .ct-home .ct-loyalty-rewards span {
        min-height: 30px;
        padding: .34rem .62rem;
        font-size: .8rem;
    }

    .ct-home .ct-loyalty-rewards i {
        width: 18px;
        height: 18px;
    }

    .ct-home .ct-loyalty-actions {
        display: grid;
        gap: .55rem;
        margin-top: .85rem;
    }

    .ct-home .ct-loyalty-actions .ct-button,
    .ct-home .ct-loyalty-details summary {
        width: 100%;
        min-height: 40px;
    }

    .ct-home .ct-loyalty-details p {
        padding: .85rem;
        font-size: .9rem;
    }

    .ct-home .ct-feature-panel,
    .ct-home .ct-contact-card,
    .ct-home .ct-cta-panel,
    .ct-home .ct-avatar-card,
    .ct-home .ct-team-mini-card {
        border-radius: 22px;
    }

    .ct-home .ct-team-mini-card {
        max-width: none;
        margin-top: 18px;
    }

    .ct-home .ct-team-mini-card__media {
        aspect-ratio: 4 / 3.45;
    }

    .ct-home .ct-team-mini-card__content {
        padding: 16px;
    }

    .ct-home .ct-actions {
        margin-top: 1.1rem;
        gap: .65rem;
    }

    .ct-home .ct-button {
        min-height: 46px;
        padding: .78rem 1rem;
    }

    .ct-home .ct-faq-list details {
        padding: .8rem .9rem;
    }
}

@media (max-width: 560px) {
    .ct-home .ct-hero .ct-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 1.15rem;
        gap: .7rem;
    }

    .ct-home .ct-hero .ct-button {
        width: 100%;
        min-height: 48px;
        padding: .84rem 1rem;
    }
}

/* =========================================================
   16. Mobile header/menu polish
   Late override block - do not reorder without visual QA.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 - Mobile Header V1 Premium Polish
   Focus: brand balance, tap comfort, compact menu panel
   ========================================================= */

@media (max-width: 760px) {
    .site-header {
        background: rgba(255, 255, 255, .94);
        border-bottom-color: rgba(0, 74, 173, .10);
        box-shadow: 0 10px 28px rgba(13, 45, 92, .055);
    }

    .site-header__inner {
        width: min(var(--ct-container), calc(100% - 24px));
        min-height: 64px;
        gap: .7rem;
    }

    .site-logo {
        min-width: 0;
        gap: .58rem;
        font-size: 1.08rem;
        letter-spacing: -0.025em;
    }

    .site-logo__image {
        width: 48px;
        max-height: 48px;
    }

    .site-logo__mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
        box-shadow: 0 10px 22px rgba(0, 74, 173, .20);
    }

    .site-logo__text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
        flex-shrink: 0;
        gap: .45rem;
        padding: .68rem .88rem;
        border: 1px solid rgba(0, 74, 173, .16);
        background: #ffffff;
        color: var(--ct-blue);
        box-shadow: 0 8px 20px rgba(0, 74, 173, .12);
        transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .nav-toggle:hover,
    .nav-toggle:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 74, 173, .12), 0 8px 20px rgba(0, 74, 173, .12);
    }

    .nav-toggle[aria-expanded="true"] {
        background: var(--ct-blue);
        color: #ffffff;
        box-shadow: 0 12px 26px rgba(0, 74, 173, .22);
    }

    .nav-toggle__text {
        font-size: .92rem;
        line-height: 1;
    }

    .site-nav {
        inset: calc(100% + 8px) 12px auto 12px;
        max-width: calc(100vw - 24px);
        padding: .55rem;
        border-color: rgba(0, 74, 173, .12);
        border-radius: 20px;
        box-shadow: 0 18px 46px rgba(13, 45, 92, .16);
    }

    .site-nav__list {
        gap: .32rem;
    }

    .site-nav__list a {
        min-height: 46px;
        padding: .78rem .9rem;
        border-radius: 15px;
        font-size: .96rem;
        line-height: 1.2;
    }

    .site-nav__list a:hover,
    .site-nav__list a:focus,
    .site-nav__list .current-menu-item > a {
        background: var(--ct-blue-soft);
        color: var(--ct-blue);
    }

    .site-nav__list a::after {
        display: none;
    }
}

@media (max-width: 380px) {
    .nav-toggle__text {
        display: none;
    }

    .nav-toggle {
        padding-inline: .75rem;
    }
}

/* =========================================================
   ChiTerapi 2026 - Final CTA + Footer V2.2 Premium Polish
   Focus: calmer transition, stronger hierarchy, mobile readability
   ========================================================= */

.ct-final-cta {
    padding-top: clamp(30px, 4.6vw, 52px);
    padding-bottom: 0;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--ct-bg) 24%, #08224a 100%);
}

.ct-final-cta__grid {
    gap: clamp(10px, 1.6vw, 16px);
}

.ct-final-cta__panel,
.ct-final-cta .ct-disclaimer {
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 20px 54px rgba(3, 18, 38, .18);
}

.ct-final-cta__panel {
    padding: clamp(22px, 3.2vw, 34px);
    background:
        linear-gradient(145deg, #004aad 0%, #07346f 100%);
}

.ct-final-cta__panel h2 {
    max-width: 680px;
    margin-bottom: .65rem;
    line-height: 1.08;
}

.ct-final-cta__panel p {
    max-width: 640px;
    line-height: 1.55;
}

.ct-final-cta__panel .ct-actions {
    gap: .65rem;
    margin-top: 1.1rem;
}

.ct-final-cta .ct-button {
    min-height: 46px;
    padding: .78rem 1.05rem;
}

.ct-final-cta .ct-button--light {
    box-shadow: 0 14px 30px rgba(0, 26, 70, .22);
}

.ct-final-cta .ct-disclaimer {
    background: rgba(255, 255, 255, .96);
    border-color: rgba(0, 74, 173, .10);
}

.ct-final-cta .ct-disclaimer h2 {
    margin-bottom: .4rem;
    font-size: .95rem;
}

.ct-final-cta .ct-disclaimer p {
    font-size: .88rem;
    line-height: 1.5;
}

.site-footer {
    padding-top: clamp(24px, 3vw, 36px);
    padding-bottom: 20px;
    background:
        linear-gradient(180deg, #08224a 0%, #041226 100%);
}

.site-footer__top {
    gap: clamp(10px, 1.5vw, 16px);
}

.site-footer__brand,
.site-footer__grid > section,
.site-footer__grid > nav {
    border-color: rgba(211, 226, 255, .16);
    background: rgba(255, 255, 255, .06);
    border-radius: 24px;
}

.site-footer__brand {
    padding: clamp(16px, 2vw, 22px);
}

.site-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: clamp(10px, 1.4vw, 16px);
}

.site-footer__grid > section,
.site-footer__grid > nav {
    padding: clamp(15px, 1.8vw, 19px);
}

.site-footer__logo {
    margin-bottom: .6rem;
    letter-spacing: -0.025em;
}

.site-footer__logo-image {
    width: 76px;
    max-height: 76px;
}

.site-footer p,
.site-footer address {
    color: rgba(255, 255, 255, .76);
    line-height: 1.48;
}

.site-footer__cta {
    min-height: 42px;
    padding: .7rem 1rem;
}

.site-footer h2 {
    margin-bottom: .55rem;
    color: #ffffff;
}

.site-footer__contact-links,
.site-footer__hours,
.site-footer__meta {
    display: grid;
    gap: .45rem;
}

.site-footer__contact-links {
    margin-top: .75rem;
}

.site-footer__contact-links a {
    width: fit-content;
}

.site-footer__hours p {
    display: flex;
    gap: .75rem;
    justify-content: space-between;
    margin: 0;
}

.site-footer__hours span {
    color: rgba(255, 255, 255, .76);
}

.site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .2rem .6rem;
}

.site-footer__links a {
    min-height: 30px;
    align-items: center;
    color: rgba(255, 255, 255, .84);
}

.site-footer a:focus {
    outline: 2px solid rgba(255, 255, 255, .55);
    outline-offset: 3px;
}

.site-footer__bottom {
    margin-top: clamp(12px, 1.5vw, 18px);
    padding-top: 12px;
}

@media (min-width: 900px) {
    .ct-final-cta__grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
        align-items: stretch;
    }

    .site-footer__top {
        grid-template-columns: minmax(240px, .68fr) minmax(0, 1.7fr);
    }
}

@media (max-width: 899px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ct-final-cta {
        padding-top: 26px;
    }

    .ct-final-cta__panel,
    .ct-final-cta .ct-disclaimer,
    .site-footer__brand,
    .site-footer__grid > section,
    .site-footer__grid > nav {
        border-radius: 22px;
    }

    .ct-final-cta__panel {
        padding: 20px;
    }

    .ct-final-cta .ct-disclaimer {
        padding: 17px;
    }

    .ct-final-cta .ct-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ct-final-cta .ct-button {
        width: 100%;
    }

    .site-footer {
        padding-top: 20px;
    }

    .site-footer__brand,
    .site-footer__grid > section,
    .site-footer__grid > nav {
        padding: 15px;
    }

    .site-footer__logo-image {
        width: 68px;
        max-height: 68px;
    }

    .site-footer__links a {
        min-height: 34px;
    }

    .site-footer__bottom {
        gap: .35rem;
        padding-top: 10px;
    }

    .site-footer__hours p {
        display: grid;
        gap: .15rem;
        justify-content: stretch;
    }
}

/* =========================================================
   17. Services page wrapper integration
   Scoped services-page block - keep late for plugin output integration.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 - Services Page Wrapper V1
   Focus: integrate shortcode output without styling plugin internals
   ========================================================= */

.section--services-page {
    padding-top: clamp(24px, 4vw, 46px);
    padding-bottom: clamp(50px, 6vw, 84px);
}

.section--services-page .container--services-page {
    width: min(1180px, calc(100% - 32px));
}

.content-card--services-page {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-block: 0 -18px;
    padding: 0;
}

.content-card--services-page > h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.content-card--services-page .entry-content {
    margin: 0;
}

.content-card--services-page .entry-content > *:first-child {
    margin-top: 0;
}

.content-card--services-page .entry-content > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 900px) {
    .section--services-page {
        padding-top: 42px;
        padding-bottom: 84px;
    }

    .section--services-page .container--services-page {
        width: min(1180px, calc(100% - 64px));
    }

    .content-card--services-page {
        width: min(1180px, 100%);
        margin-block: 0 -28px;
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .section--services-page {
        padding-top: 18px;
        padding-bottom: 50px;
    }

    .content-card--services-page {
        width: 100%;
        margin-block: 0 -20px;
    }
}

/* =========================================================
   18. Loyalty app page wrapper integration
   Scoped loyalty-page block - keeps plugin app output as the focus.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 - Loyalty App Page Wrapper V1
   Focus: remove normal page-card framing without touching loyalty logic
   ========================================================= */

.section--loyalty-app-page {
    padding-top: clamp(18px, 3vw, 34px);
    padding-bottom: clamp(28px, 5vw, 58px);
}

.section--loyalty-app-page .container--loyalty-app-page {
    width: min(1120px, calc(100% - 32px));
}

.content-card--loyalty-app-page {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
}

.content-card--loyalty-app-page > h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.content-card--loyalty-app-page .entry-content {
    margin: 0;
}

.content-card--loyalty-app-page .entry-content > *:first-child {
    margin-top: 0;
}

.content-card--loyalty-app-page .entry-content > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 900px) {
    .section--loyalty-app-page {
        padding-top: 34px;
        padding-bottom: 62px;
    }

    .section--loyalty-app-page .container--loyalty-app-page {
        width: min(1120px, calc(100% - 64px));
    }
}

@media (max-width: 760px) {
    .section--loyalty-app-page {
        padding-top: 14px;
        padding-bottom: 34px;
    }

    .content-card--loyalty-app-page {
        width: 100%;
    }
}

/* =========================================================
   18b. Booking request page wrapper integration
   Scoped booking-page block - lets the shortcode form act as page content.
   ========================================================= */

.section--booking-request-page {
    padding-top: clamp(28px, 4vw, 52px);
    padding-bottom: clamp(48px, 6vw, 84px);
}

.section--booking-request-page .container--booking-request-page {
    width: min(980px, calc(100% - 32px));
}

.content-card--booking-request-page {
    padding: clamp(16px, 3vw, 28px);
}

.content-card--booking-request-page > h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.content-card--booking-request-page .entry-content {
    margin: 0;
}

.content-card--booking-request-page .entry-content > *:first-child {
    margin-top: 0;
}

.content-card--booking-request-page .entry-content > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 900px) {
    .section--booking-request-page {
        padding-top: 44px;
        padding-bottom: 86px;
    }

    .section--booking-request-page .container--booking-request-page {
        width: min(980px, calc(100% - 64px));
    }
}

@media (max-width: 760px) {
    .section--booking-request-page {
        padding-top: 20px;
        padding-bottom: 54px;
    }

    .content-card--booking-request-page {
        padding: 12px;
    }
}

/* =========================================================
   19. Services plugin-output scoped polish
   Scoped services-page block - keep late for plugin output integration.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 - Services Page Polish V1
   Focus: scoped visual refinement for plugin output
   ========================================================= */

.content-card--services-page .chiterapi-services {
    background:
        linear-gradient(180deg, #f7f9ff 0%, #f4f6fc 44%, #ffffff 100%);
    overflow-x: clip;
    padding-top: clamp(14px, 2.4vw, 30px);
    padding-bottom: clamp(42px, 5vw, 72px);
}

.content-card--services-page .chiterapi-services__container {
    max-width: 1180px;
    padding-top: 0;
    padding-bottom: clamp(46px, 6vw, 78px);
}

.content-card--services-page .chiterapi-services__hero {
    gap: clamp(22px, 4vw, 42px);
    margin-bottom: clamp(28px, 5vw, 54px);
    padding: clamp(26px, 5vw, 52px);
    border-color: rgba(0, 74, 173, .12);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98) 0%, rgba(244, 246, 252, .94) 56%, rgba(234, 242, 255, .96) 100%);
    box-shadow: 0 24px 70px rgba(13, 45, 92, .12);
}

.content-card--services-page .chiterapi-services__hero h2 {
    max-width: 780px;
    margin-bottom: .9rem;
    color: #071f45;
    font-size: clamp(2.05rem, 4.3vw, 4.35rem);
    line-height: 1.04;
}

.content-card--services-page .chiterapi-services__subtitle {
    max-width: 680px;
    color: rgba(7, 31, 69, .74);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.72;
}

.content-card--services-page .chiterapi-services__hero-action {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: clamp(20px, 3vw, 28px);
    border-color: rgba(0, 74, 173, .13);
    border-radius: 24px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 42px rgba(13, 45, 92, .08);
}

.content-card--services-page .chiterapi-services__hero-action p {
    margin-bottom: 0;
    color: rgba(7, 31, 69, .78);
    line-height: 1.64;
}

.content-card--services-page .chiterapi-services__filters {
    gap: 10px;
    margin-bottom: clamp(24px, 4vw, 42px);
    padding-bottom: 4px;
}

.content-card--services-page .chiterapi-services__filter {
    min-height: 44px;
    padding: .72rem 1.08rem;
    border-color: rgba(0, 74, 173, .12);
    background: rgba(255, 255, 255, .84);
    color: rgba(7, 31, 69, .76);
    box-shadow: 0 8px 20px rgba(13, 45, 92, .055);
}

.content-card--services-page .chiterapi-services__filter.is-active {
    background: #004aad;
    border-color: #004aad;
    box-shadow: 0 14px 30px rgba(0, 74, 173, .20);
}

.content-card--services-page .chiterapi-services__grid {
    gap: clamp(18px, 2.4vw, 28px);
}

.content-card--services-page .chiterapi-service-card {
    min-height: auto;
    padding: clamp(24px, 3vw, 34px);
    border-color: rgba(0, 74, 173, .10);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, rgba(250, 252, 255, .98) 100%);
    box-shadow: 0 18px 48px rgba(13, 45, 92, .085);
}

.content-card--services-page .chiterapi-service-card:hover {
    border-color: rgba(0, 74, 173, .16);
    box-shadow: 0 24px 62px rgba(13, 45, 92, .12);
}

.content-card--services-page .chiterapi-service-card::before {
    left: clamp(24px, 3vw, 34px);
    right: clamp(24px, 3vw, 34px);
    height: 2px;
    opacity: .78;
}

.content-card--services-page .chiterapi-service-card__category {
    border-color: rgba(0, 74, 173, .14);
    background: rgba(244, 246, 252, .86);
    color: #004aad;
}

.content-card--services-page .chiterapi-service-card h3 {
    margin-bottom: .72rem;
    color: #071f45;
    font-size: clamp(1.32rem, 1.9vw, 1.72rem);
    line-height: 1.16;
}

.content-card--services-page .chiterapi-service-card__description {
    color: rgba(7, 31, 69, .70);
    font-size: clamp(.98rem, 1.25vw, 1.06rem);
    line-height: 1.7;
}

.content-card--services-page .chiterapi-service-card__tags {
    gap: 8px;
    margin-top: 1.15rem;
}

.content-card--services-page .chiterapi-service-card__tags span {
    padding: .42rem .68rem;
    border-color: rgba(0, 74, 173, .10);
    background: rgba(244, 246, 252, .72);
    color: rgba(7, 31, 69, .72);
}

.content-card--services-page .chiterapi-service-card__actions {
    gap: 11px;
    margin-top: 1.35rem;
}

.content-card--services-page .chiterapi-services__button {
    min-height: 48px;
    padding: .86rem 1.05rem;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(0, 74, 173, .18);
}

.content-card--services-page .chiterapi-services__button--secondary {
    background: rgba(255, 255, 255, .82);
    box-shadow: none;
}

.content-card--services-page .chiterapi-services-modal {
    padding: 18px;
}

.content-card--services-page .chiterapi-services-modal__panel {
    border-color: rgba(0, 74, 173, .14);
    border-radius: 28px;
    box-shadow: 0 30px 84px rgba(4, 18, 38, .24);
}

.content-card--services-page .chiterapi-services-modal__detail {
    color: rgba(7, 31, 69, .74);
    line-height: 1.72;
}

.content-card--services-page .chiterapi-services-modal__close {
    min-width: 44px;
    min-height: 44px;
}

@media (min-width: 700px) {
    .content-card--services-page .chiterapi-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1060px) {
    .content-card--services-page .chiterapi-services__hero {
        grid-template-columns: minmax(0, 1.35fr) minmax(300px, .72fr);
    }

    .content-card--services-page .chiterapi-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .content-card--services-page .chiterapi-services {
        padding-top: 12px;
        padding-bottom: 44px;
    }

    .content-card--services-page .chiterapi-services__container {
        padding-top: 0;
        padding-bottom: 46px;
    }

    .content-card--services-page .chiterapi-services__hero {
        margin-bottom: 26px;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .content-card--services-page .chiterapi-services__hero h2 {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .content-card--services-page .chiterapi-services__hero-action {
        padding: 18px;
        border-radius: 20px;
    }

    .content-card--services-page .chiterapi-services__filters {
        margin-right: -18px;
        margin-left: -18px;
        padding-inline: 18px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .content-card--services-page .chiterapi-services__filters::-webkit-scrollbar {
        display: none;
    }

    .content-card--services-page .chiterapi-services__filter {
        flex: 0 0 auto;
        min-height: 46px;
    }

    .content-card--services-page .chiterapi-service-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .content-card--services-page .chiterapi-service-card::before {
        left: 20px;
        right: 20px;
    }

    .content-card--services-page .chiterapi-service-card__actions {
        margin-top: 1.2rem;
    }

    .content-card--services-page .chiterapi-services__button {
        width: 100%;
        min-height: 50px;
    }

    .content-card--services-page .chiterapi-services-modal {
        padding: 12px;
    }

    .content-card--services-page .chiterapi-services-modal__panel {
        max-height: calc(100vh - 24px);
        padding: 24px 20px;
        border-radius: 24px;
    }
}

/* =========================================================
   20. About and Contact final polish
   Late scoped polish block - do not reorder without visual QA.
   ========================================================= */

/* =========================================================
   ChiTerapi 2026 - About & Contact Polish V1
   Focus: scoped page refinement, mobile rhythm, contact clarity
   ========================================================= */

.about-page,
.contact-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 74, 173, .075), transparent 30%),
        radial-gradient(circle at 92% 7%, rgba(0, 74, 173, .085), transparent 28%),
        linear-gradient(180deg, #f7f9ff 0%, #f4f6fc 48%, #ffffff 100%);
}

.about-page .about-hero,
.contact-page .contact-hero {
    padding-top: clamp(34px, 5.5vw, 72px);
    padding-bottom: clamp(36px, 5.5vw, 74px);
}

.about-page .about-section,
.contact-page .contact-section {
    padding-top: clamp(42px, 5.5vw, 72px);
    padding-bottom: clamp(42px, 5.5vw, 72px);
}

.about-page .about-section--soft,
.contact-page .contact-section--soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .54), rgba(244, 246, 252, .58));
}

.about-page .about-hero__grid,
.about-page .about-split,
.contact-page .contact-hero__grid,
.contact-page .contact-info-grid,
.contact-page .appointment-panel {
    gap: clamp(18px, 2.6vw, 34px);
}

.about-page .about-hero__content,
.contact-page .contact-hero__content {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 58px);
    border-color: rgba(0, 74, 173, .10);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98) 0%, rgba(244, 246, 252, .94) 100%);
    box-shadow: 0 22px 62px rgba(13, 45, 92, .11);
}

.about-page .about-hero__content::after,
.contact-page .contact-hero__content::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -96px;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    background: rgba(0, 74, 173, .055);
    pointer-events: none;
}

.about-page .about-hero__content > *,
.contact-page .contact-hero__content > * {
    position: relative;
    z-index: 1;
}

.about-page .about-hero__content h1,
.contact-page .contact-hero__content h1 {
    max-width: 760px;
    color: #071f45;
    font-size: clamp(2.28rem, 4.6vw, 4.85rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.about-page .about-lead,
.contact-page .contact-lead {
    max-width: 690px;
    color: rgba(7, 31, 69, .74);
    line-height: 1.74;
}

.about-page .about-hero__card,
.contact-page .contact-card {
    align-self: stretch;
    padding: clamp(22px, 3vw, 30px);
    border-color: rgba(0, 74, 173, .13);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 46px rgba(13, 45, 92, .085);
}

.about-page .about-hero__card h2,
.contact-page .contact-card h2 {
    margin-bottom: .8rem;
    color: #071f45;
}

.about-page .about-hero__card p,
.contact-page .contact-card p {
    line-height: 1.64;
}

.about-page .about-info-card,
.about-page .credential-card,
.about-page .about-practitioner-photo,
.about-page .about-team-card,
.about-page .standards-list div,
.contact-page .contact-method-card,
.contact-page .contact-panel,
.contact-page .appointment-panel,
.contact-page .contact-faq-item {
    border-color: rgba(0, 74, 173, .10);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 38px rgba(13, 45, 92, .075);
}

.about-page .about-info-card,
.about-page .credential-card,
.about-page .about-team-card__content,
.contact-page .contact-method-card,
.contact-page .contact-panel,
.contact-page .contact-faq-item {
    padding: clamp(22px, 2.6vw, 30px);
}

.about-page .credential-card span,
.contact-page .contact-method-card span {
    background: rgba(0, 74, 173, .085);
    color: #004aad;
}

.about-page .about-info-card h3,
.about-page .credential-card h3,
.about-page .about-team-card h3,
.contact-page .contact-method-card h3,
.contact-page .contact-panel h2,
.contact-page .contact-faq-item h3 {
    color: #071f45;
}

.about-page .about-info-card p,
.about-page .credential-card p,
.about-page .about-team-card p,
.contact-page .contact-method-card p,
.contact-page .contact-panel p,
.contact-page .contact-faq-item p {
    color: rgba(7, 31, 69, .70);
    line-height: 1.68;
}

.about-page .medical-note {
    border-color: rgba(0, 74, 173, .16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .97) 0%, rgba(238, 244, 255, .92) 100%);
    box-shadow: 0 18px 48px rgba(13, 45, 92, .09);
}

.about-page .medical-note h2 {
    color: #071f45;
}

.about-page .about-location-panel,
.about-page .about-final-cta .cta-panel,
.contact-page .contact-final-cta .cta-panel {
    border-color: rgba(0, 74, 173, .12);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .97) 0%, rgba(244, 246, 252, .94) 100%);
    box-shadow: 0 20px 54px rgba(13, 45, 92, .10);
}

.contact-page .contact-mini-list a {
    min-height: 46px;
    display: flex;
    align-items: center;
    overflow-wrap: anywhere;
    border: 1px solid rgba(0, 74, 173, .10);
    background: rgba(244, 246, 252, .82);
}

.contact-page .hours-list div,
.contact-page .contact-checklist div {
    align-items: center;
    border-color: rgba(0, 74, 173, .10);
    background: rgba(244, 246, 252, .72);
}

.about-page .about-final-cta,
.contact-page .contact-final-cta {
    padding-top: clamp(34px, 5vw, 64px);
    padding-bottom: clamp(48px, 6vw, 82px);
}

.about-page .hero-actions,
.about-page .location-actions,
.contact-page .hero-actions {
    gap: .75rem;
}

.about-page .button,
.contact-page .button {
    min-height: 50px;
}

@media (min-width: 900px) {
    .about-page .about-hero {
        padding-top: clamp(24px, 3vw, 44px);
        padding-bottom: clamp(34px, 4vw, 62px);
    }

    .about-page .about-hero__grid {
        grid-template-columns: minmax(0, 1.22fr) minmax(310px, .78fr);
    }

    .contact-page .contact-hero__grid {
        grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
    }

    .about-page .about-card-grid,
    .contact-page .contact-method-grid,
    .contact-page .contact-faq-grid {
        gap: 24px;
    }
}

@media (max-width: 760px) {
    .about-page .about-hero,
    .contact-page .contact-hero {
        padding-top: 28px;
        padding-bottom: 34px;
    }

    .about-page .about-section,
    .contact-page .contact-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .about-page .about-hero__content,
    .about-page .about-hero__card,
    .about-page .about-info-card,
    .about-page .credential-card,
    .about-page .about-practitioner-photo,
    .about-page .about-team-card,
    .about-page .standards-list div,
    .about-page .medical-note,
    .about-page .about-location-panel,
    .about-page .about-final-cta .cta-panel,
    .contact-page .contact-hero__content,
    .contact-page .contact-card,
    .contact-page .contact-method-card,
    .contact-page .contact-panel,
    .contact-page .appointment-panel,
    .contact-page .contact-faq-item,
    .contact-page .contact-final-cta .cta-panel {
        border-radius: 22px;
    }

    .about-page .about-hero__content,
    .contact-page .contact-hero__content {
        padding: 26px 22px;
    }

    .about-page .about-hero__content h1,
    .contact-page .contact-hero__content h1 {
        font-size: clamp(2.25rem, 10vw, 3rem);
        letter-spacing: -0.045em;
    }

    .about-page .about-hero__card,
    .contact-page .contact-card,
    .about-page .about-info-card,
    .about-page .credential-card,
    .about-page .about-team-card__content,
    .contact-page .contact-method-card,
    .contact-page .contact-panel,
    .contact-page .contact-faq-item {
        padding: 22px;
    }

    .about-page .about-practitioner-photo img {
        min-height: 260px;
    }

    .about-page .about-team-card__media {
        min-height: 260px;
    }

    .contact-page .hours-list div,
    .contact-page .contact-checklist div {
        display: grid;
        gap: 6px;
        justify-content: stretch;
    }

    .about-page .button,
    .contact-page .button {
        width: 100%;
        min-height: 54px;
    }
}

/* =========================================================
   21. Service detail page template
   Scoped reusable layout for core service child pages.
   ========================================================= */

.service-detail-page {
    background:
        linear-gradient(180deg, #f7f9ff 0%, #ffffff 48%, #f4f6fc 100%);
    overflow-x: clip;
}

.service-detail-page .container {
    width: min(1120px, calc(100% - 32px));
}

.service-detail-hero {
    padding: 26px 0 38px;
}

.service-detail-hero__inner {
    display: grid;
    gap: 18px;
}

.service-detail-back,
.service-detail-inline-link {
    color: #004aad;
    font-weight: 800;
    text-decoration: none;
    text-underline-offset: 4px;
}

.service-detail-back:hover,
.service-detail-back:focus,
.service-detail-inline-link:hover,
.service-detail-inline-link:focus {
    color: #06306b;
    text-decoration: underline;
}

.service-detail-hero__grid {
    display: grid;
    gap: 20px;
}

.service-detail-hero__content,
.service-detail-hero__card,
.service-detail-content,
.service-detail-aside__card,
.service-detail-related__card,
.service-detail-cta__panel {
    border: 1px solid rgba(0, 74, 173, .11);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(13, 45, 92, .08);
}

.service-detail-hero__content {
    padding: 28px 22px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98) 0%, rgba(244, 246, 252, .94) 100%);
}

.service-detail-eyebrow {
    margin: 0 0 .75rem;
    color: #004aad;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-detail-hero__content h1 {
    max-width: 760px;
    margin: 0;
    color: #071f45;
    font-size: 2.35rem;
    line-height: 1.06;
    letter-spacing: 0;
}

.service-detail-lead {
    max-width: 700px;
    margin: 1rem 0 0;
    color: rgba(7, 31, 69, .74);
    font-size: 1.04rem;
    line-height: 1.72;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.35rem;
}

.service-detail-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .86rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
}

.service-detail-button--primary {
    background: #004aad;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 74, 173, .22);
}

.service-detail-button--primary:hover,
.service-detail-button--primary:focus {
    background: #06306b;
    color: #ffffff;
}

.service-detail-button--secondary {
    border-color: rgba(0, 74, 173, .18);
    background: #ffffff;
    color: #004aad;
}

.service-detail-button--secondary:hover,
.service-detail-button--secondary:focus {
    border-color: rgba(0, 74, 173, .32);
    color: #06306b;
}

.service-detail-button:focus-visible,
.service-detail-back:focus-visible,
.service-detail-inline-link:focus-visible,
.service-detail-related__card:focus-visible {
    outline: 3px solid rgba(0, 74, 173, .28);
    outline-offset: 3px;
}

.service-detail-hero__card,
.service-detail-aside__card {
    padding: 22px;
    border-radius: 22px;
}

.service-detail-hero__card h2,
.service-detail-aside__card h2,
.service-detail-section-head h2,
.service-detail-cta__panel h2 {
    margin: 0;
    color: #071f45;
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.service-detail-hero__card p,
.service-detail-aside__card p,
.service-detail-related__card p,
.service-detail-cta__panel p {
    color: rgba(7, 31, 69, .70);
    line-height: 1.68;
}

.service-detail-section {
    padding: 18px 0 40px;
}

.service-detail-layout {
    display: grid;
    gap: 22px;
}

.service-detail-content {
    padding: 24px 22px;
    border-radius: 24px;
}

.service-detail-content__body {
    max-width: 760px;
}

.service-detail-content__body > *:first-child {
    margin-top: 0;
}

.service-detail-content__body > *:last-child {
    margin-bottom: 0;
}

.service-detail-content__body h2,
.service-detail-content__body h3 {
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: #071f45;
    line-height: 1.22;
    letter-spacing: 0;
}

.service-detail-content__body p,
.service-detail-content__body li {
    color: rgba(7, 31, 69, .76);
    font-size: 1rem;
    line-height: 1.78;
}

.service-detail-content__body ul,
.service-detail-content__body ol {
    padding-left: 1.25rem;
}

.service-detail-content__body a {
    color: #004aad;
    font-weight: 750;
    text-underline-offset: 4px;
}

.service-detail-note {
    margin-top: 28px;
    padding: 20px;
    border: 1px solid rgba(0, 74, 173, .14);
    border-radius: 18px;
    background: rgba(244, 246, 252, .78);
}

.service-detail-note h2 {
    margin: 0 0 .55rem;
    color: #071f45;
    font-size: 1.1rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.service-detail-note p {
    margin: 0;
    color: rgba(7, 31, 69, .72);
    line-height: 1.68;
}

.service-detail-aside {
    align-self: start;
}

.service-detail-aside__card {
    display: grid;
    gap: .8rem;
}

.service-detail-aside__card .service-detail-button {
    width: 100%;
    margin-top: .25rem;
}

.service-detail-related {
    padding: 38px 0 42px;
}

.service-detail-section-head {
    max-width: 660px;
    margin-bottom: 18px;
}

.service-detail-section-intro {
    margin: .8rem 0 0;
    color: rgba(7, 31, 69, .70);
    line-height: 1.68;
}

.service-detail-related__grid {
    display: grid;
    gap: 14px;
}

.service-detail-related__card {
    display: grid;
    gap: .6rem;
    padding: 20px;
    border-radius: 20px;
    color: inherit;
    text-decoration: none;
}

.service-detail-related__card:hover,
.service-detail-related__card:focus {
    border-color: rgba(0, 74, 173, .20);
    transform: translateY(-2px);
}

.service-detail-related__card h3 {
    margin: 0;
    color: #071f45;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.service-detail-related__card p {
    margin: 0;
}

.service-detail-cta {
    padding: 8px 0 56px;
}

.service-detail-cta__panel {
    display: grid;
    gap: 18px;
    padding: 24px 22px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .97) 0%, rgba(238, 244, 255, .94) 100%);
}

.service-detail-cta__panel .service-detail-actions {
    margin-top: 0;
}

@media (min-width: 760px) {
    .service-detail-hero {
        padding-top: 34px;
        padding-bottom: 46px;
    }

    .service-detail-hero__content,
    .service-detail-content,
    .service-detail-cta__panel {
        padding: 34px;
    }

    .service-detail-hero__content h1 {
        font-size: 3rem;
    }

    .service-detail-related__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (min-width: 980px) {
    .service-detail-page .container {
        width: min(1120px, calc(100% - 64px));
    }

    .service-detail-hero__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
        align-items: stretch;
    }

    .service-detail-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: start;
        gap: 28px;
    }

    .service-detail-aside {
        position: sticky;
        top: 96px;
    }

    .service-detail-cta__panel {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .service-detail-hero__content h1 {
        font-size: 3.55rem;
    }
}

@media (max-width: 560px) {
    .service-detail-page .container {
        width: min(100% - 28px, 1120px);
    }

    .service-detail-hero {
        padding-top: 20px;
        padding-bottom: 28px;
    }

    .service-detail-hero__content h1 {
        font-size: 2.15rem;
    }

    .service-detail-actions,
    .service-detail-button {
        width: 100%;
    }

    .service-detail-button {
        min-height: 54px;
    }

    .service-detail-content,
    .service-detail-hero__content,
    .service-detail-hero__card,
    .service-detail-aside__card,
    .service-detail-related__card,
    .service-detail-cta__panel {
        border-radius: 20px;
    }

    .service-detail-section,
    .service-detail-related {
        padding-top: 28px;
        padding-bottom: 32px;
    }
}

/* =========================================================
   22. Mobile conversion and rhythm polish
   Late scoped override for CTA visibility, spacing, and tap clarity.
   ========================================================= */

.ct-button:focus-visible,
.button:focus-visible,
.ct-inline-link:focus-visible,
.inline-link:focus-visible,
.site-footer__cta:focus-visible,
.site-footer__contact-links a:focus-visible,
.site-footer__links a:focus-visible {
    outline: 3px solid rgba(0, 74, 173, .28);
    outline-offset: 3px;
}

.ct-button:active,
.button:active,
.service-detail-button:active,
.site-footer__cta:active,
.content-card--services-page .chiterapi-services__button:active {
    transform: translateY(0) scale(.99);
}

.ct-home .ct-service-card,
.service-detail-related__card,
.content-card--services-page .chiterapi-service-card,
.contact-page .contact-method-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.ct-home .ct-service-card:hover,
.ct-home .ct-service-card:focus-within,
.service-detail-related__card:hover,
.service-detail-related__card:focus-visible,
.content-card--services-page .chiterapi-service-card:hover,
.content-card--services-page .chiterapi-service-card:focus-within,
.contact-page .contact-method-card:hover,
.contact-page .contact-method-card:focus-within {
    border-color: rgba(0, 74, 173, .20);
    box-shadow: 0 22px 54px rgba(13, 45, 92, .12);
}

.ct-home .ct-service-card a:focus-visible,
.ct-home .ct-post-card a:focus-visible,
.content-card--services-page .chiterapi-service-card__details-link:focus-visible {
    outline: 3px solid rgba(0, 74, 173, .24);
    outline-offset: 4px;
    border-radius: 999px;
}

@media (max-width: 760px) {
    .ct-container,
    .container,
    .site-header__inner,
    .site-footer__inner,
    .service-detail-page .container {
        width: min(var(--ct-container), calc(100% - 24px));
    }

    .ct-section,
    .section,
    .english-section,
    .about-page .about-section,
    .contact-page .contact-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .ct-home {
        --ct-home-section-y: 40px;
        --ct-home-section-y-compact: 34px;
        --ct-home-section-y-tight: 30px;
        --ct-home-card-pad: 18px;
        --ct-home-grid-gap: 14px;
    }

    .ct-hero,
    .english-hero,
    .about-page .about-hero,
    .contact-page .contact-hero,
    .service-detail-hero {
        padding-top: 30px;
        padding-bottom: 36px;
    }

    .ct-actions,
    .hero-actions,
    .location-actions,
    .service-detail-actions,
    .content-card--services-page .chiterapi-service-card__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: .75rem;
        width: 100%;
        margin-top: 1.25rem;
    }

    .ct-button,
    .button,
    .site-footer__cta,
    .service-detail-button,
    .content-card--services-page .chiterapi-services__button {
        width: 100%;
        min-height: 56px;
        padding: .92rem 1.12rem;
        font-size: 1rem;
        line-height: 1.18;
    }

    .ct-button--primary,
    .button-primary,
    .service-detail-button--primary,
    .content-card--services-page .chiterapi-services__button:not(.chiterapi-services__button--secondary) {
        box-shadow: 0 16px 34px rgba(0, 74, 173, .24);
    }

    .ct-button--secondary,
    .button-secondary,
    .service-detail-button--secondary,
    .content-card--services-page .chiterapi-services__button--secondary {
        border: 1px solid rgba(0, 74, 173, .18);
        background: rgba(233, 240, 255, .92);
        color: var(--ct-blue);
    }

    .ct-home .ct-service-card,
    .ct-home .ct-post-card,
    .ct-home .ct-steps article,
    .ct-home .ct-check-list article,
    .about-page .about-info-card,
    .about-page .credential-card,
    .about-page .standards-list div,
    .contact-page .contact-method-card,
    .contact-page .contact-panel,
    .contact-page .contact-faq-item,
    .english-trust-card,
    .english-service-card,
    .english-info-panel,
    .english-process-card,
    .service-detail-content,
    .service-detail-hero__content,
    .service-detail-hero__card,
    .service-detail-aside__card,
    .service-detail-related__card,
    .service-detail-cta__panel {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .ct-section-head,
    .section-header,
    .service-detail-section-head {
        margin-bottom: 20px;
    }

    .ct-home .ct-service-card {
        gap: .6rem;
    }

    .ct-home .ct-service-card a,
    .ct-home .ct-post-card a,
    .contact-page .contact-method-card .inline-link,
    .about-page .about-hero__card .inline-link,
    .service-detail-inline-link,
    .service-detail-back,
    .content-card--services-page .chiterapi-service-card__details-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        width: 100%;
        margin-top: .35rem;
        padding: .72rem 1rem;
        border: 1px solid rgba(0, 74, 173, .14);
        border-radius: 999px;
        background: rgba(233, 240, 255, .72);
        color: var(--ct-blue);
        line-height: 1.18;
        text-align: center;
        text-decoration: none;
    }

    .ct-home .ct-service-card a:hover,
    .ct-home .ct-service-card a:focus,
    .ct-home .ct-post-card a:hover,
    .ct-home .ct-post-card a:focus,
    .contact-page .contact-method-card .inline-link:hover,
    .contact-page .contact-method-card .inline-link:focus,
    .about-page .about-hero__card .inline-link:hover,
    .about-page .about-hero__card .inline-link:focus,
    .service-detail-inline-link:hover,
    .service-detail-inline-link:focus,
    .service-detail-back:hover,
    .service-detail-back:focus,
    .content-card--services-page .chiterapi-service-card__details-link:hover,
    .content-card--services-page .chiterapi-service-card__details-link:focus {
        border-color: rgba(0, 74, 173, .26);
        background: rgba(233, 240, 255, .95);
        color: #06306b;
    }

    .english-centered-action,
    .english-page .hero-actions {
        display: grid;
        width: 100%;
        justify-content: stretch;
    }

    .english-centered-action {
        margin-top: 22px;
    }

    .ct-home .ct-loyalty-actions {
        display: grid;
        gap: .7rem;
        width: 100%;
    }

    .ct-home .ct-loyalty-actions .ct-button,
    .ct-home .ct-loyalty-details summary {
        min-height: 52px;
    }

    .ct-faq-list summary,
    .ct-home .ct-loyalty-details summary {
        min-height: 44px;
        align-items: center;
    }

    .service-detail-related__card {
        position: relative;
        padding-right: 46px;
    }

    .service-detail-related__card::after {
        content: ">";
        position: absolute;
        top: 18px;
        right: 20px;
        display: grid;
        place-items: center;
        width: 26px;
        height: 26px;
        border-radius: 999px;
        background: rgba(0, 74, 173, .10);
        color: var(--ct-blue);
        font-weight: 900;
        line-height: 1;
    }

    .content-card--services-page .chiterapi-services {
        padding-top: 8px;
        padding-bottom: 40px;
    }

    .content-card--services-page .chiterapi-services__container {
        padding-right: 14px;
        padding-left: 14px;
        padding-bottom: 40px;
    }

    .content-card--services-page .chiterapi-services__hero {
        margin-bottom: 24px;
        padding: 22px 18px;
    }

    .content-card--services-page .chiterapi-services__hero-action {
        gap: .8rem;
    }

    .content-card--services-page .chiterapi-services__filter {
        min-height: 48px;
        padding: .78rem 1rem;
    }

    .content-card--services-page .chiterapi-service-card {
        padding: 24px 20px;
    }

    .content-card--services-page .chiterapi-service-card__description {
        margin-bottom: 1rem;
    }

    .content-card--services-page .chiterapi-service-card__meta {
        gap: 10px;
        margin-bottom: 1rem;
    }

    .content-card--services-page .chiterapi-service-card__meta div {
        padding: 13px 14px;
        border-radius: 16px;
    }

    .content-card--services-page .chiterapi-services-modal {
        align-items: flex-end;
        padding: 10px;
    }

    .content-card--services-page .chiterapi-services-modal__panel {
        width: 100%;
        max-height: calc(100dvh - 20px);
        padding: 26px 20px 22px;
        border-radius: 24px 24px 20px 20px;
    }

    .content-card--services-page .chiterapi-services-modal__close {
        top: 14px;
        right: 14px;
        min-width: 48px;
        min-height: 48px;
    }

    .content-card--services-page .chiterapi-services-modal .chiterapi-service-card__category {
        margin-right: 58px;
    }

    .content-card--services-page .chiterapi-services-modal__book {
        margin-top: 1rem;
    }

    .site-footer__brand,
    .site-footer__grid > section,
    .site-footer__grid > nav {
        padding: 18px;
    }

    .site-footer__contact-links a,
    .site-footer__links a {
        display: flex;
        align-items: center;
        min-height: 42px;
        width: 100%;
    }

    .site-footer__contact-links a {
        padding: .2rem 0;
    }
}

@media (max-width: 560px) {
    .ct-container,
    .container,
    .service-detail-page .container {
        width: min(var(--ct-container), calc(100% - 22px));
    }

    .ct-home {
        --ct-home-section-y: 38px;
        --ct-home-section-y-compact: 34px;
        --ct-home-section-y-tight: 30px;
        --ct-home-card-pad: 18px;
    }

    .ct-hero__content,
    .english-hero__content,
    .about-page .about-hero__content,
    .contact-page .contact-hero__content,
    .service-detail-hero__content,
    .ct-final-cta__panel,
    .about-page .about-final-cta .cta-panel,
    .contact-page .contact-final-cta .cta-panel,
    .english-final-cta .cta-panel {
        padding: 24px 20px;
    }

    .ct-button,
    .button,
    .site-footer__cta,
    .service-detail-button,
    .content-card--services-page .chiterapi-services__button {
        min-height: 58px;
    }

    .ct-home .ct-pill-grid span {
        min-height: 36px;
    }

    .service-detail-hero {
        padding-top: 22px;
        padding-bottom: 30px;
    }

    .service-detail-section,
    .service-detail-related {
        padding-top: 32px;
        padding-bottom: 34px;
    }

    .service-detail-cta {
        padding-top: 6px;
        padding-bottom: 46px;
    }

    .content-card--services-page .chiterapi-services__filters {
        margin-right: -14px;
        margin-left: -14px;
        padding-inline: 14px;
    }

    .content-card--services-page .chiterapi-service-card__meta {
        grid-template-columns: 1fr;
    }

    .site-footer__links {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   23. Booking/contact friction polish
   Round 2: booking request clarity, lighter mobile form rhythm.
   ========================================================= */

.content-card--booking-request-page .ct-booking-request {
    border-color: rgba(0, 74, 173, .11);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .99) 0%, rgba(246, 249, 255, .96) 100%);
    box-shadow: 0 18px 50px rgba(13, 45, 92, .09);
}

.content-card--booking-request-page .ct-booking-request__intro {
    margin-bottom: 16px;
}

.content-card--booking-request-page .ct-booking-request__intro p:not(.ct-booking-request__eyebrow) {
    max-width: 650px;
    color: rgba(7, 31, 69, .72);
    font-size: 1rem;
    line-height: 1.58;
}

.content-card--booking-request-page .ct-booking-request__notice {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .78rem;
    align-items: start;
    margin-bottom: 22px;
    padding: 15px 16px;
    border-color: rgba(0, 74, 173, .14);
    background: rgba(233, 240, 255, .64);
    color: rgba(7, 31, 69, .78);
    font-size: .96rem;
    font-weight: 760;
}

.content-card--booking-request-page .ct-booking-request__notice::before {
    content: "i";
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-top: .1rem;
    border-radius: 999px;
    background: #004aad;
    color: #ffffff;
    font-size: .86rem;
    font-weight: 900;
    line-height: 1;
}

.content-card--booking-request-page .ct-booking-request__grid {
    gap: 15px 16px;
}

.content-card--booking-request-page .ct-booking-request__field {
    gap: 7px;
}

.content-card--booking-request-page .ct-booking-request__field label {
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: space-between;
    color: rgba(7, 31, 69, .82);
    font-size: .92rem;
    font-weight: 760;
}

.content-card--booking-request-page .ct-booking-request__field label span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: .18rem .48rem;
    border-radius: 999px;
    background: rgba(0, 74, 173, .08);
    color: #004aad;
    font-size: 0;
    font-weight: 850;
    line-height: 1;
}

.content-card--booking-request-page .ct-booking-request__field label span::after {
    content: "Detyrueshme";
    font-size: .68rem;
}

.content-card--booking-request-page label[for="ct-booking-email"]::after,
.content-card--booking-request-page label[for="ct-booking-note"]::after {
    content: "Opsionale";
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: .18rem .48rem;
    border: 1px solid rgba(7, 31, 69, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: rgba(7, 31, 69, .54);
    font-size: .68rem;
    font-weight: 800;
    line-height: 1;
}

.content-card--booking-request-page .ct-booking-request__field input,
.content-card--booking-request-page .ct-booking-request__field select,
.content-card--booking-request-page .ct-booking-request__field textarea {
    min-height: 52px;
    padding: 12px 14px;
    border-color: rgba(0, 74, 173, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 7px 20px rgba(13, 45, 92, .045);
}

.content-card--booking-request-page .ct-booking-request__field textarea {
    min-height: 112px;
}

.content-card--booking-request-page #ct-booking-note {
    min-height: 104px;
}

.content-card--booking-request-page .ct-booking-request__help {
    max-width: 680px;
    color: rgba(7, 31, 69, .56);
    font-size: .86rem;
    line-height: 1.5;
}

.content-card--booking-request-page .ct-booking-request__actions {
    gap: 10px;
    margin-top: 22px;
    padding: 16px;
    border: 1px solid rgba(0, 74, 173, .10);
    border-radius: 20px;
    background: rgba(244, 246, 252, .74);
}

.content-card--booking-request-page .ct-booking-request__submit {
    min-height: 56px;
    box-shadow: 0 16px 34px rgba(0, 74, 173, .23);
}

.content-card--booking-request-page .ct-booking-request__fineprint {
    width: 100%;
    margin: 0;
    padding: .78rem .85rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, .78);
    color: rgba(7, 31, 69, .68);
    font-size: .9rem;
    line-height: 1.48;
}

.content-card--booking-request-page .ct-booking-request__message {
    box-shadow: 0 10px 26px rgba(13, 45, 92, .06);
}

.contact-page .contact-mini-list a,
.contact-page .contact-method-card .inline-link,
.ct-home .ct-contact-card a {
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.contact-page .contact-mini-list a:hover,
.contact-page .contact-mini-list a:focus,
.ct-home .ct-contact-card a:hover,
.ct-home .ct-contact-card a:focus {
    border-color: rgba(0, 74, 173, .24);
    background: rgba(233, 240, 255, .95);
    color: #06306b;
}

@media (max-width: 760px) {
    .section--booking-request-page {
        padding-top: 18px;
        padding-bottom: 48px;
    }

    .section--booking-request-page .container--booking-request-page {
        width: min(100% - 22px, 980px);
    }

    .content-card--booking-request-page {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .content-card--booking-request-page .ct-booking-request {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .content-card--booking-request-page .ct-booking-request h2 {
        margin-bottom: .6rem;
        font-size: clamp(1.78rem, 8vw, 2.35rem);
        line-height: 1.08;
    }

    .content-card--booking-request-page .ct-booking-request__intro {
        margin-bottom: 14px;
    }

    .content-card--booking-request-page .ct-booking-request__notice {
        gap: .65rem;
        margin-bottom: 18px;
        padding: 14px;
        border-radius: 17px;
        font-size: .92rem;
        line-height: 1.48;
    }

    .content-card--booking-request-page .ct-booking-request__notice::before {
        width: 24px;
        height: 24px;
    }

    .content-card--booking-request-page .ct-booking-request__grid {
        gap: 13px;
    }

    .content-card--booking-request-page .ct-booking-request__field {
        gap: 6px;
    }

    .content-card--booking-request-page .ct-booking-request__field label {
        font-size: .89rem;
        line-height: 1.25;
    }

    .content-card--booking-request-page .ct-booking-request__field input,
    .content-card--booking-request-page .ct-booking-request__field select {
        min-height: 52px;
    }

    .content-card--booking-request-page .ct-booking-request__field textarea,
    .content-card--booking-request-page #ct-booking-note {
        min-height: 96px;
    }

    .content-card--booking-request-page .ct-booking-request__help {
        font-size: .84rem;
        line-height: 1.45;
    }

    .content-card--booking-request-page .ct-booking-request__actions {
        margin-top: 18px;
        padding: 14px;
        border-radius: 18px;
    }

    .content-card--booking-request-page .ct-booking-request__submit {
        width: 100%;
        min-height: 58px;
        padding: .95rem 1rem;
    }

    .content-card--booking-request-page .ct-booking-request__fineprint {
        font-size: .86rem;
    }

    .contact-page .contact-mini-list {
        gap: 9px;
    }

    .contact-page .contact-mini-list a {
        min-height: 52px;
        padding: .78rem .95rem;
        border-radius: 15px;
    }

    .contact-page .contact-method-card .inline-link {
        min-height: 52px;
        margin-top: .6rem;
    }

    .contact-page .contact-panel .hero-actions {
        margin-top: 1rem;
    }

    .ct-home .ct-contact-card p:has(a) {
        display: grid;
        gap: 8px;
    }

    .ct-home .ct-contact-card a {
        min-height: 42px;
        align-items: center;
    }

    .service-detail-hero__card .service-detail-inline-link,
    .service-detail-aside__card .service-detail-inline-link {
        margin-top: .15rem;
    }
}

@media (max-width: 420px) {
    .content-card--booking-request-page .ct-booking-request {
        padding: 20px 16px;
    }

    .content-card--booking-request-page .ct-booking-request__field label {
        align-items: flex-start;
        flex-direction: column;
        gap: .35rem;
    }

    .content-card--booking-request-page .ct-booking-request__field label span,
    .content-card--booking-request-page label[for="ct-booking-email"]::after,
    .content-card--booking-request-page label[for="ct-booking-note"]::after {
        align-self: flex-start;
    }
}

/* =========================================================
   24. Booking required badge cleanup
   Round 2B: keep required clarity without repeated badge noise.
   ========================================================= */

.content-card--booking-request-page .ct-booking-request__form::before {
    content: "Fushat me * janë të detyrueshme.";
    display: block;
    margin: 0 0 14px;
    padding: .72rem .85rem;
    border: 1px solid rgba(0, 74, 173, .10);
    border-radius: 14px;
    background: rgba(255, 255, 255, .68);
    color: rgba(7, 31, 69, .62);
    font-size: .86rem;
    font-weight: 760;
    line-height: 1.4;
}

.content-card--booking-request-page .ct-booking-request__field label {
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.content-card--booking-request-page .ct-booking-request__field label span {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #004aad;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.content-card--booking-request-page .ct-booking-request__field label span::after {
    content: none;
}

.content-card--booking-request-page label[for="ct-booking-email"]::after,
.content-card--booking-request-page label[for="ct-booking-note"]::after {
    margin-left: .2rem;
}

@media (max-width: 420px) {
    .content-card--booking-request-page .ct-booking-request__field label {
        align-items: baseline;
        flex-direction: row;
        gap: .35rem;
    }
}

/* =========================================================
   25. Trust and conversion microcopy
   Round 3: quiet reassurance near key CTAs.
   ========================================================= */

.ct-cta-note,
.service-detail-cta-note,
.site-footer__cta-note {
    max-width: 640px;
    margin: 1rem 0 0;
    color: rgba(7, 31, 69, .68);
    font-size: .94rem;
    font-weight: 760;
    line-height: 1.5;
}

.ct-cta-note + .ct-actions,
.ct-cta-note + .hero-actions,
.service-detail-cta-note + .service-detail-actions {
    margin-top: .85rem;
}

.ct-hero .ct-cta-note {
    margin-top: 1.25rem;
}

.ct-final-cta .ct-cta-note,
.ct-cta-note--light {
    color: rgba(255, 255, 255, .82);
}

.service-detail-cta-note {
    color: rgba(7, 31, 69, .66);
}

.service-detail-aside__card .service-detail-cta-note {
    margin-top: .15rem;
    margin-bottom: -.15rem;
}

.service-detail-cta__panel .service-detail-cta-note {
    margin-top: .35rem;
}

@media (min-width: 980px) {
    .service-detail-cta__panel > .service-detail-cta-note {
        grid-column: 1;
        grid-row: 2;
        margin-top: -.4rem;
    }

    .service-detail-cta__panel > .service-detail-actions {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }
}

.contact-page .ct-cta-note {
    color: rgba(7, 31, 69, .66);
}

.site-footer__cta-note {
    max-width: 280px;
    margin-top: .7rem;
    color: rgba(255, 255, 255, .68);
    font-size: .88rem;
}

.ct-home .ct-contact-card a:focus-visible,
.contact-page .contact-mini-list a:focus-visible,
.contact-page .contact-method-card .inline-link:focus-visible {
    outline: 3px solid rgba(0, 74, 173, .24);
    outline-offset: 3px;
}

@media (max-width: 760px) {
    .ct-cta-note,
    .service-detail-cta-note,
    .site-footer__cta-note {
        width: 100%;
        margin-top: .85rem;
        font-size: .9rem;
        line-height: 1.45;
    }

    .ct-cta-note + .ct-actions,
    .ct-cta-note + .hero-actions,
    .service-detail-cta-note + .service-detail-actions {
        margin-top: .75rem;
    }

    .ct-final-cta .ct-cta-note {
        text-align: center;
    }

    .site-footer__cta-note {
        max-width: none;
    }
}

/* =========================================================
   26. Final QA regression cleanup
   Round 4: accessible booking note and last tap-target safeguards.
   ========================================================= */

.content-card--booking-request-page .ct-booking-request__form::before {
    content: none;
    display: none;
}

.ct-booking-required-note {
    display: block;
    width: min(920px, 100%);
    margin: 0 auto 14px;
    padding: .72rem .85rem;
    border: 1px solid rgba(0, 74, 173, .10);
    border-radius: 14px;
    background: rgba(255, 255, 255, .68);
    color: rgba(7, 31, 69, .62);
    font-size: .86rem;
    font-weight: 760;
    line-height: 1.4;
}

.contact-mini-list a:focus-visible,
.about-page .inline-link:focus-visible,
.english-page .contact-mini-list a:focus-visible,
.english-centered-action .button:focus-visible {
    outline: 3px solid rgba(0, 74, 173, .24);
    outline-offset: 3px;
}

@media (max-width: 760px) {
    .ct-booking-required-note {
        margin-bottom: 12px;
        font-size: .86rem;
    }

    .english-page .contact-mini-list {
        display: grid;
        gap: 9px;
    }

    .english-page .contact-mini-list a,
    .about-page .about-hero__card .inline-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        width: 100%;
        padding: .78rem .95rem;
        border: 1px solid rgba(0, 74, 173, .12);
        border-radius: 15px;
        background: rgba(233, 240, 255, .72);
        color: var(--ct-blue);
        line-height: 1.18;
        text-align: center;
        text-decoration: none;
    }

    .english-page .contact-mini-list a:hover,
    .english-page .contact-mini-list a:focus,
    .about-page .about-hero__card .inline-link:hover,
    .about-page .about-hero__card .inline-link:focus {
        border-color: rgba(0, 74, 173, .26);
        background: rgba(233, 240, 255, .95);
        color: #06306b;
    }
}
