.page-hero {
    background: var(--white);
    padding: 96px 0 78px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 780px 420px at 92% 8%, rgba(231,76,60,.09), transparent 62%),
        linear-gradient(180deg, var(--white), var(--off-white));
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 56px;
    align-items: center;
}
.hero-grid > *,
.trust-list div,
.trust-list span {
    min-width: 0;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.04;
    color: var(--dark);
    max-width: 15ch;
    margin: 16px 0 20px;
}
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero .lead {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.68;
    font-weight: 300;
    max-width: 58ch;
    margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-card {
    background: var(--dark-deep);
    color: var(--white);
    border-radius: 20px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-shadow: var(--shadow-lg);
}
.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 460px 260px at 100% 0%, rgba(231,76,60,.18), transparent 60%);
}
.trust-card > * { position: relative; z-index: 1; }
.trust-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 56px;
    line-height: .95;
    letter-spacing: -0.055em;
    margin-bottom: 8px;
}
.trust-card span {
    display: block;
    color: rgba(255,255,255,.52);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 24px;
}
.trust-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.trust-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 13.5px;
    color: rgba(255,255,255,.72);
}
.trust-list span {
    text-align: right;
    overflow-wrap: anywhere;
}
.trust-list b { color: var(--white); font-weight: 650; }

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.reason-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    background: var(--white);
    transition: box-shadow .2s, transform .2s;
}
.reason-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.reason-num {
    display: block;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: 18px;
}
.reason-card h2 {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}
.reason-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
}

.dark-band {
    background: var(--dark-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.dark-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 760px 360px at 75% 40%, rgba(231,76,60,.14), transparent 62%);
    pointer-events: none;
}
.dark-band .container { position: relative; z-index: 1; }
.dark-band .section-head h2 { color: var(--white); }
.dark-band .section-head p { color: rgba(255,255,255,.52); }
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.method-step {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    padding: 24px;
}
.method-step span {
    display: block;
    color: var(--red);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .12em;
    margin-bottom: 18px;
}
.method-step h3 {
    color: var(--white);
    font-size: 15px;
    font-weight: 650;
    margin: 0 0 8px;
}
.method-step p {
    color: rgba(255,255,255,.46);
    font-size: 13px;
    line-height: 1.58;
    margin: 0;
    font-weight: 300;
}

.seo-section { background: var(--off-white); }
.content-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: start;
}
.sticky-note {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    position: sticky;
    top: 92px;
}
.sticky-note h2 {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--dark);
    margin: 0 0 14px;
}
.sticky-note p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}
.article-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 14px;
}
.article-block h3 {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0 0 10px;
}
.article-block p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.72;
    font-weight: 300;
    margin: 0;
}
.article-block p + p { margin-top: 12px; }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    background: var(--white);
}
.faq-item h3 {
    color: var(--dark);
    font-size: 15px;
    font-weight: 650;
    margin: 0 0 8px;
}
.faq-item p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.62;
    font-weight: 300;
    margin: 0;
}

.cta-section {
    background: var(--red);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 360px at 80% 50%, rgba(255,255,255,.13), transparent 62%);
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-inner h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    margin: 0 0 16px;
}
.cta-inner p {
    color: rgba(255,255,255,.72);
    max-width: 52ch;
    margin: 0 auto 34px;
    line-height: 1.65;
    font-weight: 300;
}
.btn-white {
    background: var(--white);
    color: var(--red);
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .15s, box-shadow .15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

@media (max-width: 900px) {
    .hero-grid, .content-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
    .page-hero h1 { font-size: 34px; }
    .page-hero .lead { font-size: 15px; }
    .reasons-grid { grid-template-columns: 1fr 1fr; }
    .method-grid { grid-template-columns: 1fr 1fr; }
    .sticky-note { position: static; }
}
@media (max-width: 600px) {
    .page-hero { padding: 56px 0 48px; }
    .page-hero h1 { font-size: 27px; letter-spacing: -0.04em; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
    .trust-card, .reason-card, .sticky-note, .article-block, .faq-item { padding: 22px; }
    .trust-card strong { font-size: 44px; overflow-wrap: anywhere; }
    .reasons-grid, .method-grid, .faq-grid { grid-template-columns: 1fr; }
    .cta-inner h2 { font-size: 24px; }
}
