:root {
    --home-green: #0b3b2d;
    --home-green-soft: #175c45;
    --home-mint: #cfe7d7;
    --home-accent: #f2cf8e;
    --home-ivory: #f7f4ed;
    --home-paper: #fffdf8;
    --home-ink: #10211b;
    --home-muted: #607069;
    --home-line: rgba(11, 59, 45, 0.14);
    --home-shell: min(1440px, calc(100% - 96px));
}

.home-page {
    color: var(--home-ink);
    background: var(--home-ivory);
    word-break: keep-all;
    text-rendering: optimizeLegibility;
}

.home-page main {
    padding-top: 0;
}

.home-page p,
.home-page li,
.home-page a,
.home-page button {
    letter-spacing: -.012em;
}

.home-page p,
.home-page li {
    text-wrap: pretty;
}

.home-page .home-shell {
    width: var(--home-shell);
    margin-inline: auto;
}

.home-page .skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: #fff;
    background: var(--home-green);
    border-radius: 8px;
    transform: translateY(-160%);
}

.home-page .skip-link:focus {
    transform: translateY(0);
}

.home-page .home-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 88px;
    color: #fff;
    background: linear-gradient(180deg, rgba(5, 32, 24, 0.56), transparent);
    border: 0;
    box-shadow: none;
    transition: color .3s ease, background .3s ease, box-shadow .3s ease;
}

.home-page .home-header.scrolled,
.home-page .home-header.menu-open {
    color: var(--home-green);
    background: rgba(255, 253, 248, .95);
    border-bottom: 1px solid var(--home-line);
    box-shadow: 0 12px 40px rgba(24, 51, 41, .08);
    backdrop-filter: blur(18px);
}

.home-page .home-header .header-shell {
    width: var(--home-shell);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.home-page .home-header .brand {
    display: flex;
    width: 158px;
    flex: 0 0 auto;
}

.home-page .home-header .brand img {
    width: 100%;
    filter: brightness(0) invert(1);
    transition: filter .3s ease;
}

.home-page .home-header.scrolled .brand img,
.home-page .home-header.menu-open .brand img {
    filter: none;
}

.home-page .home-header .global-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.65vw, 30px);
    margin-left: auto;
    color: #fff;
}

.home-page .home-header.scrolled .global-nav,
.home-page .home-header.menu-open .global-nav {
    color: var(--home-green);
}

.home-page .home-header .global-nav a::after {
    background: currentColor;
}

.home-page .home-header .global-nav a,
.home-page .header-login {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: inherit;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
    white-space: nowrap;
}

.home-page .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-page .home-header .btn {
    min-height: 44px;
    padding: 0 19px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
}

.home-page .btn-light {
    color: var(--home-green);
    background: #fff;
    border-color: #fff;
}

.home-page .btn-outline-light {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .62);
}

.home-page .home-header.scrolled .btn-light,
.home-page .home-header.menu-open .btn-light {
    color: #fff;
    background: var(--home-green);
    border-color: var(--home-green);
}

.home-page .home-header.scrolled .btn-outline-light,
.home-page .home-header.menu-open .btn-outline-light {
    color: var(--home-green);
    background: transparent;
    border-color: rgba(11, 59, 45, .35);
}

.home-page .menu-toggle {
    display: none;
}

.home-hero {
    position: relative;
    min-height: max(860px, 100svh);
    overflow: hidden;
    color: #fff;
    background: var(--home-green);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease, visibility .9s ease;
}

.hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.hero-slide.is-active > img {
    animation: home-hero-zoom 7s linear both;
}

.hero-slide:nth-child(1) > img {
    object-position: 62% center;
}

.hero-slide:nth-child(3) > img,
.hero-slide:nth-child(4) > img {
    object-position: 58% center;
}

@keyframes home-hero-zoom {
    to { transform: scale(1.08); }
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 36, 27, .92) 0%, rgba(6, 38, 29, .74) 38%, rgba(6, 38, 29, .15) 73%, rgba(6, 38, 29, .16) 100%),
        linear-gradient(0deg, rgba(4, 28, 21, .5) 0%, transparent 46%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: none;
    padding: 132px 0 176px;
}

.hero-kicker,
.home-page .eyebrow {
    margin: 0 0 18px;
    color: var(--home-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.4;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(54px, 5.5vw, 84px);
    font-weight: 760;
    line-height: 1.045;
    letter-spacing: -.045em;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero-copy > p:not(.hero-kicker) {
    max-width: 650px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(18px, 1.35vw, 21px);
    line-height: 1.58;
}

.hero-copy > p strong {
    color: #fff;
    font-weight: 760;
}

.hero-positioning {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.home-page .hero-actions .btn,
.manager-actions .btn {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.2;
}

.home-page .btn-accent {
    color: var(--home-green);
    background: var(--home-accent);
    border-color: var(--home-accent);
}

.home-page .btn-glass {
    color: #fff;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(10px);
}

.hero-secondary-link {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    font-weight: 720;
    text-decoration: none;
}

.hero-secondary-link span {
    font-size: 18px;
    transition: transform .2s ease;
}

.hero-secondary-link:hover span,
.hero-secondary-link:focus-visible span {
    transform: translateX(4px);
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #fff;
    background: rgba(11, 59, 45, .22);
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-slider-controls {
    position: absolute;
    z-index: 6;
    right: max(48px, calc((100% - 1440px) / 2 + 48px));
    bottom: 146px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 2px;
}

.hero-dots button {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hero-dots button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    background: transparent;
    transform: translate(-50%, -50%);
    transition: width .25s ease, background .25s ease;
}

.hero-dots button.is-active::before {
    width: 28px;
    background: #fff;
}

.hero-autoplay-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    padding: 0;
    place-items: center;
    color: #fff;
    background: rgba(11, 59, 45, .24);
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
}

.hero-autoplay-toggle[hidden] {
    display: none;
}

.hero-trustbar {
    position: absolute;
    z-index: 4;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-inline: max(48px, calc((100% - 1440px) / 2));
    background: rgba(7, 45, 34, .86);
    border-top: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(18px);
}

.hero-trustbar div {
    position: relative;
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px clamp(18px, 2vw, 34px);
}

.hero-trustbar div + div::before {
    content: "";
    position: absolute;
    inset: 28px auto 28px 0;
    width: 1px;
    background: rgba(255, 255, 255, .18);
}

.hero-trustbar span {
    flex: 0 0 auto;
    color: var(--home-accent);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .1em;
}

.hero-trustbar p {
    display: grid;
    gap: 4px;
    margin: 0;
}

.hero-trustbar b {
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: break-word;
}

.hero-trustbar small {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.35;
}

.home-section {
    padding: 140px 0;
}

.section-heading h2,
.manager-content h2,
.final-cta-copy h2 {
    margin: 0;
    color: var(--home-green);
    font-size: clamp(43px, 4.2vw, 68px);
    line-height: 1.105;
    letter-spacing: -.04em;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.section-heading .eyebrow,
.trust-section .eyebrow,
.academy-section .eyebrow {
    color: var(--home-green-soft);
}

.intro-section {
    background: var(--home-paper);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 100px;
    align-items: end;
}

.intro-copy {
    padding-bottom: 6px;
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.76;
}

.intro-copy .lead {
    color: var(--home-ink);
    font-size: clamp(22px, 2vw, 29px);
    line-height: 1.52;
    letter-spacing: -.025em;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 78px;
}

.compare-card {
    min-height: 420px;
    padding: 52px;
    border-radius: 32px;
}

.compare-before {
    background: #eeece5;
    border: 1px solid #ddd9cf;
}

.compare-after {
    color: #fff;
    background: var(--home-green);
}

.compare-label {
    display: inline-flex;
    padding: 8px 14px;
    color: var(--home-muted);
    background: rgba(255, 255, 255, .62);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
}

.compare-after .compare-label {
    color: var(--home-accent);
    background: rgba(255, 255, 255, .1);
}

.compare-card h3 {
    margin: 28px 0 30px;
    font-size: clamp(28px, 2.4vw, 40px);
    line-height: 1.3;
    letter-spacing: -.03em;
}

.compare-card ul,
.manager-benefits {
    margin: 0;
    padding: 0;
    list-style: none;
}

.compare-card li {
    position: relative;
    padding: 13px 0 13px 30px;
    color: var(--home-muted);
    border-top: 1px solid rgba(16, 33, 27, .1);
    line-height: 1.55;
}

.compare-card li::before {
    content: "—";
    position: absolute;
    left: 0;
}

.compare-after li {
    color: rgba(255, 255, 255, .75);
    border-color: rgba(255, 255, 255, .13);
}

.compare-after li::before { content: "✓"; color: var(--home-accent); }

.service-section { background: #e8efe9; }

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 80px;
}

.section-heading-row > p {
    max-width: 440px;
    margin: 0 0 4px;
    color: var(--home-muted);
    font-size: 17px;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 72px;
}

.service-card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(17, 56, 42, .12);
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.service-card:hover img { transform: scale(1.045); }

.service-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 37, 28, .92) 0%, rgba(5, 37, 28, .05) 72%);
}

.service-card-copy {
    position: absolute;
    z-index: 2;
    inset: auto 40px 42px;
}

.service-card-copy span {
    color: var(--home-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
}

.service-card-copy h3 {
    margin: 12px 0 14px;
    font-size: 37px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.service-card-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .73);
    max-width: 360px;
    line-height: 1.68;
}

.process-section { background: var(--home-paper); }

.process-grid {
    display: grid;
    grid-template-columns: .78fr 1fr .86fr;
    gap: clamp(38px, 5vw, 80px);
    align-items: start;
}

.process-intro {
    position: sticky;
    top: 130px;
}

.process-intro h2 {
    margin: 0;
    color: var(--home-green);
    font-size: clamp(43px, 4vw, 64px);
    line-height: 1.12;
    letter-spacing: -.04em;
    text-wrap: balance;
    word-break: keep-all;
}

.process-intro > p:not(.eyebrow) {
    margin: 24px 0 28px;
    color: var(--home-muted);
    line-height: 1.7;
}

.home-page .text-link {
    min-height: 44px;
    display: inline-flex;
    gap: 16px;
    align-items: center;
    color: var(--home-green);
    font-weight: 800;
    line-height: 1.45;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 34px 0;
    border-top: 1px solid var(--home-line);
}

.process-list li:last-child { border-bottom: 1px solid var(--home-line); }

.process-list > li > span {
    color: var(--home-green-soft);
    font-size: 14px;
    font-weight: 800;
}

.process-list h3 {
    margin: 0 0 10px;
    color: var(--home-green);
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.process-list p {
    margin: 0;
    color: var(--home-muted);
    line-height: 1.65;
}

.service-preview {
    position: sticky;
    top: 126px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(18, 60, 45, .12);
}

.preview-label {
    color: var(--home-green-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
}

.preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 24px 0 16px;
}

.preview-head img { width: 100px; }
.preview-head span { font-weight: 750; }

.preview-progress {
    height: 7px;
    overflow: hidden;
    background: #e9eee9;
    border-radius: 999px;
}

.preview-progress span {
    display: block;
    width: 54%;
    height: 100%;
    background: var(--home-accent);
}

.preview-manager {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 26px 0;
    padding: 18px;
    background: #f2f6f2;
    border-radius: 18px;
}

.preview-manager > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #fff;
    background: var(--home-green);
    border-radius: 50%;
    font-size: 11px;
}

.preview-manager small,
.preview-manager b { display: block; }
.preview-manager small { color: var(--home-muted); margin-bottom: 3px; }

.service-preview dl { margin: 0; }

.service-preview dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--home-line);
}

.service-preview dt { color: var(--home-muted); }
.service-preview dd { margin: 0; text-align: right; font-weight: 700; }
.service-preview > p { margin: 18px 0 0; color: #7f8c86; font-size: 11px; line-height: 1.6; }

.manager-section {
    position: relative;
    min-height: 820px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--home-green);
}

.manager-photo {
    position: absolute;
    inset: 0 0 0 43%;
    width: 57%;
    height: 100%;
    object-fit: cover;
}

.manager-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--home-green) 0%, var(--home-green) 39%, rgba(11, 59, 45, .9) 54%, rgba(11, 59, 45, .17) 100%);
}

.manager-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.manager-content h2 {
    color: #fff;
    max-width: 720px;
}

.manager-content > p:not(.eyebrow) {
    max-width: 610px;
    margin: 26px 0 28px;
    color: rgba(255, 255, 255, .75);
    font-size: 18px;
    line-height: 1.7;
}

.manager-benefits { max-width: 620px; }

.manager-benefits li {
    position: relative;
    padding: 13px 0 13px 31px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    line-height: 1.55;
}

.manager-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--home-accent);
}

.manager-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.manager-badges span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px 8px 9px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    font-weight: 700;
}

.manager-badges img {
    width: 34px;
    height: 34px;
}

.manager-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.academy-section { background: #e5efe9; }

.academy-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    column-gap: 110px;
    row-gap: 50px;
}

.academy-section .section-heading > p:not(.eyebrow) {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--home-muted);
    line-height: 1.7;
}

.status-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.status-pills span {
    padding: 8px 13px;
    color: var(--home-green);
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(11, 59, 45, .16);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.academy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(11, 59, 45, .14);
    border: 1px solid rgba(11, 59, 45, .14);
}

.academy-list article {
    padding: 34px;
    background: #f8faf6;
}

.academy-list span {
    color: var(--home-green-soft);
    font-size: 12px;
    font-weight: 800;
}

.academy-list h3 { margin: 20px 0 8px; font-size: 22px; line-height: 1.3; letter-spacing: -.025em; }
.academy-list p { margin: 0; color: var(--home-muted); font-size: 14px; line-height: 1.55; }

.academy-actions {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 28px;
}

.trust-section { background: var(--home-paper); }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 70px;
}

.trust-card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    color: var(--home-ink);
    background: var(--home-ivory);
    border: 1px solid var(--home-line);
    border-radius: 24px;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

a.trust-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 20px 45px rgba(16, 54, 40, .1);
}

.trust-card > span {
    color: var(--home-green-soft);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
}

.trust-card h3 {
    margin: auto 0 12px;
    color: var(--home-green);
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.trust-card p { margin: 0; color: var(--home-muted); line-height: 1.6; }
.trust-card b { margin-top: 20px; color: var(--home-green); font-size: 13px; line-height: 1.45; }

.growth-home-section {
    color: #fff;
    background:
        radial-gradient(circle at 84% 12%, rgba(242, 207, 142, .13), transparent 28%),
        var(--home-green);
}

.growth-home-section .section-heading h2 {
    color: #fff;
}

.growth-home-section .eyebrow {
    color: var(--home-accent);
}

.growth-home-section .section-heading-row > p {
    color: rgba(255, 255, 255, .72);
}

.growth-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 68px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: growth-step;
}

.growth-home-grid li {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 38px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
}

.growth-home-grid time {
    color: var(--home-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
}

.growth-home-grid h3 {
    margin: auto 0 15px;
    color: #fff;
    font-size: 27px;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.growth-home-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    line-height: 1.65;
}

.growth-home-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
}

.growth-home-actions .btn {
    flex: 0 0 auto;
}

.growth-home-actions span {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    line-height: 1.55;
}

.final-cta {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.final-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
}

.final-cta-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 37, 28, .93), rgba(5, 37, 28, .65) 47%, rgba(5, 37, 28, .08));
}

.final-cta-copy {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.final-cta-copy h2 { color: #fff; }

.final-cta-copy > p:not(.eyebrow) {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.68;
}

.member-notice {
    padding: 30px 0;
    color: #fff;
    background: #092f24;
}

.member-notice .home-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.member-notice p { margin: 0; color: rgba(255, 255, 255, .65); font-size: 14px; }
.member-notice span { color: var(--home-accent); font-size: 13px; font-weight: 700; }

.home-footer {
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, .68);
    background: #061f18;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 100px;
}

.footer-top > div:first-child > img {
    width: 180px;
    filter: brightness(0) invert(1);
}

.footer-top > div:first-child > p { margin: 24px 0 0; line-height: 1.65; }
.footer-top > div:first-child > small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .44);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links b { margin-bottom: 6px; color: #fff; }
.footer-links a,
.footer-links span { color: rgba(255, 255, 255, .62); font-size: 14px; }

.footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 66px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px;
}

.footer-company-info {
    display: grid;
    gap: 5px;
    max-width: 780px;
    line-height: 1.7;
}

.footer-company-info p {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    margin: 0;
}

.footer-company-info strong {
    color: rgba(255, 255, 255, .88);
}

.footer-company-info a {
    color: rgba(255, 255, 255, .72);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.home-page a:focus-visible,
.home-page button:focus-visible {
    outline: 3px solid var(--home-accent);
    outline-offset: 4px;
}

@media (max-width: 1240px) {
    :root { --home-shell: min(100% - 64px, 1120px); }
    .home-page .home-header .global-nav { gap: 16px; }
    .home-page .header-login,
    .home-page .header-manager-cta { display: none; }
    .hero-arrow { display: none; }
    .process-grid { grid-template-columns: .8fr 1.2fr; }
    .service-preview { position: static; grid-column: 2; }
    .manager-photo { left: 45%; width: 55%; }
}

@media (max-width: 980px) {
    :root { --home-shell: min(100% - 40px, 760px); }
    .home-page .home-header { height: 76px; }
    .home-page .home-header .header-shell { gap: 15px; }
    .home-page .home-header .brand { width: 136px; }
    .home-page .header-care-cta { margin-left: auto; }
    .home-page .menu-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        place-content: center;
        gap: 5px;
        padding: 0;
        color: inherit;
        background: rgba(255, 255, 255, .1);
        border: 1px solid currentColor;
        border-radius: 50%;
    }
    .home-page .menu-toggle span {
        width: 19px;
        height: 2px;
        background: currentColor;
    }
    .home-page .home-header .global-nav {
        position: fixed;
        inset: 76px 0 auto;
        display: none;
        padding: 20px;
        color: var(--home-green);
        background: var(--home-paper);
        border-bottom: 1px solid var(--home-line);
        box-shadow: 0 20px 40px rgba(11, 59, 45, .1);
    }
    .home-page .home-header.menu-open .global-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .home-page .home-header .global-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        background: #f5f7f2;
        border-radius: 10px;
    }
    .home-hero { min-height: 900px; }
    .hero-copy { padding: 126px 0 210px; }
    .hero-copy h1,
    .hero-copy h2 { font-size: clamp(49px, 9vw, 70px); }
    .hero-slide > img { object-position: 64% center; }
    .hero-slide:nth-child(3) > img,
    .hero-slide:nth-child(4) > img { object-position: 63% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(5, 36, 27, .92), rgba(5, 36, 27, .48) 76%, rgba(5, 36, 27, .24)); }
    .hero-trustbar {
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 20px;
    }
    .hero-trustbar div { min-height: 88px; padding: 15px 18px; }
    .hero-trustbar div:nth-child(3)::before { display: none; }
    .hero-trustbar div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.15); }
    .hero-slider-controls { right: 24px; bottom: 194px; }
    .home-section { padding: 96px 0; }
    .intro-grid,
    .academy-grid,
    .footer-top { grid-template-columns: 1fr; gap: 46px; }
    .section-heading-row { display: grid; gap: 28px; }
    .compare-grid { margin-top: 48px; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .service-card:last-child { grid-column: 1 / -1; }
    .service-card { min-height: 520px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-intro { position: static; grid-column: 1 / -1; }
    .service-preview { grid-column: auto; }
    .manager-section { min-height: 900px; }
    .manager-photo { inset: 0; width: 100%; }
    .manager-shade { background: linear-gradient(90deg, rgba(11,59,45,.98), rgba(11,59,45,.82) 62%, rgba(11,59,45,.45)); }
    .academy-list { grid-template-columns: repeat(2, 1fr); }
    .academy-actions { grid-column: 1; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .growth-home-grid { grid-template-columns: 1fr; }
    .growth-home-grid li { min-height: 240px; }
    .member-notice .home-shell { grid-template-columns: 1fr; gap: 8px; }
    .footer-links { max-width: 600px; }
}

@media (max-width: 660px) {
    :root { --home-shell: calc(100% - 32px); }
    .home-page .header-care-cta { display: none; }
    .home-page .home-header .global-nav,
    .home-page .home-header.menu-open .global-nav { grid-template-columns: 1fr; }
    .home-hero { min-height: 850px; }
    .hero-copy { align-self: end; padding: 124px 0 226px; }
    .hero-copy h1,
    .hero-copy h2 { font-size: clamp(40px, 11vw, 52px); line-height: 1.045; }
    .hero-copy > p:not(.hero-kicker) { margin-top: 23px; font-size: 16px; line-height: 1.58; }
    .hero-kicker { font-size: 11px; margin-bottom: 15px; letter-spacing: .06em; }
    .hero-positioning { margin-top: 12px; font-size: 10px; letter-spacing: .1em; }
    .hero-actions { display: grid; gap: 8px; }
    .home-page .hero-actions .btn,
    .manager-actions .btn { width: 100%; min-height: 54px; }
    .hero-secondary-link { min-height: 44px; justify-content: center; padding: 0 8px; }
    .hero-slide > img { object-position: 66% center; }
    .hero-slide:nth-child(3) > img,
    .hero-slide:nth-child(4) > img { object-position: 68% center; }
    .hero-shade { background: linear-gradient(0deg, rgba(5,36,27,.94) 8%, rgba(5,36,27,.55) 70%, rgba(5,36,27,.3)); }
    .hero-trustbar { padding-inline: 8px; }
    .hero-trustbar div { min-height: 82px; gap: 8px; padding: 12px 9px; }
    .hero-trustbar span { font-size: 9px; letter-spacing: .06em; }
    .hero-trustbar b { font-size: 13px; }
    .hero-trustbar small { font-size: 11px; }
    .hero-slider-controls { right: 8px; bottom: 173px; gap: 2px; }
    .hero-dots { gap: 0; }
    .hero-dots button { width: 44px; }
    .hero-autoplay-toggle { width: 44px; height: 44px; }
    .section-heading h2,
    .manager-content h2,
    .final-cta-copy h2,
    .process-intro h2 { font-size: clamp(36px, 10vw, 48px); line-height: 1.14; }
    .compare-grid,
    .service-grid,
    .process-grid,
    .academy-list,
    .trust-grid { grid-template-columns: 1fr; }
    .compare-card { min-height: 0; padding: 34px 26px; }
    .service-card,
    .service-card:last-child { grid-column: auto; min-height: 480px; }
    .service-card-copy { inset: auto 26px 30px; }
    .service-preview { grid-column: 1; }
    .manager-section { min-height: 970px; align-items: end; }
    .manager-content { padding: 100px 0 70px; }
    .manager-photo { object-position: 67% center; }
    .manager-shade { background: linear-gradient(0deg, rgba(11,59,45,1) 18%, rgba(11,59,45,.83) 72%, rgba(11,59,45,.45)); }
    .manager-badges { display: grid; grid-template-columns: repeat(2, 1fr); }
    .manager-actions { display: grid; }
    .academy-actions { display: grid; align-items: start; }
    .trust-card { min-height: 230px; }
    .growth-home-grid { margin-top: 46px; }
    .growth-home-grid li { min-height: 0; padding: 30px 26px; }
    .growth-home-grid h3 { margin: 48px 0 12px; font-size: 24px; }
    .growth-home-actions { display: grid; gap: 16px; }
    .growth-home-actions .btn { width: 100%; }
    .final-cta { min-height: 720px; align-items: end; }
    .final-cta-copy { padding: 90px 0 70px; }
    .final-cta-shade { background: linear-gradient(0deg, rgba(5,37,28,.97), rgba(5,37,28,.68) 72%, rgba(5,37,28,.25)); }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom { display: block; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide > img,
    .service-card img,
    .trust-card {
        animation: none !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto !important; }
}
