:root {
    --font-body: "Roboto", sans-serif;
    --font-heading: "Roboto", sans-serif;
    --primary: #2f5d50;
    --primary-variant: #659e8a;
    --surface: #fff;
    --mint-bg: #659e8a2f;
    --text: #0d1f1a;
    --muted: #2f4a41;
    --shadow-md: 0 14px 28px rgba(47, 93, 80, .07), 0 2px 6px rgba(47, 93, 80, .06)
}

*,
:after,
:before {
    box-sizing: border-box
}

body {
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 1.07rem;
    line-height: 1.68;
    margin: 0;
    padding: 0
}

body,
h1,
h2,
h3,
h4 {
    color: var(--text)
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -.015em;
    line-height: 1.18;
    margin: 0 0 .6rem
}

h1 {
    font-size: clamp(2.5rem, 6vw, 3.94rem)
}

h2 {
    font-size: clamp(1.79rem, 3.5vw, 2.15rem)
}

.bc-eyebrow,
.eyebrow {
    background: rgba(101, 158, 138, .13);
    border-radius: 1.2rem;
    color: var(--primary-variant);
    display: inline-block;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .7rem;
    padding: 2.5px 11px;
    text-transform: uppercase
}

.bc-padded {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    padding-left: clamp(16px, 4vw, 40px);
    padding-right: clamp(16px, 4vw, 40px);
    width: 100%
}

section {
    padding: clamp(2rem, 7vw, 4.5rem) 0
}

.section-mint {
    background: var(--mint-bg)
}

.bc-hero-alt,
.section-wash {
    background: #fff
}

.bc-hero-alt {
    padding: 3.4rem 0 2.2rem
}

.bc-hero-alt-wrap {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 44px
}

.bc-hero-alt-text {
    flex: 1 1 375px;
    min-width: 285px
}

.bc-hero-alt-img {
    align-items: center;
    display: flex;
    flex: 1 1 300px
}

.bc-hero-alt-img img {
    background: #f7faf8;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    max-width: 350px;
    width: 100%
}

.bc-hero-alt-points {
    margin: 1.15em 0 1.2em
}

.bc-hero-alt-points div {
    align-items: center;
    color: var(--primary);
    display: flex;
    font-size: 1.04rem;
    margin-bottom: 3px
}

.bc-hero-alt-bullet {
    font-size: 1.25em;
    line-height: 1;
    margin-right: .54em
}

.bc-hero-alt-btn {
    margin-top: 1rem
}

.split-section {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 56px
}

.split-content {
    flex: 1 1 350px;
    min-width: 290px
}

.split-image {
    display: flex;
    flex: 1 1 300px;
    justify-content: center;
    min-width: 220px
}

.split-image img {
    background: #f7faf8;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    max-width: 350px;
    width: 100%
}

@media(max-width:700px) {
    .split-section {
        flex-direction: column;
        gap: 1.6rem
    }
}

.features-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.4rem;
    max-width: 500px
}

.feature-item {
    align-items: flex-start;
    background: #fff;
    border-radius: 13px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    padding: 1.1em 1.1em .8em 1.3em
}

.feature-icon {
    color: var(--primary-variant);
    font-size: 2.1em;
    margin-bottom: .33em
}

.feature-item h3 {
    color: var(--primary);
    font-size: 1.08em;
    margin: 0 .1em .28em 0
}

.feature-item p {
    color: var(--muted);
    margin: 0
}

@media(max-width:700px) {
    .features-grid {
        grid-template-columns: 1fr
    }
}

/* --- Lifecycle Section (Revised) --- */
.bc-lifecycle-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 5rem;
    background: #fcfdfd;
    /* Light wash */
}

.lifecycle-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 800px;
    /* Square for radial layout */
    margin: 0 auto;
    display: grid;
    place-items: center;
}

/* Center Core */
.lifecycle-core {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #FFFFFF;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(47, 93, 80, 0.08);
}

.core-content h2 {
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.core-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Decorative Rings */
.ring-dashed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 2px dashed #C8DAD7;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.ring-outer-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    border: 2px solid rgba(127, 197, 189, 0.3);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Orbital Items */
.lifecycle-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    /* 
       Rotation Logic:
       1. Rotate to angle (var(--i) * 45deg)
       2. Translate OUT to radius (-310px)
       3. Rotate BACK to keep text upright
    */
    transform:
        translate(-50%, -50%) rotate(calc(var(--i) * 45deg)) translateY(-310px) rotate(calc(var(--i) * -45deg));

    background: #e8f7fa;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    max-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    pointer-events: auto;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.orbit-item:hover {
    background: #E1F3F0;
    border-color: #C8DAD7;
    transform:
        translate(-50%, -50%) rotate(calc(var(--i) * 45deg)) translateY(-318px)
        /* Lift effect */
        rotate(calc(var(--i) * -45deg));
    box-shadow: 0 8px 20px rgba(47, 93, 80, 0.12);
}

.orbit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6E7E7C;
}

.orbit-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.orbit-text {
    font-weight: 600;
    color: #1F2D2B;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .bc-lifecycle-section {
        padding: 3rem 0;
    }

    .lifecycle-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        max-width: 500px;
    }

    .lifecycle-core {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 20px;
        padding: 2.5rem 1.5rem;
    }

    .ring-dashed,
    .ring-outer-arrow {
        display: none;
    }

    .lifecycle-orbit {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .orbit-item {
        position: relative;
        transform: none !important;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
        justify-content: flex-start;
        padding: 1rem;
        border-radius: 12px;
        /* Less rounded on grid */
    }

    .orbit-item:hover {
        transform: translateY(-3px) !important;
    }
}

@media (max-width: 500px) {
    .lifecycle-orbit {
        grid-template-columns: 1fr;
        /* Stack on small screens */
    }
}

.perfecta-row {
    align-items: stretch;
    /* Stretch both children to same height */
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.perfecta-img {
    display: flex;
    flex: 1 1 300px;
    justify-content: center;
    max-width: 450px;
    min-width: 280px;
}

.perfecta-img img {
    background: #f8fcf9;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 100%;
    /* Fill the container height */
    object-fit: cover;
    /* Crop to fit without distortion */
    display: block;
}

.why-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    color: var(--text);
    flex: 1 1 350px;
    margin: 0;
    max-width: 520px;
    padding: 2.2rem 1.5rem 2rem 1.7rem;
    text-align: left
}

.why-card .eyebrow {
    display: inline-block;
    margin-bottom: .8rem;
    margin-top: 0
}

.why-card h2 {
    color: var(--primary);
    font-size: 1.45rem;
    margin-bottom: 1rem;
    margin-top: .04em
}

.why-list {
    font-size: 1.09em;
    list-style: none;
    margin: 0;
    padding: 0
}

.why-list li {
    align-items: flex-start;
    color: var(--primary);
    display: flex;
    gap: 1.2em;
    margin-bottom: 1.2em;
}

.why-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -3px;
    /* Align with first line height */
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(47, 93, 80, 0.1));
}

.why-text {
    font-size: 1.05em;
    line-height: 1.4;
    padding-top: 5px;
    /* Visual balance with the icon */
}

@media (max-width:800px) {
    .perfecta-row {
        align-items: center;
        flex-direction: column;
        gap: 2.1rem
    }

    .perfecta-img,
    .why-card {
        flex: 1 1 100%;
        max-width: 100vw
    }

    .why-card {
        margin: 0 auto;
        padding: 1.2rem .7rem 1.5rem .95rem
    }
}

.outcomes-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
    margin: 2.1em 0 1.6em
}

.outcome-card {
    background: #fff;
    border-radius: 13px;
    box-shadow: var(--shadow-md);
    padding: 1.25em 1em .95em 1.1em;
    text-align: left
}

.outcome-card h3 {
    color: var(--primary);
    font-size: 1.07em;
    margin-top: 0
}

@media(max-width:900px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .outcomes-grid {
        grid-template-columns: 1fr
    }
}

.faq-grid {
    display: grid;
    gap: 1.2em;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 1.8em
}

.faq-card {
    background: #fff;
    border-radius: 13px;
    box-shadow: var(--shadow-md);
    min-width: 0;
    padding: 1.35em 1em 1.1em 1.17em
}

.faq-card h3 {
    font-size: 1.02em
}

.cta-box {
    background: linear-gradient(135deg, rgba(127, 224, 195, .1), rgba(47, 93, 80, .09));
    border: 2px solid rgba(47, 93, 80, .13);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(3, 30, 22, .12);
    color: var(--text);
    margin: 0 auto;
    max-width: 1168px;
    padding: 24px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    width: 100%
}

.cta-box:hover {
    box-shadow: 0 26px 64px rgba(3, 30, 22, .18);
    transform: translateY(-6px)
}

.cta-box h3 {
    font-size: 1.9rem;
    margin: 0 0 .85rem
}

.btns {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center
}

.btn {
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(47, 93, 80, .14);
    border-radius: .875rem;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    gap: .625rem;
    padding: .875rem 1.125rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .16s
}

.btn.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.btn.primary:focus-visible,
.btn.primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px)
}

/* Utility to replace inline CTA padding */
.cta-tight {
    padding-top: 1.5rem;
    padding-bottom: 2.2rem;
}