/*--------------------------------------------------------------
 * Front Page Styles
 * Styles specific to the front-page.php template (Home page).
 *
 * @package Thrive_Kids_GI_Care
 *--------------------------------------------------------------*/

/* ── Google Fonts ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 50px auto;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 100vh;
    justify-content: center;
}

/* Background Video */
.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Dark overlay */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 30, 20, 0.6);
    z-index: 1;
}

/* Content — sits above the image, no background */
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 80px 24px 100px;
    box-sizing: border-box;
    animation: heroFadeIn 1s ease-out both;
}

@keyframes heroFadeIn {
    from {
        transform: translateY(24px);
    }

    to {
        transform: translateY(0);
    }
}

/* Heading */
.hero__title {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    /* font-style: italic; */
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 16px;
}

/* Tagline */
.hero__tagline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
}

/* Subtitle — credential line */
.hero__subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(0.78rem, 1.4vw, 0.88rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 28px;
    white-space: nowrap;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
}

/* Trust badges */
.hero__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 auto 0;
}

.hero__badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    white-space: nowrap;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.hero__badge-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.hero__badge-item svg {
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

/* Hero image — below the text content */
.hero__image-wrap {
    width: calc(100% - 32px);
    max-width: 100%;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

.hero__image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* CTA Buttons */
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    padding: 0 10px 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    transition: background-color 0.5s ease, color 0.35s ease, border-color 0.35s ease;
    gap: 14px;
}

/* Sliding background */
.hero__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    transform: translateX(-105%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.hero__btn:hover::before {
    transform: translateX(0);
}

/* Text and arrow above sliding bg */
.hero__btn>span:first-child {
    position: relative;
    z-index: 1;
}

.hero__btn-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: background-color 0.35s ease, color 0.35s ease;
    flex-shrink: 0;
}

/* ── Primary: dark green bg → lime fill on hover ── */
.hero__btn--primary {
    background-color: #2F7D6B;
    color: #ffffff !important;
    border: 1px solid #2F7D6B;
}

.hero__btn--primary .hero__btn-arrow {
    background-color: #ffffff;
    color: #2F7D6B;
}

.hero__btn--primary::before {
    background-color: #276B5C;
}

.hero__btn--primary:hover {
    color: #ffffff !important;
    border-color: #1F4F46;
}

.hero__btn--primary:hover .hero__btn-arrow {
    background-color: #2F7D6B;
    color: #ffffff;
}

/* ── Outline: dark border → lime fill on hover ── */
.hero__btn--outline {
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero__btn--outline .hero__btn-arrow {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.hero__btn--outline::before {
    background-color: #2F7D6B;
}

.hero__btn--outline:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.6);
}

.hero__btn--outline:hover .hero__btn-arrow {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ── Marquee Section ─────────────────────────────────────────── */
.marquee {
    overflow: hidden;
    /* background-color: #276B5C; */
    padding: 40px 0 100px 0;
    position: relative;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 50s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0;
}

.marquee__item {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: normal;
    font-weight: 500;
    color: #276B5C;
    white-space: nowrap;
    padding: 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.marquee__separator {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #2F7D6B;
    padding: 0 8px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover for accessibility */
.marquee:hover .marquee__track {
    animation-play-state: paused;
}

/* ── Process / How It Works Section ─────────────────────────── */
.process {
    padding: 20px 24px 100px;
}

.process__inner {
    max-width: 1300px;
    margin: 0 auto;
}

.process__header {
    text-align: center;
    margin-bottom: 64px;
}

.process__badge {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1F4F46;
    background-color: rgba(158, 240, 26, 0.1);
    border: 1px solid rgba(158, 240, 26, 0.2);
    border-radius: 50px;
    margin-bottom: 28px;
}

.process__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.25;
    color: #1F4F46;
    margin: 0;
}

.process__heading em {
    font-style: italic;
    color: #276B5C;
}

/* ── Cards Grid ──────────────────────────────────────────────── */
.process__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ── Individual Card ─────────────────────────────────────────── */
.process__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px 36px;
    background-color: #fafdf5;
    border: 1px solid rgba(31, 79, 70, 0.08);
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

.process__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(31, 79, 70, 0.08);
    border-color: rgba(158, 240, 26, 0.3);
}

/* ── Step Number ─────────────────────────────────────────────── */
.process__card-num {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(31, 79, 70, 0.35);
    letter-spacing: 0.02em;
    line-height: 1;
    transition: color 0.4s ease;
}

.process__card:hover .process__card-num {
    color: #4e7e00;
}

/* ── Card Tag (for step 4) ───────────────────────────────────── */
.process__card-tag {
    display: inline-block;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #ffffff;
    background-color: #2F7D6B;
    border-radius: 50px;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* ── Icon Circle ─────────────────────────────────────────────── */
.process__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background-color: #2F7D6B;
    color: #ffffff;
    margin-bottom: 24px;
    transition: transform 0.4s ease, background-color 0.4s ease;
    flex-shrink: 0;
}

.process__card:hover .process__card-icon {
    transform: scale(1.08);
    background-color: #276B5C;
}

.process__card-icon svg,
.process__card-img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ── Card Title ──────────────────────────────────────────────── */
.process__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1F4F46;
    margin: 0 0 10px;
    line-height: 1.3;
}

/* ── Card Description ────────────────────────────────────────── */
.process__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    color: #2E2E2E;
    margin: 0;
}

/* ── Highlight Card (Step 4) ─────────────────────────────────── */
.process__card--highlight {
    background-color: #1F4F46;
    border-color: #1F4F46;
}

.process__card--highlight:hover {
    border-color: #2F7D6B;
}

.process__card--highlight .process__card-num {
    color: rgba(204, 255, 51, 0.45);
}

.process__card--highlight:hover .process__card-num {
    color: rgba(204, 255, 51, 0.7);
}

.process__card--highlight .process__card-icon {
    background-color: rgba(204, 255, 51, 0.12);
    color: #2F7D6B;
}

.process__card--highlight:hover .process__card-icon {
    background-color: rgba(204, 255, 51, 0.2);
}

.process__card--highlight .process__card-title {
    color: #ffffff;
}

.process__card--highlight .process__card-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ── CTA Button ───────────────────────────────────────────────── */
.process__cta {
    text-align: center;
    margin-top: 56px;
}

.process__btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
    padding: 0 6px 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    overflow: hidden;
    position: relative;
    gap: 16px;
    background-color: #2F7D6B;
    color: #ffffff !important;
    border: 1px solid #2F7D6B;
    transition: background-color 0.4s ease, color 0.35s ease, border-color 0.35s ease;
}

.process__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background-color: #276B5C;
    transform: translateX(-105%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.process__btn:hover::before {
    transform: translateX(0);
}

.process__btn>span:first-child {
    position: relative;
    z-index: 1;
}

.process__btn:hover {
    color: #ffffff;
    border-color: #1F4F46;
}

.process__btn-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #2F7D6B;
    transition: background-color 0.35s ease, color 0.35s ease;
    flex-shrink: 0;
}

.process__btn:hover .process__btn-arrow {
    background-color: #2F7D6B;
    color: #ffffff;
}

/* ── Process Responsive ───────────────────────────────────────── */
@media screen and (max-width: 1024px) {
    .process__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .process {
        padding: 20px 16px 80px;
    }

    .process__header {
        margin-bottom: 48px;
    }

    .process__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process__card {
        padding: 28px 24px 32px;
    }

    .process__cta {
        margin-top: 40px;
    }
}

/* ── Parents Are Part of the Journey Section ──────────────────────── */
.family-journey {
    padding: 40px 24px 100px;
}

.family-journey__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.family-journey__content {
    max-width: 600px;
}

.family-journey__badge {
    display: inline-block;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4e7e00;
    background-color: #f0f7e6;
    border-radius: 50px;
    margin-bottom: 24px;
}

.family-journey__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: #1F4F46;
    line-height: 1.15;
    margin: 0 0 24px;
}

.family-journey__intro {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #2E2E2E;
    line-height: 1.6;
    margin: 0 0 40px;
}

.family-journey__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.family-journey__list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.family-journey__list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 4px;
}

.family-journey__list-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1F4F46;
    margin: 0 0 8px;
    line-height: 1.3;
}

.family-journey__list-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #2E2E2E;
    margin: 0;
    line-height: 1.6;
}

.family-journey__image-column {
    position: relative;
    border-radius: 20px;
}

.family-journey__image-wrap {
    position: relative;
    padding-top: 50px;
    border-radius: 20px;
    line-height: 0;
}

.family-journey__image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.family-journey__quote-card {
    position: absolute;
    bottom: -24px;
    left: -48px;
    background-color: #ffffff;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(31, 79, 70, 0.08);
    max-width: 420px;
    z-index: 2;
}

.family-journey__quote-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #1F4F46;
    line-height: 1.4;
    margin: 0 0 16px;
}

.family-journey__quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2E2E2E;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .family-journey__inner {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .family-journey__content {
        max-width: 100%;
    }

    .family-journey__quote-card {
        left: 24px;
        bottom: -24px;
        max-width: calc(100% - 48px);
    }
}

@media screen and (max-width: 600px) {
    .family-journey {
        padding: 0 16px 80px;
    }

    .family-journey__quote-card {
        left: 16px;
        bottom: -16px;
        padding: 20px 24px;
        max-width: calc(100% - 32px);
    }
}

/* ── Founder's Note Section ─────────────────────────────────── */
.founder {
    padding: 60px 24px 80px;
}

.founder__inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 56px 48px;
    border: 1px solid rgba(31, 79, 70, 0.08);
    border-radius: 24px;
    background-color: #fafdf5;
}

.founder__avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(31, 79, 70, 0.1);
}

.founder__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder__label {
    display: inline-block;
    padding: 4px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2E2E2E;
    background-color: rgba(31, 79, 70, 0.04);
    border: 1px solid rgba(31, 79, 70, 0.08);
    border-radius: 50px;
    margin-bottom: 20px;
}

.founder__heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 500;
    line-height: 1.4;
    color: #1F4F46;
    margin: 0 0 28px;
}

.founder__heading em {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    color: #276B5C;
}

.founder__quote {
    margin: 0 0 32px;
    padding: 0;
    border: none;
}

.founder__quote p {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.85;
    color: #3d5a3d;
    margin: 0;
}

/* Footer: signature + button */
.founder__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(31, 79, 70, 0.08);
}

.founder__sig {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.founder__sig-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1F4F46;
}

.founder__sig-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #8a9a8a;
}

/* Button — outline style */
.founder__btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 46px;
    padding: 0 5px 0 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    overflow: hidden;
    position: relative;
    gap: 14px;
    background-color: #1F4F46;
    color: #fff !important;
    border: 1.5px solid #1F4F46;
    transition: color 0.35s ease, border-color 0.35s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.founder__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background-color: #2F7D6B;
    transform: translateX(-105%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.founder__btn:hover::before {
    transform: translateX(0);
}

.founder__btn>span:first-child {
    position: relative;
    z-index: 1;
}

.founder__btn:hover {
    color: #fff !important;
    border-color: #1F4F46;
}

.founder__btn-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2F7D6B;
    color: #1F4F46;
    transition: background-color 0.35s ease;
    flex-shrink: 0;
}

.founder__btn:hover .founder__btn-arrow {
    background-color: #2F7D6B;
    color: #ffffff;
}

/* ── Founder Responsive ──────────────────────────────────────── */
@media screen and (max-width: 768px) {
    .founder__inner {
        padding: 44px 32px;
    }

    .founder__footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .founder__sig {
        align-items: center;
    }

    .founder__accent {
        font-size: 6rem;
    }
}

@media screen and (max-width: 480px) {
    .founder {
        padding: 0 16px 80px;
    }

    .founder__inner {
        padding: 36px 24px;
        border-radius: 18px;
    }

    .founder__accent {
        font-size: 5rem;
    }
}

/* ── About Section ───────────────────────────────────────────── */
.about {
    padding: 20px 24px 100px 24px;
}

.about__header {
    text-align: center;
    max-width: 1020px;
    margin: 0 auto 64px;
}

.about__badge {
    display: inline-block;
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #4e7e00;
    background-color: rgba(158, 240, 26, 0.1);
    border: 1px solid rgba(158, 240, 26, 0.2);
    border-radius: 50px;
    margin-bottom: 28px;
}

.about__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 400;
    line-height: 1.45;
    color: #1F4F46;
    margin: 0;
}

.about__heading em {
    font-style: italic;
    color: #276B5C;
}

/* ── Bento Grid ──────────────────────────────────────────────── */
.about__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.about__card {
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
}

/* Stat Cards */
.about__card--stat {
    background-color: #eaf5ee;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 14px;
    color: var(--color-primary, #2F7D6B);
    margin-bottom: 24px;
}

.about__card-stat {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #1F4F46;
    margin: 0 0 auto;
    padding-bottom: 24px;
}

.about__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.7;
    color: #2E2E2E;
    margin: 0;
}

/* Image Cards */
.about__card--image {
    position: relative;
    background-color: #d5ddd5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about__card--image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__card-caption {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Liquid glass layers */
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(5px) saturate(1.4);
    -webkit-backdrop-filter: blur(5px) saturate(1.4);
    /* Glass edge highlights */
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-top-color: rgba(255, 255, 255, 0.7);
    border-left-color: rgba(255, 255, 255, 0.6);
    /* Soft depth shadow */
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    padding: 12px 18px;
    border-radius: 12px;
    margin: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1F4F46;
    width: fit-content;
    transition: all 0.3s ease;
}

.about__card-caption svg {
    flex-shrink: 0;
    color: var(--color-primary, #2F7D6B);
}

/* ── About Responsive ────────────────────────────────────────── */
/* Handled below in consolidated responsive section */

/* ── Services Intro Section ─────────────────────────────────── */
.services-intro {
    padding: 60px 24px;
}

.services-intro__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ── Left: Big heading ──────────────────────────────────────── */
.services-intro__heading {
    flex: 1;
    min-width: 0;
}

.services-intro__heading h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    color: #1F4F46;
    margin: 0;
}

.services-intro__heading h2 em {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: #276B5C;
    font-weight: 500;
}

/* ── Right: Stats bar ───────────────────────────────────────── */
.services-intro__stats {
    display: flex;
    align-items: center;
    background-color: #ece9e1;
    border-radius: 50px;
    padding: 14px 10px;
    gap: 0;
    flex-shrink: 0;
}

.services-intro__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 90px;
}

.services-intro__stat:last-child {
    border-right: none;
}

/* Laurel badge stat */
.services-intro__stat--badge {
    padding: 8px 20px;
}

.services-intro__laurel {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1F4F46;
}

.services-intro__badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.badge-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1F4F46;
    white-space: nowrap;
}

.badge-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #5a5a5a;
    white-space: nowrap;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1F4F46;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #5a5a5a;
    margin-top: 2px;
    letter-spacing: 0.01em;
}

/* ── Bento Grid ─────────────────────────────────────────────── */
.bento-grid {
    max-width: 1440px;
    margin: 100px auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.bento-card {
    border-radius: 16px;
    padding: 14px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 230px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    /* transform: translateY(-3px); */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ── Dark heading card ──────────────────────────────────────── */
.bento-card--wide {
    grid-column: span 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.bento-card--heading {
    background-color: #276B5C;
    position: relative;
}

.bento-card__heading-left {
    display: flex;
    flex-direction: column;
}

.bento-card__heading-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bento-card__review-left {
    display: flex;
    flex-direction: column;
}

.bento-card__review-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bento-card--heading h3 {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #2F7D6B;
    margin: 0;
    line-height: 1.25;
}

.bento-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2F7D6B;
    margin-top: 8px;
}

.bento-card__sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 4px 0 0;
    line-height: 1.3;
}

/* ── Stat card ──────────────────────────────────────────────── */
.bento-card--stat {
    background-color: #e8f5e2;
}

.bento-card__value {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #1F4F46;
    line-height: 1;
}

.bento-card__label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #5a5a5a;
    margin-top: 5px;
}

/* ── Image card ─────────────────────────────────────────────── */
.bento-card--image {
    padding: 0;
    overflow: hidden;
}

.bento-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.bento-card--image:hover img {
    transform: scale(1.05);
}

/* ── Review card ────────────────────────────────────────────── */
.bento-card--review {
    background-color: #e8f5e200;
    border: 1px solid #c4c4c4;
}

.bento-card__stars {
    font-size: 1.2rem;
    color: #1F4F46;
    letter-spacing: 1px;
}

.bento-card__stars span {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-left: 3px;
}

.bento-card__review-main {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1F4F46;
    margin: 3px 0 1px;
}

.bento-card__review-sub {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 0.8rem;
    color: #5a5a5a;
    margin: 0;
}

/* ── Word Morph Section ─────────────────────────────────────── */
.word-morph {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.word-morph__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.word-morph__word {
    position: absolute;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: clamp(5rem, 14vw, 16rem);
    font-weight: 700;
    color: #1F4F46;
    line-height: 1;
    opacity: 0;
    will-change: transform, opacity, filter;
}

.word-morph__word--active {
    opacity: 1;
}

/* ── Benefits Section ───────────────────────────────────────── */
.benefits {
    padding: 100px 40px;
}

.benefits__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.benefits__image {
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 60px;
}

.benefits__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.benefits__content {
    padding: 20px 0;
}

.benefits__badge {
    display: inline-block;
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #4e7e00;
    background-color: rgba(158, 240, 26, 0.1);
    border: 1px solid rgba(158, 240, 26, 0.2);
    border-radius: 50px;
    margin-bottom: 28px;
}

.benefits__heading {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #1F4F46;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.benefits__heading em {
    font-style: italic;
    color: #1a5c2a;
}

.benefits__text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0 0 36px 0;
}

.benefits__btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
    padding: 0 6px 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    overflow: hidden;
    position: relative;
    gap: 20px;
    background-color: transparent;
    color: #276B5C;
    border: 1px solid #276B5C;
    transition: color 0.35s ease, border-color 0.35s ease;
}

.benefits__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background-color: #276B5C;
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.benefits__btn:hover::before {
    transform: translateX(0);
}

.benefits__btn>span:first-child {
    position: relative;
    z-index: 1;
}

.benefits__btn:hover {
    color: #ffffff;
    border-color: #276B5C;
}

.benefits__btn-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(45, 74, 45, 0.1);
    color: #276B5C;
    transition: background-color 0.35s ease, color 0.35s ease;
    flex-shrink: 0;
}

.benefits__btn:hover .benefits__btn-arrow {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* ── How It Works Section ────────────────────────────────────── */
.hiw {
    padding: 100px 24px;
}

.hiw__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
    align-items: start;
}

/* ── Left Column ─────────────────────────────────────────────── */
.hiw__left {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
}

.hiw__title {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: #1F4F46;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
}

/* ── Tabs ─────────────────────────────────────────────────────── */
.hiw__tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw__tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #e0ddd5;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #7a8a7a;
    transition: color 0.3s ease;
}

.hiw__tab:first-child {
    border-top: 1px solid #e0ddd5;
}

.hiw__tab:hover {
    color: #276B5C;
}

.hiw__tab--active {
    color: #1F4F46;
    font-weight: 500;
}

.hiw__tab-check {
    flex-shrink: 0;
    color: #b0bfb0;
    transition: color 0.3s ease;
}

.hiw__tab--active .hiw__tab-check {
    color: #276B5C;
}

/* ── Right Column / Panels ───────────────────────────────────── */
.hiw__right {
    position: relative;
}

.hiw__panels {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 580px;
    height: 600px;
}

.hiw__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
}

.hiw__panel--active {
    opacity: 1;
    visibility: visible;
}

.hiw__panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Description Card ────────────────────────────────────────── */
.hiw__panel-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 20px 24px;
}

.hiw__panel-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-style: italic;
    color: #3a4a3a;
    line-height: 1.65;
    margin: 0;
}

/* ── HIW Responsive ──────────────────────────────────────────── */
@media screen and (max-width: 1200px) {
    .hiw__inner {
        gap: 60px;
    }

    .hiw__panels {
        max-width: 100%;
        height: 520px;
    }

    .hiw__panel-card {
        left: 15%;
    }
}

@media screen and (max-width: 960px) {
    .hiw__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hiw__left {
        position: static;
        justify-content: flex-start;
        gap: 32px;
    }

    .hiw__panels {
        max-width: 100%;
        height: 450px;
    }

    .hiw__panel-card {
        left: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .hiw {
        padding: 70px 16px;
    }

    .hiw__title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    .hiw__left {
        gap: 24px;
    }

    .hiw__tab {
        padding: 16px 0;
        font-size: 0.95rem;
    }

    .hiw__panels {
        height: 380px;
    }

    .hiw__panel-card {
        left: 16px;
        bottom: 16px;
        right: 16px;
        padding: 16px 18px;
    }
}

@media screen and (max-width: 480px) {
    .hiw {
        padding: 50px 12px;
    }

    .hiw__title {
        font-size: 1.5rem;
    }

    .hiw__left {
        gap: 20px;
    }

    .hiw__tab {
        padding: 14px 0;
        font-size: 0.9rem;
        gap: 10px;
    }

    .hiw__tab-check {
        width: 16px;
        height: 16px;
    }

    .hiw__panels {
        height: 320px;
    }

    .hiw__panel-card {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px 14px;
    }

    .hiw__panel-card p {
        font-size: 0.75rem;
        line-height: 1.55;
    }
}

/* ── FAQ Section ─────────────────────────────────────────────── */
.faq {
    background-color: #d5e3c5;
    padding: 100px 24px 50px;
}

.faq__inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.faq__title {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #1F4F46;
    margin: 0 0 16px;
    line-height: 1.2;
}

.faq__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4a5e4a;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 580px;
}

/* ── FAQ List ────────────────────────────────────────────────── */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.35s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ── Question Button ─────────────────────────────────────────── */
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    font-style: italic;
    color: #1F4F46;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: #276B5C;
}

/* ── Plus/Minus Icon ─────────────────────────────────────────── */
.faq__icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f5eb;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__icon-bar {
    position: absolute;
    background-color: #1F4F46;
    border-radius: 2px;
}

.faq__icon-bar--h {
    width: 14px;
    height: 2px;
}

.faq__icon-bar--v {
    width: 2px;
    height: 14px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Active state: rotate vertical bar to form minus */
.faq__item--active .faq__icon-bar--v {
    transform: rotate(90deg);
    opacity: 0;
}

.faq__item--active .faq__icon {
    background-color: #1F4F46;
}

.faq__item--active .faq__icon-bar {
    background-color: #ffffff;
}

/* ── Answer Panel ────────────────────────────────────────────── */
.faq__answer {
    height: 0;
    overflow: hidden;
}

.faq__answer-inner {
    padding: 0 28px 24px;
}

.faq__answer-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #2E2E2E;
    line-height: 1.75;
    margin: 0;
}

/* ── FAQ Responsive ──────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
    .faq {
        padding: 80px 20px;
    }

    .faq__header {
        margin-bottom: 48px;
    }
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 64px 16px;
    }

    .faq__header {
        margin-bottom: 36px;
    }

    .faq__title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    .faq__subtitle {
        font-size: 0.88rem;
    }

    .faq__item {
        border-radius: 10px;
    }

    .faq__question {
        padding: 18px 20px;
        font-size: 1rem;
        gap: 16px;
    }

    .faq__answer-inner {
        padding: 0 20px 20px;
    }

    .faq__answer-inner p {
        font-size: 0.85rem;
    }

    .faq__icon {
        width: 28px;
        height: 28px;
    }

    .faq__icon-bar--h {
        width: 12px;
    }

    .faq__icon-bar--v {
        height: 12px;
    }
}

@media screen and (max-width: 480px) {
    .faq {
        padding: 48px 12px;
    }

    .faq__header {
        margin-bottom: 28px;
    }

    .faq__title {
        font-size: 1.5rem;
    }

    .faq__subtitle {
        font-size: 0.82rem;
    }

    .faq__list {
        gap: 8px;
    }

    .faq__item {
        border-radius: 8px;
    }

    .faq__question {
        padding: 14px 16px;
        font-size: 0.92rem;
        gap: 12px;
    }

    .faq__answer-inner {
        padding: 0 16px 16px;
    }

    .faq__answer-inner p {
        font-size: 0.8rem;
        line-height: 1.65;
    }

    .faq__icon {
        width: 26px;
        height: 26px;
    }

    .faq__icon-bar--h {
        width: 11px;
    }

    .faq__icon-bar--v {
        height: 11px;
    }
}

/* ── Page Content Section ────────────────────────────────────── */
.front-page-content {
    padding: 80px 24px;
}

.front-page-content__inner {
    max-width: 960px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */

/* ── Large Tablets / Small Desktops (≤ 1200px) ──────────────── */
@media screen and (max-width: 1200px) {
    .about__grid {
        gap: 16px;
    }

    .about__card--stat {
        padding: 28px 24px;
    }

    .about__card-stat {
        font-size: 1.1rem;
    }

    .about__card-desc {
        font-size: 0.82rem;
    }
}

/* ── Tablets (≤ 960px) ──────────────────────────────────────── */
@media screen and (max-width: 960px) {
    .hero {
        min-height: 75vh;
    }

    .hero__content {
        max-width: 600px;
        padding: 70px 24px;
    }

    .about {
        padding: 80px 24px;
    }

    .about__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__card {
        min-height: 320px;
    }

    .services-intro__inner {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .benefits {
        padding: 80px 24px;
    }

    .benefits__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits__image {
        max-height: 450px;
        padding: 0;
    }
}

/* ── Phones / Small Tablets (≤ 768px) ───────────────────────── */
@media screen and (max-width: 768px) {
    .hero {
        min-height: 65vh;
        margin: 8px auto;
    }

    .hero__overlay {
        /* border-radius: 12px; */
    }

    .hero__content {
        padding: 56px 20px 56px 20px;
    }

    .hero__title {
        font-size: clamp(1.8rem, 5vw, 2.6rem);
    }

    .hero__subtitle {
        font-size: 0.92rem;
        margin-bottom: 32px;
        white-space: normal;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .about {
        padding: 64px 20px;
    }

    .about__header {
        margin-bottom: 40px;
    }

    .about__heading {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .about__card--stat {
        padding: 28px 22px;
    }

    .about__card-caption {
        padding: 10px 14px;
        font-size: 0.78rem;
    }

    .services-intro {
        padding: 60px 20px;
    }

    .services-intro__stats {
        border-radius: 20px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px;
    }

    .services-intro__stat {
        padding: 8px 16px;
        min-width: 80px;
    }

    .services-intro__stat:nth-child(2) {
        border-right: none;
    }

    .bento-grid {
        gap: 10px;
    }

    .bento-card {
        min-height: 140px;
        padding: 22px 18px;
    }

    .bento-card__value {
        font-size: 2rem;
    }

    .bento-card--wide {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .bento-card--heading h3 {
        font-size: 2rem;
    }

    .bento-card__sub {
        font-size: 0.88rem;
    }

    .front-page-content {
        padding: 48px 16px;
    }

    .benefits {
        padding: 60px 20px;
    }

    .benefits__heading {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .benefits__text {
        font-size: 0.92rem;
    }
}

/* ── Small Phones (≤ 480px) ─────────────────────────────────── */
@media screen and (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }

    .hero__content {
        padding: 66px 16px 56px 16px;
    }

    .hero__title {
        font-size: 1.7rem;
    }

    .hero__subtitle {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .hero__btn {
        font-size: 0.88rem;
        height: 46px;
        padding: 0 5px 0 20px;
    }

    .hero__btn-arrow {
        width: 36px;
        height: 36px;
    }

    .services-intro {
        padding: 48px 16px;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bento-card {
        min-height: 120px;
    }

    .bento-card__value {
        font-size: 1.8rem;
    }

    .bento-card--wide {
        grid-column: span 1;
    }

    .bento-card--heading h3 {
        font-size: 1.6rem;
    }

    .bento-card__sub {
        font-size: 0.82rem;
    }

    .about {
        padding: 48px 16px;
    }

    .about__badge {
        font-size: 0.72rem;
        padding: 6px 16px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about__card {
        min-height: 260px;
    }

    .about__card--image {
        min-height: 220px;
    }

    .about__card-stat {
        font-size: 1.05rem;
    }

    .front-page-content {
        padding: 36px 16px;
    }
}

/* ── Results Compare Section ─────────────────────────────────── */
.results-compare {
    padding: 120px 24px;
    background-color: #faf9f6;
    position: relative;
    overflow: hidden;
}

.results-compare__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left content */
.results-compare__content {
    flex: 1;
    min-width: 0;
    opacity: 0;
    transform: translateX(-30px);
}

.results-compare__badge {
    display: inline-block;
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #4e7e00;
    background-color: rgba(158, 240, 26, 0.1);
    border: 1px solid rgba(158, 240, 26, 0.2);
    border-radius: 50px;
    margin-bottom: 28px;
}

.results-compare__title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.results-compare__title em {
    font-style: italic;
    color: #1F4F46;
}

.results-compare__desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    line-height: 1.75;
    color: #555;
    margin: 0 0 48px;
}

.results-compare__stats {
    display: flex;
    gap: 0;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    background: #fff;
}

.results-compare__stat {
    flex: 1;
    padding: 24px 20px;
    border-right: 1px solid #e8e4dc;
    opacity: 0;
    transform: translateY(16px);
}

.results-compare__stat-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
}

.results-compare__stat:last-child {
    border-right: none;
}

.results-compare__stat-value {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1F4F46;
    line-height: 1;
}

.results-compare__stat-unit {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1F4F46;
    margin-left: 3px;
    vertical-align: baseline;
}

.results-compare__stat-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    color: #888;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.results-compare__disclaimer {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    color: #aaa;
    margin: 0;
    font-style: italic;
    line-height: 1.5;
}

/* Right slider */
.results-compare__visual {
    flex: 0 0 480px;
    opacity: 0;
    transform: translateX(30px);
}

.results-compare__slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.results-compare__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.results-compare__img-wrap--after {
    clip-path: inset(0 50% 0 0);
}

.results-compare__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    pointer-events: none;
}

/* Before/after labels */
.results-compare__label {
    position: absolute;
    bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.results-compare__label--before {
    left: 18px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
}

.results-compare__label--after {
    right: 18px;
    background: rgba(204, 255, 51, 0.85);
    color: #1F4F46;
}

/* Divider */
.results-compare__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.results-compare__handle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F4F46;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    cursor: col-resize;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.results-compare__handle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .results-compare__inner {
        gap: 48px;
    }

    .results-compare__visual {
        flex: 0 0 360px;
    }
}

@media screen and (max-width: 768px) {
    .results-compare {
        padding: 80px 16px;
    }

    .results-compare__inner {
        flex-direction: column;
        gap: 48px;
    }

    .results-compare__visual {
        flex: none;
        width: 100%;
    }

    .results-compare__stats {
        flex-direction: column;
    }

    .results-compare__stat {
        border-right: none;
        border-bottom: 1px solid #e8e4dc;
    }

    .results-compare__stat:last-child {
        border-bottom: none;
    }
}

/* ── Eligibility Section ─────────────────────────────────────── */

.eligibility {
    padding: 100px 24px;
    margin-top: 50px;
    margin-bottom: 120px;
    background-color: #1F4F46;
    position: relative;
    overflow: hidden;
}

.eligibility::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 255, 51, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.eligibility__inner {
    max-width: 1160px;
    margin: 0 auto;
}

.eligibility__header {
    text-align: center;
    margin-bottom: 72px;
}

.eligibility__badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2F7D6B;
    border: 1px solid rgba(204, 255, 51, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.eligibility__title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.eligibility__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 auto;
    max-width: 540px;
}

/* Grid */
.eligibility__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
}

.eligibility__card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: background-color 0.3s ease;
    cursor: default;
}

.eligibility__card:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.eligibility__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.eligibility__card-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

.eligibility__card-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #2F7D6B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1F4F46;
    flex-shrink: 0;
}

.eligibility__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.3;
}

.eligibility__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* CTA card */
.eligibility__card--cta {
    background-color: #d4ff4d;
    border-color: #2F7D6B;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.eligibility__card--cta:hover {
    background-color: #d4ff4d;
}

.eligibility__card-cta-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: #1F4F46;
    margin: 0;
}

.eligibility__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff !important;
    text-decoration: none;
    background-color: #1F4F46;
    border: 1.5px solid #1F4F46;
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, border-color 0.3s ease;
    align-self: flex-start;
}

.eligibility__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #2F7D6B;
    border-radius: 50px;
    transform: translateX(-105%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.eligibility__btn:hover {
    color: #fff;
    border-color: #1F4F46;
}

.eligibility__btn:hover::before {
    transform: translateX(0);
}

.eligibility__btn-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #2F7D6B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1F4F46;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.eligibility__btn:hover .eligibility__btn-arrow {
    background-color: #2F7D6B;
    color: #ffffff;
}

/* Meter */
.eligibility__meter {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.eligibility__meter-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.eligibility__meter-pct {
    color: #2F7D6B;
    font-weight: 700;
}

.eligibility__meter-track {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.eligibility__meter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2F7D6B, #a3cc28);
    border-radius: 4px;
    transition: width 0.05s linear;
}

.eligibility__meter-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    font-style: italic;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .eligibility__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .eligibility {
        padding: 80px 16px;
    }

    .eligibility__grid {
        grid-template-columns: 1fr;
    }

    .eligibility__header {
        margin-bottom: 48px;
    }
}

@media screen and (max-width: 480px) {
    .eligibility {
        padding: 64px 12px;
    }

    .eligibility__card {
        padding: 28px 24px;
    }
}

/* ── Testimonials Section ────────────────────────────────────── */
@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.testimonials {
    padding: 120px 0 0 0;
    overflow: hidden;
}

.testimonials__header {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(24px);
}

.testimonials__badge {
    display: inline-block;
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #4e7e00;
    background-color: rgba(158, 240, 26, 0.1);
    border: 1px solid rgba(158, 240, 26, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
}

.testimonials__title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.testimonials__title em {
    font-style: italic;
    color: #1F4F46;
}

.testimonials__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #777;
    max-width: 480px;
    margin: 0 auto;
}

/* Track wrapper — clips overflow and adds edge fade */
.testimonials__track-wrap {
    overflow: hidden;
    padding: 40px 0;
    max-width: 1200px;
    margin: 20px auto;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testimonials__track-wrap:last-child {
    margin-bottom: 0;
}

/* Track — wide enough for duplicated content */
.testimonials__track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.testimonials__track-wrap--left .testimonials__track {
    animation: marquee-left 38s linear infinite;
}

/* Pause on hover */
.testimonials__track-wrap:hover .testimonials__track {
    animation-play-state: paused;
}

/* Individual card */
.testimonials__card {
    flex-shrink: 0;
    width: 320px;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 20px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonials__card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(158, 240, 26, 0.4);
}

.testimonials__stars {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #2F7D6B;
    line-height: 1;
}

.testimonials__quote {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
    flex: 1;
}

.testimonials__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid #f0ece4;
}

.testimonials__name {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1F4F46;
}

.testimonials__role {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #aaa;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .testimonials__track {
        animation: none;
    }
}

/* ── CTA Banner Section ─────────────────────────────────────── */

.cta-banner {
    padding: 100px 24px 100px;
}

.cta-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: #f2f2f0; */
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    padding: 40px 60px;
    gap: 40px;
    overflow: hidden;
}

.cta-banner__content {
    flex: 1;
    min-width: 0;
}

.cta-banner__heading {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.6rem, 5vw, 3.1rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.1;
    color: #1F4F46;
    margin: 0 0 16px;
}

.cta-banner__subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2E2E2E;
    margin: 0 0 32px;
    max-width: 440px;
}

.cta-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    height: 60px;
    padding: 0 10px 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    transition: background-color 0.5s ease, color 0.35s ease, border-color 0.35s ease;
    gap: 14px;
    margin-bottom: 24px;
    z-index: 1;

    background-color: #2F7D6B;
    color: #ffffff !important;
    border: 1px solid #2F7D6B;
}

.cta-banner__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    transform: translateX(-105%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
    background-color: #276B5C;
}

.cta-banner__btn:hover {
    color: #ffffff !important;
    border-color: #1F4F46;
}

.cta-banner__btn:hover::before {
    transform: translateX(0);
}

.cta-banner__btn>span:first-child {
    position: relative;
    z-index: 1;
}

.cta-banner__btn-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    /* fake box sizing so it scales like the actual arrow container */
    border-radius: 50%;
    font-size: 1.1rem;
    transition: background-color 0.35s ease, color 0.35s ease;
    flex-shrink: 0;

    background-color: #ffffff;
    color: #2F7D6B;
    box-sizing: border-box;
}

.cta-banner__btn:hover .cta-banner__btn-arrow {
    background-color: #2F7D6B;
    color: #ffffff;
}

.cta-banner__trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-banner__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #2E2E2E;
}

.cta-banner__trust-icon {
    color: #2F7D6B;
    flex-shrink: 0;
}

.cta-banner__illustration {
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner__img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

/* ── CTA Banner Responsive ──────────────────────────────────── */
@media screen and (max-width: 768px) {
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
        gap: 32px;
    }

    .cta-banner__trust {
        justify-content: center;
    }

    .cta-banner__illustration {
        flex: 0 0 auto;
    }

    .cta-banner__img {
        max-width: 160px;
    }
}

@media screen and (max-width: 480px) {
    .cta-banner {
        padding: 40px 16px 80px;
    }

    .cta-banner__inner {
        padding: 36px 24px;
        border-radius: 16px;
    }

    .cta-banner__heading br {
        display: none;
    }

    .cta-banner__subtext {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .cta-banner__img {
        max-width: 130px;
    }
}

/* ── Hero Disclaimer ────────────────────────────────────────── */
.hero__disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 auto 32px;
    text-align: center;
    line-height: 1.5;
}

.hero__disclaimer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.hero__disclaimer a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ── Homepage Medical Disclaimer ────────────────────────────── */
.homepage-disclaimer {
    text-align: center;
    padding: 40px 24px 0;
    max-width: 680px;
    margin: 0 auto;
}

.homepage-disclaimer__text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 400;
    color: #9a9a9a;
    margin: 0;
    line-height: 1.5;
}

.homepage-disclaimer__text svg {
    flex-shrink: 0;
    color: #b0b0b0;
}