@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Spectral:wght@500;600;700&display=swap");

:root {
    --bg: #f6f7f4;
    --surface: #ffffff;
    --surface-muted: #f4f8f8;
    --surface-elevated: #fbfdff;
    --surface-soft: #f4f8f8;
    --text: #1f2f34;
    --muted: #5d6a6f;
    --primary: #896fa5;
    --primary-dark: #4d609d;
    --secondary: #00588f;
    --line: #d5e1e4;
    --line-soft: #e8eff1;
    --line-strong: #bdd0d6;
    --line-accent: #b9d5dd;
    --shadow-sm: 0 1px 2px rgba(20, 36, 43, 0.08);
    --shadow: 0 14px 34px rgba(18, 34, 42, 0.1);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-xs: 10px;
    --transition: 180ms;
}

* {
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

:root:focus-within {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 2%, #eaf2f2 0, transparent 44%),
        radial-gradient(circle at 92% 8%, #eef4f4 0, transparent 40%), var(--bg);
    font-family:
        "Manrope",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    top: 0.7rem;
    left: 0.8rem;
    transform: translateY(-140%);
    background: #152a6f;
    color: #fff;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    z-index: 40;
    text-decoration: none;
    font-weight: 700;
    transition:
        transform 160ms ease,
        opacity 160ms ease;
    opacity: 0;
}

.skip-link:focus {
    transform: translateY(0);
    opacity: 1;
}

.section-kicker {
    width: fit-content;
    margin: 0;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #edf5f6;
    border: 1px solid #c7dde2;
    color: var(--secondary);
    padding: 0.27rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.section-head {
    margin-bottom: 0.9rem;
}

.section-head-inline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.8rem;
}

.section-head-inline h2,
.section-head-inline h3 {
    margin: 0;
}

.section-head-inline p {
    margin: 0;
}

.link-inline {
    color: var(--primary-dark);
    text-underline-offset: 0.2rem;
}

::selection {
    background: #d8dfff;
    color: #12203d;
}

a {
    color: var(--primary-dark);
}

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

h1,
h2,
h3 {
    letter-spacing: 0;
    color: #1c2f3a;
    font-family: "Spectral", Georgia, serif;
}

h1 {
    font-weight: 700;
    line-height: 1.12;
}

h2 {
    font-weight: 600;
    line-height: 1.18;
}

h3 {
    font-weight: 600;
    line-height: 1.24;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(137, 111, 165, 0.38);
    outline-offset: 2px;
}

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

.container {
    width: min(1140px, calc(100% - 2.6rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #ffffff;
    border-bottom: 1px solid #d8e4e7;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.site-header.is-scrolled {
    background: #ffffff;
    box-shadow: 0 11px 26px rgba(17, 33, 42, 0.1);
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--line-soft),
        transparent
    );
}

.nav-shell {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 0;
    justify-content: space-between;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.01em;
    flex: 0 0 auto;
    min-width: 0;
    overflow: hidden;
}

.logo-wrap span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.98rem;
    color: #355760;
}

.logo {
    width: clamp(150px, 20vw, 220px);
    max-width: 220px;
    height: auto;
    aspect-ratio: 500 / 132;
    object-fit: contain;
    object-position: left center;
    border: none;
    border-radius: 0;
}

.main-nav {
    margin-left: auto;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.main-nav a {
    text-decoration: none;
    color: #2b4450;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
    white-space: nowrap;
}

.main-nav a:hover {
    background: #edf5f6;
    color: #173841;
    transform: translateY(-1px);
}

.main-nav a.is-active {
    background: #d9ecef;
    color: #184852;
    font-weight: 700;
}

.main-nav .btn-small {
    margin-left: 0.2rem;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    box-shadow: var(--shadow-sm);
    border-color: transparent;
}

.main-nav .btn-small:hover {
    filter: brightness(1.03);
}

.menu-button {
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    background: #fff;
    font: inherit;
    font-weight: 600;
    display: none;
    color: #1f4952;
}

.btn,
.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background: var(--primary);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    padding: 0.78rem 1.25rem;
    box-shadow: 0 10px 24px rgba(77, 96, 157, 0.24);
    transition:
        transform var(--transition) ease,
        box-shadow var(--transition) ease,
        opacity var(--transition) ease,
        background-color var(--transition) ease;
    gap: 0.35rem;
}

.btn:hover,
.btn-small:hover {
    transform: translateY(-1px);
    background: var(--primary-dark);
    box-shadow: 0 13px 28px rgba(77, 96, 157, 0.3);
    opacity: 0.96;
}

.btn.btn-primary {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}

.btn-outline,
.btn.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c4dde2;
    border-radius: 999px;
    background: #ffffff;
    color: #1f4c55 !important;
    font-weight: 700;
    text-decoration: none;
    padding: 0.74rem 1.15rem;
    box-shadow: 0 8px 20px rgba(18, 44, 53, 0.1);
}

.btn-outline:hover,
.btn.btn-outline:hover {
    background: #f2f8f8;
    color: #153e46 !important;
    border-color: #9ec1c8;
    box-shadow: 0 11px 24px rgba(18, 44, 53, 0.14);
}

.btn-group {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.btn-secondary {
    border-color: #c8d8f8;
    background: var(--surface);
    color: var(--secondary) !important;
}

.section {
    padding: clamp(1.9rem, 3.8vw, 3.25rem) 0;
}

.section h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.home-page-content {
    display: grid;
    gap: 0.85rem;
    padding-bottom: 0.5rem;
}

.home-section {
    position: relative;
    scroll-margin-top: 74px;
}

.home-richer {
    position: relative;
}

.home-richer .home-content-block,
.home-richer .home-section-content {
    display: grid;
    gap: 1.1rem;
    background:
        radial-gradient(
            circle at 0 0,
            rgba(255, 255, 255, 0.76),
            rgba(255, 255, 255, 0) 55%
        ),
        var(--surface);
    border: 1px solid #dde8eb;
    border-radius: var(--radius);
    padding: clamp(1.25rem, 2vw, 1.95rem);
    position: relative;
    box-shadow: var(--shadow);
    min-width: 0;
    isolation: isolate;
    overflow: hidden;
}

.home-richer .home-content-block::before,
.home-richer .home-section-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.home-richer .home-content-block::after,
.home-richer .home-section-content::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius) - 1px);
    pointer-events: none;
    border: 1px solid rgba(208, 223, 228, 0.65);
    opacity: 0.5;
}

.js .home-richer .home-content-block,
.js .home-richer .home-section-content {
    animation: block-enter 520ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.js .home-page-content > .home-section:nth-child(2) .home-content-block {
    animation-delay: 50ms;
}

.js .home-page-content > .home-section:nth-child(3) .home-content-block {
    animation-delay: 90ms;
}

.home-richer + .home-richer {
    margin-top: 0.75rem;
}

.home-content-block > div,
.home-section-content > div {
    display: grid;
    gap: 1rem;
}

.home-hero .home-content-block,
.home-hero .home-section-content {
    gap: 1.2rem;
}

.home-section-content__header {
    display: grid;
    gap: 0.34rem;
    margin-bottom: 0.5rem;
}

.home-section-content__actions {
    margin-top: 0.65rem;
}

.hero-grid {
    display: grid;
    gap: 1.55rem;
    grid-template-columns: 1.15fr 0.95fr;
    align-items: center;
}

.hero-copy {
    display: grid;
    gap: 0.95rem;
}

.hero-media {
    position: relative;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(137, 111, 165, 0.14),
        transparent 62%
    );
    z-index: -1;
    filter: blur(8px);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    pointer-events: none;
}

.hero-media img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    box-shadow: 0 14px 28px rgba(17, 27, 55, 0.12);
}

.js .hero-media img {
    animation: media-float-in 760ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-stats {
    margin-top: 0.1rem;
    display: grid;
    gap: 0.55rem;
}

.hero-stats p {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    font-size: 0.95rem;
    color: #2f515c;
}

.hero-stats p span {
    min-width: 5.6rem;
    font-weight: 700;
    color: #2b4b55;
}

.hero-trust-strip {
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-trust-strip span {
    border: 1px solid #c6dadf;
    background: linear-gradient(180deg, #ffffff, #f2f7f8);
    color: #2d4f59;
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.home-section-head {
    display: grid;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    margin: 0;
    font-size: clamp(1.04rem, 2vw, 1.24rem);
    color: #35515c;
    line-height: 1.6;
}

.home-section-cta {
    margin-top: 0.65rem;
}

.home-content-block h1,
.home-content-block h2,
.home-content-block h3,
.home-content-block h4,
.home-content-block h5,
.home-content-block h6 {
    margin: 0;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.home-content-block h1 {
    margin-bottom: 0.35rem;
}

.home-content-block h1:first-child {
    font-size: clamp(1.62rem, 3vw, 2.4rem);
}

.hero-kicker {
    margin: 0;
}

.home-content-block p,
.home-content-block li {
    color: var(--text);
    font-size: 1rem;
    margin: 0.5rem 0 0;
    line-height: 1.72;
    overflow-wrap: anywhere;
}

.home-content-block ul,
.home-content-block ol {
    padding-left: 1.2rem;
    margin: 0.45rem 0 0;
}

.home-content-card h3 {
    font-size: 1.08rem;
    color: #2f5d69;
}

.home-content-block > a,
.home-content-block .home-content-block > a,
.home-content-block .btn,
.home-section-cta .btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--primary);
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(77, 96, 157, 0.24);
    font-weight: 700;
    margin-top: 0.35rem;
}

.section-text {
    margin: 0.12rem 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.home-content-block > a:hover,
.home-content-block .home-content-block > a:hover,
.home-content-block .btn:hover,
.home-section-cta .btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, var(--primary-dark), var(--primary));
    box-shadow: 0 13px 28px rgba(77, 96, 157, 0.3);
}

.home-grid .home-content-block > div {
    gap: 1rem;
}

.home-grid .home-cards-grid {
    margin-top: 0.5rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-content-card {
    background: linear-gradient(180deg, #fdfdff 0%, #f8faff 100%);
    border: 1px solid #dce6fc;
    border-left: 3px solid var(--primary);
    border-radius: 14px;
    padding: 0.95rem;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.home-content-card.is-visible {
    transform: scale(1.01) translateY(-3px);
    border-left-color: var(--primary-dark);
    background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
    border-color: #bfd0ff;
}

.home-process .simple-carousel,
.home-process .carousel-track {
    --carousel-step: 1;
}

.home-step-index {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.home-process .home-content-card h3,
.home-process .home-content-card p {
    margin-top: 0.5rem;
}

.home-process .home-content-card h3 {
    margin-bottom: 0;
}

.home-step-index + h3 {
    margin-top: 0.2rem;
}

.home-process .home-section-cta {
    margin-top: 0.7rem;
}

.home-content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(19, 40, 52, 0.12);
    border-color: #bdd5dc;
}

.home-about .home-content-block > img,
.home-services .home-content-block > img {
    width: 100%;
    max-width: min(740px, 100%);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.home-about .home-content-block > div,
.home-services .home-content-block > div {
    gap: 1.15rem;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

.home-about .home-content-block > div > img,
.home-services .home-content-block > div > img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.home-services .home-cards-grid {
    gap: 0.9rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-section-carousel .carousel-track {
    padding: 0 0.2rem;
}

.home-section-carousel .carousel-slide {
    padding-bottom: 0.35rem;
    transition:
        transform var(--transition) ease,
        opacity var(--transition) ease;
}

.home-section-carousel .carousel-slide:not(.is-visible) .home-content-card {
    box-shadow: 0 6px 16px rgba(18, 40, 50, 0.08);
    transform: scale(0.985);
}

.home-section-carousel .carousel-slide.is-visible .home-content-card {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(18, 40, 50, 0.16);
    border-color: var(--line-accent);
}

.home-section-carousel .home-content-card {
    margin: 0;
}

.home-section-carousel .carousel-viewport::before,
.home-section-carousel .carousel-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1.4rem;
    z-index: 1;
    pointer-events: none;
}

.home-section-carousel .carousel-viewport::before {
    left: 0;
    background: linear-gradient(90deg, #f3f8f8 20%, rgba(243, 248, 248, 0));
}

.home-section-carousel .carousel-viewport::after {
    right: 0;
    background: linear-gradient(90deg, rgba(243, 248, 248, 0), #f3f8f8 80%);
}

.home-testimonials .home-content-block > h2 {
    margin-bottom: 0.35rem;
}

.home-testimonials .home-content-block {
    gap: 0.95rem;
}

.home-testimonial {
    background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
    border: 1px solid #dce8eb;
    border-radius: 14px;
    padding: 1rem;
    box-sizing: border-box;
}

.home-testimonial::before {
    content: "“";
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    color: #8290ff;
}

.home-testimonial p {
    margin-top: 0.1rem;
}

.home-testimonial footer {
    margin-top: 0.7rem;
    font-weight: 700;
    color: #3d4b72;
    font-size: 0.92rem;
}

.simple-carousel,
.carousel-shell {
    position: relative;
    padding: 0.75rem 0.35rem 0.45rem;
    border: 1px solid #dce8eb;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8f8 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.simple-carousel:focus-within,
.carousel-shell:focus-within {
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.7),
        0 0 0 3px rgba(137, 111, 165, 0.18);
}

.simple-carousel::before,
.carousel-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(210, 223, 228, 0.6);
    opacity: 0.45;
    border-radius: var(--radius);
}

.blog-featured,
.blog-hero {
    position: relative;
}

.blog-hero .container > div {
    display: grid;
    gap: 0.85rem;
}

.blog-featured .simple-carousel {
    margin-top: 0.7rem;
}

.section-head-inline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.8rem;
}

.section-head-inline h2 {
    margin: 0;
}

.section-head-inline .link-inline {
    margin: 0;
}

.blog-result-state {
    margin: 0;
    color: var(--muted);
}

.blog-result-state strong {
    color: var(--text);
}

.archive-search-wrap .archive-tools {
    display: grid;
    gap: 0.6rem;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    padding: 0.1rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 460ms cubic-bezier(0.2, 0.65, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
    --carousel-step: 1;
}

.carousel-track.carousel-dragging {
    cursor: grabbing;
    transition: none;
}

.carousel-slide {
    flex: 0 0 calc(100% / var(--carousel-step));
    width: calc(100% / var(--carousel-step));
    box-sizing: border-box;
    padding: 0 0.25rem;
}

.js .carousel-slide {
    transition:
        transform var(--transition) ease,
        opacity var(--transition) ease,
        filter var(--transition) ease;
    opacity: 0.74;
    filter: saturate(0.9);
}

.js .carousel-slide.is-visible {
    opacity: 1;
    transform: translateY(-2px);
    filter: saturate(1);
}

.home-latest .home-content-block {
    gap: 0.85rem;
}

.home-faq details,
.home-faq summary {
    transition:
        background-color var(--transition) ease,
        color var(--transition) ease;
}

.carousel-shell .carousel-slide:not(:last-child) {
    margin-right: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(137, 111, 165, 0.36);
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #22555f;
    font-size: 1.18rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(16, 31, 67, 0.15);
    cursor: pointer;
    z-index: 2;
    transition:
        transform 150ms ease,
        box-shadow 150ms ease,
        color 150ms ease,
        background 150ms ease,
        border-color 150ms ease;
}

.carousel-btn-prev {
    left: 0.28rem;
}

.carousel-btn-next {
    right: 0.28rem;
}

.carousel-btn:hover {
    color: #163f47;
    border-color: #3d8b89;
    background: #f2f8f8;
    box-shadow: 0 14px 26px rgba(16, 40, 51, 0.2);
}

.carousel-btn:focus-visible {
    outline: 3px solid rgba(137, 111, 165, 0.34);
    outline-offset: 2px;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    transform: translateY(-50%);
    box-shadow: none;
}

.carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0 0.4rem 0.5rem;
    margin-bottom: 0.26rem;
}

.carousel-status {
    color: #345a65;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.carousel-toggle {
    border: 1px solid #c0d6db;
    background: #f3f8f8;
    border-radius: 999px;
    color: #1f4f58;
    min-width: 2.1rem;
    height: 1.9rem;
    padding: 0 0.5rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
    box-shadow: 0 8px 18px rgba(16, 31, 67, 0.12);
}

.carousel-toggle:hover {
    border-color: #89aeb7;
    background: #eaf4f5;
    color: #143e46;
}

.carousel-shell.is-autoplay-paused .carousel-toggle {
    border-color: #c4d8dc;
    background: #eef5f5;
}

.carousel-toggle::after {
    content: "⏸";
    font-size: 0.82rem;
}

.carousel-toggle.is-paused::after {
    content: "▶";
}

.carousel-toggle:focus-visible {
    outline: 3px solid rgba(137, 111, 165, 0.34);
    outline-offset: 2px;
}

.carousel-progress {
    height: 0.28rem;
    border-radius: 999px;
    width: min(100%, 220px);
    background: #d1e2e6;
    overflow: hidden;
    margin-top: 0.4rem;
    opacity: 1;
    transition: opacity 150ms ease;
}

.carousel-shell.is-autoplay-paused .carousel-progress {
    opacity: 0.5;
}

.carousel-progress span {
    display: block;
    height: 100%;
    width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.carousel-dots,
.simple-dots {
    margin-top: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    overflow: auto;
    scrollbar-width: none;
    padding-bottom: 0.1rem;
}

.carousel-dots::-webkit-scrollbar,
.simple-dots::-webkit-scrollbar {
    display: none;
}

.carousel-dots button,
.simple-dots button {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 999px;
    border: none;
    background: #b7ccd1;
    padding: 0;
    display: inline-block;
    transition:
        transform 180ms ease,
        background 180ms ease,
        width 180ms ease,
        opacity 180ms ease;
    opacity: 0.75;
    box-shadow: 0 0 0 rgba(77, 99, 255, 0);
}

.carousel-dots button[aria-current="true"],
.simple-dots button[aria-current="true"] {
    width: 1rem;
    opacity: 1;
    background: var(--primary-dark);
    transform: scale(1.15);
    box-shadow: 0 4px 14px rgba(27, 71, 82, 0.26);
}

.home-faq details {
    border: 1px solid #d8e6ea;
    border-radius: 12px;
    background: #f7fbfb;
    margin-top: 0.8rem;
    transition: border-color 150ms ease;
}

.home-faq details + details {
    margin-top: 0.7rem;
}

.home-faq details[open] {
    border-color: #9fc1c9;
}

.home-faq summary {
    cursor: pointer;
    font-weight: 700;
    padding: 0.7rem 0.8rem;
    list-style: none;
}

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

.home-faq summary::after {
    content: "+";
    float: right;
    margin-left: 1rem;
    color: #2f6d76;
}

.home-faq details[open] summary::after {
    content: "−";
}

.home-faq details div {
    padding: 0 0.8rem 0.85rem;
}

.post-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
    min-height: 220px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition:
        transform var(--transition) ease,
        box-shadow var(--transition) ease;
}

.post-card h3 {
    margin: 0 0 0.5rem;
}

.post-card h3 a {
    text-decoration: none;
    color: var(--text);
}

.post-card h3 a:hover {
    color: #1d4d57;
}

.post-card .meta {
    margin: 0.3rem 0 0.8rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.post-card p {
    margin: 0;
    color: var(--text);
}

.post-card .link-inline {
    margin-top: auto;
    display: inline-flex;
    text-decoration-thickness: 2px;
    font-weight: 700;
}

.post-card .link-inline::after {
    content: " →";
    transition: transform var(--transition) ease;
}

.post-card:hover .link-inline::after {
    transform: translateX(2px);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16, 27, 65, 0.1);
}

.archive-search-wrap {
    margin-bottom: 1rem;
}

.archive-search-wrap input {
    width: 100%;
    max-width: 420px;
    padding: 0.72rem;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
}

.archive-search-wrap input:focus {
    border-color: #9ec1c8;
    outline: 3px solid rgba(137, 111, 165, 0.16);
    outline-offset: 0;
}

.blog-cta {
    margin-top: 0.8rem;
}

.blog-cta-card {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fbfdfd 0%, var(--surface) 40%);
    padding: 1rem;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.7rem;
}

.blog-cta-card .btn-group {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.index-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.index-head p {
    color: var(--muted);
    margin: 0;
}

.lead-form {
    margin-top: 1rem;
}

.lead-form .btn {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.contact-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
    border: 1px solid #d4e5e9;
    border-radius: var(--radius);
    padding: clamp(1rem, 2vw, 1.4rem);
    box-shadow: 0 16px 36px rgba(18, 35, 43, 0.13);
    display: grid;
    gap: 0.65rem;
}

.contact-card small {
    color: #4f6670;
    font-weight: 600;
}

.lead-form button {
    margin: 0.5rem 0 1rem;
}

.article-page {
    padding: 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.article-page h1 {
    margin-top: 0.2rem;
    line-height: 1.2;
}

.article-page .meta {
    margin: 0;
    color: var(--muted);
}

.post-content {
    margin-top: 1rem;
    background: #fff;
    padding: 0 1.2rem 1.2rem;
}

.post-content img {
    border-radius: 12px;
}

.post-content p {
    margin-top: 0;
    font-size: 1.01rem;
}

.related {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.site-footer {
    margin-top: 2rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #f7fbfb);
    padding: 1.5rem 0;
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

.footer-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.social-link {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(137, 111, 165, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #4d609d;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(77, 96, 157, 0.1);
    transition:
        background 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    border-color: rgba(77, 96, 157, 0.42);
    background: #fff;
    color: #263344;
    box-shadow: 0 12px 24px rgba(77, 96, 157, 0.16);
    transform: translateY(-1px);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

@keyframes block-enter {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes media-float-in {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1020px) {
    .site-header .container {
        width: min(1140px, calc(100% - 1.9rem));
    }

    .logo {
        width: clamp(130px, 24vw, 188px);
        max-width: 188px;
        height: auto;
    }

    .main-nav a {
        font-size: 0.9rem;
        padding: 0.42rem 0.66rem;
    }

    .logo-wrap span {
        font-size: 0.98rem;
    }

    .home-grid .home-cards-grid,
    .home-services .home-cards-grid,
    .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .home-about .home-content-block > div,
    .home-services .home-content-block > div {
        grid-template-columns: 1fr;
    }

    .home-hero h1:first-child {
        font-size: clamp(1.52rem, 4.8vw, 2.12rem);
    }
}

@media (max-width: 900px) {
    .menu-button {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        width: 100%;
        border-top: 1px solid var(--line-soft);
        border-bottom: 1px solid var(--line-soft);
        background: rgba(247, 249, 254, 0.98);
        padding: 0.45rem 0 0.75rem;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 25;
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition:
            opacity 180ms ease,
            transform 180ms ease;
        backdrop-filter: blur(8px);
    }

    .main-nav.open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a {
        width: calc(100% - 1.8rem);
        margin: 0 auto;
        border-radius: 12px;
        padding: 0.7rem 0.85rem;
    }

    .nav-shell {
        flex-wrap: wrap;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }

    .logo-wrap span {
        display: none;
    }

    .home-richer + .home-richer {
        margin-top: 0.6rem;
    }

    .home-grid .home-cards-grid,
    .home-services .home-cards-grid,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .index-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-head-inline {
        align-items: flex-start;
        flex-direction: column;
    }

    .carousel-toolbar {
        flex-wrap: wrap;
        align-items: center;
    }

    .carousel-progress {
        min-width: 160px;
        flex: 1 1 100%;
        max-width: none;
    }

    .simple-dots {
        margin-top: 0.7rem;
    }

    .main-nav .btn-small {
        margin-top: 0.45rem;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(1120px, calc(100% - 1.6rem));
    }

    .home-content-card,
    .post-card,
    .article-page,
    .related,
    .home-content-block,
    .home-testimonial {
        border-radius: 12px;
    }

    .logo {
        width: clamp(112px, 36vw, 162px);
        max-width: 162px;
    }

    .carousel-btn {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 1.06rem;
    }
}

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

/* Landing page refresh */
:root {
    --bg: #f3f0e9;
    --surface: #fffdf8;
    --surface-muted: #edf5f1;
    --surface-elevated: #ffffff;
    --surface-soft: #f8f2ea;
    --text: #21333a;
    --muted: #63736c;
    --primary: #896fa5;
    --primary-dark: #4d609d;
    --secondary: #00588f;
    --line: #ded7cb;
    --line-soft: #e9e1d5;
    --line-strong: #c7b9a9;
    --line-accent: #c4bad0;
    --shadow-sm: 0 6px 16px rgba(41, 61, 55, 0.1);
    --shadow: 0 24px 70px rgba(34, 55, 50, 0.14);
    --radius: 28px;
    --radius-sm: 20px;
    --radius-xs: 14px;
}

html,
body {
    max-width: 100%;
}

body {
    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(183, 199, 216, 0.58) 0,
            transparent 32rem
        ),
        radial-gradient(
            circle at 88% 2%,
            rgba(196, 186, 208, 0.62) 0,
            transparent 28rem
        ),
        linear-gradient(180deg, #fbfafc 0%, #f2f4f9 48%, #fffdf8 100%);
}

.site-header {
    background: rgba(255, 253, 248, 0.92);
    border-bottom-color: rgba(178, 172, 199, 0.54);
    overflow: visible;
}

.logo-wrap span {
    display: none;
}

.logo {
    width: clamp(210px, 24vw, 300px);
    max-width: 300px;
}

.main-nav a.btn-small {
    position: relative;
    border: 1px solid rgba(77, 96, 157, 0.2);
    background: linear-gradient(135deg, #896fa5 0%, #4d609d 100%);
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(77, 96, 157, 0.24);
    isolation: isolate;
    overflow: hidden;
}

.main-nav a.btn-small::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #4d609d 0%, #896fa5 100%);
    opacity: 0;
    transition: opacity 180ms ease;
}

.main-nav a.btn-small:hover,
.main-nav a.btn-small:focus-visible {
    border-color: rgba(137, 111, 165, 0.32);
    background: linear-gradient(135deg, #4d609d 0%, #896fa5 100%);
    color: #fff !important;
    filter: none;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(77, 96, 157, 0.32);
}

.main-nav a.btn-small:hover::before,
.main-nav a.btn-small:focus-visible::before {
    opacity: 1;
}

.main-nav a.is-active {
    background: #f0edf5;
    color: #4d3c66;
}

.landing-page {
    overflow: clip;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(244, 239, 230, 0.42) 100%
        ),
        radial-gradient(
            circle at 8% 22%,
            rgba(137, 111, 165, 0.12),
            transparent 24rem
        );
}

.landing-page * {
    min-width: 0;
}

.landing-page p,
.landing-page li,
.landing-page dd {
    color: #344a4f;
    line-height: 1.72;
    overflow-wrap: break-word;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
    color: #1e3035;
}

.landing-page .btn {
    max-width: 100%;
    text-align: center;
    white-space: normal;
}

.landing-hero {
    position: relative;
    padding: clamp(3.2rem, 7vw, 7rem) 0 clamp(2.2rem, 5vw, 4.5rem);
    isolation: isolate;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 76%;
    z-index: -1;
    background:
        linear-gradient(
            135deg,
            rgba(255, 253, 248, 0.94),
            rgba(234, 244, 239, 0.5)
        ),
        radial-gradient(
            circle at 85% 18%,
            rgba(105, 147, 186, 0.22),
            transparent 22rem
        );
    border-bottom: 1px solid rgba(178, 172, 199, 0.38);
}

.hero-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy {
    display: grid;
    gap: clamp(1rem, 2vw, 1.45rem);
    max-width: 720px;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5.35vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-subtitle {
    max-width: 650px;
    margin: 0;
    color: #3d5558;
    font-size: clamp(1.05rem, 1.75vw, 1.28rem);
}

.hero-kicker {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(137, 111, 165, 0.26);
    color: #4d3f67;
    box-shadow: 0 10px 30px rgba(77, 96, 157, 0.1);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 0.5rem 0 0;
}

.hero-facts div {
    padding: 0.95rem;
    border: 1px solid rgba(187, 174, 158, 0.58);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.72);
    box-shadow: 0 16px 38px rgba(56, 80, 72, 0.08);
}

.hero-facts dt {
    margin-bottom: 0.18rem;
    color: #7f5a49;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-facts dd {
    margin: 0;
    color: #20383d;
    font-weight: 800;
    line-height: 1.28;
}

.hero-portrait-card {
    position: relative;
    justify-self: end;
    width: min(100%, 520px);
    padding: clamp(0.6rem, 1.5vw, 1rem);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 34px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(246, 236, 224, 0.74)
        ),
        #fffdf8;
    box-shadow: 0 32px 90px rgba(24, 54, 48, 0.18);
}

.hero-portrait-card::before {
    content: "";
    position: absolute;
    inset: 12% -1.5rem auto auto;
    width: 42%;
    height: 46%;
    border-radius: 999px;
    background: rgba(105, 147, 186, 0.24);
    filter: blur(34px);
    z-index: -1;
}

.hero-portrait-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 52% 42%;
    border-radius: 26px;
    box-shadow: 0 18px 44px rgba(24, 54, 48, 0.16);
}

.portrait-note {
    position: absolute;
    right: clamp(1rem, 2vw, 1.45rem);
    bottom: clamp(1rem, 2vw, 1.45rem);
    width: min(76%, 320px);
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 20px 46px rgba(28, 55, 50, 0.16);
    backdrop-filter: blur(10px);
}

.portrait-note strong,
.portrait-note span {
    display: block;
}

.portrait-note strong {
    color: #4d3c66;
}

.portrait-note span {
    margin-top: 0.22rem;
    color: #68756e;
    font-size: 0.9rem;
    line-height: 1.35;
}

.trust-strip {
    padding: 0 0 clamp(2.4rem, 5vw, 4.8rem);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.trust-grid article {
    padding: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid rgba(206, 191, 173, 0.62);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.82);
    box-shadow: 0 18px 44px rgba(41, 61, 55, 0.09);
}

.trust-grid span {
    display: block;
    color: #6e568d;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-grid strong {
    display: block;
    margin-top: 0.32rem;
    color: #1f363b;
    font-size: clamp(1.03rem, 1.6vw, 1.18rem);
    line-height: 1.25;
}

.landing-section,
.about-panel,
.attendance-panel,
.process-section,
.values-panel,
.landing-faq,
.article-teaser,
.final-cta {
    scroll-margin-top: 92px;
}

.section-intro {
    display: grid;
    gap: 0.65rem;
    width: min(760px, 100%);
    margin-bottom: clamp(1.35rem, 3vw, 2.4rem);
}

.section-intro h2,
.about-copy h2,
.attendance-copy h2,
.values-grid h2,
.landing-faq h2,
.article-teaser h2,
.final-cta-card h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.6vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.section-intro p:not(.section-kicker),
.about-copy p,
.attendance-copy > p,
.landing-faq p,
.final-cta-card p {
    margin: 0;
    font-size: 1.03rem;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.care-card {
    position: relative;
    min-height: 250px;
    padding: clamp(1.1rem, 2vw, 1.45rem);
    border: 1px solid rgba(210, 198, 181, 0.72);
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 253, 248, 0.96),
            rgba(249, 244, 236, 0.9)
        ),
        #fffdf8;
    box-shadow: 0 20px 48px rgba(46, 63, 58, 0.1);
    overflow: hidden;
}

.care-card::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -2.2rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: rgba(137, 111, 165, 0.11);
}

.care-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    background: #f0edf5;
    color: #4d609d;
    font-size: 0.78rem;
    font-weight: 900;
}

.care-card h3,
.attendance-cards h3,
.process-list h3,
.values-list h3 {
    margin: 1rem 0 0.55rem;
    font-size: 1.28rem;
}

.care-card p,
.attendance-cards p,
.process-list p,
.values-list p {
    margin: 0;
}

.about-panel {
    padding-block: clamp(2.8rem, 6vw, 5.5rem);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.8rem, 5vw, 5rem);
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid rgba(199, 185, 169, 0.62);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 0 0,
            rgba(232, 213, 193, 0.52),
            transparent 24rem
        ),
        linear-gradient(135deg, #fffdf8, #eef5f1);
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
    object-position: 52% 30%;
    border-radius: 26px;
    box-shadow: 0 24px 54px rgba(33, 62, 56, 0.18);
}

.about-copy {
    display: grid;
    gap: 1rem;
    padding: clamp(0.4rem, 2vw, 1.2rem);
}

.credential-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0.35rem 0 0.2rem;
}

.credential-list span {
    display: inline-flex;
    padding: 0.46rem 0.72rem;
    border: 1px solid rgba(137, 111, 165, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: #4d3c66;
    font-size: 0.88rem;
    font-weight: 800;
}

.attendance-panel {
    position: relative;
    padding-block: clamp(2.8rem, 6vw, 5.8rem);
    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(178, 172, 199, 0.28),
            transparent 24rem
        ),
        linear-gradient(
            135deg,
            rgba(66, 78, 130, 0.98),
            rgba(137, 111, 165, 0.94)
        );
    color: #fff;
}

.attendance-panel .section-kicker {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.28);
    color: #f8f2ea;
}

.attendance-panel h2,
.attendance-panel h3,
.attendance-panel p,
.attendance-panel figcaption {
    color: #fff;
}

.attendance-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    align-items: center;
    gap: clamp(1.6rem, 5vw, 4rem);
}

.attendance-copy {
    display: grid;
    gap: 1.1rem;
}

.attendance-copy > p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
}

.attendance-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.45rem;
}

.attendance-cards article {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 42px rgba(5, 29, 28, 0.15);
}

.attendance-cards h3 {
    margin-top: 0;
    font-size: 1.08rem;
}

.attendance-cards p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.96rem;
}

.office-photo {
    margin: 0;
}

.office-photo img {
    width: 100%;
    aspect-ratio: 4 / 4.6;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(5, 29, 28, 0.28);
}

.office-photo figcaption {
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.process-section {
    padding-block: clamp(3rem, 6vw, 5.5rem);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: process;
}

.process-list li {
    position: relative;
    padding: 1.1rem;
    border: 1px solid rgba(210, 198, 181, 0.72);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.88);
    box-shadow: 0 18px 44px rgba(41, 61, 55, 0.09);
}

.process-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #896fa5, #4d609d);
    color: #fff;
    font-weight: 900;
}

.process-list h3 {
    margin-top: 0.85rem;
}

.values-panel {
    padding-block: clamp(2.8rem, 6vw, 5.4rem);
    background:
        linear-gradient(
            90deg,
            rgba(255, 253, 248, 0.86),
            rgba(250, 239, 227, 0.78)
        ),
        radial-gradient(
            circle at 18% 20%,
            rgba(105, 147, 186, 0.15),
            transparent 24rem
        );
    border-block: 1px solid rgba(178, 172, 199, 0.54);
}

.values-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
}

.values-list {
    display: grid;
    gap: 0.8rem;
}

.values-list article {
    padding: 1rem 1.05rem;
    border-left: 4px solid #896fa5;
    border-radius: 0 18px 18px 0;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 12px 30px rgba(41, 61, 55, 0.08);
}

.values-list h3 {
    margin-top: 0;
}

.testimonials-panel {
    padding-block: clamp(3rem, 6vw, 5.5rem);
    background:
        radial-gradient(
            circle at 12% 14%,
            rgba(137, 111, 165, 0.13),
            transparent 22rem
        ),
        linear-gradient(
            180deg,
            rgba(255, 253, 248, 0.76),
            rgba(244, 246, 251, 0.72)
        );
}

.testimonials-head {
    margin-bottom: 1.1rem;
}

.testimonials-source {
    max-width: 330px;
    margin: 0;
    color: #68756e;
    font-size: 0.92rem;
    line-height: 1.45;
}

.testimonial-carousel {
    padding: 0.85rem 0.65rem 0.75rem;
    border-color: rgba(178, 172, 199, 0.54);
    background:
        linear-gradient(
            180deg,
            rgba(255, 253, 248, 0.96),
            rgba(247, 244, 251, 0.9)
        ),
        #fffdf8;
    box-shadow: 0 22px 64px rgba(77, 96, 157, 0.12);
}

.testimonial-carousel .carousel-viewport {
    padding: 0.2rem 0.25rem 0.35rem;
}

.testimonial-card {
    min-height: 330px;
    padding: 1rem;
    border: 1px solid rgba(196, 186, 208, 0.82);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(137, 111, 165, 0.08),
            transparent 9rem
        ),
        rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(77, 96, 157, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-card p {
    margin: 0.65rem 0 0;
    color: #263c42;
    font-size: 0.96rem;
    line-height: 1.64;
}

.testimonial-card footer {
    margin-top: auto;
    padding-top: 1rem;
    color: #4d3c66;
    font-weight: 900;
}

.testimonial-stars {
    color: #896fa5;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

.testimonial-carousel .carousel-progress span {
    background: linear-gradient(90deg, #896fa5, #4d609d);
}

.landing-faq {
    padding-block: clamp(3rem, 6vw, 5.4rem);
}

.landing-faq .section-kicker,
.final-cta .section-kicker {
    min-width: 96px;
    justify-content: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: clamp(1.4rem, 5vw, 4rem);
    align-items: start;
}

.faq-grid > div:first-child {
    display: grid;
    gap: 0.9rem;
}

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

.landing-faq details {
    margin: 0;
    border-color: rgba(205, 192, 174, 0.8);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.86);
    box-shadow: 0 14px 36px rgba(41, 61, 55, 0.08);
}

.landing-faq summary {
    padding: 1rem 1.1rem;
    color: #1f363b;
}

.landing-faq details div {
    padding: 0 1.1rem 1.05rem;
}

.article-teaser {
    padding-block: clamp(2.6rem, 5vw, 5rem);
    background: rgba(255, 253, 248, 0.46);
}

.article-teaser .section-head-inline {
    margin-bottom: 1.2rem;
}

.article-teaser-grid .post-card {
    min-height: 260px;
    border-color: rgba(210, 198, 181, 0.72);
    background: rgba(255, 253, 248, 0.9);
}

.final-cta {
    padding-block: clamp(2.6rem, 5vw, 5rem);
}

.final-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(232, 213, 193, 0.64),
            transparent 18rem
        ),
        linear-gradient(135deg, #fffdf8, #eaf3ef);
    border: 1px solid rgba(205, 192, 174, 0.68);
    box-shadow: var(--shadow);
}

.final-cta-card > div:first-child {
    display: grid;
    gap: 0.7rem;
}

.final-cta-card small {
    color: #5e7068;
    font-weight: 800;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: min(100%, 280px);
}

.contact-social {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.25rem;
}

.contact-social span {
    color: #5e7068;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 1080px) {
    .care-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .landing-hero {
        padding-top: 2rem;
    }

    .hero-stage,
    .about-grid,
    .attendance-grid,
    .values-grid,
    .faq-grid,
    .final-cta-card {
        grid-template-columns: 1fr;
    }

    .hero-portrait-card,
    .office-photo {
        justify-self: stretch;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: 270px;
    }

    .final-cta-actions {
        width: 100%;
    }

    .footer-layout {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    body {
        overflow-x: hidden;
    }

    .landing-hero {
        padding-block: 1.45rem 2.2rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.85rem, 9.2vw, 2.65rem);
        line-height: 1;
    }

    .hero-cta-group,
    .final-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-cta-group .btn,
    .final-cta-actions .btn,
    .about-copy .btn,
    .faq-grid .btn {
        width: 100%;
    }

    .hero-facts,
    .care-grid,
    .attendance-cards,
    .process-list {
        grid-template-columns: 1fr;
    }

    .hero-portrait-card {
        border-radius: 26px;
    }

    .hero-portrait-card img,
    .about-image img,
    .office-photo img {
        border-radius: 20px;
    }

    .portrait-note {
        position: static;
        width: auto;
        margin-top: 0.75rem;
    }

    .about-grid,
    .final-cta-card {
        padding: 1rem;
        border-radius: 24px;
    }

    .section-intro h2,
    .about-copy h2,
    .attendance-copy h2,
    .values-grid h2,
    .landing-faq h2,
    .article-teaser h2,
    .final-cta-card h2 {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .care-card {
        min-height: auto;
    }
}

.blog-hero {
    position: relative;
    padding-block: clamp(3.2rem, 7vw, 6.4rem) clamp(2.4rem, 5vw, 4.4rem);
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(105, 147, 186, 0.24),
            transparent 24rem
        ),
        linear-gradient(
            135deg,
            rgba(255, 253, 248, 0.96),
            rgba(244, 246, 251, 0.72)
        );
    border-bottom: 1px solid rgba(178, 172, 199, 0.36);
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 14% auto auto -8rem;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    background: rgba(137, 111, 165, 0.13);
    filter: blur(8px);
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero .home-content-block,
.home-richer#blog .home-content-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid rgba(196, 186, 208, 0.52);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(255, 253, 248, 0.68)
        ),
        rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 70px rgba(77, 96, 157, 0.12);
    backdrop-filter: blur(12px);
}

.blog-hero .home-content-block {
    max-width: 850px;
    padding: clamp(1.4rem, 4vw, 2.6rem);
}

.blog-hero *,
.home-richer#blog *,
.article-page *,
.related * {
    min-width: 0;
    overflow-wrap: break-word;
}

.blog-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.blog-hero .section-text {
    max-width: 680px;
    color: #344a4f;
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.blog-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.42fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
}

.blog-hero-copy {
    align-content: center;
}

.blog-hero-panel {
    position: relative;
    display: grid;
    align-content: end;
    gap: 0.85rem;
    min-height: 100%;
    padding: clamp(1.15rem, 3vw, 1.75rem);
    overflow: hidden;
    border: 1px solid rgba(196, 186, 208, 0.58);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(105, 147, 186, 0.24),
            transparent 12rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 253, 248, 0.9),
            rgba(244, 246, 251, 0.82)
        );
    box-shadow: 0 24px 70px rgba(77, 96, 157, 0.12);
}

.blog-hero-panel::before {
    content: "";
    position: absolute;
    inset: auto -3rem -4rem auto;
    width: 11rem;
    height: 11rem;
    border-radius: 999px;
    background: rgba(137, 111, 165, 0.16);
}

.blog-hero-panel span {
    width: fit-content;
    padding: 0.28rem 0.7rem;
    border: 1px solid rgba(137, 111, 165, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #5f5370;
    font-size: 0.78rem;
    font-weight: 800;
}

.blog-hero .section-kicker,
.blog-page-section .section-kicker,
.blog-hero-panel span {
    min-width: 96px;
    min-height: 1.85rem;
    justify-content: center;
    padding: 0.27rem 0.75rem;
    border: 1px solid #c7dde2;
    background: #edf5f6;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}

.blog-hero-panel strong {
    position: relative;
    color: #1e3035;
    font-family: "Spectral", Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.blog-hero-topics {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.blog-hero-topics a,
.blog-topic-row button {
    border: 1px solid rgba(196, 186, 208, 0.68);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #334952;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.blog-hero-topics a {
    padding: 0.44rem 0.72rem;
}

.blog-hero .home-section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.blog-hero .home-section-cta .btn-outline {
    border-color: rgba(105, 147, 186, 0.36);
    background: rgba(255, 255, 255, 0.88);
    color: #244a54 !important;
}

.blog-hero .home-section-cta .btn-outline:hover {
    border-color: rgba(77, 96, 157, 0.42);
    background: #fff;
    color: #4d609d !important;
}

.home-richer#blog {
    padding-block: clamp(2.6rem, 5vw, 5rem);
    background:
        radial-gradient(
            circle at 10% 6%,
            rgba(196, 186, 208, 0.24),
            transparent 22rem
        ),
        rgba(255, 253, 248, 0.38);
}

.home-richer#blog .home-content-block,
.blog-archive-shell {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.blog-archive-shell {
    gap: clamp(1.25rem, 3vw, 2.2rem);
}

.home-richer#blog .section-head-inline {
    margin-bottom: 1.15rem;
}

.home-richer#blog h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.blog-featured-area {
    padding: clamp(1rem, 2.5vw, 1.6rem);
    border: 1px solid rgba(196, 186, 208, 0.42);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(105, 147, 186, 0.14),
            transparent 15rem
        ),
        rgba(255, 253, 248, 0.62);
}

.blog-featured-head {
    margin-bottom: 1rem;
}

.blog-featured-head > p {
    max-width: 360px;
    color: #5d6a6f;
    line-height: 1.5;
}

.blog-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.8fr));
    gap: 0.85rem;
}

.blog-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 1.05rem;
    overflow: hidden;
    border: 1px solid rgba(196, 186, 208, 0.58);
    border-radius: 22px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.92),
            rgba(248, 250, 255, 0.86)
        ),
        #fff;
    box-shadow: 0 16px 40px rgba(77, 96, 157, 0.1);
}

.blog-feature-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #896fa5, #4d609d, #6993ba);
}

.blog-feature-card-main {
    min-height: 280px;
    padding: clamp(1.1rem, 2vw, 1.45rem);
}

.blog-feature-card .meta {
    margin: 0 0 0.55rem;
    color: #6e568d;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-feature-card h3 {
    margin: 0;
    font-size: clamp(1.28rem, 2vw, 1.8rem);
    line-height: 1.08;
}

.blog-feature-card h3 a {
    color: #1e3035;
    text-decoration: none;
}

.blog-feature-card h3 a:hover {
    color: #4d609d;
}

.blog-feature-card p:not(.meta) {
    margin: 0.7rem 0 1rem;
    color: #344a4f;
}

.blog-feature-card .link-inline {
    margin-top: auto;
    font-weight: 900;
}

.blog-archive-head {
    padding-top: 0.2rem;
}

.blog-archive-shell > .blog-topic-row,
.blog-topic-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    margin-top: -0.4rem;
}

.blog-topic-row button {
    appearance: none;
    display: inline-flex;
    flex: 0 0 auto;
    width: fit-content;
    inline-size: fit-content;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.78rem;
    white-space: nowrap;
}

.blog-hero-topics a:hover,
.blog-hero-topics a.is-active,
.blog-topic-row button:hover,
.blog-topic-row button.is-active {
    border-color: rgba(77, 96, 157, 0.45);
    background: linear-gradient(
        135deg,
        rgba(137, 111, 165, 0.14),
        rgba(105, 147, 186, 0.16)
    );
    color: #4d3c66;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(77, 96, 157, 0.1);
}

.blog-result-state {
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(196, 186, 208, 0.48);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #4f5960;
    font-weight: 800;
}

.archive-search-wrap input {
    max-width: min(100%, 520px);
    border-color: rgba(137, 111, 165, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.88rem 1.05rem;
    box-shadow: 0 12px 28px rgba(77, 96, 157, 0.08);
}

.archive-search-wrap input::placeholder {
    color: #7a7382;
}

.post-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(196, 186, 208, 0.58);
    border-radius: 22px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 253, 248, 0.96),
            rgba(248, 250, 255, 0.9)
        ),
        #fff;
    box-shadow: 0 18px 46px rgba(77, 96, 157, 0.11);
}

.post-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #896fa5, #4d609d, #6993ba);
    opacity: 0.76;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(77, 96, 157, 0.16);
}

.post-card h3 {
    margin-top: 0.35rem;
    font-size: clamp(1.18rem, 1.7vw, 1.45rem);
    line-height: 1.12;
}

.post-card h3 a:hover {
    color: #4d609d;
}

.post-card .meta {
    color: #6e568d;
    font-size: 0.83rem;
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.post-card p:not(.meta) {
    color: #344a4f;
}

.post-card .link-inline {
    color: #4d609d;
}

.article-page {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(1.35rem, 3.5vw, 2.65rem);
    overflow: hidden;
    border: 1px solid rgba(196, 186, 208, 0.58);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(105, 147, 186, 0.14),
            transparent 16rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.95),
            rgba(255, 253, 248, 0.82)
        );
    box-shadow: 0 30px 90px rgba(77, 96, 157, 0.14);
}

.article-page::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 4px;
    background: linear-gradient(90deg, #896fa5, #4d609d, #6993ba);
}

.article-page .meta {
    display: block;
    width: fit-content;
    max-width: min(100%, 900px);
    margin: 0;
    padding: 0.08rem 0 0.08rem 0.78rem;
    border: 0;
    border-left: 3px solid rgba(137, 111, 165, 0.82);
    border-radius: 0;
    background: transparent;
    color: #5f5370;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
    white-space: normal;
}

.article-page h1 {
    max-width: 980px;
    margin: clamp(0.65rem, 1.5vw, 1rem) 0 0;
    color: #1e3035;
    font-size: clamp(1.85rem, 3.55vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.032em;
}

.post-content {
    max-width: min(100%, 980px);
    margin: clamp(1.25rem, 2.6vw, 1.85rem) 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.post-content div:empty {
    display: none;
}

.post-content p,
.post-content div,
.post-content li {
    color: #30464d;
    font-size: clamp(1rem, 1.18vw, 1.06rem);
    line-height: 1.78;
}

.post-content p,
.post-content div,
.post-content ul,
.post-content ol,
.post-content blockquote {
    margin: 0;
}

.post-content > * + * {
    margin-top: 1rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin: 1.5rem 0 0.65rem;
    color: #263344;
    line-height: 1.12;
}

.post-content a {
    color: #4d609d;
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.22rem;
}

.post-content p[style],
.post-content div[style],
.post-content h4[style] {
    text-align: left !important;
}

.post-content span[style] {
    color: inherit !important;
    font: inherit !important;
}

.post-content blockquote,
.post-content p:first-child em strong {
    display: block;
    padding: clamp(1rem, 2vw, 1.35rem);
    border-left: 4px solid #896fa5;
    border-radius: 0 18px 18px 0;
    background:
        linear-gradient(
            90deg,
            rgba(137, 111, 165, 0.12),
            rgba(255, 255, 255, 0.42)
        ),
        rgba(255, 255, 255, 0.58);
    color: #263344;
    font-family: "Spectral", Georgia, serif;
    font-size: clamp(1.12rem, 1.7vw, 1.3rem);
    font-weight: 600;
    line-height: 1.5;
}

.post-content img {
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(77, 96, 157, 0.12);
}

.related {
    margin-top: clamp(2.2rem, 5vw, 4rem);
    padding: clamp(2.4rem, 5vw, 4.6rem) 0;
    border: 0;
    border-radius: 0;
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(196, 186, 208, 0.26),
            transparent 22rem
        ),
        linear-gradient(
            180deg,
            rgba(255, 253, 248, 0.34),
            rgba(244, 246, 251, 0.66)
        );
}

.related .container {
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid rgba(196, 186, 208, 0.5);
    border-radius: 30px;
    background: rgba(255, 253, 248, 0.72);
    box-shadow: 0 22px 64px rgba(77, 96, 157, 0.12);
}

.related h2 {
    margin: 0 0 1.1rem;
    font-size: clamp(1.8rem, 3.3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

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

    .blog-hero-panel {
        min-height: auto;
    }

    .blog-hero .home-content-block,
    .home-richer#blog .home-content-block,
    .related .container {
        border-radius: 24px;
    }

    .blog-hero h1,
    .article-page h1 {
        letter-spacing: -0.04em;
    }
}

@media (max-width: 640px) {
    .blog-hero {
        padding-block: 1.65rem 2.3rem;
    }

    .blog-hero .home-content-block,
    .home-richer#blog .home-content-block,
    .article-page,
    .related .container {
        padding: 1rem;
        border-radius: 22px;
    }

    .blog-hero h1,
    .article-page h1 {
        font-size: clamp(1.78rem, 8vw, 2.35rem);
        line-height: 1.08;
    }

    .blog-hero .home-section-cta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .blog-hero .home-section-cta .btn {
        width: 100%;
    }

    .blog-featured-area {
        padding: 0;
        border: 0;
        background: transparent;
    }

    .article-page .meta {
        width: auto;
        max-width: 100%;
    }

    .post-content {
        padding: 0;
        border: 0;
        background: transparent;
    }
}

.testimonials-panel {
    background:
        radial-gradient(
            circle at 12% 14%,
            rgba(196, 186, 208, 0.2),
            transparent 22rem
        ),
        linear-gradient(
            180deg,
            rgba(255, 253, 248, 0.74),
            rgba(255, 255, 255, 0.9)
        );
}

.testimonials-head {
    display: grid;
    width: 100%;
    justify-items: start;
    gap: 0.55rem;
    margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
    padding-inline: 2.15rem;
    text-align: left;
}

.testimonials-head .section-kicker {
    margin-inline: 0;
}

.testimonials-head h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.6vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.testimonial-carousel.carousel-shell {
    padding: 1.9rem 0 0.4rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.testimonial-carousel.carousel-shell::before {
    display: none;
}

.testimonial-carousel .carousel-toolbar,
.testimonial-carousel .carousel-dots {
    display: none;
}

.testimonial-carousel .carousel-viewport {
    padding: 1rem 2.15rem 0.35rem;
    border-radius: 0;
    overflow: hidden;
}

.testimonial-carousel .carousel-track {
    align-items: stretch;
}

.testimonial-card {
    position: relative;
    min-height: 322px;
    padding: 0 1.25rem 1.35rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    text-align: center;
    isolation: isolate;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 2.15rem 0.55rem 0;
    z-index: -1;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(28, 35, 50, 0.08);
}

.testimonial-profile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 250px);
    margin: 0 auto 0.3rem;
}

.testimonial-avatar {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 0.72rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #896fa5 0%, #4d609d 100%);
    color: #fff;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 0 4px #fff;
}

.testimonial-google {
    position: absolute;
    top: 2.55rem;
    left: calc(50% + 0.7rem);
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(28, 35, 50, 0.18);
}

.testimonial-profile strong {
    max-width: 100%;
    color: #000;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.testimonial-stars {
    margin: 0.35rem 0 0.75rem;
    color: #f6bb06;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
}

.testimonial-card p {
    display: -webkit-box;
    max-width: 28ch;
    margin: 0 auto;
    overflow: hidden;
    color: #242424;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 0.88rem;
    line-height: 1.56;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}

.testimonial-carousel .carousel-btn {
    top: calc(50% + 0.9rem);
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    outline: 2px solid #f4f4f4;
    background: #fff;
    color: #575757;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(28, 35, 50, 0.1);
}

.testimonial-carousel .carousel-btn-prev {
    left: 0.65rem;
}

.testimonial-carousel .carousel-btn-next {
    right: 0.65rem;
}

.testimonial-carousel .carousel-btn:hover {
    border-color: transparent;
    outline-color: #111;
    background: #111;
    color: #fff;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.18);
}

@media (max-width: 640px) {
    .testimonials-head {
        padding-inline: 1.6rem;
    }

    .testimonial-carousel.carousel-shell {
        padding-top: 1.6rem;
    }

    .testimonial-carousel .carousel-viewport {
        padding-inline: 1.6rem;
    }

    .testimonial-card {
        min-height: 295px;
        padding-inline: 1rem;
    }

    .testimonial-card p {
        max-width: 30ch;
        -webkit-line-clamp: 9;
    }
}
