@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@600;700;800&family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,400..700,0..1,0&display=swap');

:root {
    color-scheme: light;
    --ink: #033f3f;
    --muted: #526b75;
    --paper: #ffffff;
    --soft: #e8f6fb;
    --soft-2: #f6fbfd;
    --line: #b5cddd;
    --teal: #178391;
    --teal-dark: #033f3f;
    --teal-mid: #479aa4;
    --pastel: #9db9d0;
    --coral: #b85345;
    --gold: #a97816;
    --shadow: 0 18px 54px rgba(3, 63, 63, .12);
    --shadow-sm: 0 5px 16px rgba(3, 63, 63, .08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 10%, rgba(23, 131, 145, .08) 0 2px, transparent 3px) 0 0 / 34px 34px,
        linear-gradient(180deg, #e8f6fb 0%, #f6fbfd 54%, #ffffff 100%);
    overflow: hidden;
}
body.support-page {
    overflow: auto;
    min-height: 100vh;
}
a { color: inherit; }
button, input { font: inherit; }
img { max-width: 100%; }

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    inset: 14px 18px auto;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 60px;
    padding: 8px 12px 8px 16px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(157,185,208,.48);
    border-radius: 10px;
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(23,32,39,.12); }

.brand {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; font-family: "Poppins", sans-serif; font-weight: 800; min-width: max-content;
    color: var(--ink);
}
.brand-dot { color: var(--teal); }
.brand-mark {
    display: grid; place-items: center;
    width: 32px; height: 32px;
    border-radius: 8px; background: var(--teal); color: white;
}
.brand-mark img { display: block; width: 22px; height: 22px; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a, .ghost-link {
    text-decoration: none; color: var(--muted);
    font-size: .92rem; padding: 8px 12px; border-radius: 8px;
    transition: background .15s, color .15s;
}
.nav-links a:hover, .ghost-link:hover,
.nav-links a.is-active { background: rgba(23,131,145,.1); color: var(--ink); }
.nav-links a.is-active { font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1.5px solid var(--teal);
    border-radius: 8px;
    background: rgba(255,255,255,.6);
    color: var(--teal-dark);
    font-size: .92rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: .01em;
}
.header-actions .ghost-link:hover {
    background: rgba(23,131,145,.1);
    color: var(--teal);
    border-color: var(--teal);
}
.social-link,
.social-footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--muted);
    text-decoration: none;
    border-radius: 8px;
    transition: background .15s, color .15s, border-color .15s;
}
.social-link {
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid rgba(157,185,208,.5);
    background: rgba(255,255,255,.66);
    font-size: .86rem;
    font-weight: 700;
}
.social-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: block;
}
.social-link:hover,
.social-footer-link:hover {
    background: rgba(23,131,145,.1);
    color: var(--ink);
    border-color: rgba(23,131,145,.32);
}
.social-footer-link { padding: 4px 8px; }
.social-footer-link .social-icon {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
}
.social-icon-instagram { stroke-width: 2.15; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 42px; padding: 0 18px;
    border: 1px solid transparent; border-radius: 8px;
    font-weight: 700; font-size: .94rem; text-decoration: none;
    cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { background: var(--soft); }
.btn-large { min-height: 48px; padding: 0 22px; font-size: 1rem; }

/* Public support / legal pages */
.support-header {
    position: sticky;
    top: 14px;
    z-index: 20;
    width: min(1120px, calc(100% - 32px));
    margin: 14px auto 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 12px 8px 16px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(157,185,208,.48);
    border-radius: 10px;
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(23,32,39,.08);
}
.support-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.support-nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
    padding: 8px 11px;
    border-radius: 8px;
}
.support-nav a:hover { background: rgba(23,131,145,.1); color: var(--ink); }
.support-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 66px 0 72px;
}
.support-shell-narrow { width: min(840px, calc(100% - 32px)); }
.support-hero { max-width: 760px; margin-bottom: 26px; }
.support-hero h1 { max-width: 720px; }
.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 18px;
    align-items: start;
}
.support-panel {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(157,185,208,.56);
    border-radius: 8px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}
.support-panel-muted { background: rgba(246,251,253,.88); }
.support-panel-head { margin-bottom: 16px; }
.support-panel-head h2 { font-size: 1.35rem; }
.support-form { display: flex; flex-direction: column; gap: 13px; }
.support-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.support-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: .92rem; }
.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 10px 12px;
    font: inherit;
    font-weight: 500;
}
.support-form textarea { min-height: 148px; resize: vertical; line-height: 1.5; }
.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus { outline: 2px solid rgba(23,131,145,.28); border-color: var(--teal); }
.req { color: #dc2626; font-weight: 800; }
.support-fineprint { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.support-result {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    font-size: .9rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.support-result-success { border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.08); }
.support-result-error { border-color: rgba(220,38,38,.35); background: rgba(220,38,38,.08); }
.support-result code { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 800; }
.support-contact-block { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.support-contact-block h3 { margin-bottom: 8px; }
.support-contact-block p { margin: 8px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.support-ticket-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.support-ticket-head span { border-radius: 999px; background: rgba(23,131,145,.12); color: var(--teal); padding: 3px 8px; font-size: .78rem; font-weight: 800; }
.support-message { border-top: 1px solid var(--line); padding: 10px 0; }
.support-message:first-of-type { border-top: 0; }
.support-message strong { display: inline-block; margin-right: 8px; }
.support-message span { color: var(--muted); font-size: .78rem; }
.support-message p { margin: 6px 0 0; white-space: pre-wrap; }
.support-message-superadmin { color: var(--teal-dark); }
.legal-doc { line-height: 1.62; }
.legal-doc h1,
.legal-doc h2,
.legal-doc h3 { margin-top: 1.2em; }
.legal-doc h1:first-child,
.legal-doc h2:first-child { margin-top: 0; }

@media (max-width: 780px) {
    .support-header { align-items: flex-start; flex-direction: column; }
    .support-nav { justify-content: flex-start; }
    .support-grid { grid-template-columns: 1fr; }
    .support-form-row { grid-template-columns: 1fr; }
    .support-shell { padding-top: 42px; }
}

/* ── Slide system ─────────────────────────────────────────────── */
.slides {
    height: 100vh; height: 100dvh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.slides::-webkit-scrollbar { display: none; }

.slide {
    height: 100vh; height: 100dvh;
    scroll-snap-align: start; scroll-snap-stop: always;
    display: flex; align-items: center; justify-content: center;
    padding: 104px 24px 56px;
    position: relative;
    overflow: hidden;
}
.slide::before,
.slide::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-color: rgba(23,131,145,.42);
    border-style: dotted;
    border-radius: 999px;
}
.slide::before {
    width: 190px; height: 190px;
    left: -82px; top: 86px;
    border-width: 0 6px 0 0;
}
.slide::after {
    width: 160px; height: 160px;
    right: -78px; bottom: -72px;
    border-width: 6px 0 0 0;
}
.slide-inner { width: 100%; max-width: 1180px; }

.eyebrow {
    margin: 0 0 8px;
    color: var(--teal);
    font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.15; }
h1, h2, h3 { font-family: "Poppins", sans-serif; }
h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: 0; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: 0; }
h3 { font-size: 1.05rem; font-weight: 700; }
.lead { color: var(--muted); font-size: 1rem; line-height: 1.55; margin: 10px 0 0; }

.slide-head { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.slide-head .lead { margin-top: 8px; }

/* ── Slide 1 · Hero ──────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.hero-app-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 1.04rem;
}
.hero-app-lockup img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: contain;
    padding: 7px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    box-shadow: 0 8px 20px rgba(3,63,63,.18);
}
.hero-app-lockup span span { color: var(--teal); }
.hero-text h1 { margin-top: 4px; }
.hero-text .lead { margin-top: 14px; max-width: 480px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.proof {
    display: flex; flex-wrap: wrap; gap: 18px 28px;
    margin-top: 26px; padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: .85rem; color: var(--muted);
}
.proof strong { color: var(--ink); display: block; font-size: .98rem; }

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 60vh;
    margin-left: auto;
    width: 100%; max-width: 420px;
}
.hero-photo {
    position: absolute; inset: 0;
    z-index: 1;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(14,78,92,0) 60%, rgba(14,78,92,.55) 100%),
        url('https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=1200&q=82') center/cover no-repeat;
    box-shadow: var(--shadow);
}
.hero-card {
    position: absolute;
    z-index: 3;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: var(--shadow-sm);
    font-size: .82rem; line-height: 1.4;
    max-width: 220px;
    display: flex; gap: 10px; align-items: flex-start;
}
.hero-card p { margin: 0; }
.hero-card .dot {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--teal); color: #fff;
    display: grid; place-items: center;
    font-size: .7rem; font-weight: 800; flex: 0 0 28px;
}
.hero-card-a { top: 18px; left: -24px; }
.hero-card-b { bottom: -14px; right: -10px; }
.hero-app-medallion {
    position: absolute;
    z-index: 2;
    right: 18px;
    top: 18px;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border: 1px solid rgba(255,255,255,.86);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}
.hero-app-medallion img {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    object-fit: contain;
    padding: 5px;
}

/* ── Slide 2 · Features ──────────────────────────────────────── */
#slide-2 {
    align-items: flex-start;
    padding-top: 118px;
}
.features { align-self: stretch; display: flex; flex-direction: column; justify-content: flex-start; }
.features.has-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    grid-template-areas:
        "head head"
        "grid detail";
    gap: 18px 22px;
    align-content: center;
}
.features.has-detail .slide-head { grid-area: head; margin-bottom: 0; }
.features.has-detail .feature-grid { grid-area: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-self: start; }
.features.has-detail .feature-detail-card { grid-area: detail; align-self: start; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.feature {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(157,185,208,.64);
    border-radius: 8px;
    padding: 18px;
    cursor: pointer;
    transition: border-color .15s, transform .15s, box-shadow .15s;
}
.feature:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.feature:focus-visible {
    outline: 3px solid rgba(23,131,145,.22);
    outline-offset: 3px;
}
.feature.is-active {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
}
.feature .icon {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    border-radius: 8px;
    background: var(--teal);
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Material Symbols Rounded';
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 32;
}
.feature-icon-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.feature-icon-row .icon { margin-bottom: 0; }
.feature .icon-app { font-family: inherit; }
.feature .icon-app img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    object-fit: contain;
}
.channel-icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.channel-icons .icon { margin-bottom: 0; }
.channel-icons .channel-icon-whatsapp,
.channel-icons .channel-icon-email {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    border-radius: 8px;
}
.channel-icons img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.channel-icons .channel-icon-email {
    font-size: 25px;
    font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 32;
}
.feature h3 { margin-bottom: 6px; }
.feature p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.feature-detail-card[hidden] { display: none; }
.feature-detail-card {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: none;
    padding: 18px 20px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(157,185,208,.72);
    border-left: 4px solid var(--teal);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    animation: feature-detail-in .16s ease-out;
}
@keyframes feature-detail-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}
.feature-detail-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 10px;
}
.feature-detail-head .eyebrow { margin-bottom: 4px; }
.feature-detail-close {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
}
.feature-detail-close:hover { background: var(--soft); color: var(--ink); }
.feature-detail-card ul {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--muted);
    display: grid;
    gap: 6px;
    font-size: .92rem;
    line-height: 1.45;
}
.feature-detail-card li::marker { color: var(--teal); }

/* ── Slide 3 · Plans ─────────────────────────────────────────── */
#slide-3 {
    align-items: flex-start;
    padding-top: 94px;
    padding-bottom: 42px;
}
.plans { max-width: 1240px; }
.plan-toolbar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(23,131,145,.32);
    border-radius: 999px;
    margin: 0 auto 18px;
    justify-self: center;
    box-shadow: 0 12px 28px rgba(3,63,63,.12);
}
.plans .slide-head + .plan-toolbar { display: flex; width: max-content; margin-left: auto; margin-right: auto; }
.period-label {
    padding: 0 8px 0 10px;
    color: var(--ink);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.period-btn {
    border: 1px solid transparent;
    background: transparent;
    padding: 9px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800; font-size: .88rem;
    color: var(--muted);
    display: inline-flex; align-items: center; gap: 6px;
    transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
}
.period-btn span {
    background: var(--gold); color: #fff;
    font-size: .68rem; padding: 2px 6px; border-radius: 999px; font-weight: 700;
}
.period-btn:hover { background: var(--soft); color: var(--ink); }
.period-btn.is-active {
    background: var(--teal);
    color: #fff;
    border-color: rgba(255,255,255,.72);
    box-shadow: 0 8px 18px rgba(23,131,145,.24);
}

.billing-model {
    max-width: 980px;
    margin: -4px auto 14px;
    padding: 10px 14px;
    border: 1px solid rgba(23,131,145,.22);
    border-radius: 10px;
    background: rgba(255,255,255,.78);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1.3fr);
    gap: 12px 18px;
    align-items: start;
}
.billing-model strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: .96rem;
    color: var(--ink);
    margin-bottom: 2px;
}
.billing-model span,
.billing-model li {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.45;
}
.billing-model ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 4px;
}
.billing-model li::before { content: "✓"; color: var(--teal); font-weight: 800; margin-right: 6px; }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.plan-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 15px;
    display: flex; flex-direction: column; gap: 9px;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.plan-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.plan-card.is-featured { border-color: var(--teal); box-shadow: var(--shadow); }
.plan-ribbon {
    position: absolute; top: -10px; right: 14px;
    background: var(--teal); color: #fff;
    font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
}
.plan-top .tier {
    display: inline-block; font-size: .68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--muted); margin-bottom: 4px;
}
.plan-top h3 { font-size: 1.02rem; margin-bottom: 3px; }
.plan-top p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.35; }
.plan-price { display: flex; align-items: baseline; gap: 6px; padding: 4px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-price strong { font-size: 1.24rem; color: var(--ink); }
.plan-price span { color: var(--muted); font-size: .8rem; }
.plan-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; font-size: .78rem; color: var(--muted); line-height: 1.35; }
.plan-list li::before { content: "✓"; color: var(--teal); font-weight: 800; margin-right: 6px; }
.plan-cta { margin-top: auto; }

/* ── Slide footer ────────────────────────────────────────────── */
.slide-footer {
    margin-top: 22px;
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: center; align-items: center;
    color: var(--muted); font-size: .82rem;
}
.slide-footer a { color: var(--muted); text-decoration: none; }
.slide-footer a:hover { color: var(--teal); }

.slide-hint {
    margin: 14px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.notice {
    text-align: center; padding: 32px;
    border: 1px dashed var(--line); border-radius: 12px;
    color: var(--muted);
}

/* ── Slide nav (dots + arrows) ───────────────────────────────── */
.slide-dots {
    position: fixed;
    right: 22px; top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    display: flex; flex-direction: column; gap: 10px;
}
.slide-dots .dot {
    width: 10px; height: 10px; padding: 0;
    border-radius: 50%;
    border: 1px solid var(--teal);
    background: rgba(255,255,255,.7);
    cursor: pointer;
    transition: transform .15s, background .15s;
}
.slide-dots .dot:hover { transform: scale(1.2); }
.slide-dots .dot.is-active { background: var(--teal); transform: scale(1.25); }

.slide-arrow {
    position: fixed;
    left: 50%; transform: translateX(-50%);
    z-index: 25;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.92);
    color: var(--teal);
    font-size: 1.5rem; line-height: 1;
    cursor: pointer; box-shadow: var(--shadow-sm);
    transition: background .15s, transform .15s, opacity .2s;
}
.slide-arrow:hover { background: var(--teal); color: #fff; }
.slide-arrow-prev { top: 14px; transform: translateX(-50%); }
.slide-arrow-next { bottom: 14px; transform: translateX(-50%); }
.slide-arrow.is-disabled { opacity: 0; pointer-events: none; }

/* ── Lead-capture modal ──────────────────────────────────────── */
.lead-modal[hidden] { display: none; }
.lead-modal {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.lead-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(14, 30, 36, .58);
    backdrop-filter: blur(2px);
}
.lead-modal-card {
    position: relative;
    background: var(--paper);
    border-radius: 16px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 540px;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    padding: 28px 28px 22px;
    animation: lead-modal-in .18s ease-out;
}
@keyframes lead-modal-in {
    from { opacity: 0; transform: translateY(8px) scale(.98); }
    to   { opacity: 1; transform: none; }
}
.lead-modal-close {
    position: absolute; top: 8px; right: 10px;
    background: transparent; border: 0;
    width: 32px; height: 32px;
    font-size: 1.5rem; line-height: 1;
    color: var(--muted); cursor: pointer; border-radius: 8px;
}
.lead-modal-close:hover { background: var(--soft); color: var(--ink); }
.lead-modal-head { margin-bottom: 16px; }
.lead-modal-head h3 { margin: 4px 0 6px; font-size: 1.25rem; }
.lead-modal-head .lead { font-size: .88rem; color: var(--muted); margin: 0; }
.lead-modal-head .eyebrow { color: var(--teal); }
.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.lead-field { display: flex; flex-direction: column; gap: 4px; font-size: .82rem; color: var(--ink); font-weight: 600; }
.lead-field .req { color: #c83a2c; margin-left: 2px; }
.lead-field--wide { grid-column: 1 / -1; }
.lead-field input {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.lead-field input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(22, 112, 131, .15);
}
.lead-fineprint {
    margin: 14px 0 0;
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.45;
}
.lead-actions {
    display: flex; gap: 10px; justify-content: flex-end;
    margin-top: 14px; flex-wrap: wrap;
}
.lead-actions .btn { min-height: 40px; }
.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--soft); color: var(--ink); }
body.lead-modal-open { overflow: hidden; }
@media (max-width: 540px) {
    .lead-modal { padding: 12px; }
    .lead-modal-card { padding: 22px 18px 16px; }
    .lead-grid { grid-template-columns: 1fr; }
    .lead-actions .btn { width: 100%; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .hero-app-lockup { justify-content: center; }
    .hero-text .lead { margin-left: auto; margin-right: auto; }
    .cta-row, .proof { justify-content: center; }
    .hero-visual { margin: 0 auto; max-width: 320px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .features.has-detail { display: flex; flex-direction: column; justify-content: flex-start; }
    .features.has-detail .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .header-actions .social-link span { display: none; }
    .header-actions .social-link { width: 38px; padding: 0; }
}
@media (max-width: 640px) {
    body { font-size: .95rem; }
    .site-header { inset: 8px 10px auto; gap: 8px; padding: 6px 8px; min-height: 48px; }
    .brand { min-width: 0; gap: 8px; }
    .site-header .brand span:not(.brand-mark) { font-size: .98rem; }
    .nav-links { display: none; }
    .header-actions { flex: 0 0 auto; gap: 6px; }
    .header-actions .ghost-link {
        min-height: 36px;
        padding: 0 12px;
        border-width: 1.5px;
        font-size: .84rem;
        font-weight: 800;
    }
    .header-actions .btn { min-height: 36px; padding: 0 12px; font-size: .84rem; white-space: nowrap; }
    .header-actions .social-link { display: none; }

    /* Slides: permitir scroll interno cuando el contenido no cabe */
    .slides { scroll-snap-type: y proximity; }
    .slide {
        height: auto;
        min-height: 100dvh;
        padding: 72px 14px 56px;
        align-items: flex-start;
        overflow: visible;
    }
    #slide-2 { padding-top: 78px; }

    h1 { font-size: 1.7rem; line-height: 1.2; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1rem; }
    .lead { font-size: .92rem; }
    .eyebrow { font-size: .68rem; }
    .slide-head { margin-bottom: 18px; }

    /* Hero móvil: visual oculto, contenido respira */
    .hero { gap: 18px; }
    .hero-visual { display: none; }
    .hero-text { display: flex; flex-direction: column; align-items: center; }
    .hero-text .lead { max-width: none; }
    .cta-row { width: 100%; flex-direction: column; gap: 8px; }
    .cta-row .btn { width: 100%; }
    .proof {
        gap: 8px 14px;
        margin-top: 18px;
        padding-top: 14px;
        font-size: .76rem;
    }
    .proof span { flex: 1 1 calc(33% - 14px); text-align: center; }
    .proof strong { font-size: .9rem; }

    /* Features: 2 columnas, más compactas */
    .feature-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .feature { padding: 12px; border-radius: 10px; }
    .feature .icon { width: 32px; height: 32px; margin-bottom: 6px; }
    .feature-icon-row { gap: 6px; margin-bottom: 6px; }
    .channel-icons { gap: 6px; }
    .feature h3 { font-size: .9rem; }
    .feature p { font-size: .78rem; line-height: 1.35; }
    .feature-detail-card { margin-top: 10px; padding: 14px; }
    .feature-detail-card {
        width: 100%;
        max-height: none;
        overflow-y: visible;
    }
    .feature-detail-card ul { font-size: .84rem; }

    /* Plans: una columna sin tope de altura */
    .plans-grid { grid-template-columns: 1fr; gap: 12px; }
    .plan-card { padding: 16px; gap: 10px; }
    .plans .slide-head + .plan-toolbar { width: 100%; }
    .plan-toolbar {
        margin-bottom: 16px;
        border-radius: 14px;
        flex-wrap: wrap;
    }
    .period-label {
        width: 100%;
        text-align: center;
        padding: 2px 0 0;
    }
    .period-btn { flex: 1 1 0; justify-content: center; padding: 7px 10px; font-size: .82rem; }
    .period-btn span { font-size: .62rem; padding: 1px 5px; }
    .plan-top h3 { font-size: 1.02rem; }
    .plan-price strong { font-size: 1.25rem; }
    .plan-list { font-size: .82rem; }
    .billing-model {
        grid-template-columns: 1fr;
        margin: -2px 0 14px;
        padding: 12px;
    }
    .billing-model span,
    .billing-model li { font-size: .78rem; }
    .slide-footer { font-size: .76rem; gap: 10px; }

    /* Navegación entre slides en móvil */
    .slide-dots { right: 8px; gap: 8px; }
    .slide-dots .dot { width: 8px; height: 8px; }
    .slide-arrow { width: 34px; height: 34px; font-size: 1.3rem; }
    .slide-arrow-prev { top: 10px; }
    .slide-arrow-next { bottom: 10px; }
}
@media (max-width: 420px) {
    .brand-dot { display: none; }
    .site-header .brand span:not(.brand-mark) { font-size: .9rem; }
    .header-actions .ghost-link,
    .header-actions .btn { min-height: 34px; padding: 0 10px; font-size: .78rem; }
}
@media (max-width: 350px) {
    .header-actions .btn { display: none; }
}
@media (max-height: 720px) and (min-width: 901px) {
    .slide { padding-top: 80px; padding-bottom: 48px; }
    .feature-grid { gap: 10px; }
    .feature { padding: 14px; }
    .proof { margin-top: 16px; padding-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .slides, html { scroll-behavior: auto; }
    .btn:hover, .feature:hover, .plan-card:hover { transform: none; }
}
