/* Steady Finance homepage — matches design mockup */

:root {
    --steady-navy: #082b5c;
    --steady-teal-start: #1aabb3;
    --steady-teal-end: #007981;
    --steady-light-teal: #e6f5f6;
    --steady-light-grey: #f5f7fa;
    --steady-text-grey: #5c667a;
    --steady-gradient: linear-gradient(90deg, #1aabb3 0%, #007981 100%);
    --steady-btn-bg: #007981;
    --steady-btn-bg-hover: #006168;
    --steady-btn-shadow: 0 2px 8px rgba(0, 121, 129, 0.28);
    --steady-shadow-card: 0 4px 24px rgba(8, 43, 92, 0.06);
    --steady-shadow-soft: 0 2px 12px rgba(8, 43, 92, 0.04);
    --steady-header-height: 64px;
}

.steady-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 2px solid var(--steady-teal-end);
}

.steady-header-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 1.5rem 0 0.5rem;
    height: var(--steady-header-height);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.steady-logo-wrap {
    flex-shrink: 0;
    margin-left: 0;
}

.steady-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.steady-header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.steady-logo-link {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    line-height: 0;
}

.steady-logo {
    height: 42px;
    width: auto;
    max-width: none;
    display: block;
}

.steady-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--steady-navy);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}

.steady-nav a:hover {
    color: var(--steady-teal-end);
}

.steady-nav a.is-active {
    position: relative;
    font-weight: 600;
}

.steady-nav a.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    border-radius: 999px;
    background: var(--steady-gradient);
}

.steady-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 8px;
    padding: 0.7rem 1.35rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    background: transparent;
    color: inherit;
    box-shadow: none;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
    cursor: pointer;
}

.steady-btn-primary,
.steady-btn-learn {
    background: var(--steady-btn-bg);
    color: #fff;
    border-color: var(--steady-btn-bg);
    box-shadow: var(--steady-btn-shadow);
}

.steady-btn-primary:hover,
.steady-btn-learn:hover {
    background: var(--steady-btn-bg-hover);
    border-color: var(--steady-btn-bg-hover);
}

.steady-btn-outline {
    background: #fff;
    color: var(--steady-btn-bg);
    border-color: var(--steady-btn-bg);
    box-shadow: none;
}

.steady-btn-outline:hover {
    background: var(--steady-light-teal);
    color: var(--steady-btn-bg);
    border-color: var(--steady-btn-bg);
}

/* Profile dropdown (logged-in members) */

.steady-profile-menu {
    position: relative;
}

.steady-profile-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--steady-navy);
    font-family: inherit;
    cursor: pointer;
    transition: color 0.15s;
}

.steady-profile-trigger:hover,
.steady-profile-menu.is-open .steady-profile-trigger {
    color: var(--steady-teal-end);
}

.steady-profile-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.steady-profile-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.steady-profile-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--steady-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.steady-profile-avatar--lg {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
}

.steady-profile-chevron {
    color: var(--steady-navy);
    transition: transform 0.15s, color 0.15s;
    flex-shrink: 0;
}

.steady-profile-trigger:hover .steady-profile-chevron,
.steady-profile-menu.is-open .steady-profile-chevron {
    color: var(--steady-teal-end);
}

.steady-profile-menu.is-open .steady-profile-chevron {
    transform: rotate(180deg);
}

.steady-profile-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: var(--steady-shadow-card);
    padding: 0.5rem;
    z-index: 60;
}

.steady-profile-dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem 0.75rem;
    border-bottom: 1px solid var(--steady-light-grey);
    margin-bottom: 0.35rem;
}

.steady-profile-dropdown-header strong {
    display: block;
    font-size: 0.875rem;
    color: var(--steady-navy);
    line-height: 1.3;
}

.steady-profile-dropdown-header span {
    display: block;
    font-size: 0.75rem;
    color: var(--steady-text-grey);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 160px;
}

.steady-profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--steady-navy);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
}

.steady-profile-dropdown-item svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--steady-text-grey);
    flex-shrink: 0;
}

.steady-profile-dropdown-item:hover {
    background: var(--steady-light-teal);
}

.steady-profile-dropdown-item--logout {
    color: #b91c1c;
}

.steady-profile-dropdown-item--logout svg {
    color: #b91c1c;
}

.steady-profile-logout-form {
    margin: 0;
}

.steady-mobile-auth,
.steady-mobile-profile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--steady-light-grey);
}

.steady-mobile-auth .steady-btn,
.steady-mobile-profile .steady-btn {
    text-align: center;
}

.steady-mobile-profile-name {
    margin: 0;
    font-size: 0.875rem;
    color: var(--steady-text-grey);
}

.steady-mobile-profile-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--steady-teal-end);
    text-decoration: none;
    padding: 0.25rem 0;
}

.steady-mobile-profile-link:hover {
    text-decoration: underline;
}

.steady-mobile-logout-btn {
    width: 100%;
}

.steady-btn-lg {
    padding: 0.95rem 1.75rem;
    font-size: 0.9375rem;
}

.steady-hero {
    position: relative;
    overflow: hidden;
    padding: 1.25rem 0 1.5rem;
}

.steady-hero-blob {
    position: absolute;
    left: -8%;
    top: 10%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse 70% 60% at 40% 50%, #e6f5f6 0%, rgba(230, 245, 246, 0.4) 45%, transparent 72%);
    pointer-events: none;
}

.steady-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.steady-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

.steady-hero-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--steady-navy);
    margin: 0 0 1.25rem;
}

.steady-hero-title .text-gradient {
    background: var(--steady-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steady-hero-accent {
    white-space: nowrap;
}

.steady-hero-sub {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--steady-text-grey);
    max-width: 26rem;
    margin: 0 0 2rem;
}

.steady-feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
    margin-bottom: 2rem;
}

.steady-feature-item {
    text-align: center;
}

.steady-feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: var(--steady-light-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steady-teal-end);
}

.steady-feature-icon svg {
    width: 22px;
    height: 22px;
}

.steady-feature-item strong {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--steady-navy);
    line-height: 1.35;
}

.steady-feature-item span {
    display: block;
    font-size: 0.625rem;
    color: var(--steady-text-grey);
    line-height: 1.35;
    margin-top: 2px;
}

.steady-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.steady-play-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--steady-navy);
    text-decoration: none;
}

.steady-play-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--steady-teal-start);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steady-teal-end);
}

.steady-phone-wrap {
    display: flex;
    justify-content: center;
}

.steady-phone {
    width: 262px;
    background: #1a1a1a;
    border-radius: 2.25rem;
    padding: 8px;
    box-shadow: 0 24px 48px rgba(8, 43, 92, 0.18);
    position: relative;
}

.steady-phone::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(230, 245, 246, 0.85) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.steady-phone-screen {
    background: #fff;
    border-radius: 1.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.steady-phone-notch {
    height: 22px;
    background: #fff;
    position: relative;
    flex-shrink: 0;
}

.steady-phone-notch::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: rgba(8, 43, 92, 0.1);
    border-radius: 999px;
}

.steady-phone-scroll {
    flex: 1;
    overflow: hidden;
}

.steady-phone-body {
    padding: 0.35rem 0.85rem 0.5rem;
}

.steady-phone-header {
    margin-bottom: 0.6rem;
}

.steady-phone-greeting {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--steady-navy);
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.steady-phone-sub {
    font-size: 0.6875rem;
    color: var(--steady-text-grey);
    margin: 0;
    line-height: 1.4;
}

.steady-phone-savings-card {
    background: linear-gradient(145deg, #1aabb3 0%, #007981 55%, #006168 100%);
    border-radius: 12px;
    padding: 0.65rem 0.75rem 0.6rem;
    margin-bottom: 0.65rem;
    color: #fff;
}

.steady-phone-savings-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.steady-phone-savings-label {
    font-size: 0.625rem;
    font-weight: 500;
    margin: 0 0 0.15rem;
    opacity: 0.95;
}

.steady-phone-savings-amount {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.1rem;
    line-height: 1.15;
}

.steady-phone-savings-amount span {
    font-size: 0.75rem;
    font-weight: 600;
}

.steady-phone-savings-goal {
    font-size: 0.625rem;
    margin: 0;
    opacity: 0.9;
}

.steady-phone-savings-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 0.9;
}

.steady-phone-savings-icon svg {
    width: 100%;
    height: 100%;
}

.steady-phone-savings-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.steady-phone-progress-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
}

.steady-phone-progress-fill {
    height: 100%;
    width: 50%;
    background: #fff;
    border-radius: 999px;
}

.steady-phone-progress-pct {
    font-size: 0.625rem;
    font-weight: 600;
    flex-shrink: 0;
}

.steady-phone-section {
    margin-bottom: 0.6rem;
}

.steady-phone-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--steady-navy);
    margin: 0 0 0.35rem;
}

.steady-phone-date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.625rem;
    color: var(--steady-navy);
    margin-bottom: 0.35rem;
}

.steady-phone-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.5625rem;
    font-weight: 600;
    color: #fff;
    background: var(--steady-teal-end);
    border-radius: 999px;
}

.steady-phone-divider {
    height: 1px;
    background: var(--steady-light-grey);
    margin: 0.3rem 0;
}

.steady-phone-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.625rem;
    margin-bottom: 0.2rem;
}

.steady-phone-row span:first-child {
    color: var(--steady-text-grey);
}

.steady-phone-row span:last-child {
    font-weight: 600;
    color: var(--steady-navy);
}

.steady-phone-row-total {
    margin-bottom: 0.5rem;
}

.steady-phone-row-total span:first-child {
    font-weight: 700;
    color: var(--steady-navy);
}

.steady-phone-row-total span:last-child {
    font-size: 0.75rem;
    font-weight: 700;
}

.steady-phone-pay-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
    background: var(--steady-btn-bg);
    box-shadow: var(--steady-btn-shadow);
    cursor: pointer;
    transition: background-color 0.15s;
}

.steady-phone-pay-btn:hover {
    background: var(--steady-btn-bg-hover);
}

.steady-phone-benefits {
    margin-bottom: 0.1rem;
}

.steady-phone-benefits-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.steady-phone-benefits-head .steady-phone-section-title {
    margin: 0;
}

.steady-phone-link {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--steady-teal-end);
    text-decoration: none;
}

.steady-phone-benefit-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0;
}

.steady-phone-benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--steady-light-teal);
    color: var(--steady-teal-end);
    display: flex;
    align-items: center;
    justify-content: center;
}

.steady-phone-benefit-icon svg {
    width: 12px;
    height: 12px;
}

.steady-phone-benefit-name {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--steady-navy);
}

.steady-phone-benefit-status {
    font-size: 0.5625rem;
    font-weight: 500;
}

.steady-phone-benefit-status.is-muted {
    color: var(--steady-text-grey);
}

.steady-phone-benefit-status.is-success {
    color: #3d9e3d;
}

.steady-phone-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--steady-light-grey);
    padding: 0.3rem 0.2rem 0.35rem;
    background: #fff;
    flex-shrink: 0;
}

.steady-phone-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-decoration: none;
    color: #b0b8c4;
    font-size: 0.5rem;
    font-weight: 500;
}

.steady-phone-nav-item svg {
    width: 16px;
    height: 16px;
}

.steady-phone-nav-item.is-active {
    color: var(--steady-teal-end);
}

.steady-benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.steady-benefit-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 18px;
    padding: 1.35rem 1.4rem;
    box-shadow: 0 2px 16px rgba(8, 43, 92, 0.06);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.steady-benefit-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--steady-teal-start) 0%, var(--steady-teal-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.steady-benefit-card-icon svg {
    width: 22px;
    height: 22px;
}

.steady-benefit-card-content {
    flex: 1;
    min-width: 0;
}

.steady-benefit-card h3 {
    margin: 0 0 0.4rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--steady-navy);
}

.steady-benefit-card p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--steady-navy);
    opacity: 0.88;
}

.steady-trust {
    background: var(--steady-light-grey);
    border-top: 1px solid #e8ecf1;
    border-bottom: 1px solid #e8ecf1;
    padding: 1.25rem 0 1rem;
}

.steady-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.steady-trust-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.steady-trust-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--steady-shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--steady-teal-end);
}

.steady-trust-icon svg {
    width: 18px;
    height: 18px;
}

.steady-trust-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--steady-navy);
    margin-bottom: 2px;
}

.steady-trust-item span {
    font-size: 0.6875rem;
    color: var(--steady-text-grey);
    line-height: 1.45;
}

.steady-section {
    padding: 2rem 0 4.5rem;
}

.steady-section-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--steady-navy);
    margin: 0 0 2.5rem;
    letter-spacing: -0.02em;
}

.steady-section-title .text-gradient {
    background: var(--steady-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steady-works-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.steady-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
}

.steady-step-card {
    background: #fff;
    border: 1px solid var(--steady-light-grey);
    border-radius: 16px;
    padding: 2.25rem 0.75rem 1.15rem;
    text-align: center;
    box-shadow: var(--steady-shadow-soft);
    position: relative;
    min-height: 168px;
}

.steady-step-num {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--steady-gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 121, 129, 0.35);
}

.steady-step-icon {
    width: 36px;
    height: 36px;
    margin: 0.35rem auto 0.65rem;
    color: var(--steady-teal-end);
}

.steady-step-icon svg {
    width: 100%;
    height: 100%;
}

.steady-step-card h3 {
    margin: 0 0 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--steady-navy);
}

.steady-step-card p {
    margin: 0;
    font-size: 0.6875rem;
    line-height: 1.55;
    color: var(--steady-text-grey);
}

.steady-programme {
    background: var(--steady-gradient);
    border-radius: 16px;
    padding: 1.35rem 1.25rem;
    color: #fff;
    box-shadow: 0 8px 28px rgba(0, 121, 129, 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
}

.steady-programme h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.steady-programme-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.8125rem;
}

.steady-programme-row:last-of-type {
    border-bottom: none;
}

.steady-programme-row dt {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.steady-programme-row dd {
    margin: 0;
    font-weight: 600;
    text-align: right;
}

.steady-programme-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.75rem;
    padding-top: 0.85rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.steady-programme-footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.steady-programme-footer-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.steady-programme-footer-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.steady-programme-footer-piggy {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: #fff;
    opacity: 0.9;
}

.steady-cta-banner {
    padding: 2rem 0 3rem;
}

.steady-cta-inner {
    background: var(--steady-light-grey);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.steady-cta-cell {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--steady-navy);
    line-height: 1.45;
}

.steady-cta-lead {
    gap: 0.875rem;
}

.steady-cta-star {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--steady-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.steady-cta-star svg {
    width: 18px;
    height: 18px;
}

.steady-cta-lead p {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--steady-navy);
    line-height: 1.4;
}

.steady-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--steady-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.steady-check-icon svg {
    width: 10px;
    height: 10px;
    color: #fff;
}

.steady-cta-action {
    justify-content: flex-start;
}

.steady-footer {
    border-top: 1px solid var(--steady-light-grey);
    padding: 2rem 0;
}

.steady-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.steady-footer-logo {
    height: 44px;
    width: auto;
}

.steady-footer-copy {
    font-size: 0.8125rem;
    color: var(--steady-text-grey);
    line-height: 1.5;
}

.steady-mobile-toggle {
    display: none;
    flex-shrink: 0;
    margin-left: auto;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--steady-navy);
}

.steady-mobile-menu {
    display: none;
    border-top: 1px solid var(--steady-light-grey);
    padding: 1rem 1.5rem 1.25rem;
}

.steady-mobile-menu.is-open {
    display: block;
}

.steady-mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--steady-navy);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 640px) {
    .steady-feature-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }

    .steady-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steady-header-inner {
        padding: 0 2rem 0 0.75rem;
    }

    .steady-hero-grid {
        grid-template-columns: 1.05fr 0.95fr 1fr;
        gap: 1.5rem;
    }

    .steady-benefit-cards {
        max-width: none;
        margin: 0;
        align-self: start;
    }

    .steady-works-layout {
        grid-template-columns: 1fr 300px;
        gap: 1.25rem;
        align-items: stretch;
    }

    .steady-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }

    .steady-steps::before {
        content: '';
        position: absolute;
        top: 1.5rem;
        left: 6%;
        right: 6%;
        height: 0;
        border-top: 2px dashed rgba(0, 121, 129, 0.45);
        z-index: 0;
    }

    .steady-step-card {
        z-index: 1;
    }

    .steady-trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .steady-cta-inner {
        flex-direction: row;
        align-items: center;
        padding: 1.15rem 0;
        gap: 0;
    }

    .steady-cta-cell {
        position: relative;
        flex: 1;
        min-width: 0;
        padding: 0 1.15rem;
    }

    .steady-cta-cell + .steady-cta-cell::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18%;
        bottom: 18%;
        width: 1px;
        background: #d8dee6;
    }

    .steady-cta-lead {
        flex: 1.15;
        padding-left: 1.5rem;
    }

    .steady-cta-lead p {
        font-size: 0.875rem;
    }

    .steady-cta-action {
        flex: 0 0 auto;
        padding-right: 1.5rem;
        justify-content: center;
    }

    .steady-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 1199px) {
  :root {
    --steady-header-height: 56px;
  }

    .steady-header-inner {
        padding: 0 1rem 0 0.5rem;
    }

    .steady-logo {
        height: 36px;
    }

    .steady-nav,
    .steady-header-actions {
        display: none;
    }

    .steady-mobile-toggle {
        display: block;
    }
}
