@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
    --landing-ink: #10233f;
    --landing-muted: #60708d;
    --landing-line: rgba(16, 35, 63, 0.1);
    --landing-brand: #0b63f6;
    --landing-brand-deep: #0b3ea8;
    --landing-accent: #14b8a6;
    --landing-warm: #ffb347;
    --landing-surface: #f7f9fd;
    --landing-card: rgba(255, 255, 255, 0.82);
    --landing-shadow: 0 30px 70px rgba(12, 31, 66, 0.14);
}

html {
    scroll-behavior: smooth;
}

body.landing-body {
    font-family: "Manrope", "Inter", sans-serif;
    color: var(--landing-ink);
    padding-top: var(--landing-topbar-offset, 0px);
    background:
        radial-gradient(circle at 10% 10%, rgba(20, 184, 166, 0.12), transparent 24%),
        radial-gradient(circle at 90% 12%, rgba(11, 99, 246, 0.18), transparent 28%),
        linear-gradient(180deg, #f3f8ff 0%, #ffffff 46%, #f4f7fb 100%);
}

.landing-shell {
    position: relative;
    overflow-x: hidden;
}

.landing-shell::before,
.landing-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    z-index: 0;
}

.landing-shell::before {
    top: 110px;
    left: -90px;
    width: 260px;
    height: 260px;
    background: rgba(20, 184, 166, 0.1);
}

.landing-shell::after {
    right: -120px;
    top: 360px;
    width: 320px;
    height: 320px;
    background: rgba(11, 99, 246, 0.1);
}

.landing-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-topbar.landing-topbar-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(16, 35, 63, 0.08);
    box-shadow: 0 18px 40px rgba(12, 31, 66, 0.12);
}

.landing-nav {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--landing-ink);
    text-decoration: none;
}

.landing-brand:hover {
    color: var(--landing-ink);
    text-decoration: none;
}

.landing-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--landing-brand) 0%, var(--landing-accent) 100%);
    box-shadow: 0 18px 30px rgba(11, 99, 246, 0.24);
}

.landing-brand-mark-image {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 35, 63, 0.08);
}

.landing-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.landing-brand-title {
    display: block;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.landing-brand-copy {
    display: block;
    font-size: 12px;
    color: var(--landing-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.landing-nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--landing-muted);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.landing-nav-links a:hover {
    color: var(--landing-ink);
    background: rgba(11, 99, 246, 0.08);
    text-decoration: none;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.landing-btn-ghost,
.landing-btn-primary,
.landing-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.landing-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--landing-brand) 0%, var(--landing-brand-deep) 100%);
    box-shadow: 0 18px 30px rgba(11, 99, 246, 0.25);
}

.landing-btn-primary:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 22px 34px rgba(11, 99, 246, 0.3);
}

.landing-btn-ghost {
    color: var(--landing-ink);
    border: 1px solid rgba(16, 35, 63, 0.12);
    background: rgba(255, 255, 255, 0.75);
}

.landing-btn-ghost:hover,
.landing-btn-light:hover {
    color: var(--landing-ink);
    text-decoration: none;
    transform: translateY(-1px);
}

.landing-btn-light {
    color: var(--landing-ink);
    background: #fff;
    border: 1px solid rgba(16, 35, 63, 0.1);
}

.landing-btn-ghost-inverse {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}

.landing-btn-ghost-inverse:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.landing-section {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    scroll-margin-top: calc(var(--landing-topbar-offset, 0px) + 20px);
}

.landing-hero {
    padding: 56px 0 34px;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: center;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(11, 99, 246, 0.12);
    color: var(--landing-brand-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(16, 35, 63, 0.06);
}

.landing-eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-brand) 100%);
}

.landing-hero h1,
.landing-section-title {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    letter-spacing: -0.04em;
}

.landing-hero h1 {
    max-width: 11ch;
    margin: 22px 0 18px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.98;
}

.landing-hero p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--landing-muted);
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 28px;
}

.landing-inline-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
}

.landing-inline-metric strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--landing-ink);
}

.landing-inline-metric span {
    color: var(--landing-muted);
    font-size: 14px;
}

.landing-showcase {
    position: relative;
    padding: 24px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 35%),
        linear-gradient(150deg, rgba(11, 99, 246, 0.96) 0%, rgba(8, 52, 136, 0.98) 60%, rgba(14, 184, 166, 0.95) 100%);
    box-shadow: var(--landing-shadow);
}

.landing-showcase::after {
    content: "";
    position: absolute;
    inset: auto -44px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.landing-showcase-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.landing-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.landing-status-pill::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #6ef1de;
    box-shadow: 0 0 0 6px rgba(110, 241, 222, 0.16);
}

.landing-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.landing-showcase-card,
.landing-showcase-panel {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.landing-showcase-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: center;
}

.landing-showcase-image {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    display: block;
    filter: drop-shadow(0 22px 34px rgba(8, 27, 68, 0.24));
}

.landing-showcase-card .count,
.landing-showcase-panel strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.landing-showcase-card span,
.landing-showcase-panel p,
.landing-showcase-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.landing-mini-list {
    display: grid;
    gap: 10px;
}

.landing-mini-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.landing-mini-item strong {
    font-size: 14px;
    margin: 0;
}

.landing-counter-band {
    margin: 28px auto 0;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 35, 63, 0.08);
    box-shadow: 0 20px 50px rgba(16, 35, 63, 0.08);
}

.landing-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.landing-counter-card {
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    border: 1px solid rgba(16, 35, 63, 0.06);
}

.landing-counter-number {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 6px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--landing-ink);
}

.landing-counter-card p,
.landing-counter-card small {
    margin: 0;
    color: var(--landing-muted);
}

.landing-content-block {
    padding: 96px 0 10px;
}

.landing-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.landing-section-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--landing-brand-deep);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-section-title {
    margin: 0;
    font-size: clamp(32px, 3.8vw, 54px);
    line-height: 1.04;
}

.landing-section-copy {
    max-width: 540px;
    margin: 12px 0 0;
    color: var(--landing-muted);
    line-height: 1.8;
    font-size: 16px;
}

.landing-section-lead {
    max-width: 420px;
    color: var(--landing-muted);
    font-size: 15px;
    line-height: 1.75;
}

.landing-services-grid,
.landing-trust-grid,
.landing-audience-grid,
.landing-footer-grid {
    display: grid;
    gap: 18px;
}

.landing-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-service-card,
.landing-trust-card,
.landing-audience-card,
.landing-credentials-card {
    height: 100%;
    padding: 24px;
    border-radius: 26px;
    background: var(--landing-card);
    border: 1px solid rgba(16, 35, 63, 0.08);
    box-shadow: 0 20px 45px rgba(16, 35, 63, 0.07);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-service-card:hover,
.landing-trust-card:hover,
.landing-audience-card:hover,
.landing-credentials-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(16, 35, 63, 0.12);
}

.landing-service-icon,
.landing-trust-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 22px;
}

.landing-service-card:nth-child(1) .landing-service-icon {
    background: linear-gradient(135deg, #0b63f6 0%, #3977ff 100%);
}

.landing-service-card:nth-child(2) .landing-service-icon {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.landing-service-card:nth-child(3) .landing-service-icon {
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 100%);
}

.landing-service-card:nth-child(4) .landing-service-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}

.landing-service-card h3,
.landing-trust-card h3,
.landing-audience-card h3,
.landing-credentials-card h3,
.landing-cta-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
}

.landing-service-card p,
.landing-trust-card p,
.landing-audience-card p,
.landing-credentials-card p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.75;
}

.landing-trust-grid {
    grid-template-columns: 1.15fr 0.85fr;
}

.landing-trust-main {
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 249, 255, 0.95) 100%);
    border: 1px solid rgba(16, 35, 63, 0.08);
    box-shadow: 0 24px 56px rgba(16, 35, 63, 0.08);
}

.landing-trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.landing-trust-list li {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 35, 63, 0.06);
}

.landing-trust-list i {
    margin-top: 3px;
    color: var(--landing-accent);
}

.landing-trust-stack {
    display: grid;
    gap: 18px;
}

.landing-trust-icon {
    background: linear-gradient(135deg, var(--landing-brand) 0%, var(--landing-accent) 100%);
}

.landing-workflow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.landing-step-card {
    position: relative;
    min-height: 100%;
    padding: 28px 24px 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(16, 35, 63, 0.08);
    box-shadow: 0 20px 50px rgba(16, 35, 63, 0.07);
}

.landing-step-number {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 22px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--landing-brand) 0%, var(--landing-accent) 100%);
}

.landing-step-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
}

.landing-step-card p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.75;
}

.landing-audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-audience-card small {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--landing-brand-deep);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-credentials-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: stretch;
}

.landing-credentials-card {
    padding: 28px;
}

.landing-credential {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid rgba(16, 35, 63, 0.08);
}

.landing-credential + .landing-credential {
    margin-top: 14px;
}

.landing-credential-label {
    display: block;
    margin-bottom: 8px;
    color: var(--landing-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.landing-credential strong {
    display: block;
    font-size: 18px;
}

.landing-credential span {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--landing-brand-deep);
}

.landing-credentials-art {
    position: relative;
    min-height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(16, 35, 63, 0.96) 0%, rgba(11, 99, 246, 0.96) 58%, rgba(20, 184, 166, 0.95) 100%);
    box-shadow: var(--landing-shadow);
}

.landing-credentials-art img {
    position: absolute;
    right: -24px;
    bottom: 0;
    width: min(92%, 430px);
    max-height: 100%;
}

.landing-credentials-overlay {
    position: relative;
    z-index: 1;
    padding: 30px;
    color: #fff;
}

.landing-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.landing-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.landing-cta-card {
    margin-top: 86px;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(11, 99, 246, 0.98) 0%, rgba(10, 43, 114, 0.98) 58%, rgba(20, 184, 166, 0.92) 100%);
    color: #fff;
    box-shadow: var(--landing-shadow);
}

.landing-cta-card p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
}

.landing-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.landing-footer {
    margin-top: 92px;
    padding: 36px 0 26px;
    background: #0d1b31;
    color: rgba(255, 255, 255, 0.82);
}

.landing-footer-grid {
    grid-template-columns: 1.1fr 0.8fr 0.8fr 0.85fr;
}

.landing-footer h4 {
    margin: 0 0 14px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 18px;
    color: #fff;
}

.landing-footer p,
.landing-footer li,
.landing-footer a {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    text-decoration: none;
}

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

.landing-footer-list {
    padding: 0;
    margin: 0;
}

.landing-footer-list li {
    list-style: none;
    margin-bottom: 8px;
}

.landing-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.landing-divider-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--landing-ink);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(16, 35, 63, 0.08);
    font-weight: 700;
}

.landing-subject-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.landing-subject-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(11, 99, 246, 0.08);
    color: var(--landing-brand-deep);
    font-weight: 800;
    font-size: 13px;
}

@media (max-width: 1199.98px) {
    .landing-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-workflow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-trust-grid,
    .landing-credentials-wrap,
    .landing-footer-grid {
        grid-template-columns: 1fr;
    }

    .landing-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .landing-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-nav-links,
    .landing-nav-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .landing-hero-grid,
    .landing-showcase-panel {
        grid-template-columns: 1fr;
    }

    .landing-counter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .landing-section {
        width: min(100% - 24px, 1180px);
    }

    .landing-hero {
        padding-top: 36px;
    }

    .landing-hero h1 {
        max-width: none;
        font-size: clamp(34px, 12vw, 54px);
    }

    .landing-inline-metrics {
        gap: 14px 18px;
    }

    .landing-counter-grid,
    .landing-services-grid,
    .landing-workflow,
    .landing-audience-grid,
    .landing-trust-list {
        grid-template-columns: 1fr;
    }

    .landing-showcase,
    .landing-cta-card,
    .landing-credentials-card,
    .landing-trust-main {
        padding: 22px;
    }

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

    .landing-showcase-image {
        margin: 0 auto;
        max-width: 240px;
    }

    .landing-credential {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-credentials-art {
        min-height: 420px;
    }

    .landing-credentials-art img {
        width: 100%;
        right: 0;
    }
}
