:root {
    --bg: #0a0c10;
    --panel: #0f1219;
    --card: #121725;
    --muted: #c5c9d7;
    --text: #f8fafc;
    --primary: #7cf29c;
    --primary-strong: #45d46e;
    --accent: #7db2ff;
    --border: #1f2430;
    --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 15% 20%, rgba(124, 242, 156, 0.08), transparent 25%), radial-gradient(circle at 80% 10%, rgba(125, 178, 255, 0.1), transparent 25%), var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background-color: rgba(10, 12, 16, 0.7);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-name {
    color: var(--text);
}

.icon-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 20px rgba(124, 242, 156, 0.6);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 10px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.solid-btn,
.ghost-btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--bg);
    min-width: 190px;
    height: 52px;
    position: relative;
    overflow: hidden;
}

.solid-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #041309;
    box-shadow: 0 10px 30px rgba(69, 212, 110, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-soft 2.8s ease-in-out infinite alternate;
}

.solid-btn:hover {
    transform: translateY(-1px);
}

.solid-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    transform: skewX(-20deg);
}

.solid-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 30%, rgba(124, 242, 156, 0.35), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(69, 212, 110, 0.25), transparent 45%);
    filter: blur(8px);
    z-index: -1;
    animation: glow 2.8s ease-in-out infinite alternate;
}

.solid-btn:hover::after {
    animation: shine 0.9s ease;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes pulse-soft {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 30px rgba(69, 212, 110, 0.3);
    }

    100% {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 14px 36px rgba(69, 212, 110, 0.45);
    }
}

@keyframes glow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0.9;
        transform: scale(1.04);
    }
}

.ghost-btn {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
    min-width: 190px;
    height: 52px;
}

.ghost-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.ghost-btn:focus,
.solid-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.hero {
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.1;
    margin: 14px 0 18px;
    letter-spacing: -1px;
}

.hero-copy p {
    color: var(--muted);
    max-width: 620px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 242, 156, 0.12);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.cta-row {
    display: flex;
    gap: 12px;
    margin: 26px 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.hero-stats span {
    display: block;
}

.stat-number {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-label {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.green {
    background: #7cf29c;
}

.dot.yellow {
    background: #ffd166;
}

.dot.red {
    background: #ff6b6b;
}

.hero-panel img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: block;
}

.panel-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.badge {
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge.success {
    background: rgba(124, 242, 156, 0.12);
    color: var(--primary);
}

.badge.outline {
    border: 1px solid var(--border);
    color: var(--muted);
}

.section {
    padding: 80px 0;
}

.section.inverted {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.8), rgba(12, 16, 24, 0.9));
}

.section-head {
    text-align: center;
    margin-bottom: 36px;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 8px 0;
}

.section-head .lead {
    color: var(--muted);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(124, 242, 156, 0.12);
    display: grid;
    place-items: center;
    color: var(--primary);
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
    margin-top: 8px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.step-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.step-index {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(124, 242, 156, 0.12);
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.step-card h3 {
    margin: 8px 0;
}

.step-card p {
    color: var(--muted);
    margin-bottom: 12px;
}

.step-card ul {
    list-style: none;
    display: grid;
    gap: 6px;
    color: var(--muted);
}

.step-card li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-card i {
    color: var(--primary);
}

.lead-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.lead-actions-left {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lead-actions-right input {
    padding: 12px 14px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    min-width: 240px;
}

.lead-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.summary-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
}

.summary-card .label {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
}

.summary-card .value {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 6px;
}

.table-wrapper {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.lead-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.lead-table th,
.lead-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    color: var(--muted);
}

.lead-table th {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}

.lead-table tbody tr:hover {
    background: rgba(124, 242, 156, 0.05);
}

.lead-table .empty {
    text-align: center;
    color: var(--muted);
}

.pricing-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.pricing-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 12px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 6px;
}

.pricing-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.pricing-card h3 {
    font-size: 1.4rem;
}

.pricing-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

.pricing-card span.plan-badge {
    color: #0b1f14;
}

.pricing-card ul {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.pricing-card li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card i {
    color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(124, 242, 156, 0.1), var(--panel));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(124, 242, 156, 0.18);
    transform: translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #0b1f14;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(124, 242, 156, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.sim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    align-items: start;
}

.sim-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.sim-card .form-field input,
.sim-card .form-field select {
    background: var(--bg);
}

.sim-card.result-card {
    gap: 10px;
}

.sim-row,
.sim-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sim-total {
    padding-top: 8px;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
}

.sim-note {
    font-size: 0.9rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}

.faq-item h3 {
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--muted);
}

.footer {
    background: #06070d;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 40px 0 20px;
}

.footer a {
    color: var(--muted);
    display: block;
    text-decoration: none;
    margin: 6px 0;
}

.footer a:hover {
    color: var(--primary);
}

.footer h4 {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 14px 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.legal {
    display: flex;
    gap: 12px;
}

.muted {
    color: var(--muted);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 50;
}

.modal.open {
    display: flex;
}

.modal-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    width: min(640px, 100%);
    position: relative;
    box-shadow: var(--shadow);
}

.modal-head {
    margin-bottom: 14px;
}

.close {
    position: absolute;
    right: 14px;
    top: 14px;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
}

.gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 60;
    backdrop-filter: blur(4px);
}

.gate-overlay.open {
    display: flex;
}

.gate-card {
    width: min(780px, 100%);
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
}

.gate-head h2 {
    margin: 6px 0;
    font-size: 1.8rem;
}

.gate-head .muted {
    margin-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.form-field {
    display: grid;
    gap: 6px;
}

.form-field label {
    font-weight: 600;
}

.form-field span {
    color: #ff7b7b;
}

.form-field input,
.form-field select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
}

.form-field small {
    color: #ff9b9b;
    min-height: 14px;
    font-size: 0.85rem;
}

.form-actions {
    grid-column: 1 / -1;
    margin-top: 6px;
}

.form-actions .full {
    width: 100%;
    justify-content: center;
}

.feedback {
    grid-column: 1 / -1;
    min-height: 18px;
    font-size: 0.95rem;
    color: var(--muted);
}

.feedback.error {
    color: #ff9b9b;
}

.feedback.success {
    color: var(--primary);
}

.solid-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .navbar .container {
        justify-content: space-between;
    }

    .lead-table {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 100px;
    }

    .navbar .container {
        padding: 14px 0;
    }

    .cta-row {
        flex-direction: column;
    }

    .lead-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .lead-actions-right {
        width: 100%;
    }

    .lead-actions-right input {
        width: 100%;
    }
}