/* Hero */
        .hero-home {
            padding: 64px 40px 68px;
            background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
            border-bottom: 1px solid var(--line);
        }

		.hero-layout {
		    max-width: 1500px;
		    margin: 0 auto;
		    display: grid;
		    grid-template-columns: .88fr 1.3fr;
		    grid-template-rows: auto 1fr;
		    gap: 46px;
		    align-items: stretch;
		}
		
.hero-copy {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.hero-copy h1 {
    margin: 0;
    color: #0c2e62;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 3.1vw, 50px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.025em;
    white-space: nowrap;
}

.hero-intro {
    max-width: 540px;
    margin: clamp(60px, 5.5vw, 90px) 0 0;
    color: #0c2e62;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.35;
}

.hero-details {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    width: min(100%, 410px);
    margin: 0;
    padding: 16px 20px 7px;
    background: #f1f4f7;
    border: 1px solid #b5c7d0;
    border-radius: 3px;
    text-align: center;
}

.hero-details h2 {
    margin: 0;
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 700;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 0;
}

.pricing-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 88px;
    padding: 11px 10px 9px;
    border: 1px solid #9eb6c2;
    border-radius: 4px;
    background: #fff;
}

.pricing-plan--featured {
    border-color: var(--gold);
}

.pricing-savings {
    position: absolute;
    top: -10px;
    left: 50%;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    transform: translateX(-50%);
}

.pricing-name {
    color: #465b66;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-plan strong {
    margin-top: 3px;
    color: var(--blue-dark);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
}

.pricing-term {
    color: #465b66;
    font-size: 12px;
}

.trial-note {
    margin: 2px 0 11px;
    color: #465b66;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}

.hero-details .platform-note {
    margin: 5px 0 0;
    color: #465b66;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
}

.hero-visual {
            grid-column: 2;
            grid-row: 1 / span 2;
        }

.hero-visual img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 1300 / 867;
            object-fit: cover;
            border: 1px solid var(--line-strong);
            border-radius: 5px;
        }

        /* Main sections */
        .step, .feature-card, .resource-card {
            background: white;
            border: 1px solid var(--line-strong);
            border-radius: 4px;
        }

        .home-section {
            padding: 42px 40px;
            border-bottom: 1px solid var(--line);
        }

        .home-section:nth-of-type(even) { background: var(--section); }

        .home-container {
            max-width: 1120px;
            margin: 0 auto;
        }
.steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 30px;
        }
.step { padding: 20px; }

        .step-number {
            width: 34px;
            height: 34px;
            margin-bottom: 11px;
            display: grid;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: var(--blue-pale);
            color: var(--blue-dark);
            font-weight: 700;
        }

        .step h3, .feature-copy h3, .resource-card h3 {
            margin-bottom: 8px;
            color: var(--ink);
            font-size: 22px;
        }

        .step p, .feature-copy p, .resource-card p {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.5;
        }

        .method-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature-card { overflow: hidden; }

        .feature-card img {
            width: 100%;
            height: 235px;
            object-fit: cover;
            border-bottom: 1px solid var(--line);
        }

        .feature-copy { padding: 18px 22px 20px; }

        .feature-copy p { margin-bottom: 10px; }

        .resources-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .resource-card {
            padding: 19px 23px;
            border-top: 2px solid var(--blue);
        }

        .resource-card p { margin-bottom: 10px; }

        /* Final CTA: stronger, but restrained */
        .final-cta {
            padding: 56px 40px;
            background: var(--blue-dark);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            margin-bottom: 10px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 36px;
            font-weight: 500;
        }

        .final-cta > .home-container > p {
            margin-bottom: 16px;
            color: #e3edf1;
            font-size: 18px;
        }

        .final-cta .button-primary {
            background: white;
            color: var(--blue-dark);
            border-color: white;
        }

        .final-cta .platform-note {
            margin-top: 10px;
            margin-bottom: 0 !important;
            color: #c5dde6 !important;
            font-size: 14px !important;
        }
        @media (max-width: 850px) {
            .hero-layout { display: flex; flex-direction: column; gap: 0; }
            .steps, .method-features { grid-template-columns: 1fr; }
            .hero-copy h1 { margin-left: auto; margin-right: auto; white-space: normal; }
            .hero-intro { margin: 28px auto 0; font-size: 26px; }
            .hero-copy h1,
            .hero-intro { text-align: center; }
            .hero-visual { max-width: 650px; margin: 28px auto 0; }
            .hero-details { margin: 28px auto 0; }
        }

        @media (max-width: 700px) {
            .hero-home, .home-section, .final-cta { padding-left: 20px; padding-right: 20px; }
            .hero-copy h1 { font-size: 38px; }
            .hero-intro { font-size: 24px; }
}
