.content-page {
    padding-top: 88px;
    background: var(--paper);
}

.content-hero {
    position: relative;
    padding: 104px 0 88px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 28%, rgba(114, 89, 210, .16), transparent 30%),
        linear-gradient(180deg, #fafaf8 0%, #f4f1eb 100%);
}

.content-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -180px;
    bottom: -230px;
    border: 1px solid rgba(73, 55, 140, .16);
    border-radius: 50%;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 30px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
}

.breadcrumbs a:hover { color: var(--violet); }
.breadcrumbs span[aria-hidden] { color: var(--muted); }

.content-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
    align-items: center;
    gap: 70px;
}

.content-hero h1 {
    max-width: 820px;
    margin-bottom: 25px;
    font-size: clamp(54px, 7vw, 92px);
}

.content-hero .lead {
    max-width: 720px;
    margin-bottom: 32px;
    color: var(--ink-soft);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0 0;
}

.hero-proof span,
.topic-pill {
    padding: 8px 13px;
    color: var(--violet);
    background: rgba(114, 89, 210, .09);
    border: 1px solid rgba(114, 89, 210, .14);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.content-phone {
    width: min(300px, 78vw);
    margin-inline: auto;
    padding: 11px;
    background: var(--ink);
    border-radius: 42px;
    box-shadow: var(--shadow-phone);
    transform: rotate(2deg);
}

.content-phone img {
    width: 100%;
    height: auto;
    border-radius: 32px;
}

.content-section { padding: 104px 0; }
.content-section.alt { background: var(--paper-warm); }
.content-section.dark { color: var(--white); background: var(--ink); }

.prose-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    align-items: start;
    gap: 84px;
}

.prose { max-width: 780px; }
.prose h2 { margin: 0 0 24px; font-size: clamp(38px, 4.5vw, 58px); }
.prose h3 { margin: 46px 0 14px; font-size: 27px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 17px; }
.prose li + li { margin-top: 10px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--violet); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.side-card {
    position: sticky;
    top: 112px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.side-card h2,
.side-card h3 { margin-bottom: 15px; font-family: var(--font-body); font-size: 18px; letter-spacing: -.02em; }
.side-card p { color: var(--ink-soft); font-size: 14px; }
.side-card ul { margin: 20px 0 0; padding-left: 20px; color: var(--ink-soft); font-size: 14px; }
.side-card .button { width: 100%; margin-top: 18px; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.info-card,
.guide-card {
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 50px rgba(25, 26, 49, .06);
}

.info-card .card-number {
    display: block;
    margin-bottom: 34px;
    color: #755b25;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.info-card h3,
.guide-card h2 { margin-bottom: 14px; font-family: var(--font-body); font-size: 23px; letter-spacing: -.035em; }
.info-card p,
.guide-card p { margin-bottom: 0; color: var(--ink-soft); }

.guide-card {
    display: flex;
    min-height: 290px;
    flex-direction: column;
}

.guide-card .topic-pill { align-self: flex-start; margin-bottom: 28px; }
.guide-card .text-link { margin-top: auto; padding-top: 24px; }

.section-intro {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-intro h2 { margin-bottom: 18px; font-size: clamp(42px, 5vw, 64px); }
.section-intro p { color: var(--ink-soft); font-size: 18px; }

.dark .section-intro p,
.dark .info-card p { color: rgba(255, 255, 255, .7); }
.dark .info-card { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); box-shadow: none; }
.dark .info-card h3 { color: var(--white); }
.dark .info-card .card-number { color: var(--gold-light); }

.comparison-table {
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.comparison-table th { color: var(--white); background: var(--ink); }
.comparison-table td:first-child { font-weight: 800; }
.comparison-table tr:last-child td { border-bottom: 0; }

.faq-list { max-width: 880px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 0; cursor: pointer; font-weight: 800; }
.faq-list details p { max-width: 740px; padding-bottom: 24px; color: var(--ink-soft); }

.related-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.related-links a {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-weight: 800;
    transition: transform .2s ease, border-color .2s ease;
}

.related-links a:hover { transform: translateY(-3px); border-color: var(--gold); }

@media (max-width: 980px) {
    .content-hero-grid,
    .prose-wrap { grid-template-columns: 1fr; }
    .content-hero-grid { gap: 50px; }
    .content-phone { width: min(270px, 72vw); }
    .prose-wrap { gap: 42px; }
    .side-card { position: static; }
    .card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .content-hero { padding: 72px 0 64px; }
    .content-hero h1 { font-size: 49px; }
    .content-section { padding: 76px 0; }
    .card-grid,
    .related-links { grid-template-columns: 1fr; }
    .comparison-table { display: block; overflow-x: auto; }
}
