:root {
    --red: #002374;
    --red-deep: #000F38;
    --red-soft: #EAEEF7;
    --gold: #B8860B;
    --line: rgba(0, 35, 116, 0.14);
    --ink: #1F1B1B;
    --ink-soft: #5C5758;
    --cream: #FBFAF9;
}

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

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 88px;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
}

a {
    text-decoration: none;
    color: inherit;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
}

.rule-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.rule-eyebrow::before,
.rule-eyebrow::after {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--red);
    opacity: 0.5;
}

/* ============ NAV ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 250, 249, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    height: 30px;
    display: block;
}

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

.nav-logo-divider {
    width: 1px;
    height: 24px;
    background: var(--line);
}

.nav-logo-via {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.nav-logo-via span:first-child {
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.nav-logo-via span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.2s ease;
    white-space: nowrap;
}

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

.nav-cta {
    background: var(--red);
    color: #fff;
    padding: 12px 26px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--red-deep);
    transform: translateY(-1px);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%);
}

.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 30%;
    display: block;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, var(--red-deep) 0%, var(--red-deep) 30%, rgba(0, 15, 56, 0.78) 48%, rgba(0, 15, 56, 0.34) 68%, rgba(0, 15, 56, 0.08) 85%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-orb.o1 {
    width: 460px;
    height: 460px;
    right: -140px;
    top: -160px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.30) 0%, rgba(184, 134, 11, 0) 70%);
}

.hero-orb.o2 {
    width: 620px;
    height: 620px;
    right: 6%;
    bottom: -260px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.16) 0%, rgba(184, 134, 11, 0) 70%);
}

.hero-orb.o3 {
    width: 300px;
    height: 300px;
    left: -100px;
    top: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.hero .eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #F0C77A;
}

.hero h1 {
    font-size: clamp(32px, 3.8vw, 50px);
    line-height: 1.14;
    font-weight: 500;
    color: #fff;
    max-width: 640px;
}

.hero h1 .accent {
    display: block;
    color: #F0C77A;
    font-style: italic;
}

.hero p.lead {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.86);
    max-width: 500px;
    margin: 22px 0 32px;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: inline-block;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
    background: var(--red-deep);
}

.btn-ghost {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* ============ SOBRE ============ */
.sobre {
    padding: 100px 40px;
    text-align: center;
}

.sobre h2 {
    font-size: clamp(27px, 3.2vw, 36px);
    max-width: 700px;
    margin: 0 auto 22px;
    line-height: 1.28;
}

.sobre h2 .accent {
    color: var(--red);
}

.sobre p.sub {
    color: var(--ink-soft);
    max-width: 720px;
    margin: 0 auto 56px;
    font-size: 16px;
    line-height: 1.8;
}

.info-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--red-soft);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: left;
}

.info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.info-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
}

.info-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.3;
}

.info-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ============ DIFERENCIAIS ============ */
.diferenciais {
    padding: 20px 40px 100px;
    text-align: center;
}

.diferenciais h2 {
    font-size: clamp(26px, 3vw, 34px);
    max-width: 640px;
    margin: 0 auto 44px;
    line-height: 1.28;
}

.diferenciais h2 .accent {
    color: var(--red);
}

.feature-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: linear-gradient(155deg, #012B8C 0%, var(--red-deep) 100%);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 15, 56, 0.32);
}

.feature-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: #F0C77A;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #fff;
    font-family: 'Fraunces', serif;
}

.feature-card p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

/* ============ PLANOS ============ */
.planos {
    background: linear-gradient(160deg, var(--red-soft) 0%, #F6EEE1 100%);
    padding: 100px 40px;
}

.planos-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.planos-head h2 {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.28;
    margin-bottom: 14px;
}

.planos-head h2 .accent {
    color: var(--red);
}

.planos-head p {
    color: var(--ink-soft);
    font-size: 15.5px;
}

.plan-tabs {
    max-width: 460px;
    margin: 0 auto 40px;
    display: flex;
    background: #fff;
    border-radius: 100px;
    padding: 6px;
    box-shadow: 0 14px 34px rgba(0, 15, 56, 0.1);
}

.plan-tab {
    flex: 1;
    text-align: center;
    padding: 13px 10px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

.plan-tab.is-active {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 35, 116, 0.32);
}

.plan-panel {
    display: none;
    max-width: 1120px;
    margin: 0 auto;
}

.plan-panel.is-active {
    display: block;
}

.plan-note {
    text-align: center;
    color: var(--ink-soft);
    font-size: 14.5px;
    max-width: 640px;
    margin: 0 auto 32px;
}

.plan-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.plan-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 15, 56, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 15, 56, 0.14);
}

.plan-card-top {
    height: 120px;
    background: linear-gradient(135deg, var(--red-deep), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.plan-card-top svg {
    width: 38px;
    height: 38px;
    stroke: #fff;
    opacity: 0.9;
}

.plan-card-body {
    padding: 22px 22px 24px;
}

.plan-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 500;
}

.plan-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 16px;
}

.plan-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.plan-card-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--red);
}

/* ============ COBERTURA / REDE ============ */
.coverage {
    background: var(--cream);
    padding: 96px 40px;
    text-align: center;
}

.coverage h2 {
    font-size: clamp(24px, 2.8vw, 32px);
    max-width: 640px;
    margin: 0 auto 14px;
}

.coverage h2 .accent {
    color: var(--red);
}

.coverage p.sub {
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 15.5px;
}

.coverage-stat-row {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.coverage-stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 16px;
    box-shadow: 0 16px 40px rgba(0, 15, 56, 0.06);
    text-align: center;
}

.coverage-stat-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 2.6vw, 30px);
    color: var(--red);
    margin-bottom: 4px;
    line-height: 1;
}

.coverage-stat-label {
    font-size: 13px;
    color: var(--ink-soft);
}

/* ============ REDE CREDENCIADA ============ */
.credenciada {
    background: var(--cream);
    padding: 90px 40px 100px;
    text-align: center;
}

.credenciada h2 {
    font-size: clamp(24px, 2.8vw, 32px);
    max-width: 660px;
    margin: 0 auto 14px;
}

.credenciada h2 .accent {
    color: var(--red);
}

.credenciada p.sub {
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto 48px;
    font-size: 15.5px;
}

.credenciada-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.credenciada-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.credenciada-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 15, 56, 0.1);
    border-color: rgba(0, 35, 116, 0.28);
}

.credenciada-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.credenciada-note {
    max-width: 720px;
    margin: 36px auto 0;
    font-size: 13px;
    color: var(--ink-soft);
}

@media(max-width:960px) {
    .credenciada-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:961px) and (max-width:1180px) {
    .credenciada-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.form-section {
    background: var(--cream);
    padding: 96px 40px;
}

.form-wrap {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.form-copy .eyebrow {
    margin-bottom: 12px;
    display: inline-block;
}

.form-copy h2 {
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.22;
    margin-bottom: 20px;
}

.form-copy h2 .accent {
    color: var(--red);
}

.form-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
}

.form-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: var(--ink);
}

.form-list li svg {
    width: 19px;
    height: 19px;
    stroke: var(--red);
    flex-shrink: 0;
}

.form-callout {
    background: var(--red-deep);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-callout-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F0C77A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-callout-icon svg {
    width: 19px;
    height: 19px;
    stroke: var(--red-deep);
}

.form-callout-title {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.form-callout-value {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px rgba(0, 15, 56, 0.1);
}

.form-card>.rule-eyebrow {
    margin-bottom: 4px;
}

.form-card>.eyebrow {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.form-card>h3 {
    text-align: center;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 22px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-size: 12.5px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(0, 35, 116, 0.14);
}

.form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 17px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.25s ease, transform 0.15s ease;
}

.form-submit:hover {
    background: var(--red-deep);
    transform: translateY(-1px);
}

.form-fineprint {
    font-size: 12.5px;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-fineprint svg {
    width: 13px;
    height: 13px;
    stroke: var(--ink-soft);
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
    padding: 44px 40px 28px;
}

.footer-top {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
    height: 26px;
    filter: brightness(0) invert(1);
}

.footer-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(240, 199, 122, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 15px;
    height: 15px;
    stroke: #F0C77A;
}

.footer-contact-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.footer-contact-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    max-width: 1160px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 200;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: waPulse 2.6s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.wa-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* ============ CHAT WIDGET ============ */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 26px;
    z-index: 201;
    width: 340px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.chat-widget.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-widget-header {
    background: var(--red);
    padding: 16px 44px 16px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.chat-widget-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.chat-widget-avatar svg {
    width: 24px;
    height: 24px;
    stroke: var(--red);
}

.chat-widget-name {
    color: #fff;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.3;
}

.chat-widget-status {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-widget-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #39FF88;
    display: inline-block;
}

.chat-widget-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: background 0.2s ease;
}

.chat-widget-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.chat-widget-body {
    padding: 18px 16px 16px;
    background: #F5F4F2;
}

.chat-bubble-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 12px;
    opacity: 0;
    animation: chatIn 0.4s ease forwards;
}

.chat-bubble-row.delay1 {
    animation-delay: 0.5s;
}

@keyframes chatIn {
    to {
        opacity: 1;
    }
}

.chat-bubble-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-bubble-avatar svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

.chat-bubble {
    background: #fff;
    border-radius: 4px 14px 14px 14px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: var(--ink);
    max-width: 230px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.chat-cta-wrap {
    margin-top: 6px;
}

.chat-cta-btn {
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.chat-cta-btn:hover {
    background: #20BD5A;
}

.chat-cta-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.chat-fineprint {
    font-size: 10.5px;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 10px;
}

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

    .form-wrap {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-card-grid {
        grid-template-columns: 1fr;
    }

    .coverage-stat-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-tabs {
        max-width: 100%;
    }
}