:root {
    --bg: #07111f;
    --surface: #ffffff;
    --surface-soft: rgba(255,255,255,0.08);
    --text: #0f172a;
    --text-light: #e5eefb;
    --muted: #64748b;
    --muted-light: #bfd0f5;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #22c55e;
    --border: #e2e8f0;
    --shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 28%),
        radial-gradient(circle at 80% 15%, rgba(34, 197, 94, 0.12), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(248, 251, 255, 0.86);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.brand-mark__logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.brand-mark__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-mark__text strong {
    font-size: 18px;
}

.brand-mark__text small {
    color: var(--muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-nav a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: #fff;
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.30);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #4338ca);
}

.btn-light {
    background: rgba(255,255,255,0.94);
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

.btn-outline {
    border: 1px solid rgba(37, 99, 235, 0.24);
    color: var(--primary);
    background: #fff;
}

.btn-block {
    width: 100%;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 60px auto auto -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.12);
    filter: blur(20px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 42px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 20px 0 18px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.hero-text {
    max-width: 640px;
    margin: 0;
    color: #334155;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 22px;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    color: #1e293b;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-weight: 600;
}

.hero-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.main-visual-card {
    width: min(100%, 560px);
    padding: 18px;
}

.floating-stat {
    position: absolute;
    min-width: 180px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-light);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.24);
}

.floating-stat strong {
    display: block;
    font-size: 28px;
    margin-bottom: 6px;
}

.floating-stat span {
    color: var(--muted-light);
    line-height: 1.5;
}

.stat-one {
    top: 28px;
    left: -10px;
}

.stat-two {
    right: -8px;
    bottom: 34px;
}

.trust-section {
    padding: 8px 0 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.trust-item {
    padding: 24px 26px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.trust-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.trust-item span {
    color: var(--muted);
    line-height: 1.7;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.section-head h2 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.feature-section {
    padding: 72px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(37,99,235,0.14), rgba(56,189,248,0.18));
    color: var(--primary);
    font-weight: 800;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.why-section {
    padding: 36px 0 86px;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: center;
}

.why-visual,
.contact-side-visual {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-copy h2 {
    margin: 18px 0 18px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.why-list {
    display: grid;
    gap: 18px;
}

.why-list div {
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--border);
}

.why-list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.why-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-section {
    position: relative;
    padding: 84px 0;
    background: linear-gradient(180deg, #091225 0%, #0e1b36 100%);
}

.section-head--light h2,
.section-head--light p {
    color: var(--text-light);
}

.section-head--light p {
    color: #bfd0f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
}

.contact-card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 26px 60px rgba(3, 7, 18, 0.30);
}

.contact-card--info {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.12));
    color: var(--text-light);
    border: 1px solid rgba(191, 208, 245, 0.16);
}

.contact-card h3 {
    margin: 0 0 18px;
    font-size: 26px;
}

.contact-info-list {
    display: grid;
    gap: 18px;
}

.contact-info-list div {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(191, 208, 245, 0.14);
}

.contact-info-list span {
    display: block;
    color: #bfd0f5;
    font-size: 13px;
    margin-bottom: 6px;
}

.contact-info-list strong {
    font-size: 18px;
    line-height: 1.5;
}

.contact-side-visual {
    margin-top: 22px;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #e2e8f0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(191, 208, 245, 0.18);
}

.contact-link--whatsapp {
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.3);
    color: #dcfce7;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row--full {
    grid-column: 1 / -1;
}

.form-row label {
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid #d7e0eb;
    background: #f8fbff;
    color: #0f172a;
    font-size: 15px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-control--textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
}

.captcha-box {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px dashed rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.08));
}

.captcha-question {
    font-size: 18px;
    font-weight: 800;
    color: #1d4ed8;
    letter-spacing: 0.02em;
}

.honey-row {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-error {
    color: #dc2626;
    font-size: 13px;
}

.form-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.form-message--success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-actions {
    padding-top: 4px;
}

.site-footer {
    padding: 24px 0 42px;
    background: #f8fbff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-inner p {
    margin: 6px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
}

@media (max-width: 1080px) {
    .hero-grid,
    .why-grid,
    .contact-grid,
    .feature-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .main-visual-card {
        max-width: 680px;
    }

    .floating-stat {
        position: static;
        margin-top: 16px;
    }
}

@media (max-width: 820px) {
    .site-nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .header-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero-section,
    .feature-section,
    .why-section,
    .contact-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .section-head h2,
    .why-copy h2 {
        font-size: 30px;
    }

    .feature-card,
    .contact-card,
    .trust-item,
    .why-list div {
        padding: 22px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .site-nav a:not(.btn) {
        display: none;
    }
}
