.landing-body {
    background: #f8fafc;
    color: #0f172a;
}

.landing-body .guest-layout {
    min-height: auto;
}

.landing-site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    border-bottom: 1px solid #e8edf3;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.landing-header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 76px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.landing-header-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto;
}

.landing-header-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.landing-header-nav-collapse {
    align-items: center;
    justify-content: center;
}

.landing-header-utilities {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 0 0 auto;
    margin-left: auto;
}

.landing-header-call {
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #0f172a;
    transition: opacity 0.2s ease;
}

.landing-header-call:hover {
    color: #0f172a;
    opacity: 0.85;
}

.landing-header-call-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.4rem;
    background: #0ea5e9;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.landing-header-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.landing-header-call-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.landing-header-call-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

.landing-header-login {
    align-items: center;
    padding: 0.45rem 0.75rem;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.35rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.landing-header-login:hover,
.landing-header-login.is-active {
    color: #0284c7;
    background: rgba(14, 165, 233, 0.08);
}

.landing-header-cta {
    padding: 0.5rem 1rem;
    border-radius: 0.35rem;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    color: #fff !important;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: none;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-header-cta:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(14, 165, 233, 0.35);
}

.landing-header-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid #dbe3ee;
    border-radius: 0.4rem;
    background: #fff;
    color: #0f172a;
    font-size: 1.5rem;
    line-height: 1;
}

.landing-header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-header-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.landing-header-link::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.2rem;
    height: 2px;
    border-radius: 999px;
    background: #0ea5e9;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.landing-header-link:hover {
    color: #0284c7;
    background: rgba(14, 165, 233, 0.06);
    border-radius: 0.35rem;
}

.landing-header-link:hover::after,
.landing-header-link.is-active::after {
    transform: scaleX(1);
}

.landing-header-link.is-active {
    color: #0284c7;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 0.35rem;
}

.landing-header-link--cta {
    color: #fff !important;
    background: #0284c7;
}

.landing-header-link--cta::after {
    display: none;
}

.landing-header-link--cta:hover,
.landing-header-link--cta.is-active {
    color: #fff !important;
    background: #0369a1;
}

.landing-page-header {
    padding: 2.5rem 0 1.5rem;
}

.landing-page-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.landing-page-subtitle {
    max-width: 42rem;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.05rem;
}

.landing-contact-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.landing-contact-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.landing-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    flex-shrink: 0;
}

.landing-contact-label {
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 0.15rem;
}

.landing-contact-list a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}

.landing-contact-list a:hover {
    color: #2563eb;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-nav-toggle {
    color: #0f172a;
    text-decoration: none;
    padding: 0;
}

.landing-hero {
    padding: 4.5rem 0 3.5rem;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.landing-eyebrow {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.landing-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1rem;
}

.landing-hero-desc {
    color: #475569;
    font-size: 1.0625rem;
    max-width: 38rem;
}

.landing-hero-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
}

.landing-hero-card-head {
    margin-bottom: 1rem;
}

.landing-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.landing-hero-metric {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 0.875rem;
    text-align: center;
}

.landing-hero-metric-value {
    font-weight: 800;
    color: #2563eb;
    font-size: 1.125rem;
}

.landing-hero-metric-label {
    font-size: 0.75rem;
    color: #64748b;
}

.landing-hero-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-hero-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0;
    color: #334155;
    font-size: 0.9375rem;
}

.landing-hero-list i {
    color: #16a34a;
}

.landing-section,
.landing-stats {
    padding: 4rem 0;
}

.landing-section-alt {
    background: #fff;
}

.landing-section-title {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.landing-section-subtitle {
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto;
}

.landing-stat-card,
.landing-feature-card,
.landing-benefit-card,
.landing-step-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.landing-stat-icon {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.landing-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
}

.landing-stat-title,
.landing-feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.landing-stat-desc,
.landing-feature-desc {
    color: #64748b;
    margin-bottom: 0;
}

.landing-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: #eff6ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.landing-benefit-card i {
    font-size: 1.75rem;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.landing-benefit-card h3,
.landing-step-card h3 {
    font-size: 1rem;
    font-weight: 700;
}

.landing-benefit-card p,
.landing-step-card p {
    color: #64748b;
    margin-bottom: 0;
}

.landing-step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.875rem;
}

.landing-pricing-wrap .pricing-page-header {
    display: none;
}

.landing-pricing-wrap .pricing-table-wrap {
    margin-top: 0;
}

.landing-faq .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem !important;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.landing-faq .accordion-button {
    font-weight: 600;
}

.landing-cta {
    padding: 4rem 0 5rem;
}

.landing-cta-card {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 55%, #3b82f6 100%);
    color: #fff;
    border-radius: 1.25rem;
    padding: 3rem 1.5rem;
    box-shadow: 0 24px 50px rgba(37, 99, 235, 0.25);
}

.landing-cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
}

.landing-cta-desc {
    max-width: 42rem;
    margin: 0.75rem auto 0;
    opacity: 0.92;
}

.landing-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
}

.landing-footer-about {
    color: #94a3b8;
    margin-bottom: 0;
}

.landing-footer-title {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
}

.landing-footer-links,
.landing-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer-links li,
.landing-footer-contact li {
    margin-bottom: 0.5rem;
}

.landing-footer a {
    color: #cbd5e1;
    text-decoration: none;
}

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

.landing-footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    font-size: 0.875rem;
    color: #94a3b8;
}

@media (max-width: 991.98px) {
    .landing-header-inner {
        flex-wrap: wrap;
        min-height: 64px;
    }

    .landing-header-nav {
        order: 3;
        flex: 1 1 100%;
    }

    .landing-header-nav-collapse:not(.show) {
        display: none;
    }

    .landing-header-nav-collapse {
        padding: 0.25rem 0 0.75rem;
        border-top: 1px solid #e8edf3;
    }

    .landing-header-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .landing-header-link {
        width: 100%;
        padding: 0.7rem 0.25rem;
    }

    .landing-header-link::after {
        left: 0;
        right: auto;
        width: 3px;
        height: auto;
        top: 20%;
        bottom: 20%;
        transform: scaleY(0);
    }

    .landing-header-link:hover::after,
    .landing-header-link.is-active::after {
        transform: scaleY(1);
    }

    .landing-header-utilities {
        margin-left: auto;
    }

    .landing-hero {
        padding-top: 2.5rem;
    }

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

@media (min-width: 992px) {
    .landing-header-nav-collapse {
        display: flex !important;
        height: auto !important;
        visibility: visible !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .landing-header-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.8125rem;
    }

    .landing-header-cta {
        padding: 0.5rem 0.85rem;
        font-size: 0.75rem;
    }
}
