:root {
    --lp-bg: #0d0f13;
    --lp-panel: rgba(255, 255, 255, 0.045);
    --lp-panel-strong: rgba(20, 28, 43, 0.88);
    --lp-border: rgba(255, 255, 255, 0.12);
    --lp-muted: #d7e3f5;
    --lp-soft: #9fb6d4;
    --lp-blue: #2563eb;
    --lp-blue-light: #60a5fa;
    --lp-cyan: #67e8f9;
}

.landing-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 5%, rgba(37, 99, 235, 0.2), transparent 32rem),
        radial-gradient(circle at 90% 22%, rgba(103, 232, 249, 0.08), transparent 25rem),
        linear-gradient(180deg, var(--lp-bg) 0%, #101318 52%, #0b0d10 100%);
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    text-shadow: none;
    overflow-x: hidden;
    overflow-y: auto;
}

.landing-page * {
    box-sizing: border-box;
}

.landing-page p[style*="color:rgba(255,255,255,0.35)"],
.landing-page p[style*="color:rgba(255,255,255,0.5)"],
.landing-page p[style*="color:rgba(255,255,255,0.55)"],
.landing-page p[style*="color:rgba(255,255,255,0.6)"],
.landing-page p[style*="color:#888"],
.landing-page p[style*="color: #888"] {
    color: var(--lp-muted) !important;
}

.landing-page .section-sub,
.landing-page .benefit-card p,
.landing-page .process-step p,
.landing-page .service-item-lp p,
.landing-page .hero-note,
.landing-page .lp-privacy {
    color: var(--lp-muted) !important;
}

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem max(1.25rem, calc((100vw - 1180px) / 2));
    background: rgba(13, 15, 19, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.lp-brand {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lp-nav-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    text-decoration: none;
}

.lp-nav-link:hover,
.lp-nav-link:focus-visible {
    color: #fff;
}

.lp-nav-cta,
.lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(100deg, #1e3a8a, var(--lp-blue), var(--lp-blue-light));
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(37, 99, 235, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-nav-cta {
    padding: 0.65rem 1.1rem;
    font-size: 0.86rem;
}

.lp-button {
    padding: 1rem 1.45rem;
    cursor: pointer;
    font: inherit;
}

.lp-nav-cta:hover,
.lp-button:hover,
.lp-nav-cta:focus-visible,
.lp-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(37, 99, 235, 0.42);
}

.lp-hero {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 7rem max(1.25rem, 4vw) 5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.75fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.lp-hero::after {
    content: '';
    position: absolute;
    right: 3%;
    bottom: 9%;
    width: min(28vw, 330px);
    height: min(28vw, 330px);
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 50%;
    transform: rotate(19deg) scaleY(0.45);
    pointer-events: none;
}

.lp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
    color: var(--lp-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lp-hero h1 {
    max-width: 720px;
    margin: 0 0 1.25rem;
    font-size: clamp(2.3rem, 4.2vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
}

.lp-hero h1 span {
    color: var(--lp-blue-light);
}

.lp-hero-lead {
    max-width: 680px;
    margin: 0 0 2rem;
    color: var(--lp-muted);
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.75;
}

.lp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.lp-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.98rem 1.4rem;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
}

.lp-button-secondary:hover,
.lp-button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.11);
}

.lp-proof {
    margin-top: 1.1rem;
    color: var(--lp-soft);
    font-size: 0.82rem;
}

.lp-hero-panel {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.18), var(--lp-panel-strong));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lp-hero-panel .panel-label {
    display: block;
    margin-bottom: 1.1rem;
    color: var(--lp-blue-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lp-hero-panel h2 {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    line-height: 1.25;
}

.lp-hero-panel ul,
.lp-check-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-hero-panel li,
.lp-check-list li {
    display: flex;
    gap: 0.65rem;
    color: var(--lp-muted);
    line-height: 1.5;
}

.lp-hero-panel li i,
.lp-check-list i {
    flex: 0 0 auto;
    margin-top: 0.22rem;
    color: var(--lp-cyan);
}

.lp-trust-strip {
    border-top: 1px solid rgba(103, 232, 249, 0.15);
    border-bottom: 1px solid rgba(103, 232, 249, 0.15);
    background: rgba(37, 99, 235, 0.08);
}

.lp-trust-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.15rem max(1.25rem, 4vw);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--lp-muted);
    font-size: 0.88rem;
}

.lp-trust-item i {
    color: var(--lp-cyan);
}

.lp-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 5.5rem max(1.25rem, 4vw);
}

.lp-section-muted {
    max-width: none;
    background: rgba(255, 255, 255, 0.018);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-section-muted > .lp-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.lp-eyebrow {
    margin-bottom: 0.7rem;
    color: var(--lp-blue-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lp-section h2 {
    max-width: 760px;
    margin: 0 0 0.9rem;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
}

.lp-section-intro {
    max-width: 720px;
    margin: 0 0 2.5rem;
    color: var(--lp-muted);
    line-height: 1.75;
}

.lp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.lp-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.lp-work-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    background: var(--lp-panel);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-work-card:hover,
.lp-work-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.lp-work-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #151922;
}

.lp-work-content {
    display: grid;
    gap: 0.45rem;
    padding: 1.15rem 1.2rem 1.3rem;
}

.lp-work-category {
    color: var(--lp-cyan);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lp-work-content h3 {
    margin: 0;
    font-size: 1.05rem;
}

.lp-work-content p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.lp-card {
    padding: 1.5rem;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    background: var(--lp-panel);
}

.lp-card i {
    display: inline-grid;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #1e3a8a, var(--lp-blue));
}

.lp-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
}

.lp-card p,
.lp-step p,
.lp-split p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.lp-pricing-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 1.6rem;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.lp-pricing-card.is-featured {
    border-color: rgba(96, 165, 250, 0.62);
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.2), rgba(20, 28, 43, 0.9));
    box-shadow: 0 22px 52px rgba(37, 99, 235, 0.2);
}

.lp-pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(100deg, #1e3a8a, var(--lp-blue), var(--lp-blue-light));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

.lp-pricing-badge i {
    color: #fbbf24;
}

.lp-package-meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
    color: var(--lp-blue-light);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lp-package-code {
    display: inline-grid;
    width: 1.9rem;
    height: 1.9rem;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.32);
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.18);
    color: #fff;
    font-size: 0.86rem;
}

.lp-pricing-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
}

.lp-package-lead {
    min-height: 2.8rem;
    margin: 0;
    color: var(--lp-soft);
    font-size: 0.86rem;
    line-height: 1.55;
}

.lp-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 1.2rem 0 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-price strong {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1;
}

.lp-price span {
    color: var(--lp-soft);
    font-size: 0.84rem;
}

.lp-package-audience,
.lp-package-note {
    color: var(--lp-muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.lp-package-highlight {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0.4rem 0 0.9rem;
    padding: 0.75rem 0.8rem;
    border: 1px solid rgba(103, 232, 249, 0.22);
    border-radius: 12px;
    background: linear-gradient(100deg, rgba(37, 99, 235, 0.18), rgba(103, 232, 249, 0.06));
}

.lp-package-highlight > i {
    display: grid;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    background: rgba(103, 232, 249, 0.16);
    color: var(--lp-cyan);
    font-size: 0.9rem;
}

.lp-package-highlight span {
    display: grid;
    gap: 0.1rem;
}

.lp-package-highlight strong {
    color: #fff;
    font-size: 0.95rem;
}

.lp-package-highlight small {
    color: var(--lp-muted);
    font-size: 0.72rem;
}

.lp-package-audience {
    min-height: 4.2rem;
    margin: 0 0 0.6rem;
}

.lp-price-list {
    display: grid;
    flex: 1;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-price-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--lp-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.lp-price-list li i {
    flex: 0 0 auto;
    margin-top: 0.18rem;
    color: var(--lp-cyan);
    font-size: 0.75rem;
}

.lp-package-note {
    min-height: 3.2rem;
    margin: 1rem 0 0;
    color: var(--lp-soft);
    font-size: 0.76rem;
}

.lp-price-button {
    width: 100%;
    margin-top: 1rem;
}

.lp-pricing-terms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1rem;
    max-width: 980px;
    margin: 1.5rem auto 0;
    color: var(--lp-soft);
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: center;
}

.lp-pricing-terms strong {
    color: #fff;
}

.lp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 7vw, 7rem);
    align-items: center;
}

.lp-split h2 {
    margin-bottom: 1.1rem;
}

.lp-check-list {
    margin-top: 1.5rem;
}

.lp-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: lp-step;
}

.lp-step {
    position: relative;
    padding: 1.5rem;
    border-top: 2px solid var(--lp-blue);
    background: var(--lp-panel);
}

.lp-step::before {
    counter-increment: lp-step;
    content: '0' counter(lp-step);
    display: block;
    margin-bottom: 1.3rem;
    color: var(--lp-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.lp-step h3 {
    margin: 0 0 0.6rem;
    font-size: 1rem;
}

.lp-form-band {
    padding: 5.5rem max(1.25rem, 4vw);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(13, 15, 19, 0.95) 70%);
    border-top: 1px solid rgba(103, 232, 249, 0.16);
    border-bottom: 1px solid rgba(103, 232, 249, 0.16);
}

.lp-form-inner {
    max-width: 760px;
    margin: 0 auto;
}

.lp-form-inner h2,
.lp-form-inner > p {
    text-align: center;
}

.lp-form-inner > p {
    max-width: 620px;
    margin: 0 auto 2rem;
    color: var(--lp-muted);
    line-height: 1.7;
}

.lp-form {
    display: grid;
    gap: 1rem;
}

.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lp-field {
    display: grid;
    gap: 0.4rem;
}

.lp-field label {
    color: var(--lp-muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.lp-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    outline: 0;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font: inherit;
}

.lp-input:focus {
    border-color: var(--lp-blue-light);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}

.lp-input option {
    background: #151a24;
}

.lp-privacy {
    margin: 0;
    color: var(--lp-soft);
    font-size: 0.76rem;
    text-align: center;
}

.lp-faq {
    display: grid;
    gap: 0.75rem;
    max-width: 820px;
}

.lp-faq details {
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    background: var(--lp-panel);
}

.lp-faq summary {
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
}

.lp-faq details p {
    margin: 0;
    padding: 0 1.25rem 1.15rem;
    color: var(--lp-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.lp-footer {
    padding: 2.5rem max(1.25rem, 4vw);
    text-align: center;
    color: var(--lp-soft);
    font-size: 0.82rem;
}

.lp-footer a {
    margin: 0 0.55rem;
    color: rgba(255, 255, 255, 0.66);
    text-decoration: none;
}

.lp-footer a:hover,
.lp-footer a:focus-visible {
    color: #fff;
}

.lp-mobile-cta {
    display: none;
}

@media (max-width: 850px) {
    .lp-hero,
    .lp-split {
        grid-template-columns: 1fr;
    }

    .lp-hero {
        padding-top: 5rem;
    }

    .lp-hero-panel {
        max-width: 600px;
    }

    .lp-grid,
    .lp-work-grid,
    .lp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-process,
    .lp-trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .lp-nav-link {
        display: none;
    }

    .lp-hero {
        padding-top: 4rem;
        padding-bottom: 3.5rem;
    }

    .lp-hero h1 {
        font-size: clamp(2rem, 9.5vw, 3rem);
        overflow-wrap: anywhere;
    }

    .lp-actions,
    .lp-actions a,
    .lp-actions button {
        width: 100%;
    }

    .lp-work-grid,
    .lp-grid,
    .lp-pricing-grid,
    .lp-process,
    .lp-trust-inner,
    .lp-form-row {
        grid-template-columns: 1fr;
    }

    .lp-section,
    .lp-section-muted > .lp-section,
    .lp-form-band {
        padding-top: 3.8rem;
        padding-bottom: 3.8rem;
    }

    .lp-mobile-cta {
        display: block;
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        z-index: 30;
        padding: 0.9rem 1rem;
        border-radius: 999px;
        background: linear-gradient(100deg, #1e3a8a, var(--lp-blue));
        color: #fff;
        font-size: 0.94rem;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    }
}