* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background-color: #f8fafc;
}

body {
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: #0b1220;
    color: #e5e7eb;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    backdrop-filter: blur(10px);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0b1120;
    font-size: 0.85rem;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.04em;
}

.main-nav {
    display: flex;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.main-nav a {
    opacity: 0.85;
}

.main-nav a:hover {
    opacity: 1;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#language-select {
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(16, 185, 129, 0.35);
}

.btn-outline {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.6);
}

.btn-small {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

.hero {
    padding: 5rem 0 4rem;
    background: radial-gradient(circle at top left, #22c55e22, transparent 55%),
        radial-gradient(circle at top right, #06b6d422, transparent 55%),
        linear-gradient(to bottom, #020617, #020617 45%, #020617 60%, #020617 100%);
    color: #e5e7eb;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.1rem, 3vw + 1.2rem, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 34rem;
    margin-bottom: 1.25rem;
    color: #cbd5f5;
}

.accent {
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.hero-bullets li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-note {
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero-media {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: radial-gradient(circle at top, rgba(34, 197, 94, 0.08), transparent 60%), #020617;
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 1.4rem 1.5rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
}

.hero-card h2 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.hero-card p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.stat {
    background-color: rgba(15, 23, 42, 0.9);
    border-radius: 0.9rem;
    padding: 0.65rem 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.stat-label {
    font-size: 0.65rem;
    color: #9ca3af;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #0b1120;
    color: #e5e7eb;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    max-width: 40rem;
    margin: 0 auto;
    color: #6b7280;
}

.section-alt .section-header p {
    color: #9ca3af;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background-color: #ffffff;
    border-radius: 1.1rem;
    padding: 1.5rem 1.5rem 1.4rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.section-alt .card {
    background-color: #020617;
    border-color: rgba(148, 163, 184, 0.45);
}

.card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.card p,
.card li {
    font-size: 0.92rem;
    color: #4b5563;
}

.section-alt .card p,
.section-alt .card li {
    color: #9ca3af;
}

.feature-card ul,
.pricing-list,
.lead-bullets {
    list-style: none;
    margin-top: 0.7rem;
}

.feature-card li,
.pricing-list li,
.lead-bullets li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.35rem;
}

.feature-card li::before,
.pricing-list li::before,
.lead-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
}

.pricing-grid {
    max-width: 480px;
    margin: 0 auto;
}

.pricing-card {
    text-align: left;
}

.pricing-tagline {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 0.9rem;
}

.lead-container {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.lead-text p {
    color: #4b5563;
}

.lead-bullets {
    margin-top: 1rem;
}

.lead-form-card {
    background-color: #ffffff;
    border-radius: 1.1rem;
    padding: 1.5rem 1.5rem 1.4rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #111827;
}

input,
select,
textarea {
    padding: 0.55rem 0.7rem;
    border-radius: 0.6rem;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

.form-note {
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 0.4rem;
}

.faq-grid {
    display: grid;
    gap: 1.2rem;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.faq-item p {
    font-size: 0.92rem;
    color: #9ca3af;
}

.footer {
    background-color: #020617;
    color: #9ca3af;
    margin-top: 3rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.3rem 0 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-text {
    font-size: 0.9rem;
    max-width: 20rem;
    margin-top: 0.6rem;
}

.footer-columns {
    display: flex;
    gap: 2.5rem;
}

.footer-columns h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.footer-columns ul {
    list-style: none;
}

.footer-columns li {
    font-size: 0.86rem;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    padding: 0.9rem 0 1.4rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.78rem;
    color: #6b7280;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-media {
        order: -1;
    }

    .lead-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-columns {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .topbar-inner {
        padding: 0.7rem 0;
    }

    .footer-inner {
        padding-top: 1.8rem;
    }
}
