*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #1a1a2e;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
}

:root {
    --teal:    #00c2b2;
    --teal-dk: #009e90;
    --teal-lt: #e6faf8;
    --navy:    #0d1b35;
    --navy2:   #162040;
    --ink:     #1a1a2e;
    --soft:    #4a5568;
    --ghost:   #94a3b8;
    --bdr:     #e2e8f0;
    --bg:      #f8fafc;
    --r:       10px;
    --r-lg:    16px;
    --r-xl:    24px;
}

.wrap        {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.wrap-full   {
    width: 100%;
    padding: 0 40px;
}
.sec {
    padding: 80px 0;
}
.sec-sm {
    padding: 48px 0;
}
.sec-dark {
    background: var(--navy);
    color: #fff;
}
.sec-navy2 {
    background: var(--navy2);
    color: #fff;
}
.sec-teal {
    background: var(--teal);
    color: #fff;
}
.sec-gray {
    background: var(--bg);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--r);
    border: none;
    transition: all .18s;
    white-space: nowrap;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-teal {
    background: var(--teal);
    color: #fff;
}
.btn-teal:hover {
    background: var(--teal-dk);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,194,178,.35);
}
.btn-white {
    background: #fff;
    color: var(--navy);
}
.btn-white:hover {
    background: #f0faf9;
    color: var(--navy);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.btn-lg {
    font-size: 16px;
    padding: 15px 32px;
}
.btn-ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.2);
    color: #fff;
}
.btn-promo {
    background: linear-gradient(135deg, #f59e0b, #ef8c00);
    color: #fff;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
}
.btn-promo:hover {
    background: linear-gradient(135deg, #ef8c00, #f59e0b);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.topbar {
    background: #0a1628;
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar-promo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-weight: 600;
    font-size: 12px;
}
.topbar-promo i {
    color: #fbbf24;
}
.topbar-links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.topbar a {
    color: rgba(255,255,255,.6);
    transition: color .15s;
    font-size: 12px;
}
.topbar a:hover {
    color: var(--teal);
}
.topbar-flag {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.08);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all .2s;
}
.topbar-flag:hover {
    background: rgba(255,255,255,.15);
}
.topbar-flag img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.topbar-right .sep {
    opacity: .15;
}
.topbar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.topbar-social a {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transition: all .2s;
}
.topbar-social a:hover {
    color: var(--teal);
    transform: translateY(-2px);
}

.header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid rgba(255,255,255,.07);
    width: 100%;
    left: 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 72px;
    gap: 8px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-wordmark {
    height: 38px;
}
.logo-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.25);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    flex: 1;
    justify-content: center;
}
.nav > li {
    height: 100%;
    display: flex;
    align-items: center;
    position: static;
}
.nav > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255,255,255,.88);
    padding: 0 22px;
    height: 100%;
    transition: all .15s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    letter-spacing: .1px;
}
.nav > li > a .ch {
    font-size: 9px;
    opacity: .5;
    transition: transform .2s;
    margin-left: 3px;
}
.nav > li:hover > a {
    color: #fff;
    border-bottom-color: var(--teal);
    background: rgba(0,194,178,.05);
}
.nav > li:hover > a .ch {
    transform: rotate(180deg);
}

.drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #fff;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    box-shadow: 0 25px 80px rgba(0,0,0,.25);
    padding: 36px 40px;
    z-index: 999;
    animation: dropIn .15s ease forwards;
}
.drop::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}
@keyframes dropIn {
    from {
        opacity:0;
        transform:translateY(12px);
    }
    to {
        opacity:1;
        transform:translateY(0);
    }
}
.drop-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.drop-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}
.drop-head {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--ghost);
    border-bottom: 1px solid var(--bdr);
    padding-bottom: 10px;
    margin-bottom: 12px;
}
.drop a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    transition: all .15s;
    margin-bottom: 4px;
}
.drop a:hover {
    background: var(--teal-lt);
    color: var(--navy);
    transform: translateX(4px);
}
.drop a i {
    color: var(--teal);
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.drop a small {
    display: block;
    font-size: 12px;
    color: var(--ghost);
    font-weight: 400;
    margin-top: 2px;
}
.drop-promo-box {
    background: linear-gradient(135deg, var(--teal-lt), #fff);
    border: 2px solid var(--teal);
    border-radius: var(--r-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.drop-promo-box .promo-tag {
    background: var(--teal);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
}
.drop-promo-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}
.drop-promo-box p {
    font-size: 13px;
    color: var(--soft);
    line-height: 1.5;
}
.drop-promo-box .promo-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--teal);
}
.drop-promo-box .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.header-promo-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    color: #fbbf24;
    font-weight: 600;
}
.header-promo-mini i {
    font-size: 14px;
}
.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: none;
}
.ham span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: rgba(255,255,255,.9);
    border-radius: 2px;
}

.mnav {
    display: none;
    background: var(--navy2);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0 24px;
    max-height: 80vh;
    overflow-y: auto;
}
.mnav.open {
    display: block;
}
.mnav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 640px) {
    .mnav-grid {
        grid-template-columns: 1fr;
    }
}
.mnav-sec {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--teal);
    padding: 16px 0 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 8px;
}
.mnav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: all .15s;
}
.mnav a i {
    color: var(--teal);
    width: 20px;
    text-align: center;
    font-size: 14px;
}
.mnav a:hover {
    color: var(--teal);
    padding-left: 8px;
}
.mnav-promo {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--r);
    padding: 16px;
    margin-top: 16px;
}
.mnav-promo h4 {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 6px;
}
.mnav-promo p {
    color: rgba(255,255,255,.7);
    font-size: 12px;
    margin-bottom: 12px;
}
.mnav-cta {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}
.mnav-cta .btn {
    flex: 1;
    justify-content: center;
}

.hero {
    background:
        radial-gradient(ellipse 80% 60% at 70% -10%, rgba(0,194,178,.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at -10% 80%, rgba(0,120,220,.2) 0%, transparent 60%),
        linear-gradient(160deg, #050e1f 0%, #071428 50%, #081c2e 100%);
    padding: 64px 0 72px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,194,178,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,194,178,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,194,178,.22) 0%, transparent 65%);
    top: -180px;
    right: -120px;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,194,178,.12);
    border: 1px solid rgba(0,194,178,.35);
    color: #4dddd4;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 22px;
}
.hero h1 .accent {
    color: var(--teal);
    position: relative;
}
.hero-sub {
    font-size: 19px;
    color: rgba(255,255,255,.62);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-sub strong {
    color: #fff;
    font-weight: 700;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 28px;
}
.hero-stat {
    flex: 1;
    min-width: 120px;
    padding-right: 28px;
    border-right: 1px solid rgba(255,255,255,.08);
    margin-right: 28px;
}
.hero-stat:last-child {
    border-right: none;
    margin-right: 0;
}
.hero-stat-num {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-stat-num span {
    color: var(--teal);
}
.hero-stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    margin-top: 4px;
    font-weight: 500;
}

.pbar {
    background: #0d1b35;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 12px 0;
}
.pbar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.pbar a img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    opacity: .55;
    transition: all .15s;
    display: block;
    border: 2px solid transparent;
}
.pbar a:hover img {
    opacity: 1;
    transform: scale(1.15);
    border-color: var(--teal);
}

.trust-bar {
    background: var(--teal);
    padding: 20px 0;
}
.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.trust-item i {
    font-size: 18px;
    opacity: .85;
}
.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.3);
}
@media (max-width: 600px) {
    .trust-divider {
        display: none;
    }
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}
.promo-card {
    border-radius: var(--r-lg);
    padding: 28px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform .2s;
    position: relative;
    overflow: hidden;
}
.promo-card:hover {
    transform: translateY(-3px);
}
.promo-card::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
}
.promo-teal {
    background: linear-gradient(135deg, #009e90, #00c2b2);
}
.promo-amber {
    background: linear-gradient(135deg, #f59e0b, #ef8c00);
}
.promo-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}
.promo-body {
    flex: 1;
}
.promo-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.2;
}
.promo-sub {
    font-size: 13px;
    color: rgba(255,255,255,.8);
    margin-bottom: 6px;
}
.promo-price {
    font-size: 12px;
    color: rgba(255,255,255,.65);
}
.promo-arrow {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
    transition: background .15s;
}
.promo-card:hover .promo-arrow {
    background: rgba(255,255,255,.32);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px)  {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.plan {
    background: #fff;
    border: 2px solid var(--bdr);
    border-radius: var(--r-xl);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.plan:hover {
    border-color: var(--teal);
    box-shadow: 0 16px 48px rgba(0,194,178,.14);
    transform: translateY(-4px);
}
.plan-pop {
    border-color: var(--teal);
    box-shadow: 0 16px 48px rgba(0,194,178,.14);
}
.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 99px;
    white-space: nowrap;
}
.plan-name {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--ghost);
    margin-bottom: 16px;
}
.plan-old {
    font-size: 13px;
    color: var(--ghost);
    text-decoration: line-through;
}
.plan-disc {
    display: inline-block;
    background: #fff3e0;
    color: #c77700;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: 5px;
    margin: 4px 0 10px;
}
.plan-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 2px;
}
.plan-price sup {
    font-size: 16px;
    vertical-align: super;
    font-weight: 700;
    letter-spacing: 0;
}
.plan-period {
    font-size: 12px;
    color: var(--ghost);
    margin-bottom: 4px;
}
.plan-annual {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 22px;
}
.plan-cta {
    display: block;
    text-align: center;
    background: var(--teal-lt);
    color: var(--teal-dk);
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border-radius: var(--r);
    border: 1.5px solid rgba(0,194,178,.3);
    transition: background .15s, color .15s;
    margin-bottom: 22px;
}
.plan-cta:hover, .plan-pop .plan-cta {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--soft);
    flex: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.35;
}
.plan-features li i {
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}
.plan-features .ok i {
    color: var(--teal);
}
.plan-features .no {
    color: #cbd5e1;
    text-decoration: line-through;
}
.plan-features .no i {
    color: #cbd5e1;
}
.plan-ssl {
    color: var(--teal);
    font-weight: 600;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}
.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}
.section-h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -.4px;
    margin-bottom: 12px;
}
.section-h2-white {
    color: #fff;
}
.section-lead {
    font-size: 17px;
    color: var(--soft);
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 40px;
}
.section-lead-white {
    color: rgba(255,255,255,.65);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.product {
    background: #fff;
    border: 1.5px solid var(--bdr);
    border-radius: var(--r-lg);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.product:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 28px rgba(0,194,178,.12);
    transform: translateY(-2px);
}
.product-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--teal-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--teal);
    margin-bottom: 6px;
}
.product-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--ghost);
}
.product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}
.product-price {
    font-size: 12.5px;
    color: var(--ghost);
    padding-top: 8px;
    border-top: 1px solid var(--bdr);
    margin-top: auto;
}
.product-price strong {
    color: var(--teal);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
}
.tool {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    transition: border-color .15s, color .15s;
}
.tool i {
    color: var(--teal);
    font-size: 15px;
    width: 18px;
    text-align: center;
}
.tool:hover {
    border-color: var(--teal);
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--bdr);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--bdr);
}
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
.benefit {
    background: #fff;
    padding: 28px 24px;
}
.benefit:hover {
    background: var(--teal-lt);
}
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--teal-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--teal);
    margin-bottom: 14px;
    transition: background .15s;
}
.benefit:hover .benefit-icon {
    background: var(--teal);
    color: #fff;
}
.benefit h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 5px;
}
.benefit p {
    font-size: 13px;
    color: var(--soft);
    line-height: 1.55;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 36px;
}
.logos img {
    max-width: 110px;
    max-height: 42px;
    opacity: .7;
    transition: opacity .2s;
}
.logos img:hover {
    opacity: 1;
}

.ong-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 768px) {
    .ong-grid {
        grid-template-columns: 1fr;
    }
}
.ong-card {
    background: linear-gradient(135deg, #007d75, #00c2b2);
    border-radius: var(--r-xl);
    padding: 40px 36px;
    color: #fff;
}
.ong-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.ong-card p {
    font-size: 15px;
    line-height: 1.65;
    opacity: .9;
    margin-bottom: 16px;
}
.ong-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    opacity: .9;
    margin-bottom: 7px;
}
.ong-list i {
    margin-top: 2px;
    flex-shrink: 0;
}
.ong-note {
    background: rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.6;
    opacity: .88;
    margin: 18px 0 22px;
}
.ong-btn {
    display: inline-block;
    background: #fff;
    color: #007d75;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--r);
    transition: opacity .15s;
}
.ong-btn:hover {
    opacity: .9;
    color: #007d75;
}

.garantia {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-xl);
    padding: 32px 36px;
}
.garantia-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    flex-shrink: 0;
}
.garantia h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}
.garantia p {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}
@media (max-width: 600px) {
    .garantia {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

.metodos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}
@media (max-width: 480px) {
    .metodos {
        grid-template-columns: repeat(2, 1fr);
    }
}
.metodo {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: background .15s;
}
.metodo:hover {
    background: rgba(255,255,255,.12);
}
.metodo img {
    max-width: 68px;
    max-height: 36px;
    opacity: .9;
}

.seo-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px solid var(--bdr);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--soft);
    transition: border-color .15s, color .15s;
}
.seo-toggle:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.seo-body {
    display: none;
    font-size: 15px;
    color: var(--soft);
    line-height: 1.75;
    max-width: 100%;
    margin-top: 22px;
}
.seo-body.open {
    display: block;
}
.seo-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin: 18px 0 8px;
}
.seo-body h3:first-child {
    margin-top: 0;
}
.seo-links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--bdr);
}
.seo-links a {
    font-size: 12.5px;
    color: var(--teal-dk);
}
.seo-links a::after {
    content: ' · ';
    color: var(--ghost);
}
.seo-links a:last-child::after {
    content: '';
}
.seo-links a:hover {
    text-decoration: underline;
}

.footer {
    background: #070e1d;
    color: #9db5c4;
    padding: 60px 0 0;
    font-size: 14px;
}
.footer a {
    color: #9db5c4;
    transition: color .15s;
}
.footer a:hover {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
}
@media (max-width: 768px)  {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 520px)  {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}
.footer-brand img {
    height: 40px;
    opacity: .95;
    margin-bottom: 14px;
}
.footer-brand p {
    font-size: 13px;
    opacity: .6;
    line-height: 1.7;
    margin-bottom: 16px;
}
.footer-brand-year {
    display: inline-block;
    background: rgba(0,194,178,.15);
    border: 1px solid rgba(0,194,178,.3);
    color: var(--teal);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 13px;
    margin-bottom: 20px;
}
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    opacity: .7;
}
.footer-contact a:hover {
    opacity: 1;
}
.footer-contact i {
    color: var(--teal);
    width: 16px;
    font-size: 13px;
}
.footer-socials {
    display: flex;
    gap: 8px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,.13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,.5);
    transition: all .2s;
}
.footer-socials a:hover {
    border-color: var(--teal);
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-bottom: 14px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-top: 20px;
}
.footer-col h4:first-child {
    margin-top: 0;
}
.footer-col li {
    margin-bottom: 9px;
}
.footer-col a {
    font-size: 13px;
    opacity: .65;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .15s;
}
.footer-col a .ext {
    font-size: 9px;
    opacity: .45;
}
.footer-col a:hover {
    opacity: 1;
    color: var(--teal);
    padding-left: 3px;
}

.footer-domains-row {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-domains-section {
    margin-bottom: 18px;
}
.footer-domains-section:last-child {
    margin-bottom: 0;
}
.footer-domains-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 11px;
}
.footer-domains-label span {
    font-size: 11px;
    color: rgba(255,255,255,.3);
    text-transform: none;
    font-weight: 400;
}
.footer-tlds {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.footer-tld {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.65);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 13px;
    border-radius: 20px;
    transition: all .15s;
}
.footer-tld:hover {
    background: rgba(0,194,178,.15);
    border-color: var(--teal);
    color: var(--teal);
}
.footer-tld-ar {
    border-color: rgba(0,194,178,.3);
    color: var(--teal);
    background: rgba(0,194,178,.08);
}

.footer-provincias-row {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-provincias-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    margin-bottom: 12px;
}
.footer-provincias {
    display: flex;
    flex-wrap: wrap;
}
.footer-provincias a {
    color: rgba(255,255,255,.38);
    font-size: 12px;
    transition: color .15s;
    display: flex;
    align-items: center;
}
.footer-provincias a::after {
    content: '·';
    margin: 0 7px;
    opacity: .3;
}
.footer-provincias a:last-child::after {
    content: '';
}
.footer-provincias a:hover {
    color: var(--teal);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255,255,255,.35);
}
.footer-bottom-left a {
    color: rgba(255,255,255,.35);
    transition: color .15s;
}
.footer-bottom-left a:hover {
    color: rgba(255,255,255,.8);
}
.footer-bottom-note {
    font-size: 12px;
    color: rgba(255,255,255,.25);
}
.footer-payments {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 26px;
    opacity: .8;
}
.footer-payments i:hover {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.open {
    display: flex;
}
.modal-box {
    background: #111827;
    border-radius: var(--r-xl);
    border: 1px solid rgba(255,255,255,.08);
    padding: 30px;
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: rgba(255,255,255,.35);
    line-height: 1;
    cursor: pointer;
    transition: color .2s;
}
.modal-close:hover {
    color: #fff;
}
.modal-box h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.paises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}
.paises-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    transition: all .15s;
    background: rgba(255,255,255,.03);
}
.paises-grid a:hover {
    background: rgba(0,194,178,.15);
    color: #fff;
    transform: translateX(4px);
}
.paises-grid img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.paises-grid .popular {
    position: relative;
}
.paises-grid .popular::after {
    content: 'POPULAR';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    background: var(--teal);
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
}

.wa {
    display: none;
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
}
.wa a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    transition: all .3s;
    animation: pulse 2s infinite;
}
.wa a:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0,0,0,.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 1100px) {
    .nav > li > a {
        padding: 0 14px;
        font-size: 13.5px;
    }
    .header-promo-mini {
        display: none;
    }
}
@media (max-width: 991px) {
    .nav, .header-cta .btn-teal, .header-promo-mini {
        display: none;
    }
    .ham {
        display: flex;
    }
    .drop {
        min-width: 100%;
        left: 0;
        right: 0;
    }
    .drop-grid {
        grid-template-columns: 1fr;
    }
    .drop-promo-box {
        display: none;
    }
}
@media (max-width: 768px) {
    .sec {
        padding: 56px 0;
    }
    .hero {
        padding: 72px 0 60px;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero-stats {
        gap: 20px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .topbar-left {
        width: 100%;
        justify-content: space-between;
    }
    .topbar-promo {
        display: none;
    }
}

/* ============================================================
   MOBILE RESPONSIVE — 100% adaptado para celulares
============================================================ */

html, body {
    overflow-x: hidden;
    width: 100%;
}

.wrap-full {
    padding: 0 16px !important;
}

@media (max-width: 768px) {
    .topbar {
        padding: 8px 0;
    }
    .topbar-inner {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    .topbar-left {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }
    .topbar-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    .topbar-promo {
        font-size: 11px;
    }
    .topbar-right {
        width: 100%;
        justify-content: space-between;
    }
    .topbar-social {
        display: none;
    }
    .topbar .sep {
        display: none;
    }
}
@media (max-width: 480px) {
    .topbar {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-inner {
        padding: 0 !important;
        height: 60px;
    }
    .logo-wordmark {
        height: 30px;
    }
    .logo-flag {
        width: 20px;
        height: 20px;
    }
    .header-cta {
        gap: 8px;
    }
    .header-cta .btn-ghost {
        display: none;
    }
    .btn-teal.btn {
        font-size: 13px;
        padding: 9px 16px;
    }
}
@media (max-width: 380px) {
    .header-cta .btn-teal {
        display: none;
    }
}

.mnav {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 991px) {
    .mnav-grid {
        gap: 16px;
        padding-bottom: 8px;
    }
    .mnav a {
        padding: 10px 0;
        font-size: 13.5px;
    }
    .mnav-cta {
        padding-bottom: 20px;
    }
    .mnav-cta .btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 48px 0 52px;
    }
    .hero::after {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -80px;
    }
    .hero h1 {
        font-size: clamp(34px, 9vw, 52px);
        letter-spacing: -1px;
        margin-bottom: 16px;
    }
    .hero-sub {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 36px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 14px 20px;
    }
}
@media (max-width: 480px) {
    .hero {
        padding: 40px 0 44px;
    }
    .hero h1 {
        font-size: clamp(30px, 8.5vw, 42px);
    }
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .hero-stat {
        padding: 14px 12px;
        border-right: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.08);
        margin: 0;
        min-width: 0;
    }
    .hero-stat:nth-child(2n) {
        border-right: none;
    }
    .hero-stat:nth-child(3), .hero-stat:nth-child(4) {
        border-bottom: none;
    }
    .hero-stat-num {
        font-size: 24px;
    }
    .hero-stat-lbl {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .pbar {
        padding: 10px 0;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .pbar::-webkit-scrollbar {
        display: none;
    }
    .pbar ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        padding: 0 16px;
        width: max-content;
    }
    .pbar a img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .trust-bar {
        padding: 14px 0;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .trust-bar::-webkit-scrollbar {
        display: none;
    }
    .trust-items {
        gap: 0;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 0 16px;
        width: max-content;
    }
    .trust-item {
        font-size: 12.5px;
        padding: 0 14px;
        white-space: nowrap;
    }
    .trust-divider {
        display: flex;
        height: 16px;
    }
}

@media (max-width: 640px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .promo-card {
        padding: 20px 18px;
    }
    .promo-title {
        font-size: 14.5px;
    }
    .promo-sub {
        font-size: 12px;
    }
    .promo-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 520px) {
    .plan {
        padding: 22px 18px;
    }
    .plan-price {
        font-size: 34px;
    }
    .plan-features {
        gap: 6px;
        font-size: 12.5px;
    }
}

@media (max-width: 768px) {
    .section-h2 {
        font-size: clamp(22px, 6vw, 32px);
    }
    .section-lead {
        font-size: 15px;
        margin-bottom: 28px;
    }
    .sec {
        padding: 52px 0;
    }
    .sec-sm {
        padding: 36px 0;
    }
    body {
        font-size: 15px;
    }
    .section-label {
        font-size: 11px;
    }
    h2.section-h2 {
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product {
        padding: 16px 14px;
    }
    .product-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .product-name {
        font-size: 13px;
    }
    .product-price {
        font-size: 12px;
    }
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .tool {
        font-size: 13px;
        padding: 10px 12px;
    }
    .logos {
        gap: 24px;
    }
    .logos img {
        max-width: 80px;
        max-height: 32px;
    }
}
@media (max-width: 400px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ong-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .ong-card {
        padding: 28px 22px;
    }
    .ong-card h2 {
        font-size: 22px;
    }
    .ong-grid > div:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .metodos {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 8px;
    }
    .metodo {
        height: 58px;
    }
    .benefit {
        padding: 20px 18px;
    }
}
@media (max-width: 480px) {
    .promo-card {
        padding: 16px 14px;
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-brand p {
        display: none;
    }
    .footer-domains-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .footer-tlds {
        gap: 5px;
    }
    .footer-tld {
        font-size: 11px;
        padding: 3px 10px;
    }
    .footer-provincias a {
        font-size: 11px;
    }
    .footer-provincias a::after {
        margin: 0 5px;
    }
}
@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-col {
        border-bottom: 1px solid rgba(255,255,255,.06);
        padding-bottom: 4px;
    }
    .footer-col h4 {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        margin-top: 0 !important;
        border-bottom: none;
        font-size: 12px;
        color: rgba(255,255,255,.5);
    }
    .footer-col h4::after {
        content: '+';
        font-size: 18px;
        font-weight: 300;
        color: rgba(255,255,255,.3);
        line-height: 1;
    }
    .footer-col h4.open::after {
        content: '−';
    }
    .footer-col ul {
        display: none;
        padding-bottom: 10px;
    }
    .footer-col ul.open {
        display: block;
    }
    .footer-col li {
        margin-bottom: 6px;
    }
    .footer-brand {
        border-bottom: 1px solid rgba(255,255,255,.06);
        padding-bottom: 24px;
        margin-bottom: 4px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 16px 0 20px;
    }
    .footer-bottom-left {
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
    }
    .footer-payments {
        font-size: 22px;
        gap: 10px;
    }
    .footer-bottom-note {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .modal {
        padding: 0;
        align-items: flex-end;
    }
    .modal-box {
        border-radius: 20px 20px 0 0;
        max-height: 80vh;
        width: 100%;
        padding: 24px 20px;
    }
    .paises-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .paises-grid a {
        font-size: 13px;
        padding: 10px;
    }
    .paises-grid .popular::after {
        display: none;
    }
    .wa {
        left: 16px;
        bottom: 16px;
    }
    .wa a {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    .seo-body {
        font-size: 14px;
    }
    .seo-links a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .btn {
        min-height: 44px;
    }
    .mnav a {
        min-height: 44px;
    }
    .topbar a {
        min-height: 32px;
        display: inline-flex;
        align-items: center;
    }
    .paises-grid a {
        min-height: 44px;
    }
    .footer-col a {
        min-height: 36px;
    }
    .footer-socials a {
        width: 40px;
        height: 40px;
    }
}

.wrap, .wrap-full, section, header, footer, main {
    max-width: 100%;
}
.info-item {
    position: relative;
}

.info-dot {
    display: inline-block;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    background: #999;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
}

.info-tooltip {
    display: none;
    position: absolute;
    top: 22px;
    left: 0;
    background: #333;
    color: #fff;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 10;
}

.info-item:hover .info-tooltip {
    display: block;
}
.section-sub{
    text-align:center;
    font-size:14px;
    margin:10px 0 25px;
    opacity:.8;
}


.mnav-country{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 12px;
    margin-bottom:12px;
    border-radius:10px;
    background:rgba(255,255,255,0.05);
    font-size:14px;
    font-weight:600;
}

.mnav-country img{
    width:18px;
    height:auto;
    border-radius:3px;
}

.mnav-country i{
    font-size:10px;
    opacity:.7;
}
/* ══════════════════════════════════════════════
   HERO COMPACTO — páginas internas (web-hosting, etc.)
   Agrega clase .hero-sm al <section class="hero hero-sm">
   ══════════════════════════════════════════════ */

.hero-sm {
    padding: 48px 0 52px;
}

.hero-sm .hero-inner {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.hero-sm .hero-left {
    display: flex;
    flex-direction: column;
}

.hero-sm h1 {
    font-size: clamp(32px, 4.5vw, 54px);
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.hero-sm .hero-sub {
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 500px;
}

.hero-sm .hero-actions {
    margin-bottom: 0;
}

/* Panel derecho con checkmarks */
.hero-sm .hero-right {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 28px 28px;
    min-width: 260px;
    flex-shrink: 0;
}

.hero-sm .hero-right h3 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.hero-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
}

.hero-check i {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(0,194,178,.2);
    color: var(--teal);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Sin stats en hero-sm (o se pueden mostrar opcionales) */
.hero-sm .hero-stats {
    display: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-sm .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-sm .hero-right {
        min-width: 0;
        width: 100%;
    }
    .hero-checks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

@media (max-width: 520px) {
    .hero-sm {
        padding: 36px 0 40px;
    }
    .hero-sm h1 {
        font-size: clamp(28px, 8vw, 38px);
    }
    .hero-sm .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .hero-sm .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-checks {
        grid-template-columns: 1fr;
    }
}
.ssl-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.ssl-box {
  background: #0f1a1a;
  border-radius: 14px;
  padding: 25px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: fadeIn .2s ease;
}

.ssl-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ssl-text {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 20px;
}

.ssl-actions {
  display: flex;
  gap: 10px;
}

.btn-cancel,
.btn-ok {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-cancel {
  background: #2a2a2a;
  color: #fff;
}

.btn-ok {
  background: #00a86b;
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}