:root {
    --landing-blue: #1d4ed8;
    --landing-blue-dark: #0f2f78;
    --landing-cyan: #0ea5e9;
    --landing-green: #10b981;
    --landing-amber: #f59e0b;
    --landing-ink: #0f172a;
    --landing-muted: #64748b;
    --landing-soft: #f6f9ff;
    --landing-border: rgba(15, 23, 42, .10);
    --landing-shadow: 0 24px 70px rgba(15, 23, 42, .13);
}

body.sanp-landing {
    background: #f8fbff;
    color: var(--landing-ink);
    font-family: 'Inter', sans-serif;
}

.sanp-landing .navbar {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.sanp-landing .navbar-brand span {
    color: var(--landing-blue-dark);
    font-weight: 900;
}

.sanp-landing .navbar .nav-link {
    color: #334155;
    font-weight: 750;
}

.sanp-landing .navbar .nav-link:hover {
    color: var(--landing-blue);
}

.sanp-landing-hero {
    background:
        radial-gradient(circle at 84% 18%, rgba(56, 189, 248, .18), transparent 32%),
        linear-gradient(135deg, #07162f 0%, #12305f 54%, #1f4778 100%);
    color: #fff;
    overflow: hidden;
    padding: 138px 0 78px;
    position: relative;
}

.sanp-landing-hero::before,
.sanp-landing-hero::after {
    content: "";
    pointer-events: none;
    position: absolute;
}

.sanp-landing-hero::before {
    background:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, transparent 0 26%, rgba(125, 211, 252, .12) 26% 26.35%, transparent 26.35% 60%, rgba(125, 211, 252, .08) 60% 60.3%, transparent 60.3%);
    background-size: 64px 64px, 64px 64px, 100% 100%;
    border: 1px solid rgba(191, 219, 254, .09);
    border-radius: 24px;
    height: 440px;
    opacity: .34;
    right: -130px;
    top: 112px;
    transform: rotate(-6deg);
    width: 500px;
}

.sanp-landing-hero::after {
    background:
        linear-gradient(90deg, transparent 0 22%, rgba(255, 255, 255, .12) 22% 23%, transparent 23% 54%, rgba(125, 211, 252, .12) 54% 55%, transparent 55% 100%),
        linear-gradient(180deg, transparent 0 36%, rgba(255, 255, 255, .10) 36% 37%, transparent 37% 68%, rgba(125, 211, 252, .09) 68% 69%, transparent 69% 100%);
    border: 1px solid rgba(191, 219, 254, .10);
    border-radius: 18px;
    height: 230px;
    opacity: .38;
    right: 86px;
    top: 180px;
    transform: rotate(7deg);
    width: 300px;
}

.sanp-landing-hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.sanp-landing-kicker {
    align-items: center;
    background: rgba(37, 99, 235, .10);
    border-radius: 999px;
    color: var(--landing-blue);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    letter-spacing: .08em;
    padding: 8px 13px;
    text-transform: uppercase;
}

.sanp-landing-hero .sanp-landing-kicker {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #dbeafe;
}

.sanp-landing-hero h1 {
    font-size: clamp(40px, 5.4vw, 68px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.02;
    margin: 18px 0;
    max-width: 820px;
}

.sanp-landing-lead {
    color: #dbeafe;
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.55;
    margin-bottom: 26px;
    max-width: 720px;
}

.sanp-landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.sanp-landing-hero-actions .btn,
.sanp-landing .btn {
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
}

.sanp-landing-hero-actions .btn {
    padding: 14px 20px;
}

.sanp-segment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sanp-landing-proof {
    margin-top: -38px;
    position: relative;
    z-index: 2;
}

.sanp-proof-item,
.sanp-landing-card,
.sanp-landing-plan {
    background: #fff;
    border: 1px solid var(--landing-border);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
}

.sanp-proof-item {
    border-radius: 16px;
    height: 100%;
    padding: 20px;
}

.sanp-proof-item strong {
    color: var(--landing-blue-dark);
    display: block;
    font-size: 17px;
    margin-bottom: 5px;
}

.sanp-proof-item span {
    color: var(--landing-muted);
    font-size: 14px;
    font-weight: 650;
}

.sanp-landing-section {
    padding: 86px 0;
}

.sanp-landing-card {
    border-radius: 18px;
    height: 100%;
    padding: 24px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.sanp-landing-card:hover {
    box-shadow: var(--landing-shadow);
    transform: translateY(-3px);
}

.sanp-landing-card > i,
.sanp-module-card > i {
    align-items: center;
    background: #eef4ff;
    border-radius: 14px;
    color: var(--landing-blue);
    display: inline-flex;
    font-size: 24px;
    height: 48px;
    justify-content: center;
    margin-bottom: 18px;
    width: 48px;
}

.sanp-landing-card h3,
.sanp-landing-card h5,
.sanp-module-card h5 {
    color: var(--landing-blue-dark);
    font-weight: 900;
}

.sanp-industrial-band,
.sanp-flow-band {
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, .11), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    border-block: 1px solid rgba(15, 23, 42, .08);
    padding: 72px 0;
}

.sanp-segment-tags span {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, .16);
    border-radius: 999px;
    color: #1e3a8a;
    font-weight: 850;
    padding: 9px 13px;
}

.sanp-flow {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.sanp-flow div {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
    color: #1e3a8a;
    display: flex;
    flex-direction: column;
    font-weight: 900;
    gap: 10px;
    justify-content: center;
    min-height: 122px;
    padding: 14px;
    text-align: center;
}

.sanp-flow i {
    color: var(--landing-blue);
    font-size: 28px;
}

.sanp-value-list,
.sanp-pcp-list,
.sanp-contact-points {
    display: grid;
    gap: 12px;
}

.sanp-value-list {
    margin-top: 20px;
}

.sanp-value-list div,
.sanp-pcp-list div {
    align-items: flex-start;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
    display: flex;
    gap: 12px;
    padding: 14px 16px;
}

.sanp-value-list i,
.sanp-pcp-list i {
    align-items: center;
    background: rgba(37, 99, 235, .10);
    border-radius: 10px;
    color: var(--landing-blue);
    display: inline-flex;
    flex: 0 0 34px;
    font-size: 18px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.sanp-value-list span,
.sanp-pcp-list span {
    color: #475569;
    font-weight: 650;
    line-height: 1.45;
}

.sanp-pcp-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    border-block: 1px solid rgba(15, 23, 42, .08);
    overflow: hidden;
}

.sanp-pcp-art {
    min-height: 545px;
    position: relative;
}

.sanp-pcp-glow {
    background: radial-gradient(circle, rgba(37, 99, 235, .20), transparent 68%);
    filter: blur(6px);
    height: 420px;
    inset: 40px 10px auto auto;
    position: absolute;
    width: 420px;
    z-index: 0;
}

.sanp-screen-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .16);
    padding: 12px;
    position: relative;
    z-index: 1;
}

.sanp-screen-card img {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 14px;
    display: block;
    width: 100%;
}

.sanp-screen-label {
    align-items: center;
    background: #eef4ff;
    border-radius: 999px;
    color: #1e3a8a;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 12px;
}

.sanp-screen-main {
    margin-left: auto;
    width: 92%;
}

.sanp-screen-floating {
    margin-left: 0;
    margin-top: -90px;
    width: 74%;
}

.sanp-check-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sanp-check-grid div {
    align-items: flex-start;
    background: #f8fbff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 14px;
    color: #475569;
    display: flex;
    font-weight: 700;
    gap: 10px;
    padding: 16px;
}

.sanp-check-grid i {
    color: var(--landing-green);
    font-size: 22px;
    margin-top: -2px;
}

.sanp-landing-plan {
    border-radius: 18px;
    min-height: 260px;
    padding: 28px;
}

.sanp-contact-points {
    margin-top: 22px;
}

.sanp-contact-points span {
    align-items: center;
    color: #334155;
    display: flex;
    font-weight: 800;
    gap: 10px;
}

.sanp-contact-points i {
    color: var(--landing-blue);
    font-size: 21px;
}

.sanp-contact-form .form-control {
    border-color: rgba(15, 23, 42, .14);
    border-radius: 12px;
    min-height: 48px;
}

.sanp-contact-form textarea.form-control {
    min-height: 130px;
}

.sanp-landing-footer {
    background: #061532;
    color: #cbd5e1;
    font-weight: 600;
    padding: 24px 0;
}

@media (max-width: 991px) {
    .sanp-landing-hero {
        padding-top: 124px;
    }

    .sanp-landing-hero::before {
        opacity: .28;
        right: -260px;
    }

    .sanp-landing-hero::after {
        opacity: .22;
        right: -120px;
    }

    .sanp-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sanp-pcp-art {
        min-height: auto;
    }

    .sanp-screen-main,
    .sanp-screen-floating {
        margin: 0;
        width: 100%;
    }

    .sanp-screen-floating {
        margin-top: 20px;
    }

    .sanp-check-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .sanp-landing-section {
        padding: 62px 0;
    }

    .sanp-flow {
        grid-template-columns: 1fr;
    }

    .sanp-landing-hero-actions .btn {
        width: 100%;
    }
}
