/* ==========================================================================
   Home Page Styles
   Fishermens Academy public front door
   ========================================================================== */

.home-page {
    width: 100%;
    background-color: #F8F9FA;
    color: #4A5568;
}


/* ==========================================================================
   Section scaffolding
   ========================================================================== */

.home-page__section {
    padding: 96px 24px;
    position: relative;
    /* overflow: hidden; */
}

@media (max-width: 639px) {
    .home-page__section {
        padding: 72px 16px;
    }
}

.home-page__section--alabaster {
    background-color: #FFFFFF;
}

.home-page__section--warm {
    background:
        linear-gradient(180deg, rgba(214, 158, 46, 0.05) 0%, rgba(214, 158, 46, 0.015) 100%),
        #F8F9FA;
}

.home-page__section--slate {
    background:
        linear-gradient(180deg, rgba(26, 54, 93, 0.96) 0%, rgba(17, 36, 61, 1) 100%);
}

.home-page__section--deep {
    background:
        radial-gradient(circle at top left, rgba(214, 158, 46, 0.12) 0%, transparent 28%),
        linear-gradient(135deg, #1A365D 0%, #11243D 100%);
}

.home-page__section--final-cta {
    background:
        linear-gradient(180deg, rgba(26, 54, 93, 0.04) 0%, rgba(26, 54, 93, 0.08) 100%),
        #F8F9FA;
}

.home-page__section--divider-wave::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 120px;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.7) 0%, transparent 28%),
        radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.55) 0%, transparent 26%);
    opacity: 0.9;
}

.home-page__section-header-center {
    text-align: center;
    margin: 0 auto 48px auto;
    max-width: 820px;
    position: relative;
    z-index: 1;
}

.home-page__section-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 1.75rem + 1vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1A365D;
    margin: 0 0 16px 0;
}

.home-page__section-title--light {
    color: #F8F9FA;
}

.home-page__section-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4A5568;
    margin: 0 auto;
    max-width: 760px;
}

.home-page__section-subtitle--light {
    color: #E2E8F0;
}

.home-page__section-center-action {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.home-page__section-center-action--left {
    justify-content: flex-start;
}

.center-text {
    text-align: center;
}


/* ==========================================================================
   Hero
   ========================================================================== */

.home-page__hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(214, 158, 46, 0.18) 0%, rgba(214, 158, 46, 0.04) 24%, transparent 52%),
        linear-gradient(135deg, #1A365D 0%, #11243D 100%);
    padding: 112px 24px 96px 24px;
    color: #F8F9FA;
}

@media (max-width: 639px) {
    .home-page__hero-section {
        padding: 88px 16px 72px 16px;
    }
}

.home-page__hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.38;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 24%),
        radial-gradient(circle at 80% 14%, rgba(214, 158, 46, 0.24) 0%, transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%, rgba(0, 0, 0, 0.08) 100%);
}

.home-page__hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 48px;
    align-items: center;
}

@media (max-width: 1023px) {
    .home-page__hero-shell {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.home-page__hero-content {
    max-width: 700px;
    animation: homePageFadeUp 700ms ease both;
}

.home-page__hero-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    margin: 0 0 20px 0;
    border-radius: 999px;
    background-color: rgba(214, 158, 46, 0.16);
    border: 1px solid rgba(214, 158, 46, 0.24);
    color: #F6E05E;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-page__headline {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.75rem, 2rem + 2.6vw, 4.5rem);
    font-weight: 700;
    color: #D69E2E;
    line-height: 1.08;
    margin: 0 0 20px 0;
    max-width: 12ch;
}

.home-page__subheadline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 21px;
    line-height: 1.65;
    color: #E2E8F0;
    margin: 0 0 20px 0;
    max-width: 62ch;
}

.home-page__hero-supporting-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(248, 249, 250, 0.9);
    margin: 0 0 32px 0;
    max-width: 64ch;
}

.home-page__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

@media (max-width: 639px) {
    .home-page__hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.home-page__cta,
.home-page__cta-secondary,
.home-page__btn-outline,
.home-page__text-link,
.home-page__pillar-preview-link {
    min-height: 44px;
}

.home-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D69E2E;
    color: #1A365D;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    transition:
        background-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.home-page__cta:hover,
.home-page__cta:focus-visible {
    background-color: #F6E05E;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.home-page__cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #F8F9FA;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    border: 1px solid rgba(248, 249, 250, 0.22);
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.home-page__cta-secondary:hover,
.home-page__cta-secondary:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(248, 249, 250, 0.38);
    transform: translateY(-1px);
}

.home-page__hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-page__trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #E2E8F0;
}

.home-page__trust-pill-icon {
    color: #D69E2E;
    font-size: 14px;
}

.home-page__trust-pill-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.home-page__hero-visual {
    position: relative;
    animation: homePageFadeUp 850ms ease 80ms both;
}

.home-page__hero-image-shell {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 620px;
    box-shadow: 0 24px 54px rgba(10, 18, 32, 0.24);
}

@media (max-width: 1023px) {
    .home-page__hero-image-shell {
        min-height: 520px;
    }
}

@media (max-width: 639px) {
    .home-page__hero-image-shell {
        min-height: 440px;
        border-radius: 16px;
    }
}

.home-page__hero-image {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

@media (max-width: 1023px) {
    .home-page__hero-image {
        min-height: 520px;
    }
}

@media (max-width: 639px) {
    .home-page__hero-image {
        min-height: 440px;
    }
}

.home-page__hero-image-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 36, 61, 0.04) 0%, rgba(17, 36, 61, 0.1) 50%, rgba(17, 36, 61, 0.78) 100%);
    pointer-events: none;
}

.home-page__hero-image-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(10, 18, 32, 0.18);
    backdrop-filter: blur(8px);
}

@media (max-width: 639px) {
    .home-page__hero-image-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
        border-radius: 12px;
    }
}

.home-page__hero-image-card-label {
    margin: 0 0 8px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #D69E2E;
}

.home-page__hero-image-card-title {
    margin: 0 0 10px 0;
    font-family: 'Merriweather', serif;
    font-size: 24px;
    line-height: 1.3;
    color: #1A365D;
}

.home-page__hero-image-card-text {
    margin: 0 0 18px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
}

.home-page__hero-image-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ==========================================================================
   Shared media
   ========================================================================== */

.home-page__media-panel,
.home-page__trust-panel,
.home-page__foundation-visual {
    position: relative;
}

.home-page__media-image {
    width: 100%;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    box-shadow: 0 16px 36px rgba(17, 36, 61, 0.1);
}

.home-page__media-image--tall {
    min-height: 560px;
    object-fit: cover;
}

@media (max-width: 639px) {

    .home-page__media-image,
    .home-page__media-image--tall {
        border-radius: 14px;
        min-height: auto;
    }
}


/* ==========================================================================
   Shared text/layout utilities
   ========================================================================== */

.home-page__text-block {
    max-width: 640px;
    padding-right: 40px;
}

@media (max-width: 1023px) {
    .home-page__text-block {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   Sticky Column Utility
   ========================================================================== */

.home-page__sticky-col {
    position: -webkit-sticky;
    position: sticky;
    top: 120px; /* Adjust this value based on the height of your fixed top navigation */
    align-self: flex-start;
    height: max-content;
    z-index: 10;
    padding-bottom: 24px; /* Prevents it from hitting the very bottom edge abruptly */
}

@media (max-width: 1023px) {
    .home-page__sticky-col {
        position: static;
        align-self: auto;
        padding-bottom: 0;
    }
}

.home-page__body-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    color: #4A5568;
    line-height: 1.8;
    margin: 0 0 18px 0;
}

.home-page__text-link {
    display: inline-flex;
    align-items: center;
    color: #C05621;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
}

.home-page__text-link:hover,
.home-page__text-link:focus-visible {
    color: #9C4221;
    transform: translateX(2px);
}

.home-page__text-link--center {
    justify-content: center;
}

.home-page__inline-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.home-page__inline-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background-color: rgba(26, 54, 93, 0.05);
    color: #1A365D;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.home-page__inline-point-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D69E2E;
    flex-shrink: 0;
}


/* ==========================================================================
   Problem cards
   ========================================================================== */

.home-page__problem-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(17, 36, 61, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-page__problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(17, 36, 61, 0.08);
}

.home-page__problem-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(214, 158, 46, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.home-page__problem-icon {
    font-size: 22px;
    color: #1A365D;
}

.home-page__problem-title {
    margin: 0 0 12px 0;
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: #1A365D;
}

.home-page__problem-desc {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #4A5568;
}


/* ==========================================================================
   Feature panel / media overlays
   ========================================================================== */

.home-page__feature-panel {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(17, 36, 61, 0.06);
}

.home-page__feature-panel--floating {
    max-width: 92%;
    margin: -72px auto 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 1023px) {
    .home-page__feature-panel--floating {
        max-width: 100%;
        margin-top: 20px;
    }
}

.home-page__feature-panel-title {
    margin: 0 0 16px 0;
    font-family: 'Merriweather', serif;
    font-size: 24px;
    color: #1A365D;
}

.home-page__feature-list {
    margin: 0 0 24px 0;
    padding-left: 18px;
}

.home-page__feature-list li {
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
}

.home-page__btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #1A365D;
    border: 2px solid #1A365D;
    border-radius: 8px;
    text-decoration: none;
    padding: 12px 22px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease,
        border-color 180ms ease;
}

.home-page__btn-outline:hover,
.home-page__btn-outline:focus-visible {
    background-color: #1A365D;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.home-page__btn-outline--full {
    width: 100%;
}

.home-page__btn-outline--light {
    border-color: rgba(248, 249, 250, 0.78);
    color: #F8F9FA;
}

.home-page__btn-outline--light:hover,
.home-page__btn-outline--light:focus-visible {
    background-color: rgba(248, 249, 250, 0.1);
    color: #FFFFFF;
}

.home-page__btn-outline--light-shell {
    border-color: rgba(26, 54, 93, 0.18);
    background-color: #FFFFFF;
    color: #1A365D;
}


/* ==========================================================================
   Step cards
   ========================================================================== */

.home-page__section--steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 108px;
    width: min(78%, 1020px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(214, 158, 46, 0.1) 0%, rgba(214, 158, 46, 0.55) 50%, rgba(214, 158, 46, 0.1) 100%);
    pointer-events: none;
}

@media (max-width: 1023px) {
    .home-page__section--steps::before {
        display: none;
    }
}

.home-page__step-card {
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(8, 18, 30, 0.12);
}

.home-page__step-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #D69E2E 0%, #C05621 100%);
}

.home-page__step-number {
    margin: 0 0 14px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #D69E2E;
}

.home-page__step-title {
    margin: 0 0 10px 0;
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: #1A365D;
    line-height: 1.35;
}

.home-page__step-description {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #4A5568;
}


/* ==========================================================================
   Universal preamble cards
   ========================================================================== */

.home-page__foundation-content {
    padding-left: 28px;
}

@media (max-width: 1023px) {
    .home-page__foundation-content {
        padding-left: 0;
        margin-top: 24px;
    }
}

.home-page__foundation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
}

.home-page__foundation-card {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(248, 249, 250, 0.1);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    backdrop-filter: blur(4px);
    transition: transform 180ms ease, border-color 180ms ease;
}

.home-page__foundation-card:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 158, 46, 0.24);
}

.home-page__foundation-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(214, 158, 46, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.home-page__foundation-icon {
    font-size: 22px;
    color: #F6E05E;
}

.home-page__foundation-title {
    margin: 0 0 12px 0;
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: #F8F9FA;
}

.home-page__foundation-description {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #E2E8F0;
}


/* ==========================================================================
   Pillar preview cards
   ========================================================================== */

.home-page__pillar-preview-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
    box-shadow: 0 10px 22px rgba(17, 36, 61, 0.05);
}

.home-page__pillar-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(17, 36, 61, 0.08);
    border-color: rgba(214, 158, 46, 0.28);
}

.home-page__pillar-preview-image-wrap {
    position: relative;
    overflow: hidden;
    background-color: #EDF2F7;
}

.home-page__pillar-preview-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 320ms ease;
}

.home-page__pillar-preview-card:hover .home-page__pillar-preview-image {
    transform: scale(1.05);
}

.home-page__pillar-preview-icon-wrap {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(26, 54, 93, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(17, 36, 61, 0.18);
}

.home-page__pillar-preview-icon {
    font-size: 22px;
    color: #F8F9FA;
}

.home-page__pillar-preview-content {
    padding: 24px 24px 26px 24px;
}

.home-page__pillar-preview-title {
    margin: 0 0 10px 0;
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: #1A365D;
}

.home-page__pillar-preview-description {
    margin: 0 0 16px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #4A5568;
}

.home-page__pillar-preview-link {
    display: inline-flex;
    align-items: center;
    color: #C05621;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
}

.home-page__pillar-preview-link:hover,
.home-page__pillar-preview-link:focus-visible {
    color: #9C4221;
    transform: translateX(2px);
}


/* ==========================================================================
   Trust model section
   ========================================================================== */

.home-page__trust-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-page__trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.home-page__trust-grid--overlay {
    margin-top: -96px;
    position: relative;
    z-index: 1;
    padding: 0 20px 0 20px;
}

@media (max-width: 1023px) {
    .home-page__trust-grid--overlay {
        margin-top: 20px;
        padding: 0;
    }
}

@media (max-width: 639px) {
    .home-page__trust-grid {
        grid-template-columns: 1fr;
    }
}

.home-page__trust-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 12px;
    padding: 22px;
    min-height: 140px;
    box-shadow: 0 10px 22px rgba(17, 36, 61, 0.06);
}

.home-page__trust-card-title {
    margin: 0 0 10px 0;
    font-family: 'Merriweather', serif;
    font-size: 20px;
    color: #1A365D;
}

.home-page__trust-card-description {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
}


/* ==========================================================================
   FAQ preview
   ========================================================================== */

.home-page__faq-preview-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 767px) {
    .home-page__faq-preview-list {
        grid-template-columns: 1fr;
    }
}

.home-page__faq-preview-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 12px;
    padding: 22px 24px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(17, 36, 61, 0.04);
}

.home-page__faq-preview-question {
    margin: 0 0 10px 0;
    font-family: 'Merriweather', serif;
    font-size: 20px;
    line-height: 1.4;
    color: #1A365D;
}

.home-page__faq-preview-answer {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #4A5568;
}


/* ==========================================================================
   Final CTA
   ========================================================================== */

.home-page__final-cta-card {
    background:
        radial-gradient(circle at top right, rgba(214, 158, 46, 0.2) 0%, rgba(214, 158, 46, 0) 26%),
        linear-gradient(135deg, #1A365D 0%, #11243D 100%);
    border-radius: 22px;
    padding: 52px 48px;
    text-align: center;
    color: #F8F9FA;
    box-shadow: 0 22px 48px rgba(17, 36, 61, 0.18);
    position: relative;
    overflow: hidden;
}

.home-page__final-cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 158, 46, 0.24) 0%, rgba(214, 158, 46, 0) 70%);
    pointer-events: none;
}

@media (max-width: 639px) {
    .home-page__final-cta-card {
        padding: 32px 20px;
        border-radius: 16px;
    }
}

.home-page__final-cta-title {
    margin: 0 0 16px 0;
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 1.8rem + 1vw, 2.8rem);
    line-height: 1.2;
    color: #F8F9FA;
}

.home-page__final-cta-text {
    margin: 0 auto 28px auto;
    max-width: 680px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #E2E8F0;
}

.home-page__final-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 639px) {
    .home-page__final-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}


/* ==========================================================================
   Accessibility / responsive refinements
   ========================================================================== */

.home-page a:focus-visible {
    outline: 2px solid #D69E2E;
    outline-offset: 3px;
}

@media (max-width: 1023px) {
    .home-page__section-header-center {
        margin-bottom: 36px;
    }

    .home-page__feature-panel,
    .home-page__problem-card,
    .home-page__step-card,
    .home-page__foundation-card,
    .home-page__pillar-preview-content,
    .home-page__trust-card,
    .home-page__faq-preview-card {
        padding: 24px;
    }
}

@media (max-width: 639px) {
    .home-page__headline {
        max-width: none;
    }

    .home-page__subheadline {
        font-size: 18px;
    }

    .home-page__hero-supporting-text,
    .home-page__body-text,
    .home-page__section-subtitle,
    .home-page__problem-desc,
    .home-page__step-description,
    .home-page__foundation-description,
    .home-page__pillar-preview-description,
    .home-page__faq-preview-answer,
    .home-page__hero-image-card-text {
        font-size: 15px;
    }

    .home-page__feature-panel,
    .home-page__problem-card,
    .home-page__step-card,
    .home-page__foundation-card,
    .home-page__faq-preview-card,
    .home-page__trust-card {
        padding: 20px;
        border-radius: 12px;
    }

    .home-page__hero-trust-row,
    .home-page__inline-points {
        gap: 10px;
    }

    .home-page__cta,
    .home-page__cta-secondary,
    .home-page__btn-outline {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-page__cta,
    .home-page__cta-secondary,
    .home-page__btn-outline,
    .home-page__text-link,
    .home-page__pillar-preview-link,
    .home-page__problem-card,
    .home-page__foundation-card,
    .home-page__pillar-preview-card,
    .home-page__pillar-preview-image,
    .home-page__hero-content,
    .home-page__hero-visual {
        transition: none;
        animation: none;
    }

    .home-page__cta:hover,
    .home-page__cta-secondary:hover,
    .home-page__btn-outline:hover,
    .home-page__text-link:hover,
    .home-page__pillar-preview-link:hover,
    .home-page__problem-card:hover,
    .home-page__foundation-card:hover,
    .home-page__pillar-preview-card:hover,
    .home-page__pillar-preview-card:hover .home-page__pillar-preview-image {
        transform: none;
    }
}


/* ==========================================================================
   Motion
   ========================================================================== */

@keyframes homePageFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}