* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    color:#0b1628;
    background:#f7faff;
    font-family:
        "Instrument Sans",
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

a {
    color:inherit;
}

.m2-page {
    min-height:100vh;
    overflow:hidden;
}

.m2-container {
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
}

.m2-nav-shell {
    padding:18px 0 0;
    position:relative;
    z-index:30;
}

.m2-nav {
    width:min(1120px,calc(100% - 40px));
    min-height:68px;
    margin:auto;
    padding:8px 10px 8px 14px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;

    border:1px solid rgba(15,52,96,.09);
    border-radius:23px;

    background:rgba(255,255,255,.90);
    box-shadow:
        0 15px 45px rgba(31,77,139,.10),
        inset 0 1px 0 rgba(255,255,255,.9);

    backdrop-filter:blur(18px);
}

.m2-brand {
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.m2-brand img {
    border-radius:10px;
    box-shadow:0 7px 18px rgba(20,91,223,.18);
}

.m2-brand span {
    display:flex;
    flex-direction:column;
}

.m2-brand strong {
    font-size:15px;
    line-height:1.05;
}

.m2-brand small {
    margin-top:3px;
    color:#718097;
    font-size:9px;
}

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

.m2-nav-links a {
    color:#526178;
    text-decoration:none;
    font-size:12px;
    font-weight:690;
}

.m2-nav-links a:hover {
    color:#126df2;
}

.m2-btn {
    min-height:48px;
    padding:0 18px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    border:1px solid transparent;
    border-radius:14px;

    text-decoration:none;
    font-size:12px;
    line-height:1;
    font-weight:800;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.m2-btn:hover {
    transform:translateY(-2px);
}

.m2-btn-primary {
    color:#fff;
    background:
        linear-gradient(135deg,#1675ff,#0b63e7);
    box-shadow:0 12px 30px rgba(18,109,242,.22);
}

.m2-btn-secondary {
    color:#17253a;
    background:#fff;
    border-color:#dce5f0;
}

.m2-btn-whatsapp {
    color:#072b18;
    background:#dff9e9;
    border-color:#b9efd0;
    box-shadow:0 10px 26px rgba(28,175,93,.11);
}

.m2-btn-whatsapp::before {
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#18b95f;
    box-shadow:0 0 0 5px rgba(24,185,95,.10);
}

.m2-nav-whatsapp {
    min-height:48px;
}

.m2-hero {
    padding:72px 0 70px;

    background:
        radial-gradient(
            circle at 83% 20%,
            rgba(45,122,255,.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 0%,
            rgba(76,151,255,.10),
            transparent 28%
        );
}

.m2-hero-grid {
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(400px,.82fr);
    align-items:center;
    gap:70px;
}

.m2-eyebrow,
.m2-section-label,
.m2-section-head > span,
.m2-proof-kicker {
    color:#176ee8;
    font-size:10px;
    font-weight:850;
    letter-spacing:.13em;
}

.m2-hero h1 {
    max-width:690px;
    margin:18px 0 22px;

    color:#071222;

    font-size:clamp(48px,5.6vw,78px);
    line-height:.98;
    letter-spacing:-.055em;
    font-weight:570;
}

.m2-hero-lead {
    max-width:680px;
    margin:0;

    color:#617089;

    font-size:17px;
    line-height:1.75;
}

.m2-hero-lead strong {
    color:#0d1728;
    font-weight:780;
}

.m2-hero-actions {
    margin-top:30px;

    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.m2-trust-inline {
    margin-top:22px;

    display:flex;
    flex-wrap:wrap;
    gap:9px 18px;

    color:#526178;
    font-size:10px;
    font-weight:690;
}

.m2-hero-demo {
    min-height:520px;
    position:relative;
    display:grid;
    place-items:center;
}

.m2-demo-glow {
    width:380px;
    height:380px;

    position:absolute;

    border-radius:50%;
    background:rgba(32,116,246,.16);
    filter:blur(70px);
}

.m2-demo-card {
    width:285px;
    min-height:440px;

    position:relative;
    z-index:2;

    overflow:hidden;

    border:8px solid #0c1728;
    border-radius:40px;

    background:#fff;

    box-shadow:
        0 30px 70px rgba(15,43,85,.22);
}

.m2-demo-cover {
    height:150px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(42,206,250,.65),
            transparent 25%
        ),
        linear-gradient(135deg,#1375d8,#3860d1);
}

.m2-demo-avatar {
    width:70px;
    height:70px;
    margin:-36px auto 16px;

    position:relative;

    display:grid;
    place-items:center;

    border:4px solid #fff;
    border-radius:21px;

    color:#fff;
    background:#0b1525;

    font-size:22px;
    font-weight:850;

    box-shadow:0 9px 25px rgba(0,0,0,.12);
}

.m2-demo-card > strong,
.m2-demo-card > span {
    display:block;
    text-align:center;
}

.m2-demo-card > strong {
    font-size:17px;
}

.m2-demo-card > span {
    margin-top:6px;
    color:#758197;
    font-size:10px;
}

.m2-demo-buttons {
    margin:20px 18px 12px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:7px;
}

.m2-demo-buttons span {
    height:39px;

    display:grid;
    place-items:center;

    border:1px solid #dfe6ef;
    border-radius:11px;

    color:#415068;
    font-size:9px;
}

.m2-demo-buttons span:first-child {
    color:#fff;
    border-color:#1775ff;
    background:#1775ff;
}

.m2-demo-connect {
    margin:0 18px;
    padding:15px;

    display:flex;
    flex-direction:column;
    gap:6px;

    border-radius:16px;

    color:#fff;
    background:#091423;
}

.m2-demo-connect small {
    color:#69b3ff;
    font-size:7px;
}

.m2-demo-connect strong {
    font-size:11px;
    line-height:1.35;
}

.m2-demo-connect span {
    color:#69a7ed;
    font-size:7px;
}

.m2-new-lead {
    width:205px;
    padding:17px;

    position:absolute;
    z-index:4;
    right:-5px;
    bottom:64px;

    display:flex;
    flex-direction:column;
    gap:5px;

    border:1px solid #dbe5f0;
    border-radius:19px;

    background:rgba(255,255,255,.96);

    box-shadow:
        0 20px 50px rgba(21,51,92,.16);
}

.m2-new-lead small {
    color:#1b70e8;
    font-size:8px;
    font-weight:850;
    letter-spacing:.08em;
}

.m2-new-lead strong {
    font-size:12px;
}

.m2-new-lead span {
    color:#7c899b;
    font-size:8px;
}

.m2-proof-section {
    padding:0 0 42px;
}

.m2-proof-card {
    padding:30px 34px;

    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:28px;

    border:1px solid #dce8f5;
    border-radius:25px;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(33,124,255,.10),
            transparent 30%
        ),
        #fff;

    box-shadow:
        0 15px 45px rgba(24,63,114,.07);
}

.m2-proof-card h2 {
    max-width:620px;
    margin:8px 0 8px;

    font-size:25px;
    letter-spacing:-.03em;
}

.m2-proof-card p {
    max-width:670px;
    margin:0;

    color:#69778d;
    font-size:13px;
    line-height:1.65;
}

.m2-proof-actions {
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:9px;
}

.m2-section {
    padding:88px 0;
}

.m2-section-soft {
    background:#eef5fc;
}

.m2-section-head {
    max-width:720px;
    margin-bottom:38px;
}

.m2-section-head h2,
.m2-value-grid h2,
.m2-local h2,
.m2-team h2 {
    margin:10px 0 12px;

    font-size:clamp(33px,4vw,50px);
    line-height:1.05;
    letter-spacing:-.045em;
    font-weight:620;
}

.m2-section-head p,
.m2-value-grid > div > p,
.m2-local p,
.m2-team p {
    color:#69778c;
    font-size:15px;
    line-height:1.75;
}

.m2-steps {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.m2-steps article,
.m2-security-grid article {
    min-height:210px;
    padding:25px;

    border:1px solid #e1e8f1;
    border-radius:20px;

    background:#fff;

    box-shadow:0 12px 35px rgba(26,61,105,.05);
}

.m2-steps b,
.m2-security-grid b {
    color:#1775f4;
    font-size:12px;
}

.m2-steps h3,
.m2-security-grid h3 {
    margin:30px 0 9px;
    font-size:18px;
}

.m2-steps p,
.m2-security-grid p {
    margin:0;
    color:#748197;
    font-size:12px;
    line-height:1.7;
}

.m2-value-grid {
    display:grid;
    grid-template-columns:1fr .9fr;
    align-items:center;
    gap:80px;
}

.m2-check-list {
    margin:24px 0 0;
    padding:0;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 24px;

    list-style:none;
}

.m2-check-list li {
    color:#364760;
    font-size:12px;
    font-weight:680;
}

.m2-check-list li::before {
    content:"✓";
    margin-right:8px;
    color:#138c51;
}

.m2-leads-demo {
    overflow:hidden;

    border:1px solid #dbe4ef;
    border-radius:23px;

    background:#fff;

    box-shadow:
        0 28px 60px rgba(31,70,120,.12);
}

.m2-leads-top {
    padding:19px 22px;

    display:flex;
    justify-content:space-between;

    border-bottom:1px solid #edf1f5;
}

.m2-leads-top span {
    font-size:12px;
    font-weight:800;
}

.m2-leads-top strong {
    color:#1771ed;
    font-size:10px;
}

.m2-lead-row {
    padding:17px 22px;

    display:grid;
    grid-template-columns:38px 1fr auto;
    align-items:center;
    gap:12px;

    border-bottom:1px solid #edf1f5;
}

.m2-lead-row:last-child {
    border-bottom:0;
}

.m2-lead-row > b {
    width:38px;
    height:38px;

    display:grid;
    place-items:center;

    border-radius:12px;

    color:#1d5cad;
    background:#e8f2ff;

    font-size:10px;
}

.m2-lead-row > span {
    display:flex;
    flex-direction:column;
    gap:3px;
}

.m2-lead-row strong {
    font-size:11px;
}

.m2-lead-row small {
    color:#8794a6;
    font-size:8px;
}

.m2-lead-row em {
    padding:6px 8px;

    border-radius:999px;

    color:#316cae;
    background:#edf5ff;

    font-size:7px;
    font-style:normal;
    font-weight:780;
}

.m2-plans {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.m2-plan {
    padding:29px;

    position:relative;

    display:flex;
    flex-direction:column;

    border:1px solid #dde6f0;
    border-radius:24px;

    background:#fff;

    box-shadow:
        0 14px 38px rgba(24,58,100,.06);
}

.m2-plan-featured {
    border-color:#73abff;

    box-shadow:
        0 25px 55px rgba(24,109,235,.13);
}

.m2-plan-badge {
    padding:7px 10px;

    position:absolute;
    top:-14px;
    right:18px;

    border-radius:999px;

    color:#fff;
    background:#116ff1;

    font-size:8px;
    font-weight:850;
    letter-spacing:.08em;
}

.m2-plan-label {
    color:#216ecf;
    font-size:9px;
    font-weight:820;
    letter-spacing:.11em;
}

.m2-plan h3 {
    margin:14px 0 17px;
    font-size:21px;
}

.m2-price {
    color:#0b1729;
    font-size:37px;
    font-weight:760;
    letter-spacing:-.04em;
}

.m2-price small {
    color:#778399;
    font-size:9px;
    letter-spacing:0;
}

.m2-plan > p {
    color:#8490a2;
    font-size:10px;
}

.m2-plan ul {
    margin:20px 0 28px;
    padding:19px 0 0;

    border-top:1px solid #eef1f5;

    list-style:none;
}

.m2-plan li {
    margin:9px 0;
    color:#4b5b72;
    font-size:11px;
}

.m2-plan li::before {
    content:"✓";
    margin-right:8px;
    color:#168951;
}

.m2-plan-btn {
    width:100%;
    margin-top:auto;
}

.m2-renewal {
    margin-top:22px;
    padding:22px 25px;

    border:1px solid #dae7f4;
    border-radius:19px;

    background:#f1f7fd;
}

.m2-renewal > strong {
    font-size:13px;
}

.m2-renewal p {
    margin:7px 0 0;
    color:#66758b;
    font-size:11px;
    line-height:1.7;
}

.m2-security {
    background:#081524;
    color:#fff;
}

.m2-security .m2-section-head > span {
    color:#61a5ff;
}

.m2-security .m2-section-head h2 {
    color:#fff;
}

.m2-security-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.m2-security-grid article {
    border-color:rgba(255,255,255,.10);
    background:#0d1c2e;
    box-shadow:none;
}

.m2-security-grid h3 {
    color:#fff;
}

.m2-security-grid p {
    color:#9cacc0;
}

.m2-privacy-link {
    margin:22px 0 0;
    color:#8fa2b9;
    font-size:10px;
}

.m2-privacy-link a {
    color:#76b4ff;
}

.m2-local {
    background:
        radial-gradient(
            circle at 8% 50%,
            rgba(37,116,237,.08),
            transparent 28%
        );
}

.m2-local-grid {
    display:grid;
    grid-template-columns:1fr .75fr;
    align-items:center;
    gap:80px;
}

.m2-local-card {
    padding:30px;

    border:1px solid #dce6f0;
    border-radius:24px;

    background:#fff;

    box-shadow:
        0 22px 55px rgba(26,62,110,.09);
}

.m2-local-card > span {
    color:#1872e9;
    font-size:9px;
    font-weight:850;
    letter-spacing:.11em;
}

.m2-local-card > strong {
    margin:14px 0 8px;
    display:block;
    font-size:22px;
    line-height:1.25;
}

.m2-local-card p {
    margin:0 0 20px;
    font-size:12px;
}

.m2-team {
    padding:36px;

    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:30px;

    border-radius:26px;

    color:#fff;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(56,153,255,.28),
            transparent 32%
        ),
        #07182c;
}

.m2-team h2 {
    color:#fff;
}

.m2-team p {
    max-width:670px;
    margin-bottom:0;
    color:#a6b7cb;
}

.m2-faq-wrap {
    max-width:900px;
}

.m2-faq {
    display:grid;
    gap:9px;
}

.m2-faq details {
    padding:0 20px;

    border:1px solid #dce5ef;
    border-radius:16px;

    background:#fff;
}

.m2-faq summary {
    padding:19px 0;

    cursor:pointer;

    font-size:13px;
    font-weight:760;
}

.m2-faq p {
    margin:0 0 20px;
    color:#68778d;
    font-size:12px;
    line-height:1.7;
}

.m2-final {
    padding:100px 0;

    color:#fff;
    text-align:center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(41,130,255,.33),
            transparent 38%
        ),
        #071423;
}

.m2-final span {
    color:#67a8ff;
    font-size:9px;
    font-weight:850;
    letter-spacing:.12em;
}

.m2-final h2 {
    max-width:760px;
    margin:16px auto 13px;

    font-size:clamp(38px,5vw,60px);
    line-height:1.03;
    letter-spacing:-.045em;
}

.m2-final p {
    color:#99aabd;
    font-size:14px;
}

.m2-final-actions {
    margin-top:28px;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:9px;
}

.m2-footer {
    padding:30px 0;
    background:#050f1a;
    color:#8c9aad;
}

.m2-footer > .m2-container {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.m2-footer-brand {
    display:flex;
    align-items:center;
    gap:9px;
}

.m2-footer-brand span {
    display:flex;
    flex-direction:column;
}

.m2-footer-brand strong {
    color:#e7edf5;
    font-size:12px;
}

.m2-footer-brand small {
    margin-top:3px;
    font-size:8px;
}

.m2-footer-links {
    display:flex;
    gap:18px;
}

.m2-footer-links a {
    color:#9aabbe;
    text-decoration:none;
    font-size:9px;
}

.m2-whatsapp-float {
    min-height:48px;
    padding:0 16px;

    position:fixed;
    right:22px;
    bottom:22px;
    z-index:50;

    display:flex;
    align-items:center;
    gap:9px;

    border:1px solid rgba(20,175,87,.25);
    border-radius:16px;

    color:#0a2c1b;
    background:#dff8e9;

    text-decoration:none;
    font-size:10px;
    font-weight:820;

    box-shadow:
        0 14px 35px rgba(8,53,31,.18);
}

.m2-whatsapp-float span {
    width:9px;
    height:9px;

    border-radius:50%;

    background:#18b85e;

    box-shadow:
        0 0 0 5px
        rgba(24,184,94,.12);
}

@media (max-width:1000px) {

    .m2-nav-links {
        display:none;
    }

    .m2-hero-grid {
        grid-template-columns:1fr;
    }

    .m2-hero-copy {
        max-width:780px;
    }

    .m2-hero-demo {
        min-height:480px;
    }

    .m2-steps,
    .m2-security-grid {
        grid-template-columns:1fr 1fr;
    }

    .m2-plans {
        grid-template-columns:1fr;
    }

    .m2-value-grid,
    .m2-local-grid {
        grid-template-columns:1fr;
        gap:40px;
    }
}

@media (max-width:720px) {

    .m2-container {
        width:min(100% - 28px,1180px);
    }

    .m2-nav {
        width:min(100% - 20px,1120px);
    }

    .m2-nav-whatsapp {
        display:none;
    }

    .m2-brand small {
        display:none;
    }

    .m2-hero {
        padding:52px 0;
    }

    .m2-hero h1 {
        font-size:48px;
    }

    .m2-hero-lead {
        font-size:15px;
    }

    .m2-hero-actions {
        display:grid;
    }

    .m2-hero-actions .m2-btn {
        width:100%;
    }

    .m2-new-lead {
        right:0;
    }

    .m2-proof-card {
        grid-template-columns:1fr;
        padding:24px;
    }

    .m2-proof-actions {
        justify-content:flex-start;
    }

    .m2-section {
        padding:66px 0;
    }

    .m2-steps,
    .m2-security-grid {
        grid-template-columns:1fr;
    }

    .m2-check-list {
        grid-template-columns:1fr;
    }

    .m2-team {
        grid-template-columns:1fr;
        padding:25px;
    }

    .m2-footer > .m2-container {
        flex-direction:column;
        align-items:flex-start;
    }

    .m2-whatsapp-float {
        right:12px;
        bottom:12px;
    }
}

@media (prefers-reduced-motion:reduce) {

    html {
        scroll-behavior:auto;
    }

    .m2-btn {
        transition:none;
    }
}
