:root {
    color-scheme: light;
    --bg: #f6f7fb;
    --bg-alt: #ffffff;
    --accent: #4d7cfe;
    --accent-dark: #2e53c7;
    --text: #1b1f3b;
    --text-muted: #5a6072;
    --border: #e0e4f2;
    --shadow: 0 18px 35px -25px rgba(20, 29, 95, 0.4);
    --radius: 18px;
    font-family: 'Rubik', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-size: 17px;
    line-height: 1.6;
}

body, input, button, textarea {
    font-family: inherit;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-dark);
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    color: var(--text);
}

.brand-logo {
    font-size: 28px;
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    color: var(--text);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list a.is-active {
    color: var(--accent);
    font-weight: 600;
}

.nav-list a:hover,
.nav-list a:focus {
    color: var(--accent);
}

.header-highlight {
    padding-bottom: 16px;
}

.header-strapline {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
}

.site-content {
    flex: 1;
    /* padding: 40px 0 60px; */
}

.section {
    padding: 48px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 42px;
}

.section-header h1,
.section-header h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 36px);
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
}




.home-hero {
    padding: 80px 0 70px;
    background: linear-gradient(180deg, rgba(77, 124, 254, 0.05) 0%, rgba(255, 255, 255, 0) 65%);
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

.home-hero__content {
    display: grid;
    gap: 20px;
    position: relative;
    max-width: 600px;
}

.home-hero__content h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
}

.lead {
    color: var(--text-muted);
    font-size: 19px;
    margin: 0;
}

.home-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(77, 124, 254, 0.22);
    background: rgba(77, 124, 254, 0.08);
    color: var(--accent-dark);
    font-weight: 600;
    box-shadow: 0 18px 30px -24px rgba(21, 39, 110, 0.55);
}

.highlight-chip__icon {
    font-size: 18px;
}

.home-hero__quote {
    margin: 14px 0 0;
    padding: 18px 20px 24px;
    border-left: 4px solid var(--accent);
    background: rgba(77, 124, 254, 0.08);
    border-radius: 18px;
    position: relative;
    color: var(--accent-dark);
}

.home-hero__quotation-mark {
    position: absolute;
    font-size: 54px;
    color: rgba(77, 124, 254, 0.16);
    top: -18px;
    left: 16px;
}

.home-hero__quote p {
    margin: 0;
    font-weight: 600;
}

.home-hero__quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 14px;
    color: var(--text-muted);
}

.home-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(77, 124, 254, 0.1);
}

.home-hero__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4vw, 36px);
    min-height: clamp(380px, 52vw, 540px);
}

.home-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    z-index: 0;
    animation: heroFloat 9s ease-in-out infinite;
}

.home-hero__shape--one {
    width: 340px;
    height: 340px;
    background: rgba(77, 124, 254, 0.28);
    top: -90px;
    right: 8%;
}

.home-hero__shape--two {
    width: 240px;
    height: 240px;
    background: rgba(255, 193, 70, 0.32);
    bottom: -70px;
    left: 12%;
    animation-delay: 1.4s;
}

.home-hero__shape--three {
    width: 180px;
    height: 180px;
    background: rgba(106, 210, 181, 0.28);
    top: 16%;
    left: -60px;
    animation-delay: 2.3s;
}

.home-hero__frame {
    position: relative;
    width: min(640px, 100%);
    border-radius: 36px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 248, 255, 0.92) 40%, rgba(255, 226, 189, 0.9) 100%);
    box-shadow: 0 42px 80px -48px rgba(21, 39, 110, 0.55);
    border: 1px solid rgba(77, 124, 254, 0.18);
    padding: clamp(34px, 5vw, 54px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.home-hero__frame::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    top: -90px;
    right: -90px;
}

.home-hero__img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.home-hero__badge {
    position: absolute;
    left: clamp(18px, 8%, 70px);
    bottom: clamp(18px, 8%, 70px);
    width: min(320px, 72%);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(77, 124, 254, 0.16);
    padding: clamp(18px, 3vw, 26px);
    box-shadow: 0 35px 60px -45px rgba(21, 39, 110, 0.45);
    backdrop-filter: blur(6px);
    z-index: 2;
    animation: heroFloat 7s ease-in-out infinite;
}

.home-hero__badge-title {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.home-hero__badge-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.home-hero__badge-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.home-hero__badge-list span {
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
}

.home-hero__badge-list small {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.3;
}

@keyframes heroFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.card-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.card {
    background: var(--bg-alt);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow);
}

.card--category {
    gap: 14px;
}

.card--story {
    gap: 16px;
}

.card--story .card__media {
    display: block;
    width: 100%;
    margin: -28px -28px 16px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__icon {
    font-size: 32px;
}

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

.card h3,
.card h2 {
    margin: 0;
    font-size: 22px;
}

.card-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
}

.card-link {
    margin-top: auto;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.policy-page {
    display: grid;
    gap: clamp(26px, 4vw, 40px);
}

.policy-content {
    display: grid;
    gap: clamp(18px, 3vw, 26px);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.policy-block {
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--border);
    padding: clamp(22px, 3vw, 28px);
    box-shadow: var(--shadow);
    color: var(--text-muted);
}

.policy-block h2 {
    margin-top: 0;
    color: var(--text);
}

.section-accent {
    background: linear-gradient(135deg, rgba(77, 124, 254, 0.08), rgba(77, 124, 254, 0.02));
}

.plan-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 32px;
    align-items: start;
}

.plan-highlights {
    display: grid;
    gap: 24px;
}

.plan-box {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.plan-box h3 {
    margin: 0 0 8px;
}

.plan-focus {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-split .split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.faq-preview {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-preview li {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}

.faq-group {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 12px;
}

.keyword-list {
    margin: 16px 0;
    padding-left: 18px;
    color: var(--text-muted);
}

.section-newsletter {
    background: var(--bg-alt);
}

.newsletter-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: center;
}

.newsletter-form form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-row label {
    font-weight: 500;
    color: var(--text);
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fdfdff;
}

.checkbox-row .form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
}

.form-success {
    background: rgba(77, 124, 254, 0.12);
    border: 1px solid rgba(77, 124, 254, 0.4);
    padding: 16px;
    border-radius: 12px;
    color: var(--accent-dark);
    font-weight: 500;
}

.flash {
    width: min(600px, 92vw);
    margin: 0 auto 20px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 500;
}

.flash-success {
    background: rgba(62, 214, 132, 0.12);
    border-color: rgba(62, 214, 132, 0.4);
    color: #227143;
}

.ad-slot {
    border: 2px dashed rgba(77, 124, 254, 0.3);
    border-radius: 16px;
    padding: 18px;
    margin-top: 20px;
    background: rgba(77, 124, 254, 0.05);
    text-align: center;
}

.ad-label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.ad-placeholder p {
    margin: 8px 0 0;
    color: var(--text-muted);
}

.story-grid {
    display: grid;
    gap: 28px;
}

.story-card,
.story-single article {
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.story-card__media {
    margin: -32px -32px 20px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    display: block;
}

.story-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.story-hero-image {
    margin: -32px -32px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}

.story-hero-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.story-excerpt {
    color: var(--text-muted);
}

.story-meta,
.story-highlights {
    margin-top: 18px;
}

.story-highlights ul {
    margin: 0;
    padding-left: 20px;
}

.story-single {
    display: grid;
    gap: 24px;
}

.story-header h1 {
    margin-top: 0;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a::after {
    content: '›';
    margin: 0 4px;
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--accent-dark);
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid var(--border);
}

.timeline li {
    padding: 12px 0 12px 20px;
    position: relative;
}

.timeline li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: -7px;
    top: 18px;
}

.timeline-label {
    font-weight: 600;
    color: var(--accent);
}

.bullet-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
}

.category-single {
    display: grid;
    gap: 26px;
}

.categories-page {
    display: grid;
    gap: clamp(32px, 4vw, 60px);
}

.categories-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 320px);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    background: linear-gradient(120deg, rgba(77, 124, 254, 0.18), rgba(255, 120, 91, 0.12));
    border-radius: calc(var(--radius) + 12px);
    padding: clamp(32px, 6vw, 60px);
    border: 1px solid rgba(77, 124, 254, 0.2);
    box-shadow: 0 28px 46px -30px rgba(18, 38, 113, 0.45);
    overflow: hidden;
}

.categories-hero__content {
    display: grid;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.categories-hero__highlights {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    display: grid;
    gap: 8px;
}

.categories-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.categories-hero__illustration {
    position: relative;
    border-radius: calc(var(--radius) + 16px);
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(77, 124, 254, 0.2);
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.categories-hero__blob {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(0.6px);
    opacity: 0.85;
}

.categories-hero__blob--primary {
    background: radial-gradient(circle at 25% 30%, rgba(77, 124, 254, 0.95), rgba(77, 124, 254, 0));
    transform: translate(-20%, -20%);
}

.categories-hero__blob--secondary {
    background: radial-gradient(circle at 65% 70%, rgba(255, 120, 91, 0.92), rgba(255, 120, 91, 0));
    transform: translate(20%, 10%);
}

.categories-hero__icon {
    position: relative;
    font-size: 62px;
    z-index: 2;
}

.categories-hero__orbit {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    z-index: 2;
    animation: orbit 20s linear infinite;
}

.categories-orbit__item {
    font-size: 24px;
}

.category-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(22px, 3vw, 32px);
}

.category-card {
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    display: grid;
    gap: 18px;
    padding: clamp(26px, 3vw, 30px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.category-card__illustration {
    position: relative;
    height: 120px;
    border-radius: calc(var(--radius) + 4px);
    background: rgba(77, 124, 254, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-card__blob {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.85;
    filter: blur(0.4px);
}

.category-card[data-accent="1"] .category-card__blob {
    background: radial-gradient(circle at 30% 30%, rgba(77, 124, 254, 0.95), rgba(77, 124, 254, 0));
}

.category-card[data-accent="2"] .category-card__blob {
    background: radial-gradient(circle at 65% 35%, rgba(255, 120, 91, 0.95), rgba(255, 120, 91, 0));
}

.category-card[data-accent="3"] .category-card__blob {
    background: radial-gradient(circle at 55% 40%, rgba(58, 196, 143, 0.92), rgba(58, 196, 143, 0));
}

.category-card[data-accent="4"] .category-card__blob {
    background: radial-gradient(circle at 45% 45%, rgba(155, 134, 255, 0.94), rgba(155, 134, 255, 0));
}

.category-card[data-accent="5"] .category-card__blob {
    background: radial-gradient(circle at 40% 40%, rgba(255, 193, 70, 0.92), rgba(255, 193, 70, 0));
}

.category-card[data-accent="6"] .category-card__blob {
    background: radial-gradient(circle at 35% 35%, rgba(66, 214, 235, 0.92), rgba(66, 214, 235, 0));
}

.category-card[data-accent="7"] .category-card__blob,
.category-card[data-accent="0"] .category-card__blob {
    background: radial-gradient(circle at 55% 45%, rgba(233, 153, 255, 0.92), rgba(233, 153, 255, 0));
}

.category-card__icon {
    position: relative;
    font-size: 38px;
}

.category-card__body {
    display: grid;
    gap: 14px;
}

.category-card__tagline {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.category-card__benefits {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    display: grid;
    gap: 8px;
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent);
}

.category-card__link span {
    transition: transform 0.2s ease;
}

.category-card__link:hover span {
    transform: translateX(3px);
}

.categories-extra {
    display: grid;
    gap: clamp(24px, 4vw, 36px);
}

.categories-insight {
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    padding: clamp(26px, 3vw, 34px);
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.categories-insight--alt {
    background: linear-gradient(135deg, rgba(58, 196, 143, 0.12), rgba(77, 124, 254, 0.08));
}

.categories-insight__grid {
    display: grid;
    gap: clamp(18px, 3vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.categories-tip {
    background: rgba(255, 255, 255, 0.85);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(77, 124, 254, 0.16);
    padding: 22px;
    color: var(--text-muted);
}

.categories-checklist {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    display: grid;
    gap: 8px;
}

.category-content {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 260px;
}

.strategy-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.strategy-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.category-aside {
    display: grid;
    gap: 18px;
}

.aside-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aside-icon {
    font-size: 18px;
}

.category-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
    background: linear-gradient(125deg, rgba(77, 124, 254, 0.14), rgba(233, 153, 255, 0.1));
    border-radius: calc(var(--radius) + 10px);
    padding: clamp(28px, 4vw, 36px);
    border: 1px solid rgba(77, 124, 254, 0.18);
    box-shadow: 0 26px 46px -32px rgba(21, 39, 110, 0.4);
}

.category-hero__badge {
    width: 86px;
    height: 86px;
    border-radius: 24px;
    background: rgba(77, 124, 254, 0.12);
    border: 1px solid rgba(77, 124, 254, 0.25);
    display: grid;
    place-items: center;
}

.category-hero__icon {
    font-size: 40px;
}

.category-hero__tagline {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.category-hero__benefits {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    display: grid;
    gap: 6px;
}

.category-benefits {
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    padding: clamp(24px, 3vw, 32px);
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.aside-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.aside-links a {
    color: var(--text-muted);
}

.faq-page {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 56px);
}

.faq-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 320px);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    background: linear-gradient(120deg, rgba(77, 124, 254, 0.18), rgba(255, 193, 70, 0.12));
    border-radius: calc(var(--radius) + 12px);
    padding: clamp(32px, 6vw, 60px);
    border: 1px solid rgba(77, 124, 254, 0.2);
    box-shadow: 0 28px 46px -30px rgba(18, 38, 113, 0.45);
    overflow: hidden;
}

.faq-hero__content {
    display: grid;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.faq-hero__content p {
    margin: 0;
    color: var(--text-muted);
}

.faq-hero__highlights {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    display: grid;
    gap: 8px;
}

.faq-hero__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-hero__nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(77, 124, 254, 0.3);
    background: rgba(255, 255, 255, 0.7);
    color: var(--accent);
    font-weight: 600;
}

.faq-hero__illustration {
    position: relative;
    border-radius: calc(var(--radius) + 16px);
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(77, 124, 254, 0.2);
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faq-hero__blob {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(0.6px);
    opacity: 0.85;
}

.faq-hero__blob--primary {
    background: radial-gradient(circle at 25% 30%, rgba(77, 124, 254, 0.95), rgba(77, 124, 254, 0));
    transform: translate(-20%, -25%);
}

.faq-hero__blob--secondary {
    background: radial-gradient(circle at 65% 70%, rgba(255, 193, 70, 0.9), rgba(255, 193, 70, 0));
    transform: translate(20%, 15%);
}

.faq-hero__icon {
    position: relative;
    font-size: 60px;
    z-index: 2;
}

.faq-hero__orbit {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
    z-index: 2;
    animation: orbit 20s linear infinite;
}

.faq-orbit__item {
    font-size: 22px;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.faq-accordion {
    display: grid;
    gap: 24px;
}

.faq-group-card {
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    padding: clamp(24px, 3vw, 32px);
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.faq-group-card__header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.faq-group-card__badge {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(77, 124, 254, 0.12);
    border: 1px solid rgba(77, 124, 254, 0.25);
    position: relative;
}

.faq-group-card__icon {
    font-size: 26px;
}

.faq-group-card__step {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px -18px rgba(33, 65, 190, 0.6);
}

.faq-group-card__header h2 {
    margin: 0 0 6px;
}

.faq-group-card__header p {
    margin: 0;
    color: var(--text-muted);
}

.accordion {
    display: grid;
    gap: 16px;
}

.accordion-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-toggle {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-toggle .icon {
    transition: transform 0.2s ease;
}

.accordion-toggle.is-open .icon {
    transform: rotate(45deg);
}

.accordion-panel {
    padding: 0 22px 18px;
    color: var(--text-muted);
}

.faq-panel__tips {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(77, 124, 254, 0.18);
    background: rgba(77, 124, 254, 0.08);
    color: var(--accent-dark);
}

.faq-panel__hint {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 6px;
}

.faq-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 110px;
}

.faq-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--text-muted);
}

.faq-insights {
    display: grid;
    gap: clamp(28px, 4vw, 40px);
}

.faq-insight {
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    padding: clamp(26px, 3vw, 34px);
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.faq-insight--alt {
    background: linear-gradient(135deg, rgba(155, 134, 255, 0.14), rgba(77, 124, 254, 0.08));
}

.faq-insight__grid {
    display: grid;
    gap: clamp(18px, 3vw, 22px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.insight-card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(77, 124, 254, 0.16);
    padding: 22px;
    display: grid;
    gap: 10px;
}

.insight-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    display: grid;
    gap: 6px;
}

.faq-downloads {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    display: grid;
    gap: 6px;
}

.plan-page {
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 5vw, 64px);
}

.plan-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 320px);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    background: linear-gradient(120deg, rgba(77, 124, 254, 0.18), rgba(45, 202, 182, 0.12));
    border-radius: calc(var(--radius) + 12px);
    padding: clamp(32px, 6vw, 64px);
    border: 1px solid rgba(77, 124, 254, 0.18);
    box-shadow: 0 30px 48px -32px rgba(21, 39, 110, 0.4);
    overflow: hidden;
}

.plan-hero__content {
    display: grid;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.plan-hero__content p {
    margin: 0;
    color: var(--text-muted);
}

.plan-hero__bullets {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    display: grid;
    gap: 10px;
}

.plan-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.plan-hero__stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.plan-stat {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    border-radius: calc(var(--radius) + 6px);
    padding: 18px 20px;
    border: 1px solid rgba(77, 124, 254, 0.15);
    display: grid;
    gap: 6px;
}

.plan-stat__value {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.plan-stat__label {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-hero__illustration {
    position: relative;
    min-height: 260px;
    border-radius: calc(var(--radius) + 16px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(77, 124, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.plan-hero__blob {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(0.8px);
    opacity: 0.8;
}

.plan-hero__blob--primary {
    background: radial-gradient(circle at 30% 30%, rgba(77, 124, 254, 0.9), rgba(77, 124, 254, 0));
    transform: translate(-20%, -20%);
}

.plan-hero__blob--secondary {
    background: radial-gradient(circle at 70% 60%, rgba(45, 202, 182, 0.9), rgba(45, 202, 182, 0));
    transform: translate(20%, 10%);
}

.plan-hero__icon {
    position: relative;
    font-size: 64px;
    z-index: 2;
}

.plan-hero__orbit {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    z-index: 2;
    animation: orbit 18s linear infinite;
}

.plan-orbit__item {
    font-size: 24px;
}

@keyframes orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.plan-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.plan-timeline-wrapper {
    display: grid;
    gap: 24px;
}

.plan-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(20px, 3vw, 28px);
    counter-reset: plan-step;
}

.plan-phase {
    position: relative;
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    padding: clamp(26px, 3vw, 32px);
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.plan-phase__header {
    display: flex;
    gap: 16px;
    align-items: center;
}

.plan-phase__step {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px -14px rgba(33, 65, 190, 0.6);
}

.plan-phase__period {
    display: inline-block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
}

.plan-phase__illustration {
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    background: rgba(77, 124, 254, 0.08);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.plan-phase__blob {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.85;
    filter: blur(0.4px);
}

.plan-phase__icon {
    position: relative;
    font-size: 40px;
}

.plan-phase[data-accent="1"] .plan-phase__blob {
    background: radial-gradient(circle at 30% 30%, rgba(77, 124, 254, 0.95), rgba(77, 124, 254, 0));
}

.plan-phase[data-accent="2"] .plan-phase__blob {
    background: radial-gradient(circle at 65% 35%, rgba(255, 120, 91, 0.95), rgba(255, 120, 91, 0));
}

.plan-phase[data-accent="3"] .plan-phase__blob {
    background: radial-gradient(circle at 55% 40%, rgba(58, 196, 143, 0.92), rgba(58, 196, 143, 0));
}

.plan-phase[data-accent="4"] .plan-phase__blob,
.plan-phase[data-accent="0"] .plan-phase__blob {
    background: radial-gradient(circle at 40% 40%, rgba(155, 134, 255, 0.94), rgba(155, 134, 255, 0));
}

.plan-phase__context {
    margin: 0;
    color: var(--text-muted);
}

.plan-phase__actions {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.plan-phase__actions li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
}

.plan-phase__action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(77, 124, 254, 0.15);
    color: var(--accent);
    font-size: 12px;
    margin-top: 4px;
}

.plan-phase__tip {
    margin: 0;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(77, 124, 254, 0.08);
    border: 1px solid rgba(77, 124, 254, 0.16);
    color: var(--accent-dark);
    font-style: italic;
}

.plan-timeline__note {
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: var(--shadow);
    color: var(--text-muted);
}

.plan-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 110px;
}

.plan-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    color: var(--text-muted);
}

.plan-extras {
    display: grid;
    gap: clamp(32px, 4vw, 48px);
}

.plan-block {
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    padding: clamp(28px, 4vw, 36px);
    box-shadow: var(--shadow);
    display: grid;
    gap: 20px;
}

.plan-block--alt {
    background: linear-gradient(135deg, rgba(255, 193, 70, 0.12), rgba(77, 124, 254, 0.08));
}

.plan-checklist-grid {
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.checklist-card {
    background: rgba(255, 255, 255, 0.82);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(77, 124, 254, 0.15);
    padding: 22px;
    display: grid;
    gap: 12px;
}

.checklist-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    display: grid;
    gap: 8px;
}

.journal-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.journal-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(77, 124, 254, 0.16);
    border-radius: calc(var(--radius) + 4px);
    padding: 22px;
    display: grid;
    gap: 12px;
}

.journal-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    display: grid;
    gap: 8px;
}

.plan-next-steps {
    display: grid;
    gap: clamp(18px, 3vw, 26px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.next-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(77, 124, 254, 0.14);
    padding: 22px;
    color: var(--text-muted);
    box-shadow: 0 16px 30px -28px rgba(22, 44, 129, 0.4);
}

.resources-page {
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 5vw, 64px);
}

.resources-hero {
    background: linear-gradient(135deg, rgba(77, 124, 254, 0.12), rgba(35, 190, 255, 0.08));
    border-radius: calc(var(--radius) + 10px);
    padding: clamp(32px, 6vw, 48px);
    border: 1px solid rgba(77, 124, 254, 0.18);
    box-shadow: 0 25px 40px -35px rgba(22, 44, 129, 0.45);
}

.hero-kicker {
    display: inline-block;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 12px;
}

.resources-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 40px);
}

.resources-hero p {
    margin: 0;
    max-width: 60ch;
    color: var(--text-muted);
}

.resources-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.resource-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(22px, 3vw, 32px);
}

.resource-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 6px);
    padding: 26px;
    display: grid;
    gap: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.resource-illustration {
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    background: rgba(77, 124, 254, 0.08);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.resource-blob {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(0.4px);
    opacity: 0.82;
    transform: translateY(15%);
}

.resource-illustration[data-accent="1"] .resource-blob {
    background: radial-gradient(circle at 30% 30%, rgba(77, 124, 254, 0.9), rgba(77, 124, 254, 0));
}

.resource-illustration[data-accent="2"] .resource-blob {
    background: radial-gradient(circle at 65% 35%, rgba(255, 120, 91, 0.95), rgba(255, 120, 91, 0));
}

.resource-illustration[data-accent="3"] .resource-blob {
    background: radial-gradient(circle at 50% 40%, rgba(58, 196, 143, 0.9), rgba(58, 196, 143, 0));
}

.resource-illustration[data-accent="4"] .resource-blob {
    background: radial-gradient(circle at 35% 35%, rgba(155, 134, 255, 0.92), rgba(155, 134, 255, 0));
}

.resource-illustration[data-accent="5"] .resource-blob,
.resource-illustration[data-accent="0"] .resource-blob {
    background: radial-gradient(circle at 60% 40%, rgba(255, 193, 70, 0.9), rgba(255, 193, 70, 0));
}

.resource-emoji {
    position: relative;
    font-size: 46px;
}

.resource-body {
    display: grid;
    gap: 12px;
}

.resource-body h2 {
    margin: 0;
    font-size: 20px;
}

.resource-body p {
    margin: 0;
    color: var(--text-muted);
}

.resource-meta {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--accent);
    padding-top: 6px;
}

.resource-link span {
    transition: transform 0.2s ease;
}

.resource-link:hover span {
    transform: translateX(3px);
}

.resources-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 110px;
}

.sidebar-card {
    background: var(--bg-alt);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: var(--shadow);
}

.sidebar-card h2 {
    margin-top: 0;
    font-size: 18px;
}

.sidebar-card--ad {
    text-align: left;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
}

.support-list li {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
}

.muted {
    color: var(--text-muted);
    font-size: 14px;
}

.site-footer {
    background: #10142a;
    color: #dee2ff;
    padding: 48px 0 32px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.footer-title {
    margin: 0 0 12px;
    font-size: 22px;
}

.footer-heading {
    margin: 0 0 12px;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: #c8cdf5;
}

.footer-links a:hover {
    color: #fff;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.adsense-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
}

.back-link {
    margin-top: 20px;
}



@media (max-width: 900px) {
    .home-hero {
        padding: 60px 0 52px;
    }

    .home-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__content {
        text-align: center;
        margin: 0 auto;
        gap: 18px;
        max-width: min(520px, 100%);
    }

    .home-hero__highlights,
    .home-hero__cta {
        justify-content: center;
    }

    .highlight-chip {
        justify-content: center;
    }

    .home-hero__image {
        order: -1;
        margin-bottom: 28px;
        min-height: 340px;
    }

    .home-hero__shape--one {
        width: 260px;
        height: 260px;
        top: -60px;
        right: 4%;
    }

    .home-hero__shape--two {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: 6%;
    }

    .home-hero__shape--three {
        width: 150px;
        height: 150px;
        left: -40px;
    }

    .home-hero__frame {
        padding: clamp(26px, 4vw, 40px);
    }

    .home-hero__badge {
        position: static;
        margin: 20px auto 0;
        width: min(360px, 100%);
    }

    .home-hero__quote {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .home-hero__img {
        max-width: 420px;
        margin: 0 auto;
    }

    .plan-summary,
    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .categories-hero,
    .faq-layout,
    .plan-layout,
    .resources-layout,
    .category-content {
        grid-template-columns: 1fr;
    }

    .category-aside,
    .categories-hero__illustration,
    .faq-sidebar,
    .plan-sidebar,
    .resources-sidebar,
    .faq-support {
        order: -1;
    }

    .categories-hero__illustration,
    .faq-sidebar,
    .plan-sidebar,
    .resources-sidebar {
        position: static;
    }

    .categories-hero,
    .faq-hero,
    .plan-hero {
        grid-template-columns: 1fr;
    }

    .categories-hero__illustration,
    .faq-hero__illustration,
    .plan-hero__illustration {
        min-height: 220px;
        order: -1;
    }

    .categories-hero__cta,
    .faq-hero__nav ul,
    .plan-hero__cta {
        justify-content: flex-start;
    }

    .category-hero {
        grid-template-columns: 1fr;
    }

    .category-hero__badge {
        justify-self: flex-start;
    }

    .header-top {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-list {
        position: absolute;
        right: 0;
        top: calc(100% + 12px);
        flex-direction: column;
        background: var(--bg-alt);
        padding: 18px;
        border-radius: 16px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        min-width: 220px;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .nav-list.nav-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 36px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .card-grid {
        gap: 20px;
    }

    .plan-summary {
        gap: 26px;
    }

    .plan-highlights {
        gap: 18px;
    }

    .home-hero__cta,
    .home-hero__highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero__cta .btn {
        width: 100%;
    }

    .lead {
        font-size: 17px;
    }

    .home-hero {
        padding: 48px 0 42px;
    }

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

    .home-hero__quote {
        padding: 16px 20px 22px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__shape {
        display: none;
    }

    .home-hero__image {
        position: relative;
        display: grid;
        place-items: center;
        width: min(440px, 92vw);
        margin: 0 auto clamp(48px, 12vw, 64px);
        padding: clamp(16px, 5vw, 22px);
        border-radius: 28px;
        background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.95) 52%, rgba(224, 232, 255, 0.88) 100%);
        border: 1px solid rgba(77, 124, 254, 0.14);
        box-shadow: 0 26px 70px -46px rgba(21, 39, 110, 0.55);
    }

    .home-hero__frame {
        width: 100%;
        padding: 0;
        border-radius: 24px;
        border: none;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 -1px 0 rgba(77, 124, 254, 0.08);
        overflow: hidden;
        aspect-ratio: 4 / 3;
    }

    .home-hero__frame::after {
        display: none;
    }

    .home-hero__badge {
        position: static;
        transform: none;
        width: 100%;
        max-width: 440px;
        margin: clamp(20px, 6vw, 28px) auto 0;
        padding: clamp(18px, 5vw, 24px);
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        box-shadow: 0 32px 70px -50px rgba(21, 39, 110, 0.45);
        text-align: left;
    }

    .home-hero__badge-list {
        gap: 12px;
    }

    .home-hero__img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: none;
        object-position: center;
    }

    .story-card__media {
        margin: -22px -22px 16px;
    }

    .story-card__media img,
    .story-hero-image img {
        height: auto;
    }

    .card,
    .resource-card,
    .category-card,
    .categories-insight,
    .faq-group-card,
    .faq-insight,
    .plan-phase,
    .plan-block,
    .strategy-card,
    .story-card,
    .story-single article {
        padding: 22px;
    }

    .site-content {
        /* padding: 30px 0 50px; */
    }

    .categories-hero__cta,
    .plan-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }
}
