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

:root {
    --lp-bg: #07111c;
    --lp-card: rgba(13, 23, 36, 0.86);
    --lp-text: #f6f8fb;
    --lp-muted: rgba(246, 248, 251, 0.72);
    --lp-line: rgba(255, 255, 255, 0.1);
    --lp-accent: #30d87a;
    --lp-highlight: #ffd15c;
    --lp-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --lp-radius-xl: 32px;
    --lp-radius-lg: 24px;
    --lp-radius-md: 18px;
    --lp-container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(48, 216, 122, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 209, 92, 0.14), transparent 22%),
        linear-gradient(180deg, #06101a 0%, #0a1623 40%, #07111c 100%);
    color: var(--lp-text);
}

a {
    color: inherit;
}

.lp-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.lp-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.45;
    pointer-events: none;
}

.lp-orb-one {
    top: 80px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(48, 216, 122, 0.26);
}

.lp-orb-two {
    top: 220px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: rgba(255, 209, 92, 0.18);
}

.lp-container,
.lp-default-page__inner {
    width: min(calc(100% - 32px), var(--lp-container));
    margin: 0 auto;
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(7, 17, 28, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--lp-text);
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.lp-brand img {
    max-height: 44px;
    width: auto;
    display: block;
}

.lp-main {
    position: relative;
    z-index: 1;
}

.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 34px;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 16, 26, 0.92) 0%, rgba(6, 16, 26, 0.76) 45%, rgba(6, 16, 26, 0.88) 100%),
        var(--lp-hero-background-image, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    pointer-events: none;
}

.lp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 32px;
    align-items: stretch;
}

.lp-hero-copy,
.lp-hero-card,
.lp-info-card,
.lp-step-card,
.lp-testimonial-card,
.lp-final-cta,
.lp-faq-item,
.lp-default-page__article {
    background: var(--lp-card);
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow);
}

.lp-hero-copy {
    padding: 38px;
    border-radius: var(--lp-radius-xl);
}

.lp-notice,
.lp-badge,
.lp-section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-notice {
    margin-bottom: 14px;
    color: #08111c;
    background: var(--lp-highlight);
}

.lp-badge,
.lp-section-heading span {
    color: var(--lp-accent);
    background: rgba(48, 216, 122, 0.12);
    border: 1px solid rgba(48, 216, 122, 0.25);
}

.lp-hero-copy h1,
.lp-section-heading h2,
.lp-final-cta h2,
.lp-hero-card h2,
.lp-default-page__article h1 {
    margin: 0;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    line-height: 1.05;
}

.lp-hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(2.5rem, 4vw, 4.6rem);
    max-width: 11ch;
}

.lp-hero-description,
.lp-hero-card p,
.lp-info-card p,
.lp-step-card p,
.lp-testimonial-card p,
.lp-final-cta p,
.lp-faq-item p,
.lp-footer p,
.lp-default-page__content {
    color: var(--lp-muted);
    line-height: 1.7;
}

.lp-hero-description {
    margin: 18px 0 0;
    max-width: 60ch;
    font-size: 1.06rem;
}

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

.lp-button,
.lp-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-button:hover,
.lp-card-cta:hover,
.lp-floating-whatsapp:hover {
    transform: translateY(-2px);
}

.lp-button-primary,
.lp-card-cta,
.lp-floating-whatsapp {
    color: #07111c;
    background: linear-gradient(135deg, var(--lp-highlight) 0%, var(--lp-accent) 100%);
    box-shadow: 0 18px 32px rgba(48, 216, 122, 0.24);
}

.lp-button-outline,
.lp-button-ghost {
    color: var(--lp-text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-trust-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.lp-trust-list li {
    padding: 16px;
    border-radius: var(--lp-radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--lp-text);
    font-weight: 700;
}

.lp-hero-card {
    position: relative;
    padding: 32px;
    border-radius: var(--lp-radius-xl);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.lp-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(48, 216, 122, 0.18), transparent 30%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 42%);
    pointer-events: none;
}

.lp-hero-card > * {
    position: relative;
    z-index: 1;
}

.lp-hero-card h2 {
    margin-top: 16px;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.lp-stat-list {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.lp-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--lp-radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-stat-item span {
    color: var(--lp-muted);
    font-size: 0.92rem;
}

.lp-stat-item strong,
.lp-info-card h3,
.lp-step-card h3,
.lp-testimonial-card strong,
.lp-faq-item summary {
    font-family: 'Sora', 'Segoe UI', sans-serif;
}

.lp-section {
    padding: 34px 0;
}

.lp-section-compact {
    padding: 10px 0 34px;
}

.lp-section-soft {
    padding: 44px 0;
}

.lp-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border-radius: var(--lp-radius-xl);
    background: linear-gradient(135deg, rgba(255, 209, 92, 0.12), rgba(48, 216, 122, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--lp-shadow);
}

.lp-cta-strip-copy {
    display: grid;
    gap: 10px;
    max-width: 720px;
}

.lp-cta-strip-copy span {
    color: var(--lp-highlight);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-cta-strip-copy h2 {
    margin: 0;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    line-height: 1.1;
}

.lp-cta-strip-copy p {
    margin: 0;
    color: var(--lp-muted);
    line-height: 1.65;
}

.lp-section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.lp-section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    max-width: 30ch;
}

.lp-card-grid,
.lp-steps-grid,
.lp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.lp-info-card,
.lp-step-card,
.lp-testimonial-card {
    padding: 28px;
    border-radius: var(--lp-radius-lg);
}

.lp-card-index,
.lp-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 209, 92, 0.12);
    color: var(--lp-highlight);
    font-weight: 800;
    margin-bottom: 16px;
}

.lp-testimonial-card span {
    display: block;
    margin-top: 8px;
    color: var(--lp-accent);
    font-size: 0.92rem;
    font-weight: 700;
}

.lp-faq-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

.lp-faq-list {
    display: grid;
    gap: 14px;
}

.lp-faq-item {
    border-radius: var(--lp-radius-md);
    padding: 0 22px;
}

.lp-faq-item summary {
    cursor: pointer;
    padding: 22px 0;
    list-style: none;
}

.lp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lp-faq-item p {
    margin: 0 0 22px;
}

.lp-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: var(--lp-radius-xl);
}

.lp-final-cta h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.lp-footer {
    padding: 14px 0 40px;
}

.lp-footer .lp-container {
    display: grid;
    gap: 8px;
}

.lp-footer p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.lp-footer p + p {
    color: var(--lp-muted);
    font-size: 0.88rem;
}

.lp-floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
}

.lp-default-page {
    padding: 48px 0;
}

.lp-default-page__article {
    padding: 32px;
    border-radius: var(--lp-radius-xl);
}

.lp-default-page__article h1 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 1024px) {
    .lp-hero-grid,
    .lp-card-grid,
    .lp-steps-grid,
    .lp-testimonial-grid,
    .lp-faq-wrapper {
        grid-template-columns: 1fr;
    }

    .lp-final-cta,
    .lp-cta-strip {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .lp-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .lp-hero {
        padding-top: 28px;
    }

    .lp-hero-copy,
    .lp-hero-card,
    .lp-info-card,
    .lp-step-card,
    .lp-testimonial-card,
    .lp-final-cta,
    .lp-default-page__article {
        padding: 24px;
    }

    .lp-trust-list {
        grid-template-columns: 1fr;
    }

    .lp-hero-copy h1,
    .lp-section-heading h2,
    .lp-final-cta h2,
    .lp-hero-card h2 {
        max-width: none;
    }
}
