*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #E53535;
    --red-2: #ee4e4d;
    --red-3: #f66666;
    --red-light: #fff5f5;
    --red-mid: #fde8e8;
    --green: #05A660;
    --green-2: #07C271;
    --green-light: #e6f9f1;
    --text-main: #555770;
    --text-sub: #8f90a5;
    --text-light: #c7c9d8;
    --border: #e4e4ec;
    --bg: #f2f1f6;
    --bg-2: #fafafc;
    --white: #ffffff;
    --font: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 50px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 80px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 16px rgba(85, 87, 112, 0.06);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}


.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-sub);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.menu-toggle:hover {
    color: var(--red);
}

.menu-toggle svg {
    display: block;
    width: 24px;
    height: 24px;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.3s ease;
}

.mobile-drawer.open {
    visibility: visible;
    pointer-events: auto;
}

.drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 9, 14, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer.open .drawer-backdrop {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: var(--white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open .drawer-content {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--text-sub);
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}

.drawer-close:hover {
    color: var(--red);
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
}

.drawer-links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.drawer-links a:hover {
    color: var(--red);
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.drawer-actions .btn-ghost,
.drawer-actions .btn-wpp {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
}

.btn-ghost {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-sub);
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 8px 18px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: var(--red);
    color: var(--red);
}

.btn-wpp {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: var(--green);
    border: none;
    border-radius: 999px;
    padding: 9px 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s;
}

.btn-wpp:hover {
    background: var(--green-2);
}

.btn-wpp svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.hero {
    background: var(--white);
    padding: 60px 80px 60px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 72px;
    align-items: center;
}

.eyebrow-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}

.pulse {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8)
    }
}

.sep-v {
    width: 1px;
    height: 16px;
    background: var(--border);
}

.powered {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 5px;
}

.powered strong {
    color: var(--red);
    font-weight: 700;
}

.powered-img {
    height: 15px;
    width: auto;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.08;
    color: var(--text-main);
    margin-bottom: 20px;
}

.hero h1 .accent {
    color: var(--red);
}

.hero-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}

.btn-primary {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--green);
    border: none;
    border-radius: 999px;
    padding: 14px 26px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--green-2);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-sec {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-sub);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 13px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-sec:hover {
    border-color: var(--text-sub);
    color: var(--text-main);
}

.proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avs {
    display: flex;
}

.av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2.5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--white);
    margin-left: -8px;
}

.av:first-child {
    margin-left: 0;
}

.proof-txt {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-sub);
    line-height: 1.5;
}

.proof-txt strong {
    color: var(--text-main);
    font-weight: 600;
}

.wa-card {
    background: var(--bg-2);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(85, 87, 112, 0.10);
}


.wa-top {
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
}

.wa-ico {
    width: 60px;
    height: auto;
    border-radius: 12px;
}

.wa-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.wa-sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-sub);
    margin-top: 1px;
}

.wa-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--green-light);
    color: #047857;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 99px;
    margin-top: 4px;
}

.wa-pill svg {
    width: 8px;
    height: 8px;
    fill: currentColor;
}

.chat {
    background: #ece5dd;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mrow {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.mrow.r {
    flex-direction: row-reverse;
}

.mav {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.bbl {
    max-width: 76%;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    padding: 8px 12px;
    border-radius: 4px 12px 12px 12px;
    background: var(--white);
    color: var(--text-main);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.bbl.r {
    border-radius: 12px 4px 12px 12px;
    background: #dcf8c6;
}

.bbl .t {
    font-size: 9px;
    font-weight: 300;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
    text-align: right;
}

.wa-stats {
    background: var(--white);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
}

.wstat {
    padding: 14px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.wstat:last-child {
    border-right: none;
}

.wstat-n {
    font-size: 18px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.wstat-l {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-sub);
    margin-top: 3px;
}

.sec {
    padding: 88px 80px;
}

.sec.light {
    background: var(--bg);
}

.sec.white {
    background: var(--white);
}

.sec-hdr {
    text-align: center;
    margin-bottom: 52px;
}

.sec-eye {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sec-hdr h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.sec-hdr p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

.vgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vcard {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.vcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(85, 87, 112, 0.10);
}

.vico {
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.vcard h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.vcard p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.7;
}

.red-banner {
    padding: 64px 80px;
    text-align: center;
    background-image: url('https://tug-cms.s3.us-east-1.amazonaws.com/images/Banner_Rojo.original.png');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.red-banner::before {
    content: '';
    background-image: url('https://tug-cms.s3.us-east-1.amazonaws.com/images/Banner_Rojo.original.png');
    background-size:contain;
    position: absolute;
    overflow: hidden;
}

.rbn {
    position: relative;
    z-index: 1;
}

.red-banner h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.red-banner p {
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 28px;
}

.btn-wpp-lg {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    background: var(--green);
    border: none;
    border-radius: 999px;
    padding: 15px 32px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.btn-wpp-lg:hover {
    background: var(--green-2);
}

.btn-wpp-lg svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.rgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.rcard {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(85, 87, 112, 0.08);
}

.rtag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.rdot {
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
}

.rcard h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.rcard p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.rfoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rbadges {
    display: flex;
    gap: 6px;
}

.rbadge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-sub);
    background: var(--bg);
    border-radius: 99px;
    padding: 3px 9px;
}

.btn-dl {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: var(--red);
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
}

.btn-dl:hover {
    background: var(--red-2);
}

.btn-dl svg {
    width: 11px;
    height: 11px;
}

.rcard-lock {
    border: 2px dashed var(--border);
    background: var(--bg-2);
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 200px;
}

.lock-ico {
    font-size: 32px;
    margin-bottom: 12px;
}

.rcard-lock h3 {
    color: var(--text-sub);
}

.rcard-lock .btn-primary {
    margin-top: 14px;
    font-size: 12px;
    padding: 10px 18px;
}

.rfootnote {
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-sub);
}

.rfootnote strong {
    color: var(--red);
    font-weight: 600;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(16.66% + 10px);
    right: calc(16.66% + 10px);
    height: 2px;
    background: var(--white);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.step-n {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid var(--white);
    box-shadow: var(--white);
}

.step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.7;
}

.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.tcard {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--red);
}

.tcard-q {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-sub);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.tcard-q::before {
    content: '"';
    font-size: 52px;
    color: var(--white);
    line-height: 0;
    vertical-align: -18px;
    margin-right: 4px;
    font-family: Georgia, serif;
    font-style: normal;
}

.tauthor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.tname {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.trole {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-sub);
    margin-top: 1px;
}


.cta-final {
    background: var(--red);
    padding: 44px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(238, 78, 77, 0.3) 0%, transparent 50%);
}

.cta-in {
    position: relative;
    z-index: 1;
}


.cta-final h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
}


.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.btn-wpp-fin {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    background: var(--green);
    border: none;
    border-radius: 999px;
    padding: 15px 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.btn-wpp-fin:hover {
    background: var(--green-2);
}

.btn-wpp-fin svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-out-fin {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 14px 26px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-out-fin:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

footer {
    background: var(--red);
    padding: 32px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
}

img,
svg {
    max-width: 100%;
}


section,
nav,
footer,
.red-banner,
.cta-final {
    width: 100%;
}

.btn-primary,
.btn-sec,
.btn-wpp,
.btn-wpp-lg,
.btn-wpp-fin,
.btn-out-fin,
.btn-dl,
.btn-ghost {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1180px) {
    nav {
        padding: 0 40px;
    }

    .hero {
        padding: 76px 40px 68px;
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(44px, 4.8vw, 54px);
    }

    .sec {
        padding: 76px 40px;
    }

    .red-banner,
    .cta-final,
    footer {
        padding-left: 40px;
        padding-right: 40px;
    }

    .nav-links {
        gap: 18px;
    }
}

@media (max-width: 980px) {
    nav {
        height: 70px;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-left {
        width: auto;
        justify-content: flex-start;
        gap: 0;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 64px 28px;
        gap: 44px;
    }

    .eyebrow-row,
    .hero-btns,
    .proof {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .wa-card {
        width: min(100%, 540px);
        margin: 0 auto;
    }

    .vgrid,
    .rgrid,
    .tgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tgrid .tcard:last-child {
        grid-column: 1 / -1;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
    }

    .steps::before {
        display: none;
    }

    .step {
        max-width: 520px;
        margin: 0 auto;
        padding: 0;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 22px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 22px;
    }
}

@media (max-width: 720px) {
    nav {
        padding: 0 16px;
        height: 64px;
    }

    .logo-img {
        height: 24px;
    }

    .hero {
        padding: 48px 18px 56px;
        gap: 34px;
    }

    .eyebrow-row {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px;
    }

    .sep-v {
        display: none;
    }

    .powered {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .hero h1 br {
        display: none;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 26px;
    }

    .hero-btns,
    .cta-btns {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-sec,
    .btn-wpp-lg,
    .btn-wpp-fin,
    .btn-out-fin {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .proof {
        flex-direction: column;
        text-align: center;
    }

    .wa-card {
        border-radius: 20px;
    }

    .wa-top {
        padding: 14px;
    }

    .chat {
        padding: 14px;
    }

    .mav {
        display: none;
    }

    .bbl {
        max-width: 88%;
        font-size: 11.5px;
    }

    .wa-stats {
        grid-template-columns: 1fr;
    }

    .wstat {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .wstat:last-child {
        border-bottom: 0;
    }

    .sec {
        padding: 58px 18px;
    }

    .sec-hdr {
        margin-bottom: 34px;
    }

    .sec-hdr h2 {
        font-size: clamp(28px, 8vw, 34px);
    }

    .sec-hdr h2 br {
        display: none;
    }

    .sec-hdr p {
        font-size: 14px;
        line-height: 1.7;
    }

    .vgrid,
    .rgrid,
    .tgrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vcard,
    .rcard,
    .tcard {
        border-radius: 18px;
        padding: 24px 20px;
    }

    .rfoot {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .btn-dl {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    .rcard-lock .btn-primary {
        width: 100%;
    }

    .red-banner {
        padding: 48px 18px;
        background-position: center;
    }

    .red-banner h2 {
        font-size: clamp(28px, 8vw, 34px);
    }

    .red-banner p {
        font-size: 14px;
        line-height: 1.7;
    }

    .step {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 24px 20px;
    }

    .cta-final {
        padding: 42px 18px;
    }

    .cta-final h2 {
        font-size: clamp(32px, 9vw, 40px);
    }

    footer {
        padding: 30px 18px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 420px) {
    .badge-pill {
        font-size: 10px;
        padding: 5px 10px;
    }

    .powered {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .btn-primary,
    .btn-sec,
    .btn-wpp-lg,
    .btn-wpp-fin,
    .btn-out-fin {
        font-size: 13px;
        padding: 13px 18px;
    }

    .wa-name {
        font-size: 13px;
    }

    .wa-sub {
        font-size: 10px;
    }

    .bbl {
        max-width: 92%;
    }

    .sec-eye {
        font-size: 10px;
    }

    .rcard h3,
    .vcard h3,
    .step h3,
    .tname {
        font-size: 14px;
    }
}