/* ===== VARIABLES ===== */
:root {
    --navy: #1A3062;
    --navy-dark: #0F1E3D;
    --navy-light: #243d7a;
    --green: #79C720;
    --green-dark: #62A118;
    --green-light: #EFF9E3;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --gray-700: #334155;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn--green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(121,199,32,.35); }

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn--ghost {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); }

.btn--lg { padding: 14px 30px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background .25s, box-shadow .25s, padding .25s;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.navbar__icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

/* Icono en fondo oscuro (hero sin scroll y footer) */
.navbar:not(.scrolled) .navbar__icon,
.footer__icon {
    filter: brightness(0) invert(1);
}

.footer__icon { width: 44px; height: 44px; object-fit: contain; }

.navbar__name {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    transition: color .25s;
    letter-spacing: -.3px;
}
.navbar__name strong { font-weight: 800; color: var(--green); }
.navbar.scrolled .navbar__name { color: var(--navy); }

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.navbar__link {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: .95rem;
    transition: color .2s;
}
.navbar__link:hover { color: var(--white); }
.navbar.scrolled .navbar__link { color: var(--gray-700); }
.navbar.scrolled .navbar__link:hover { color: var(--navy); }
.navbar.scrolled .btn--outline { color: var(--navy); border-color: var(--navy); }
.navbar.scrolled .btn--outline:hover { background: var(--navy); color: var(--white); }

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}
.navbar.scrolled .navbar__toggle span { background: var(--navy); }

.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    padding: 140px 0 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(121,199,32,.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(121,199,32,.15);
    border: 1px solid rgba(121,199,32,.3);
    color: var(--green);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge__dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.85); }
}

.hero__title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.text-green { color: var(--green); }

.hero__subtitle {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero__subtitle strong { color: var(--white); }

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 16px 24px;
    width: fit-content;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child { padding-right: 0; }
.hero__stat strong { color: var(--white); font-size: 1.3rem; font-weight: 800; }
.hero__stat span { color: rgba(255,255,255,.6); font-size: .78rem; margin-top: 2px; }

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

/* Phone mockup */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-mockup__frame {
    width: 240px;
    background: var(--white);
    border-radius: 36px;
    padding: 12px 8px 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 0 8px rgba(255,255,255,.08);
    position: relative;
}

.phone-mockup__notch {
    width: 70px;
    height: 10px;
    background: var(--navy-dark);
    border-radius: 5px;
    margin: 0 auto 10px;
}

.phone-mockup__screen {
    border-radius: 24px;
    overflow: hidden;
    background: var(--gray-50);
}

.store-preview { background: var(--white); }

.store-preview__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px 8px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.store-preview__logo-block {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .65rem;
    font-weight: 700;
    color: var(--navy);
}

.store-preview__logo-icon {
    width: 20px; height: 20px;
    background: var(--navy);
    border-radius: 4px;
}

.store-preview__cart svg { display: block; }

.store-preview__banner {
    background: var(--green);
    color: var(--white);
    text-align: center;
    font-size: .6rem;
    font-weight: 600;
    padding: 5px;
}

.store-preview__products {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--gray-100);
    padding: 8px;
    gap: 8px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

.product-card__img {
    width: 40px; height: 40px;
    border-radius: 6px;
    flex-shrink: 0;
}
.product-card__img--1 { background: linear-gradient(135deg, #FFB3C6, #FF6B8A); }
.product-card__img--2 { background: linear-gradient(135deg, #93C5FD, #3B82F6); }

.product-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.product-card__name { font-size: .6rem; font-weight: 600; color: var(--navy); }
.product-card__price { font-size: .65rem; font-weight: 700; color: var(--green-dark); }

.product-card__add {
    width: 22px; height: 22px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.store-preview__qr {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-top: 1px solid var(--gray-100);
    font-size: .6rem;
    font-weight: 600;
    color: var(--navy);
}

.phone-mockup__glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 60px;
    background: rgba(121,199,32,.25);
    filter: blur(30px);
    border-radius: 50%;
    z-index: -1;
}

/* Floating cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    animation: float 4s ease-in-out infinite;
    z-index: 5;
}

.floating-card--top { top: 20px; right: -10px; animation-delay: 0s; }
.floating-card--bottom { bottom: 40px; left: -20px; animation-delay: 2s; }

.floating-card--bottom { flex-direction: row; }
.floating-card--bottom .floating-card__icon {
    width: 32px; height: 32px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: .9rem;
}
.floating-card--bottom div { display: flex; flex-direction: column; gap: 1px; }
.floating-card--bottom strong { font-size: .85rem; color: var(--navy); }
.floating-card--bottom span { font-size: .68rem; color: var(--gray-500); font-weight: 400; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero__wave {
    line-height: 0;
    margin-top: -1px;
}
.hero__wave svg { width: 100%; display: block; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section--light { background: var(--gray-50); }

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section__label {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: .8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.section__header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.25;
}

.section__header p {
    color: var(--gray-500);
    font-size: 1rem;
}

/* ===== PROBLEMS ===== */
.problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: transform .2s, box-shadow .2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.problem-card__icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.problem-card__icon--pdf { background: #FEF3C7; color: #D97706; }
.problem-card__icon--insta { background: #FCE7F3; color: #DB2777; }
.problem-card__icon--wa { background: #DCFCE7; color: #16A34A; }

.problem-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.problem-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.6; }

/* ===== BENEFITS ===== */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-item { padding: 4px; }

.benefit-item__icon {
    width: 48px; height: 48px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}

.benefit-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.benefit-item p { color: var(--gray-500); font-size: .9rem; line-height: 1.65; }

/* ===== PLANS ===== */
.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 48px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--gray-100);
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan-card--featured {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green), var(--shadow-lg);
    transform: scale(1.03);
}
.plan-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.plan-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-card__header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}
.plan-card__header p {
    color: var(--gray-500);
    font-size: .85rem;
    margin-bottom: 20px;
}

.plan-card__price { margin-bottom: 24px; }

.plan-card__main {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    justify-content: center;
}
.plan-card__main > strong {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.plan-card__main-label {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.plan-card__main-label > span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
}
.plan-card__main-label > small {
    font-size: .72rem;
    color: var(--gray-500);
    font-weight: 400;
    white-space: nowrap;
}

.plan-card__once {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    gap: 2px;
    text-align: center;
}
.plan-card__once > span {
    font-size: .72rem;
    color: var(--gray-500);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.plan-card__once > strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    white-space: nowrap;
}

.plan-card__monthly {
    font-size: .78rem;
    color: var(--gray-500);
}

.plan-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.plan-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: var(--gray-700);
}

.plan-card__features li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.feat--yes::before {
    background-color: var(--green-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2362A118' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.feat--no { color: #DC2626; }
.feat--no::before {
    background-color: #FEE2E2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC2626' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* Tooltip */
.tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px; height: 14px;
    background: var(--gray-300);
    color: var(--gray-700);
    border-radius: 50%;
    font-size: .6rem;
    font-weight: 700;
    cursor: help;
    position: relative;
    vertical-align: middle;
    margin-left: 3px;
    flex-shrink: 0;
}
.tooltip::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-dark);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    z-index: 20;
    width: 200px;
    text-align: center;
    white-space: normal;
}
.tooltip:hover::after { opacity: 1; }

/* SRI badge in features */
.feat--sri { align-items: center; flex-wrap: wrap; gap: 6px; }
.sri-badge {
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Addons */
.plans__addons {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
}

.addons__header {
    margin-bottom: 24px;
}
.addons__header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.addons__header p { color: var(--gray-500); font-size: .875rem; }

.addons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.addon-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: box-shadow .2s, transform .2s;
}
.addon-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Fila superior: icono + precio — igual en los 3 cards */
.addon-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.addon-card__icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.addon-card__icon--sri {
    width: auto;
    height: 32px;
    background: #0D2B5E;
    border-radius: 6px;
    padding: 0 8px;
}
.addon-card__icon--migrate { background: #EFF9E3; color: var(--green-dark); }
.addon-card__icon--dev { background: #EEF2FF; color: #4F46E5; }

.addon-sri-logo { height: 20px; width: auto; display: block; }

.addon-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}
.addon-card__price strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.addon-card__price span {
    font-size: .7rem;
    color: var(--gray-500);
    margin-top: 1px;
}

.addon-card__body h5 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.addon-card__body p { font-size: .8rem; color: var(--gray-500); line-height: 1.5; }

/* ===== STEPS ===== */
.steps__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 0 16px;
}

.step__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.step__content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.step__content p { color: var(--gray-500); font-size: .88rem; line-height: 1.6; }

.step__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--navy));
    margin-top: 22px;
    flex-shrink: 0;
    border-radius: 2px;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(121,199,32,.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-band__content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-band__content p { color: rgba(255,255,255,.7); font-size: 1rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding: 56px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__tagline {
    color: rgba(255,255,255,.5);
    font-size: .85rem;
    margin-top: 8px;
}

.footer__links { display: flex; gap: 60px; }

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__col h4 {
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.footer__col a {
    color: rgba(255,255,255,.55);
    font-size: .875rem;
    transition: color .2s;
}
.footer__col a:hover { color: var(--green); }

.footer__bottom {
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,.35);
    font-size: .8rem;
}

/* Botón outline visible en navbar oscuro (hero) */
.navbar:not(.scrolled) .navbar__menu .btn--outline {
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.45);
}
.navbar:not(.scrolled) .navbar__menu .btn--outline:hover {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border-color: rgba(255,255,255,.8);
    transform: translateY(-1px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .plans__grid { grid-template-columns: 1fr 1fr; }
    .addons__grid { grid-template-columns: 1fr; }
    .plan-card--featured { transform: none; grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }
    .plan-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }

    .navbar__menu {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--navy-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 99;
    }
    .navbar__menu.open { display: flex; }
    .navbar__menu .navbar__link { color: white; font-size: 1.2rem; }
    .navbar__menu .btn { width: 220px; justify-content: center; }
    .navbar__menu.open .btn--outline {
        color: rgba(255,255,255,.85);
        border-color: rgba(255,255,255,.45);
    }
    .navbar__menu.open .btn--outline:hover {
        background: rgba(255,255,255,.12);
        color: var(--white);
    }
    .navbar__toggle { display: flex; z-index: 100; }

    .hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 56px; }
    .hero__badge { margin: 0 auto 20px; }
    .hero__actions { justify-content: center; }
    .hero__stats { margin: 0 auto; }
    .hero__visual {
        order: -1;
        padding: 52px 16px 64px;
    }
    .phone-mockup__frame { width: 200px; }
    .floating-card { font-size: .72rem; padding: 8px 10px; gap: 6px; }
    .floating-card--top { top: 8px; right: 4px; }
    .floating-card--bottom { bottom: 16px; left: 4px; }

    .problems__grid { grid-template-columns: 1fr; }
    .benefits__grid { grid-template-columns: 1fr 1fr; }
    .plans__grid { grid-template-columns: 1fr; }
    .plan-card--featured { grid-column: auto; transform: none; max-width: 100%; }

    .steps__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .step__connector { display: none; }

    .addons__grid { grid-template-columns: 1fr; }
    .cta-band__inner { flex-direction: column; text-align: center; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 480px) {
    .hero__stats { flex-direction: column; width: 100%; gap: 12px; }
    .hero__stat-divider { width: 100%; height: 1px; }
    .hero__stat { padding: 0; align-items: center; }
    .benefits__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; }
    .btn--lg { width: 100%; justify-content: center; }
}
