/* ================================================================
   Aski — Estilos de la landing pública.
   Paleta de marca: navy (#152642) + gold (#E5C56A).
   Compatible con dark mode nativo + responsive mobile-first.
   ================================================================ */

:root {
    --navy: #152642;
    --navy-dark: #0A1224;
    --navy-deep: #050A14;
    --gold: #E5C56A;
    --gold-light: #F5DBA0;
    --white: #FFFFFF;
    --off-white: #F8F9FB;
    --gray-100: #E5E7EB;
    --gray-300: #9CA3AF;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(21, 38, 66, 0.08);
    --shadow-md: 0 8px 24px rgba(21, 38, 66, 0.12);
    --shadow-lg: 0 16px 48px rgba(21, 38, 66, 0.18);
    --container: 1100px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--navy);
    background: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navbar ────────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(21, 38, 66, 0.08);
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 20px;
}

.brand-dot {
    width: 32px;
    height: 32px;
    background: var(--navy);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 900;
    font-size: 18px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: block;
    box-shadow: 0 2px 8px rgba(21, 38, 66, 0.15);
}

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

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--navy-dark);
}

/* Language toggle (ES | EN). Bordeado, mas chico que el CTA. */
.nav-lang {
    border: 1px solid var(--gray-300, #d1d5db);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    color: var(--gray-700) !important;
    line-height: 1;
}
.nav-lang:hover {
    border-color: var(--navy);
    color: var(--navy) !important;
}

@media (max-width: 700px) {
    /* En mobile solo se ven CTA y toggle de idioma (no los links de sección). */
    .nav-links a:not(.nav-cta):not(.nav-lang) { display: none; }
    .nav-lang { padding: 5px 8px; font-size: 12px !important; }
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

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

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero .lead {
    font-size: clamp(17px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    /* Outline gold sobre navy — destaca contra el fondo sin competir con
     * el badge primario de Google Play. Antes usaba rgba blanco 0.1 sobre
     * navy y se veia apagado. */
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

.play-store-badge {
    height: 56px;
    transition: transform 0.2s;
}

.play-store-badge:hover {
    transform: translateY(-1px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(229, 197, 106, 0.18) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Iconikia ya incluye phone frame + marketing copy DENTRO de la imagen,
 * así que aquí solo damos contenedor con sombras y rotación sutil. */
.phone-mockup {
    width: 320px;
    aspect-ratio: 9/16;
    border-radius: 26px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 8px 16px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.03);
}

.phone-notch { display: none; }

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Legacy — usado en otras páginas si llega el caso */
.phone-frame {
    width: 280px;
    aspect-ratio: 9/19.5;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
    border-radius: 36px;
    border: 6px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    position: relative;
}

.chat-bubble {
    max-width: 75%;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.4;
}

.chat-bubble.user {
    background: var(--gold);
    color: var(--navy);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.assistant {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 850px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero .lead { margin-left: auto; margin-right: auto; }
    .hero-cta-row { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 16px; }
    .phone-frame { width: 240px; }
}

/* ─── Features ──────────────────────────────────────────────── */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 56px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature p {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.55;
}

/* ─── Video embed (YouTube) ─────────────────────────────────── */
.video-section {
    background: linear-gradient(180deg, #fff 0%, var(--off-white) 100%);
}

.video-wrapper {
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(21, 38, 66, 0.25),
        0 8px 16px rgba(21, 38, 66, 0.10);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Short vertical 9:16 — ancho mas chico, centrado */
.video-short-wrapper {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.2);
    background: #000;
}

.video-short-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ─── Screenshots horizontal scroll ─────────────────────────── */
.screenshots {
    background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
}

.screenshots-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 -8px;
}

.screenshots-scroll {
    flex: 1;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 16px 16px 32px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.screenshots-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    z-index: 5;
}

.screenshots-arrow:hover {
    background: var(--navy-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.screenshots-arrow:active {
    transform: scale(0.95);
}

.screenshots-arrow:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.screenshots-arrow svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 600px) {
    .screenshots-arrow { width: 40px; height: 40px; }
    .screenshots-arrow svg { width: 18px; height: 18px; }
}

.screenshots-scroll::-webkit-scrollbar {
    height: 8px;
}

.screenshots-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.screenshots-scroll::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

.screenshot-card {
    flex: 0 0 auto;
    width: 260px;
    aspect-ratio: 9/16;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 18px 44px rgba(21, 38, 66, 0.22),
        0 6px 12px rgba(21, 38, 66, 0.10);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 28px 56px rgba(21, 38, 66, 0.28);
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshots-hint {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    margin-top: 8px;
}

@media (min-width: 1000px) {
    .screenshots-hint { display: none; }
}

@media (max-width: 700px) {
    .screenshot-card { width: 200px; }
}

/* ─── Security ──────────────────────────────────────────────── */
.security {
    background: var(--navy);
    color: var(--white);
}

.security .section-title,
.security .section-subtitle {
    color: var(--white);
}

.security .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 900px) {
    .security-grid { grid-template-columns: 1fr 1fr; max-width: 600px; }
}

@media (max-width: 500px) {
    .security-grid { grid-template-columns: 1fr; }
}

/* Bloque "Intentamos hackear..." con video. Estilo de mini-seccion: divider
 * dorado arriba, eyebrow chico en uppercase, titulo grande, subtitulo y
 * video. Da jerarquia y se siente como un cierre fuerte de la seccion. */
.security-proof {
    margin-top: 96px;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.security-proof-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0 auto 28px;
}

.security-proof-eyebrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.security-proof-title {
    color: var(--white);
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.security-proof-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
}

.security-proof .video-short-wrapper {
    margin: 0 auto;
}

.security-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
}

.security-item .icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.security-item h4 {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.security-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing {
    background: var(--off-white);
}

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plan.featured {
    border: 2px solid var(--navy);
    transform: scale(1.03);
    position: relative;
}

/* Mobile: plans stackeados y mas compactos. Quitar el scale(1.03) del
 * featured para evitar overflow horizontal en pantallas chicas. */
@media (max-width: 700px) {
    .plans { gap: 18px; }
    .plan { padding: 26px 22px; }
    .plan.featured { transform: none; }
    .plan-trial-banner { margin: -26px -22px 18px; }
    .plan-name { font-size: 17px; }
    .plan-price { font-size: 40px; }
}

.plan.featured::before {
    content: 'Más elegido';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.plan-price .currency {
    font-size: 22px;
    vertical-align: top;
    margin-right: 2px;
}

.plan-period {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plan-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-100);
    padding: 20px 0;
}

.faq-item summary {
    font-weight: 600;
    font-size: 17px;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: var(--gold);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    color: var(--gray-700);
    font-size: 15px;
    margin-top: 12px;
    line-height: 1.6;
}

/* ─── CTA final ─────────────────────────────────────────────── */
.cta-final {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 24px;
}

.cta-final h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    font-size: 17px;
}

/* ─── Countdown lanzamiento ─────────────────────────────────── */
.launch-countdown {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid rgba(229, 197, 106, 0.18);
}
.launch-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.launch-text { flex: 1 1 280px; min-width: 0; }
.launch-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.launch-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.2;
}
.launch-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}
.launch-clock {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.launch-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(229, 197, 106, 0.2);
    border-radius: 10px;
}
.launch-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.launch-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
}
.launch-sep {
    display: flex;
    align-items: center;
    color: rgba(229, 197, 106, 0.45);
    font-size: 22px;
    font-weight: 700;
}
.launch-cta-link {
    display: none;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.launch-cta-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

/* Estado post-lanzamiento: ribbon delgado, sin botones gigantes. */
.launch-live {
    padding: 14px 0;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
.launch-live .launch-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 16px;
}
.launch-live .launch-text {
    flex: 0 1 auto;
    min-width: 0;
}
.launch-live .launch-eyebrow {
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 3px 10px;
    background: rgba(229, 197, 106, 0.10);
    color: var(--gold);
    border: 1px solid rgba(229, 197, 106, 0.28);
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.10em;
    line-height: 1.4;
    vertical-align: middle;
}
.launch-live .launch-title {
    display: inline;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    margin: 0;
    vertical-align: middle;
}
.launch-live .launch-sub { display: none; }
.launch-live .launch-clock { display: none; }
.launch-live .launch-cta-link { display: inline-flex; }

@media (max-width: 700px) {
    .launch-countdown { padding: 22px 0; }
    .launch-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
    }
    .launch-text { flex: 0 0 auto; }
    .launch-title { font-size: 19px; }
    .launch-sub { font-size: 13px; }
    .launch-clock { gap: 6px; }
    .launch-unit { min-width: 56px; padding: 8px 10px; }
    .launch-num { font-size: 22px; }
    .launch-lbl { font-size: 10px; margin-top: 4px; }
    .launch-sep { font-size: 18px; }

    /* Post-lanzamiento en mobile: pill arriba, titulo centrado, CTA debajo */
    .launch-live { padding: 10px 0 10px; }
    .launch-live .launch-inner {
        flex-direction: column;
        gap: 4px;
    }
    .launch-live .launch-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }
    .launch-live .launch-eyebrow {
        margin: 0;
        padding: 2px 10px;
        font-size: 10px;
    }
    .launch-live .launch-title {
        display: block;
        font-size: 15px;
        line-height: 1.3;
        max-width: 280px;
        margin: 0 auto;
        color: var(--white);
        font-weight: 500;
    }
    .launch-live .launch-cta-link {
        font-size: 14px;
        padding: 0;
    }
}
@media (max-width: 380px) {
    .launch-unit { min-width: 48px; padding: 7px 8px; }
    .launch-num { font-size: 19px; }
    .launch-sep { font-size: 16px; }
    .launch-clock { gap: 4px; }
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 28px;
    font-size: 14px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer h5 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.footer ul {
    list-style: none;
}

.footer li { padding: 4px 0; }

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

@media (max-width: 700px) {
    .footer {
        padding: 40px 0 24px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
        margin-bottom: 28px;
        text-align: left;
    }
    .footer-inner > div:first-child {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-inner > div:first-child .brand {
        justify-content: center;
    }
    .footer-inner > div:first-child p {
        max-width: 280px;
        margin: 0 auto;
    }
    .footer h5 {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .footer li { padding: 3px 0; font-size: 13px; }
    .footer-bottom {
        font-size: 12px;
        padding-top: 20px;
        line-height: 1.5;
    }
}

/* ─── Páginas legales (privacy / terms) ──────────────────────── */
.legal {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    color: var(--gray-700);
    line-height: 1.65;
}

.legal h1 {
    color: var(--navy);
    font-size: 36px;
    margin-bottom: 8px;
}

.legal .meta {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.legal h2 {
    color: var(--navy);
    font-size: 22px;
    margin-top: 36px;
    margin-bottom: 14px;
}

.legal h3 {
    color: var(--navy);
    font-size: 17px;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal p { margin-bottom: 14px; }

.legal ul {
    margin: 14px 0 14px 24px;
}

.legal li { margin-bottom: 6px; }

.legal a {
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
    text-decoration: none;
}

.legal a:hover { color: var(--gold); }

.legal code {
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--navy);
}


/* ============================================================
 * v2 enhancements: trial badges, trust strip, YouTube facade,
 * VS comparison, mobile sticky CTA, plan trial banners.
 * ============================================================ */

/* Trial: linea bajo CTAs hero — "7 dias gratis · Cancela cuando quieras".
 * El hero usa background navy oscuro, asi que el texto va en blanco
 * semi-transparente. Originalmente use gray-500 + navy, ambos invisibles
 * sobre el gradiente navy del hero. */
.hero-trial-line {
    margin-top: 14px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.hero-trial-line strong { color: var(--gold); font-weight: 700; }
.hero-trial-line .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* Pill genérica: badge dorado para indicar trial / oferta.
 * Gold solido (no gradiente) para unificar con el accent del H1 "natural"
 * que tambien es --gold puro. El gradiente con --gold-light apagaba el
 * brillo del badge al lado del titular. */
.trial-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(229, 197, 106, 0.35);
}

/* Trust strip — banner horizontal con metricas / sellos justo
 * despues del hero. Pesa fuerte para B2B antes de las features. */
.trust-strip {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 24px 0;
    border-top: 1px solid rgba(229, 197, 106, 0.15);
    border-bottom: 1px solid rgba(229, 197, 106, 0.15);
}
.trust-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.3;
}
.trust-pill .icon { font-size: 22px; }
.trust-pill .label { color: rgba(255, 255, 255, 0.7); font-size: 12px; }

/* Mobile: 2x2 grid en vez de fila horizontal cramped. */
@media (max-width: 700px) {
    .trust-strip { padding: 20px 0; }
    .trust-strip .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 12px;
        justify-content: stretch;
    }
    .trust-pill { font-size: 13px; }
    .trust-pill .icon { font-size: 20px; }
    .trust-pill .label { font-size: 11px; }
}
@media (max-width: 380px) {
    /* Pantallas muy chicas: 1 columna */
    .trust-strip .container { grid-template-columns: 1fr; gap: 10px; }
}
.trust-pill .val { color: var(--gold); font-weight: 700; }

/* YouTube facade — thumbnail clickable con play overlay. Evita
 * cargar ~150KB de iframe en LCP. JS lo reemplaza por iframe al
 * primer click. */
.yt-facade {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--navy-deep);
}
.yt-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.yt-facade:hover img { opacity: 1; }
.yt-facade::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(229, 39, 39, 0.92);
    border-radius: 12px;
    pointer-events: none;
}
.yt-facade::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    z-index: 1;
    pointer-events: none;
}

/* Aski vs ChatGPT — tabla comparativa */
.vs-section { background: var(--off-white); }
.vs-table {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.vs-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
}
.vs-row:last-child { border-bottom: none; }
.vs-row.head {
    background: var(--navy);
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vs-row.head > div { padding: 4px 0; }
.vs-row.head .aski-col {
    background: var(--gold);
    color: var(--navy);
    border-radius: 8px;
    margin: -4px 8px;
    padding: 8px 4px;
}
.vs-row .crit { color: var(--navy); font-weight: 500; }
.vs-row .yes { color: #16a34a; text-align: center; font-weight: 700; font-size: 20px; }
.vs-row .no  { color: var(--gray-300); text-align: center; font-weight: 700; font-size: 20px; }
.vs-row .partial { color: #d97706; text-align: center; font-weight: 600; font-size: 13px; }
@media (max-width: 600px) {
    .vs-row { grid-template-columns: 1.6fr 0.7fr 0.7fr; padding: 14px 16px; font-size: 13px; }
    .vs-row .yes, .vs-row .no { font-size: 18px; }
}

/* Plan card — badge trial sobre Basic + Pro */
.plan-trial-banner {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px 8px 0 0;
    margin: -28px -28px 20px;  /* cancela el padding del .plan */
}
.plan-trial-line {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: -4px;
    margin-bottom: 16px;
    text-align: center;
}

/* Sticky mobile CTA — barra fija abajo que aparece SOLO en mobile
 * tras scrollear el hero. Compensa el navbar superior. */
.sticky-mobile-cta {
    display: none;
}
@media (max-width: 700px) {
    .sticky-mobile-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--navy);
        border-top: 1px solid rgba(229, 197, 106, 0.25);
        padding: 10px 16px env(safe-area-inset-bottom, 12px);
        z-index: 100;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(110%);
        transition: transform 0.25s ease-out;
    }
    .sticky-mobile-cta.visible { transform: translateY(0); }
    .sticky-mobile-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        background: var(--gold);
        color: var(--navy);
        font-weight: 700;
        font-size: 15px;
        padding: 12px 18px;
        border-radius: 999px;
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(229, 197, 106, 0.4);
    }
    body { padding-bottom: 70px; }  /* deja espacio para el sticky */
}

/* ─── Header compactado en mobile (solo navbar) ──────────────── */
@media (max-width: 640px) {
    /* Mas respiro lateral — items con espacio del borde */
    .container { padding: 0 20px; }
    /* Padding vertical SOLO — navbar mas compacto */
    .nav-inner { padding-top: 10px; padding-bottom: 10px; }
    .brand { font-size: 16px; gap: 8px; }
    .brand-icon { width: 28px; height: 28px; }
    /* Boton Descargar balanceado al logo (~28-30px alto) */
    .nav-links a.nav-cta {
        padding: 7px 14px;
        font-size: 13px;
        border-radius: 8px;
        line-height: 1.2;
    }
    /* Hero sube — menos vacio arriba. Mantenemos screenshot ARRIBA del
     * texto (order:-1 del @media 850 sigue activo). Reducimos el gap
     * entre screenshot y texto via margin-bottom del hero-visual. */
    /* Screenshot baja +12px, gap entre screenshot y texto -12px
     * (texto debajo se mantiene a misma altura) */
    .hero { padding: 48px 0 64px; }
    .hero-inner { gap: 36px; }
    .hero-visual { margin-bottom: 0; }
}
@media (max-width: 420px) {
    .container { padding: 0 16px; }
    .nav-inner { padding-top: 8px; padding-bottom: 8px; }
    .brand { font-size: 15px; }
    .brand-icon { width: 26px; height: 26px; }
    .nav-links a.nav-cta { padding: 6px 12px; font-size: 13px; }
    .hero { padding: 40px 0 56px; }
    .hero-inner { gap: 36px; }
    .hero-visual { margin-bottom: 0; }
}

/* ─── Mobile polish: secciones, hero CTA row, trial line ────────── */
@media (max-width: 700px) {
    /* Secciones mas compactas en mobile — antes 80px desperdiciaba scroll */
    .section { padding: 56px 0; }
    .section-subtitle { margin-bottom: 36px; font-size: 16px; }

    /* Hero CTAs centrados y stack-friendly. El badge Google Play + boton
     * outline gold ahora se ven balanceados verticalmente cuando wrappean. */
    .hero-cta-row { gap: 12px; }
    .play-store-badge { height: 50px; }

    /* Trial line bajo CTAs — ya wrapea por flex-wrap, pero forzamos
     * centrado en mobile para que se alinee con los CTAs cuando stackean */
    .hero-trial-line {
        justify-content: flex-start;
        gap: 6px;
        font-size: 13px;
    }
    .trial-badge { font-size: 10.5px; padding: 4px 9px; }

    /* CTA-final mas compacto */
    .cta-final { padding: 56px 0; }
    .cta-final h2 { font-size: clamp(24px, 6vw, 32px); }
    .cta-final p { font-size: 15px; }
}

/* Pantalla muy chica (~360-380px típico Android entry) */
@media (max-width: 380px) {
    .section { padding: 44px 0; }
    .section-subtitle { font-size: 15px; margin-bottom: 28px; }
    .hero h1 { font-size: 30px; }
    .hero .lead { font-size: 15px; }
    /* Plan padding aún más compacto para evitar text-overflow del precio */
    .plan { padding: 22px 18px; }
    .plan-trial-banner { margin: -22px -18px 16px; font-size: 11px; }
    .plan-price { font-size: 36px; }
    /* VS table: la columna criterio se hace más ancha y los ticks más
     * chicos para que filas largas no truncan. Override del @media 600 */
    .vs-row { grid-template-columns: 1.8fr 0.6fr 0.6fr; padding: 12px 14px; font-size: 12px; gap: 6px; }
    .vs-row .yes, .vs-row .no { font-size: 16px; }
    .vs-row.head { font-size: 11px; }
    /* Features padding mas compacto */
    .feature { padding: 22px 20px; }
    .feature-icon { width: 44px; height: 44px; font-size: 22px; margin-bottom: 14px; }
    .feature h3 { font-size: 17px; }
}

/* ─── Founder section ─────────────────────────────────────
 * "Conoce al fundador" — credibilidad B2B antes del CTA final.
 * Layout: foto a la izquierda + texto a la derecha en desktop;
 * apilado vertical en mobile (≤700px).
 */
.founder {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: #fff;
}

.founder-eyebrow {
    text-align: center;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 36px;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 197, 106, 0.18);
    border-radius: 20px;
    padding: 40px;
}

.founder-photo-wrap {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--gold) 0%, #b88e3a 100%);
    box-shadow: 0 8px 24px rgba(229, 197, 106, 0.25);
}

.founder-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: var(--navy);
}

.founder-text {
    flex: 1;
    min-width: 0;
}

.founder-name {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.5px;
}

.founder-role {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 18px;
    letter-spacing: 0.2px;
}

.founder-bio {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
}

.founder-bio strong {
    color: #fff;
    font-weight: 600;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.founder-linkedin:hover {
    background: var(--gold);
    color: var(--navy);
}

.founder-linkedin svg {
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }
    .founder-photo-wrap {
        width: 130px;
        height: 130px;
    }
    .founder-name { font-size: 22px; }
    .founder-bio { font-size: 15px; }
    .founder-linkedin {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .founder-card { padding: 28px 20px; }
    .founder-photo-wrap { width: 110px; height: 110px; }
    .founder-name { font-size: 20px; }
    .founder-role { font-size: 13px; }
    .founder-bio { font-size: 14px; }
}

/* ────────────────────────────────────────────────────────
 * Testimonials section (3 cards de profesionales Odoo).
 * Va justo antes de "Conoce al fundador": social proof de
 * pares -> credibilidad del creador -> CTA.
 * ─────────────────────────────────────────────────────── */
.testimonials {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.testimonials-eyebrow {
    text-align: center;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.testimonials .section-title { color: #FFFFFF; }
.testimonials .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(229, 197, 106, 0.18);
    border-radius: 16px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.testimonial-card:hover {
    border-color: rgba(229, 197, 106, 0.4);
    transform: translateY(-2px);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}
.testimonial-quote {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    font-style: italic;
    flex: 1;
}
.testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.testimonial-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}
.testimonial-photo-placeholder {
    background: var(--navy-deep);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}
.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.testimonial-name {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.testimonial-role {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12.5px;
    margin: 0;
    line-height: 1.35;
}
.testimonial-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gold);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 4px;
    width: max-content;
    transition: color 0.15s ease;
}
.testimonial-linkedin:hover { color: #FFFFFF; }

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .testimonial-card { padding: 24px 22px; }
}
@media (max-width: 380px) {
    .testimonial-card { padding: 22px 18px; }
    .testimonial-quote { font-size: 15px; }
    .testimonial-photo { width: 46px; height: 46px; }
    .testimonial-photo-placeholder { font-size: 20px; }
}
