/* ===========================
   Pontual by futurizai — CSS
   =========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --green: #22C55E;
    --green-light: #DCFCE7;
    --green-dark: #16A34A;
    --dark: #0B0F14;
    --gray: #6B7280;
    --gray-light: #F9FAFB;
    --border: rgba(15, 23, 42, 0.08);
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06)
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1E293B;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border)
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /* font-weight: 700; */
    /* font-size: 1.25rem; */
    /* color: var(--dark); */
    width: 7rem;
}

/*.logo svg {*/
/*    width: 32px;*/
/*    height: 32px*/
/*}*/

/*.logo span.by {*/
/*    font-weight: 400;*/
/*    font-size: .75rem;*/
/*    color: var(--gray);*/
/*    margin-left: 2px*/
/*}*/

.nav {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray);
    transition: color .2s
}

.nav a:hover {
    color: var(--dark)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: all .25s;
    font-family: inherit
}

.btn-dark {
    background: var(--dark);
    color: #fff;
    padding: 10px 24px;
    border-radius: 999px
}

.btn-dark:hover {
    background: #1a2332;
    transform: translateY(-1px)
}

.btn-green {
    background: var(--green);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 1rem
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3)
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 1rem;
    border: 2px solid var(--border)
}

.btn-outline:hover {
    border-color: var(--dark);
    transform: translateY(-1px)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 16px;
    z-index: 99
}

.mobile-menu.active {
    display: flex
}

.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0
}

/* HERO */
.hero {
    padding: 140px 0 80px;
    background: var(--gray-light)
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px
}

.hero h1 .hl {
    color: var(--green)
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 28px;
    max-width: 500px
}

.hero-checks {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: #334155
}

.hero-checks li svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-mock {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 28px;
    position: relative
}

.hero-mock--transparent {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.mock-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark)
}

.mock-header span {
    font-size: .75rem;
    color: var(--gray)
}

.mock-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border)
}

.mock-item:last-child {
    border: none
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0
}

.mock-dot.green {
    background: var(--green)
}

.mock-dot.yellow {
    background: #FBBF24
}

.mock-dot.red {
    background: #EF4444
}

.mock-info {
    flex: 1
}

.mock-info strong {
    font-size: .85rem;
    display: block;
    color: var(--dark)
}

.mock-info span {
    font-size: .75rem;
    color: var(--gray)
}

.mock-check {
    color: var(--green)
}

.mock-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px
}

.mock-stat {
    background: var(--green-light);
    border-radius: 12px;
    padding: 14px;
    text-align: center
}

.mock-stat strong {
    font-size: 1.2rem;
    color: var(--green-dark);
    display: block
}

.mock-stat span {
    font-size: .7rem;
    color: var(--gray)
}

/* Inline-replaced utility classes */
.ideal-badge {
    margin-top: 12px;
    padding: 10px 10px;
    background: var(--green-light);
    border-radius: 10px;
    text-align: center;
    font-size: .8rem;
    color: var(--green-dark);
    font-weight: 600
}

.cta-final-btn {
    font-size: 1.1rem;
    padding: 18px 40px
}

.footer-logo {
    color: #fff
}

.footer-futurizai-link {
    color: #22C55E
}

.footer-by {
    color: rgba(255, 255, 255, 0.4)
}

/* PROBLEM SECTION */
.problem {
    background: var(--dark);
    padding: 100px 0;
    color: #fff
}

.problem h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 16px
}

.problem-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 48px;
    font-size: 1rem
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px
}

.problem-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px
}

.problem-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.problem-card h3 svg {
    width: 24px;
    height: 24px;
    color: #EF4444
}

.problem-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: .95rem;
    line-height: 1.7
}

.problem-cta {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    color: var(--green);
    font-weight: 600;
    font-size: 1rem
}

/* DEMO */
.demo {
    padding: 100px 0;
    background: #fff
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 8px
}

.section-sub {
    text-align: center;
    color: var(--gray);
    margin-bottom: 48px;
    font-size: 1rem
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px
}

.chat-mock {
    background: #E5DDD5;
    border-radius: var(--radius);
    padding: 24px;
    max-width: 420px
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-size: .9rem;
    max-width: 85%;
    line-height: 1.5
}

.chat-bubble.bot {
    background: #fff;
    color: var(--dark);
    border-bottom-left-radius: 4px
}

.chat-bubble.user {
    background: #DCF8C6;
    color: var(--dark);
    margin-left: auto;
    border-bottom-right-radius: 4px;
    text-align: right
}

.chat-time {
    font-size: .65rem;
    color: var(--gray);
    margin-top: 2px
}

.demo-result {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border)
}

.demo-result h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px
}

.demo-result ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.demo-result li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: #334155
}

.demo-result li svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.metric-card {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: transform .2s, box-shadow .2s
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.metric-card strong {
    font-size: 1.4rem;
    color: var(--green);
    display: block;
    margin-bottom: 4px
}

.metric-card span {
    font-size: .85rem;
    color: var(--gray)
}

/* HOW IT WORKS */
.how {
    padding: 100px 0;
    background: var(--gray-light)
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px
}

.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
    text-align: center
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--green);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.step-card p {
    color: var(--gray);
    font-size: .9rem
}

.step-badge {
    text-align: center;
    margin-top: 16px
}

.step-badge span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600
}

/* PLANS */
.plans {
    padding: 100px 0;
    background: #fff
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px
}

.plan-card {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: transform .2s, box-shadow .2s
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.plan-card.popular {
    background: var(--dark);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 0 0 2px var(--green), var(--shadow)
}

.plan-card.popular .plan-price span,
.plan-card.popular .plan-feat {
    color: rgba(255, 255, 255, 0.6)
}

.plan-card.popular .btn-green {
    background: var(--green);
    color: #fff
}

.plan-pop {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px
}

.plan-price {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 12px 0 4px
}

.plan-price span {
    font-size: .9rem;
    font-weight: 400;
    color: var(--gray)
}

.plan-feats {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.plan-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: #475569
}

.plan-feat svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0
}

.plan-card .btn-green,
.plan-card .btn-dark {
    width: 100%;
    margin-top: 8px
}

.plans-note {
    text-align: center;
    color: var(--gray);
    font-size: .9rem
}

/* BENEFITS */
.benefits {
    padding: 100px 0;
    background: var(--gray-light)
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: transform .2s, box-shadow .2s
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green)
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.benefit-card p {
    color: var(--gray);
    font-size: .85rem
}

.metrics-strip {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
    color: #fff
}

.ms-item strong {
    font-size: 1.8rem;
    display: block;
    color: var(--green)
}

.ms-item span {
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.6)
}

/* CTA FINAL */
.cta-final {
    padding: 100px 0;
    text-align: center;
    background: #fff
}

.cta-final h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    max-width: 600px;
    margin: 0 auto 16px
}

.cta-final p {
    color: var(--gray);
    max-width: 480px;
    margin: 0 auto 32px
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: var(--gray)
}

.cta-trust svg {
    width: 16px;
    height: 16px;
    color: var(--green)
}

.cta-wa {
    display: inline-block;
    margin-top: 20px;
    color: var(--green);
    font-weight: 600;
    font-size: .9rem
}

.cta-wa:hover {
    text-decoration: underline
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand p {
    margin-top: 12px;
    font-size: .85rem;
    max-width: 280px;
    line-height: 1.7
}

.footer h4 {
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 16px
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer ul a {
    font-size: .85rem;
    transition: color .2s
}

.footer ul a:hover {
    color: var(--green)
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    font-size: .8rem;
    text-align: center
}

/* WIDGET */
.widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--dark);
    color: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 90;
    font-size: .85rem;
    transition: transform .2s
}

.widget:hover {
    transform: translateY(-2px)
}

.widget-btn {
    background: var(--green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .8rem;
    white-space: nowrap;
    border: none;
    cursor: pointer
}

.widget-btn:hover {
    background: var(--green-dark)
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 4px
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero h1 {
        font-size: 2.4rem
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .metrics-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }
}

@media(max-width:768px) {
    .problem h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .problem {
        padding: 50px 0;
    }

    .how {
        padding: 50px 0;
    }

    .plans {
        padding: 50px 0;
    }

    .benefits {
        padding: 50px 0;
    }

    .cta-final {
        padding: 50px 0;
    }

    .cta-final h2 {
        font-size: 1.5rem;
    }

    .nav {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero .container {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 110px 0 60px;
        text-align: center
    }

    .hero h1 {
        font-size: 2rem;
        text-align: left;
    }

    .hero-sub {
        margin: 0 auto 24px;
        text-align: left;
    }

    .hero-btns {
        justify-content: center
    }

    .hero-checks {
        align-items: start
    }

    .problem-cards,
    .demo-grid,
    .steps,
    .plans-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .metrics-row {
        grid-template-columns: 1fr
    }

    .benefits-grid {
        grid-template-columns: 1fr
    }

    .metrics-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .widget span.widget-text {
        display: none
    }

    .widget {
        padding: 12px
    }
}

/* WA DEMO */
.waDemoWrap {
    max-width: 100%
}

.wa-demo {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .10);
    background: #fff;
    position: relative
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #0B0F14;
    color: #fff
}

.wa-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #22C55E;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #0B0F14
}

.wa-title {
    line-height: 1.1
}

.wa-title b {
    display: block;
    font-size: 13px
}

.wa-title span {
    font-size: 11px;
    opacity: .75
}

.wa-body {
    padding: 14px;
    background: linear-gradient(180deg, #F8FAFC, #F1F5F9);
    height: 300px;
    overflow: auto
}

.wa-msg {
    max-width: 85%;
    padding: 10px 10px;
    border-radius: 14px;
    margin: 8px 0;
    font-size: 13px;
    line-height: 1.35;
    position: relative;
    word-break: break-word;
    text-align: left;
}

.wa-msg.bot {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-top-left-radius: 8px
}

.wa-msg.user {
    margin-left: auto;
    background: #DCFCE7;
    border: 1px solid rgba(34, 197, 94, .25);
    border-top-right-radius: 8px;
    max-width: 50%
}

.wa-meta {
    font-size: 10px;
    opacity: .55;
    margin-top: 6px;
    display: flex;
    justify-content: flex-end
}

.wa-typing {
    display: inline-flex;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    width: fit-content;
    margin: 8px 0
}

.wa-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .35);
    animation: bounce 1.2s infinite
}

.wa-dot:nth-child(2) {
    animation-delay: .15s
}

.wa-dot:nth-child(3) {
    animation-delay: .3s
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: .5
    }

    40% {
        transform: translateY(-4px);
        opacity: 1
    }
}

.wa-fade {
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease
}

.wa-fade.on {
    opacity: 1
}

/* LEAD MODAL */
.lead-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

.lead-overlay.open {
    opacity: 1;
    pointer-events: auto
}

.lead-modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px 28px;
    max-width: 400px;
    width: 92%;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    transform: translateY(20px) scale(.97);
    transition: transform .35s ease;
    position: relative
}

.lead-overlay.open .lead-modal {
    transform: translateY(0) scale(1)
}

.lead-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #64748B;
    line-height: 1
}

.lead-close:hover {
    color: #0B0F14
}

.lead-modal h3 {
    margin: 0 0 4px;
    font-size: 1.25rem;
    color: #0B0F14
}

.lead-modal p {
    margin: 0 0 20px;
    font-size: .85rem;
    color: #64748B
}

.lead-modal label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px
}

.lead-modal input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-size: .9rem;
    font-family: inherit;
    transition: border-color .2s;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 14px
}

.lead-modal input:focus {
    border-color: #22C55E;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .12)
}

.lead-modal input::placeholder {
    color: #94A3B8
}

.lead-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: #22C55E;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .15s
}

.lead-submit:hover {
    background: #16A34A;
    transform: translateY(-1px)
}

.lead-submit:active {
    transform: translateY(0)
}

.lead-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

.lead-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: .72rem;
    color: #94A3B8
}

.lead-lock svg {
    width: 12px;
    height: 12px
}