@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("poppins-400.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("poppins-500.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("poppins-600.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("poppins-700.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("poppins-800.ttf") format("truetype");
}

:root {
    --ink: #1a1d24;
    --muted: #626873;
    --line: #e2e6e9;
    --page: #f4f6f7;
    --surface: #ffffff;
    --accent: #0a5f52;
    --accent-dark: #07483f;
    --accent-soft: #e7f3f0;
    --warm: #fff7e8;
    --danger: #a53f36;
    --shadow: 0 20px 60px rgba(20, 30, 40, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.adbar {
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
}

.masthead {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.masthead__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 960px;
    min-height: 64px;
    padding: 0 20px;
}

.brand {
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
}

.breadcrumb {
    color: var(--muted);
    font-size: 12px;
}

.article-shell {
    margin: 0 auto;
    max-width: 1000px;
    padding: 16px 20px 80px;
}

.article {
    background: var(--surface);
    border: 1px solid rgba(226, 230, 233, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero {
    padding: clamp(24px, 4vw, 44px) clamp(18px, 3.2vw, 32px) 0;
}

.hero__eyebrow {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote,
figure {
    margin-top: 0;
}

h1 {
    font-size: clamp(34px, 5.4vw, 52px);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 24px;
    text-transform: none;
}

h3 {
    font-size: 19px;
    line-height: 1.35;
}

.hero__meta,
.hero__byline {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.media {
    border-radius: 14px;
    margin: 28px 0;
    overflow: hidden;
}

.media img,
.media video {
    height: auto;
    width: 100%;
}

.media--hero {
    aspect-ratio: 16 / 9;
    margin-top: 28px;
}

.media--hero img {
    height: 100%;
    object-fit: cover;
}

.media--video {
    background: #0f1217;
    box-shadow: 0 10px 30px rgba(20, 30, 40, 0.12);
}

.media--video video {
    pointer-events: none;
}

.note {
    background: var(--warm);
    border-left: 4px solid #e2b75b;
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    font-weight: 500;
    margin: 26px 0 0;
    padding: 16px 18px;
}

.article__body {
    margin: 0 auto;
    max-width: none;
    padding: 34px clamp(18px, 3.2vw, 32px) 72px;
}

.article__body > p,
.story-section > p,
.guarantee p {
    margin-bottom: 22px;
}

.lead {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.emphasis {
    font-weight: 700;
}

.callout,
.key-line,
blockquote {
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.55;
    margin: 28px 0;
    padding: 22px 24px;
}

.callout {
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
}

.key-line {
    background: var(--ink);
    color: #fff;
    text-align: center;
}

blockquote {
    background: #f6f7f9;
    border-left: 4px solid #9299a3;
}

.quote--large {
    color: var(--accent-dark);
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.story-section {
    border-top: 1px solid var(--line);
    margin-top: 48px;
    padding-top: 48px;
}

.question-stack {
    border-left: 2px solid var(--accent);
    margin: 28px 0;
    padding: 4px 0 4px 24px;
}

.question-stack p {
    font-weight: 600;
    margin: 0 0 12px;
}

.question-stack p:last-child {
    margin-bottom: 0;
}

.feature-grid,
.cost-grid,
.path-grid,
.reviews {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

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

.feature-card,
.cost-card,
.path-grid article,
.review-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
}

.feature-card {
    background: #fbfcfc;
    position: relative;
}

.feature-card__number {
    align-items: center;
    background: var(--accent);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    height: 32px;
    justify-content: center;
    margin-bottom: 16px;
    width: 32px;
}

.feature-card h3,
.cost-card h3,
.path-grid h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.feature-card p,
.cost-card p,
.path-grid p,
.review-card p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
}

.result-list {
    list-style: none;
    margin: 28px 0;
    padding: 0;
}

.result-list li {
    border-bottom: 1px solid var(--line);
    padding: 15px 12px 15px 42px;
    position: relative;
}

.result-list li::before {
    align-items: center;
    background: var(--accent-soft);
    border-radius: 50%;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    color: var(--accent);
    content: "";
    display: flex;
    height: 12px;
    justify-content: center;
    left: 10px;
    position: absolute;
    top: 18px;
    transform: rotate(45deg);
    width: 7px;
}

.timeline {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    margin: 30px 0;
}

.timeline-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.timeline-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.timeline-card div {
    padding: 18px;
}

.timeline-card h3 {
    color: var(--accent);
    margin-bottom: 8px;
}

.timeline-card p {
    color: #4e5560;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

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

.review-card {
    background: #fbfcfc;
}

.review-card__top {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-card__top span {
    color: var(--muted);
    font-size: 11px;
}

.review-card h3 {
    color: var(--accent);
    margin-bottom: 8px;
}

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

.cost-card {
    display: flex;
    flex-direction: column;
}

.cost-card strong {
    color: var(--danger);
    display: block;
    font-size: 15px;
    margin-top: auto;
    padding-top: 16px;
}

.value-story {
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 30px;
}

.value-story h3 {
    color: var(--accent);
    font-size: clamp(23px, 3vw, 31px);
    line-height: 1.2;
    margin: 0 0 16px;
}

.value-story h3:not(:first-child) {
    margin-top: 34px;
}

.value-story p:last-child {
    margin-bottom: 0;
}

.value-story__image {
    margin: 20px 0 28px;
}

.offer {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    display: block;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    padding: 0;
}

.offer__card {
    background: linear-gradient(180deg, #fbfdfc 0%, var(--accent-soft) 100%);
    border: 1px solid #cfe4df;
    border-radius: 18px;
    box-shadow: inset 0 5px 0 var(--accent), 0 18px 44px rgba(10, 95, 82, 0.09);
    padding: clamp(32px, 5vw, 48px) clamp(20px, 5vw, 44px) clamp(28px, 4vw, 38px);
    text-align: center;
}

.offer h2 {
    color: var(--accent-dark);
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 24px;
    text-align: center;
}

.offer__product {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(20, 30, 40, 0.07);
    margin: 0 auto;
    padding: 8px;
    width: min(100%, 410px);
}

.offer__terms {
    margin: 26px auto 18px;
    text-align: center;
}

.offer__terms strong,
.offer__terms span {
    display: block;
}

.offer__terms strong {
    color: var(--accent-dark);
    font-size: clamp(16px, 2.2vw, 19px);
    line-height: 1.3;
}

.offer__terms span {
    color: var(--ink);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    line-height: 1.3;
    margin-top: 7px;
}

.price-row {
    align-items: stretch;
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 24px auto 14px;
    max-width: 470px;
}

.price-row__item {
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 13px 14px;
}

.price-row__item > span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.price-row del {
    color: #5b626b;
    font-size: clamp(24px, 3.8vw, 32px);
    line-height: 1.15;
}

.price-row__current {
    background: #fff;
    border-color: #9fc9bf;
}

.price-row strong {
    color: var(--accent-dark);
    font-size: clamp(32px, 5vw, 44px);
    line-height: 1.1;
}

.offer__currency {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.offer > .cta {
    background: var(--accent);
    border-color: var(--accent-dark);
    box-shadow: 0 12px 26px rgba(10, 95, 82, 0.24);
    color: #fff;
    font-size: clamp(18px, 2.7vw, 23px);
    gap: 12px;
    margin: 24px auto 0;
    max-width: 640px;
    width: calc(100% - 32px);
}

.offer > .cta:hover,
.offer > .cta:focus-visible {
    background: var(--accent-dark);
    box-shadow: 0 15px 32px rgba(10, 95, 82, 0.32);
}

.offer + p {
    margin-top: 42px;
}

.cta {
    align-items: center;
    background: linear-gradient(180deg, #ffda67 0%, #efbd35 100%);
    border: 1px solid #dfa91d;
    border-radius: 11px;
    box-shadow: 0 12px 28px rgba(185, 127, 0, 0.3);
    color: #17201d;
    display: flex;
    font-size: 18px;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.025em;
    margin: 26px auto 0;
    min-height: 60px;
    padding: 17px 30px;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
    width: min(100%, 600px);
}

.cta:hover,
.cta:focus-visible {
    box-shadow: 0 15px 32px rgba(185, 127, 0, 0.38);
    transform: translateY(-3px);
}

.cta--wide {
    display: flex;
    margin: 32px auto;
    max-width: 600px;
}

.guarantee {
    display: block;
}

.guarantee__image {
    margin: 0 0 28px;
}

.guarantee__image img {
    border-radius: 14px;
    width: 100%;
}

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

.path-grid__recommended {
    background: var(--accent-soft);
    border-color: #add4cd !important;
}

.steps {
    counter-reset: none;
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 28px 0;
    padding: 0;
}

.steps li {
    align-items: flex-start;
    background: #f6f7f9;
    border-radius: 12px;
    display: grid;
    gap: 14px;
    grid-template-columns: 76px 1fr;
    padding: 18px;
}

.steps strong {
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
}

.steps span {
    font-size: 16px;
}

.signature {
    border-left: 3px solid var(--accent);
    margin: 40px 0;
    padding-left: 22px;
}

.signature p {
    margin-bottom: 4px;
}

.signature strong {
    font-size: 15px;
}

.postscript {
    background: #f6f7f9;
    border-radius: 14px;
    font-size: 14px;
    margin-top: 30px;
    padding: 22px;
}

.postscript p:last-child {
    margin-bottom: 0;
}

.comments {
    margin-top: 58px;
}

.comment-composer {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: 42px 1fr;
    padding-bottom: 22px;
}

.comment-composer__avatar {
    background:
        radial-gradient(circle at 50% 34%, #aab0b8 0 7px, transparent 8px),
        radial-gradient(ellipse at 50% 100%, #aab0b8 0 15px, transparent 16px),
        #eef0f2;
    border-radius: 50%;
    height: 42px;
    width: 42px;
}

.comment-composer input {
    appearance: none;
    background: #f6f7f9;
    border: 1px solid #d9dde2;
    border-radius: 6px;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    height: 44px;
    min-width: 0;
    outline: none;
    padding: 0 14px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    width: 100%;
}

.comment-composer input::placeholder {
    color: #777e88;
}

.comment-composer input:focus {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(10, 95, 82, 0.12);
}

.comment {
    align-items: start;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 14px;
    grid-template-columns: 48px 1fr;
    padding: 20px 0;
}

.comment--reply {
    margin-left: 62px;
}

.comment__avatar {
    border-radius: 50%;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.comment strong {
    font-size: 14px;
}

.comment p {
    font-size: 14px;
    line-height: 1.55;
    margin: 4px 0;
}

.comment span {
    align-items: center;
    color: #6b7280;
    display: flex;
    font-size: 11px;
    gap: 6px;
}

.comment span img {
    height: 14px;
    object-fit: contain;
    width: 14px;
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
    padding: 48px 20px;
}

.site-footer > div {
    margin: 0 auto;
    max-width: 860px;
}

.site-footer strong {
    color: #fff;
    display: block;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-footer p {
    font-size: 12px;
    line-height: 1.7;
    margin: 12px 0 20px;
}

.site-footer nav {
    display: flex;
    gap: 20px;
}

.site-footer a {
    font-size: 12px;
}

@media (max-width: 760px) {
    body {
        font-size: 16px;
        line-height: 1.7;
    }

    .masthead__inner {
        min-height: 56px;
    }

    .brand {
        font-size: 16px;
    }

    .breadcrumb {
        display: none;
    }

    .article-shell {
        padding: 10px 0 54px;
    }

    .article {
        border-left: 0;
        border-radius: 0;
        border-right: 0;
    }

    .hero {
        padding: 24px 16px 0;
    }

    h1 {
        font-size: clamp(31px, 9vw, 42px);
    }

    .article__body {
        padding: 28px 16px 54px;
    }

    .callout,
    .key-line,
    blockquote {
        font-size: 17px;
        margin: 24px 0;
        padding: 18px;
    }

    .story-section {
        margin-top: 38px;
        padding-top: 38px;
    }

    .feature-grid,
    .cost-grid,
    .path-grid,
    .reviews,
    .timeline {
        grid-template-columns: 1fr;
    }

    .offer {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .offer__card {
        padding: 28px 18px 24px;
    }

    .comment--reply {
        margin-left: 28px;
    }

    .steps li {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero__byline {
        font-size: 11px;
    }

    .media {
        border-radius: 10px;
        margin: 22px 0;
    }

    .feature-card,
    .cost-card,
    .path-grid article,
    .review-card {
        padding: 18px;
    }

    .price-row {
        flex-direction: column;
    }

    .offer > .cta {
        width: 100%;
    }

    .offer + p {
        margin-top: 34px;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
