.home-page {
    --home-ink: #1f2937;
    --home-copy: #4b5563;
    --home-green: #10b981;
    --home-green-dark: #059669;
    --home-line: rgba(16, 185, 129, .16);
    --home-green-soft: #ecfdf5;
    --home-green-soft-strong: #d1fae5;
    --home-white: #ffffff;
}

.home-page .features,
.home-seo-content,
.home-seo-content * {
    box-sizing: border-box;
}

.home-page .features {
    position: relative;
    padding: clamp(4.5rem, 7vw, 6.5rem) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(16, 185, 129, .14), transparent 26rem),
        linear-gradient(180deg, #d1fae5 0%, #ecfdf5 100%);
}

.home-page .features::after {
    content: "";
    position: absolute;
    inset: auto -8rem -11rem auto;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(16, 185, 129, .12);
    border-radius: 50%;
    pointer-events: none;
}

.home-page .features-header {
    max-width: 700px;
    margin: 0 auto 2.75rem;
    padding: 0 1rem;
    text-align: center;
}

.features-kicker,
.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    max-width: 100%;
    margin-bottom: 1.05rem;
    padding: .42rem .72rem;
    border: 1px solid rgba(16, 185, 129, .16);
    border-radius: 999px;
    background: rgba(209, 250, 229, .72);
    color: var(--home-green-dark);
    font-size: .8rem;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .08em;
    text-align: left;
    text-transform: uppercase;
}

.home-page .features-header h2,
.home-seo-content h2 {
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(2.25rem, 4.6vw, 3.65rem);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.home-page .features-header h2 {
    background: linear-gradient(135deg, #059669, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-page .features-header p,
.home-section-heading > p {
    max-width: 680px;
    margin: 1rem auto 0;
    color: var(--home-copy);
    font-size: 1.05rem;
    line-height: 1.75;
}

.home-page .features-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

.home-page .feature-card {
    min-width: 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.25rem;
    border: 1px solid rgba(16, 185, 129, .1);
    border-radius: 26px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 50px rgba(5, 150, 105, .08);
    text-align: center;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.home-page .feature-card::before {
    display: none;
}

.home-page .feature-card:hover {
    border-color: rgba(16, 185, 129, .28);
    box-shadow: 0 24px 60px rgba(5, 150, 105, .13);
    transform: translateY(-7px);
}

.home-page .feature-icon,
.home-step-icon,
.home-audience-card > i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin: 0 0 1.35rem;
    border-radius: 18px;
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    color: var(--home-green-dark);
}

.home-page .feature-icon i {
    color: inherit;
    font-size: 1.55rem;
}

.home-page .feature-card:hover .feature-icon {
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    transform: translateY(-3px) rotate(-3deg);
}

.home-page .feature-card:hover .feature-icon i {
    color: var(--home-green-dark);
}

.home-page .feature-card h3 {
    margin: 0 0 .75rem;
    color: var(--home-ink);
    font-size: 1.25rem;
    line-height: 1.3;
}

.home-page .feature-card p {
    margin: 0;
    color: var(--home-copy);
    font-size: .96rem;
    line-height: 1.65;
}

.home-page .community-telegram {
    margin-top: 1rem;
}

.home-seo-content {
    position: relative;
    overflow: clip;
    color: var(--home-ink);
    background: #fff;
    isolation: isolate;
}

.home-seo-content section {
    --pointer-x: 50%;
    --pointer-y: 50%;
    position: relative;
    padding: clamp(4.75rem, 7vw, 7rem) 0;
    overflow: hidden;
}

.home-seo-content section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle 24rem at var(--pointer-x) var(--pointer-y), rgba(16, 185, 129, .08), transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.home-seo-content section.has-pointer::after {
    opacity: 1;
}

.home-seo-content .container {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2.5rem));
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.home-seo-content p {
    color: var(--home-copy);
    font-size: 1rem;
    line-height: 1.75;
}

.home-story {
    background: linear-gradient(145deg, #fff 0%, #f3fdf8 100%);
}

.home-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
}

.home-story-copy,
.home-story-copy > * {
    min-width: 0;
}

.home-story-copy h2 {
    max-width: 760px;
}

.home-lead {
    margin: 1.5rem 0 .8rem;
    color: #315647 !important;
    font-size: 1.18rem !important;
    font-weight: 700;
    line-height: 1.65 !important;
}

.home-story-copy > p:not(.home-lead) {
    margin: .65rem 0 0;
}

.home-inline-actions,
.home-final-actions {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.home-primary-link,
.home-final-primary,
.home-final-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .8rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.home-primary-link,
.home-final-primary {
    background: var(--home-green);
    color: #fff;
    box-shadow: 0 14px 30px rgba(16, 185, 129, .22);
}

.home-primary-link:hover,
.home-final-primary:hover,
.home-final-secondary:hover {
    transform: translateY(-3px);
}

.home-text-link {
    padding: .7rem .9rem;
    color: var(--home-green-dark);
    font-weight: 800;
    text-underline-offset: .3rem;
}

.home-route-visual {
    position: relative;
    min-height: 400px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background:
        radial-gradient(circle at 30% 25%, rgba(209, 250, 229, .5), transparent 16rem),
        linear-gradient(145deg, #34d399 0%, #059669 100%);
    box-shadow: 0 32px 70px rgba(5, 150, 105, .2);
    overflow: hidden;
}

.home-route-visual::before,
.home-route-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.home-route-visual::before {
    width: 330px;
    height: 330px;
}

.home-route-visual::after {
    width: 235px;
    height: 235px;
    border-style: dashed;
}

.route-orbit {
    display: none;
}

.route-map-card {
    position: relative;
    z-index: 2;
    width: min(82%, 350px);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 22px;
    background: rgba(255, 255, 255, .91);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .16);
    backdrop-filter: blur(14px);
}

.route-map-label {
    display: block;
    color: var(--home-ink);
    font-weight: 800;
}

.route-map-label-end {
    text-align: right;
}

.route-map-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: .8rem;
    margin: 1.4rem 0;
    color: var(--home-green);
    font-size: 1.65rem;
}

.route-map-line span {
    border-top: 2px dashed #6ee7b7;
}

.route-map-line i {
    animation: home-car-drive 2.8s ease-in-out infinite;
}

.home-how {
    background: #f0fdf4;
}

.home-section-heading {
    max-width: 760px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.home-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-steps::before {
    content: "";
    position: absolute;
    top: 47px;
    left: 10%;
    right: 10%;
    border-top: 1px dashed rgba(16, 185, 129, .28);
}

.home-step {
    position: relative;
    min-width: 0;
    padding: 1.6rem;
    border: 1px solid var(--home-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 42px rgba(5, 150, 105, .07);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.home-step:hover {
    border-color: rgba(16, 185, 129, .3);
    box-shadow: 0 22px 52px rgba(5, 150, 105, .12);
    transform: translateY(-7px);
}

.home-step-number {
    position: absolute;
    top: 1.15rem;
    right: 1.2rem;
    color: #a7f3d0;
    font-size: 1.1rem;
    font-weight: 900;
}

.home-step h3,
.home-audience-card h3 {
    margin: 0 0 .65rem;
    color: var(--home-ink);
    font-size: 1.12rem;
}

.home-step p,
.home-audience-card p {
    margin: 0;
    font-size: .94rem;
    line-height: 1.65;
}

.home-audiences {
    background: #fff;
}

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

.home-audience-card {
    min-width: 0;
    padding: 2rem;
    border: 1px solid var(--home-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(5, 150, 105, .07);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.home-audience-card:nth-child(2) {
    background: linear-gradient(155deg, #f4fdf8, #e2f8ed);
}

.home-audience-card:hover {
    border-color: rgba(16, 185, 129, .3);
    box-shadow: 0 24px 58px rgba(5, 150, 105, .12);
    transform: translateY(-7px);
}

.home-trust {
    color: var(--home-ink);
    background:
        radial-gradient(circle at 12% 10%, rgba(16, 185, 129, .18), transparent 30rem),
        linear-gradient(135deg, #d1fae5, #ecfdf5);
}

.home-trust h2 {
    color: var(--home-ink);
}

.home-trust .home-eyebrow {
    color: var(--home-green-dark);
    background: rgba(255, 255, 255, .68);
}

.home-trust p {
    margin-top: 1.1rem;
    color: var(--home-copy);
}

.home-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(380px, .75fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 7rem);
}

.home-trust-list {
    display: grid;
    gap: .75rem;
}

.home-trust-list > div {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(16, 185, 129, .15);
    border-radius: 17px;
    background: rgba(255, 255, 255, .78);
    color: var(--home-ink);
    box-shadow: 0 12px 30px rgba(5, 150, 105, .07);
    backdrop-filter: blur(10px);
}

.home-trust-list i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    border-radius: 12px;
    background: #d1fae5;
    color: var(--home-green-dark);
}

.home-faq {
    background: #f0fdf4;
}

.home-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .62fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 7vw, 6rem);
}

.home-faq-intro {
    align-self: start;
    position: sticky;
    top: 110px;
}

.home-faq-intro > p {
    margin-top: 1.1rem;
}

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

.home-faq-list details {
    border: 1px solid var(--home-line);
    border-radius: 17px;
    background: #fff;
    overflow: clip;
    box-shadow: 0 10px 28px rgba(5, 150, 105, .045);
}

.home-faq-list summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem 1.2rem;
    cursor: pointer;
    color: var(--home-ink);
    font-weight: 800;
    line-height: 1.4;
    list-style: none;
}

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

.home-faq-list summary i {
    color: var(--home-green-dark);
    transition: transform .25s ease;
}

.home-faq-list details[open] summary i {
    transform: rotate(45deg);
}

.home-faq-list details p {
    margin: 0;
    padding: 0 1.2rem 1.2rem;
}

.home-final-cta {
    padding-top: 1.5rem !important;
    background: #f0fdf4;
}

.home-final-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: clamp(2.25rem, 5vw, 4rem);
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .5), transparent 20rem),
        linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid rgba(16, 185, 129, .18);
    box-shadow: 0 28px 70px rgba(5, 150, 105, .16);
}

.home-final-card h2 {
    color: var(--home-ink);
}

.home-final-card .home-eyebrow {
    color: var(--home-green-dark);
    background: rgba(255, 255, 255, .58);
}

.home-final-card p {
    max-width: 660px;
    margin-top: 1.1rem;
    margin-bottom: 0;
    color: var(--home-copy);
}

.home-final-actions {
    flex: 0 0 auto;
    margin-top: 0;
}

.home-final-primary {
    background: var(--home-green-dark);
    color: #fff;
    box-shadow: 0 12px 26px rgba(5, 150, 105, .2);
}

.home-final-secondary {
    border: 1px solid rgba(5, 150, 105, .32);
    background: rgba(255, 255, 255, .62);
    color: var(--home-green-dark);
}

.home-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10050;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.home-progress > span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #059669, #34d399);
    box-shadow: 0 0 12px rgba(16, 185, 129, .5);
    transform: scaleX(0);
    transform-origin: left;
}

.home-section-nav {
    position: fixed;
    top: 50%;
    right: 1rem;
    z-index: 60;
    display: grid;
    gap: .65rem;
    transform: translateY(-50%);
}

.home-section-nav button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(5, 150, 105, .22);
    cursor: pointer;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home-section-nav button.is-active {
    background: var(--home-green);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, .13);
    transform: scale(1.15);
}

.home-effects-enabled .home-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .72, .2, 1);
}

.home-effects-enabled .home-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.home-effects-enabled .home-card-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .55s ease calc(var(--reveal-order, 0) * 75ms),
        transform .55s ease calc(var(--reveal-order, 0) * 75ms);
}

.home-effects-enabled .is-visible .home-card-reveal,
.home-effects-enabled .features.is-visible .home-card-reveal {
    opacity: 1;
    transform: none;
}

.home-tilt {
    transform-style: preserve-3d;
    will-change: transform;
}

.home-tilt.is-tilting {
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-4px);
}

@keyframes home-car-drive {
    0%, 100% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
}

@media (max-width: 1024px) {
    .home-page .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .home-route-visual {
        min-height: 300px;
    }

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

    .home-steps::before {
        display: none;
    }

    .home-section-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-page .features {
        padding: 3.25rem 0;
    }

    .home-page .features-header {
        width: calc(100% - 2rem);
        margin-bottom: 1.65rem;
        padding: 0;
    }

    .home-page .features-header h2,
    .home-seo-content h2 {
        font-size: clamp(1.75rem, 7vw, 2.05rem);
        line-height: 1.15;
        letter-spacing: -.025em;
    }

    .home-page .features-header p,
    .home-section-heading > p {
        margin-top: .7rem;
        font-size: 1rem;
        line-height: 1.68;
    }

    .features-kicker,
    .home-eyebrow {
        margin-bottom: .85rem;
        padding: .4rem .65rem;
        font-size: .82rem;
        line-height: 1.25;
        letter-spacing: .055em;
    }

    .home-page .features-grid {
        grid-template-columns: 1fr;
        gap: .75rem;
        width: calc(100% - 2rem);
        padding: 0;
    }

    .home-page .feature-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 50px minmax(0, 1fr);
        column-gap: .9rem;
        align-items: center;
        padding: 1.05rem;
        border-radius: 18px;
        text-align: left;
    }

    .home-page .feature-card:hover {
        transform: none;
    }

    .home-page .feature-icon {
        grid-row: 1 / span 3;
        width: 50px;
        height: 50px;
        margin: 0;
        border-radius: 15px;
    }

    .home-page .feature-card h3 {
        margin: 0 0 .25rem;
        font-size: 1.08rem;
    }

    .home-page .feature-card p {
        font-size: .95rem;
        line-height: 1.58;
    }

    .home-page .feature-card.community-card .community-telegram {
        grid-column: 2;
        justify-self: start;
        margin-top: .55rem;
    }

    .home-seo-content section {
        padding: 3rem 0;
    }

    .home-seo-content .container {
        width: calc(100% - 2rem);
    }

    .home-seo-content p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .home-story {
        background: #fff;
    }

    .home-story-grid {
        gap: 1.5rem;
    }

    .home-lead {
        margin-top: 1rem;
        font-size: 1.08rem !important;
        line-height: 1.65 !important;
    }

    .home-story-copy > p:not(.home-lead) {
        margin-top: .8rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .home-inline-actions {
        display: grid;
        margin-top: 1.2rem;
    }

    .home-primary-link {
        width: 100%;
    }

    .home-text-link {
        text-align: center;
    }

    .home-route-visual {
        min-height: 205px;
        border-radius: 22px;
    }

    .home-route-visual::before {
        width: 210px;
        height: 210px;
    }

    .home-route-visual::after {
        width: 150px;
        height: 150px;
    }

    .route-map-card {
        width: min(84%, 310px);
        padding: 1.1rem;
    }

    .route-map-label {
        font-size: .9rem;
    }

    .route-map-line {
        margin: .9rem 0;
        font-size: 1.25rem;
    }

    .home-section-heading {
        max-width: none;
        margin: 0 0 1.55rem;
        text-align: left;
    }

    .home-steps,
    .home-audience-grid {
        grid-template-columns: 1fr;
        gap: .7rem;
    }

    .home-step,
    .home-audience-card {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: .85rem;
        align-items: center;
        padding: 1rem;
        border-radius: 17px;
    }

    .home-step:hover,
    .home-audience-card:hover {
        transform: none;
    }

    .home-step-icon,
    .home-audience-card > i {
        grid-row: 1 / span 2;
        width: 46px;
        height: 46px;
        margin: 0;
        border-radius: 14px;
    }

    .home-step-number {
        top: .8rem;
        right: .85rem;
        font-size: .78rem;
    }

    .home-step h3,
    .home-audience-card h3 {
        margin: 0 1.8rem .2rem 0;
        font-size: 1.05rem;
    }

    .home-step p,
    .home-audience-card p {
        margin: 0;
        font-size: .95rem;
        line-height: 1.58;
    }

    .home-trust-grid {
        gap: 1.4rem;
    }

    .home-trust p,
    .home-faq-intro > p,
    .home-final-card p {
        margin-top: .85rem;
    }

    .home-trust-list {
        gap: .55rem;
    }

    .home-trust-list > div {
        align-items: flex-start;
        padding: .85rem;
        border-radius: 14px;
        font-size: .95rem;
        line-height: 1.55;
    }

    .home-trust-list i {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .home-faq-layout {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .home-faq-intro {
        position: static;
    }

    .home-faq-list summary {
        min-height: 52px;
        padding: .85rem 1rem;
        font-size: .96rem;
        line-height: 1.5;
    }

    .home-faq-list details p {
        padding: 0 1rem 1rem;
        font-size: .95rem;
        line-height: 1.65;
    }

    .home-final-cta {
        padding: 2.5rem 0 !important;
    }

    .home-final-card {
        display: block;
        padding: 1.35rem;
        border-radius: 20px;
    }

    .home-final-card h2 {
        font-size: 1.75rem;
    }

    .home-final-actions {
        display: grid;
        margin-top: 1.25rem;
    }

    .home-final-primary,
    .home-final-secondary {
        width: 100%;
        min-height: 46px;
        padding: .75rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 430px) {
    .home-page .features-header,
    .home-page .features-grid,
    .home-seo-content .container {
        width: calc(100% - 2rem);
    }

    .home-seo-content section {
        padding: 2.6rem 0;
    }

    .home-route-visual {
        min-height: 180px;
    }
}

@media (hover: none), (pointer: coarse) {
    .home-page .feature-card:hover,
    .home-step:hover,
    .home-audience-card:hover,
    .home-primary-link:hover,
    .home-final-primary:hover,
    .home-final-secondary:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-effects-enabled .home-reveal,
    .home-effects-enabled .home-card-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .route-map-line i {
        animation: none;
    }

    .home-progress,
    .home-section-nav {
        display: none;
    }
}
