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

:root {
    /* Light theme palette */
    --bg: #FAF9F6;
    --bg-soft: #F2EFE8;
    --bg-warm: #F5F2EC;
    --surface: #FFFFFF;
    --surface-2: #FCFBF8;
    --border: #E7E2D5;
    --border-soft: #EFEBE0;
    --text: #0F172A;
    --text-2: #475569;
    --text-3: #64748B;
    --text-muted: #94A3B8;

    /* Accents */
    --green: #25D366;
    --green-deep: #128C7E;
    --teal: #14B8A6;
    --teal-deep: #0D9488;
    --blue: #3B82F6;
    --purple: #8B5CF6;
    --pink: #EC4899;
    --orange: #F59E0B;
    --red: #EF4444;

    /* Gradients */
    --grad-accent: linear-gradient(135deg, #14B8A6, #25D366);
    --grad-warm: linear-gradient(135deg, #F59E0B, #EC4899);
    --grad-cool: linear-gradient(135deg, #06B6D4, #3B82F6);

    /* Shadows (light/soft) */
    --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
    --shadow-sm: 0 2px 8px rgba(15,23,42,0.06);
    --shadow-md: 0 8px 24px rgba(15,23,42,0.08);
    --shadow-lg: 0 16px 48px rgba(15,23,42,0.10);
    --shadow-xl: 0 32px 80px rgba(15,23,42,0.14);
    --shadow-glow: 0 0 0 6px rgba(37,211,102,0.10);

    /* Type */
    --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container: 1200px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg);
    background-color: var(--bg);
}
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom);
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

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

/* ==================== SOFT BG BLOBS ==================== */
.bg-soft {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blobFloat 18s ease-in-out infinite;
}
.blob-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(37,211,102,0.18), transparent 60%);
    top: -120px; left: -100px;
}
.blob-2 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(20,184,166,0.16), transparent 60%);
    top: 30%; right: -180px;
    animation-delay: -6s;
}
.blob-3 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(139,92,246,0.10), transparent 60%);
    bottom: -100px; left: 30%;
    animation-delay: -12s;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}
.grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: multiply;
}

/* ==================== VIDEO ORB (FOUNDER VIDEO) ==================== */
.video-orb {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 95;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-orb-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.video-orb-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #14B8A6);
    opacity: 0.55;
    animation: orbPulse 2.4s ease-in-out infinite;
    z-index: 0;
}
.video-orb-frame {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 0 0 3px #fff,
        0 12px 32px -4px rgba(15, 23, 42, 0.30),
        0 4px 12px -2px rgba(15, 23, 42, 0.18);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
    z-index: 1;
}
.video-orb-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.video-orb-hint {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
}
.video-orb-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background 0.15s ease;
    z-index: 2;
}
.video-orb-close:hover {
    background: #fff;
    color: var(--text);
}

/* Expanded state — anchored bottom-right, smaller, no backdrop */
.video-orb.expanded .video-orb-pulse {
    display: none;
}
.video-orb.expanded .video-orb-frame {
    width: min(260px, 80vw);
    height: min(460px, 72vh);
    border-radius: 18px;
    box-shadow:
        0 0 0 0 #fff,
        0 24px 60px -8px rgba(15, 23, 42, 0.32),
        0 8px 20px -4px rgba(15, 23, 42, 0.18);
}
.video-orb.expanded .video-orb-hint {
    opacity: 0;
}
.video-orb.expanded .video-orb-close {
    opacity: 1;
    pointer-events: auto;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 600px) {
    .video-orb { right: 12px; bottom: 30px; }
    .video-orb-frame { width: 92px; height: 92px; }
    .video-orb-hint { font-size: 9px; padding: 3px 7px; bottom: 4px; }
    .video-orb.expanded { right: 12px; bottom: 12px; }
    .video-orb.expanded .video-orb-frame {
        width: min(86vw, 320px);
        height: min(74vh, 560px);
    }
}

/* ==================== LIVE ACTIVITY WIDGET ==================== */
.live-widget {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 320px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 14px 16px 16px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 20px 50px -12px rgba(15, 23, 42, 0.18),
        0 8px 20px -4px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 90;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    transform-origin: bottom left;
    overflow: visible;
}
.live-widget-body { overflow: visible; }
.live-action { overflow: visible; }
.live-action-content { isolation: isolate; }
.live-widget.collapsed {
    width: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.live-widget.collapsed > *:not(.live-widget-reopen) { display: none; }
.live-widget.collapsed .live-widget-reopen { display: inline-flex; }

.live-widget-close {
    position: absolute;
    top: 8px; right: 8px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-3);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.live-widget-close:hover {
    background: var(--text);
    color: #fff;
}

.live-widget-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-right: 28px;
}
.live-widget-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}
.live-widget-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: var(--teal-deep);
}
.live-widget-count {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-3);
    font-weight: 500;
}

.live-widget-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.live-msg-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    animation: liveSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.live-msg-row.in { justify-content: flex-start; }

.live-avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}
.live-avatar-user {
    background: linear-gradient(135deg, #94A3B8, #64748B);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}
.live-avatar-zupys {
    background: #fff;
    box-shadow: 0 0 0 1.5px rgba(20, 184, 166, 0.40), 0 2px 6px rgba(20, 184, 166, 0.20);
    padding: 2px;
}
.live-avatar-zupys img {
    width: 100%; height: 100%;
    object-fit: contain;
}

.live-bubble {
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text);
    max-width: 240px;
    word-wrap: break-word;
}
.live-bubble-in {
    background: #F1F5F9;
    border-top-left-radius: 4px;
}

.live-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    opacity: 0;
    animation: liveActionFade 0.4s ease 0.7s forwards;
}
.live-action-content {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #25D366, #14B8A6);
    color: #fff;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.30);
    transform-origin: left center;
    animation: liveCheckPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s backwards,
               liveCheckPulse 2.4s ease-in-out 1.6s infinite;
    position: relative;
}
.live-action-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.50), rgba(20, 184, 166, 0.50));
    z-index: -1;
    opacity: 0;
    animation: liveCheckHalo 1.4s ease-out 0.7s forwards;
}
.live-action-check {
    width: 14px; height: 14px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
}

@keyframes liveSlideUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes liveActionFade {
    to { opacity: 1; }
}
@keyframes liveCheckPop {
    0% { transform: scale(0) rotate(-18deg); opacity: 0; }
    55% { transform: scale(1.20) rotate(6deg); opacity: 1; }
    78% { transform: scale(0.94) rotate(-2deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes liveCheckPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.30); }
    50% { box-shadow: 0 4px 22px rgba(37, 211, 102, 0.60), 0 0 0 5px rgba(37, 211, 102, 0.12); }
}
@keyframes liveCheckHalo {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.live-widget.cycling .live-msg-row,
.live-widget.cycling .live-action {
    animation: none;
    opacity: 0;
    transform: translateY(8px);
}

.live-widget-reopen {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--teal-deep);
    box-shadow:
        0 8px 24px -6px rgba(15, 23, 42, 0.14),
        0 4px 10px -2px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.live-widget-reopen:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -6px rgba(15, 23, 42, 0.20);
}

@media (max-width: 600px) {
    .live-widget {
        left: 12px;
        right: auto;
        bottom: 16px;
        width: min(220px, calc(100vw - 128px));
        padding: 8px 10px 10px;
        border-radius: 14px;
    }
    .live-widget-close {
        width: 18px;
        height: 18px;
        font-size: 13px;
        top: 5px;
        right: 5px;
    }
    .live-widget-head {
        gap: 5px;
        margin-bottom: 7px;
        padding-right: 22px;
    }
    .live-widget-dot { width: 6px; height: 6px; box-shadow: 0 0 0 3px rgba(37,211,102,0.18); }
    .live-widget-label { font-size: 8.5px; letter-spacing: 0.08em; }
    .live-widget-count { font-size: 9px; }
    .live-widget-body { gap: 6px; }
    .live-msg-row { gap: 6px; }
    .live-bubble { font-size: 11px; padding: 5px 8px; max-width: 150px; line-height: 1.35; border-radius: 10px; }
    .live-bubble-in { border-top-left-radius: 3px; }
    .live-action { gap: 6px; }
    .live-action-content { font-size: 10px; padding: 4px 8px 4px 5px; gap: 4px; }
    .live-action-check { width: 11px; height: 11px; font-size: 8px; }
    .live-avatar { width: 18px; height: 18px; box-shadow: 0 1px 2px rgba(15, 23, 42, 0.10); }
    .live-avatar-user { font-size: 9px; }
    .live-avatar-zupys { padding: 1px; box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.40), 0 1px 3px rgba(20, 184, 166, 0.18); }
    .live-widget.collapsed .live-widget-reopen { padding: 7px 12px; font-size: 10px; gap: 6px; }
}

/* ==================== GHOST MESSAGES (LEGACY, NOT USED) ==================== */
.ghosts-bg { display: none; }
.ghost-msg {
    position: absolute;
    white-space: nowrap;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-3);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    letter-spacing: -0.005em;
}
.ghost-msg.bubble {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(231, 226, 213, 0.85);
    border-radius: 14px 14px 14px 4px;
    padding: 7px 12px;
    color: var(--text-2);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ghost-msg.bubble-self {
    background: rgba(220, 248, 198, 0.75);
    border-color: rgba(37, 211, 102, 0.30);
    border-radius: 14px 14px 4px 14px;
    color: #1f3d2c;
}
.ghost-msg.zupys-acted {
    border-color: rgba(37, 211, 102, 0.55);
    box-shadow: 0 2px 14px rgba(37, 211, 102, 0.25), 0 0 0 3px rgba(37, 211, 102, 0.08);
}
.ghost-check {
    position: absolute;
    bottom: -10px;
    right: -8px;
    background: linear-gradient(135deg, #25D366, #14B8A6);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px 3px 7px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transform-origin: bottom left;
    animation: checkPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) backwards,
               checkPulse 2.4s ease-in-out 1.2s infinite;
    letter-spacing: 0.01em;
}
.ghost-check-icon {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
}
.ghost-check-logo {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    padding: 1px;
    box-shadow: 0 0 0 1.2px rgba(255, 255, 255, 0.7);
    object-fit: contain;
    flex-shrink: 0;
}
@keyframes checkPop {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    50% { transform: scale(1.18) rotate(6deg); opacity: 1; }
    75% { transform: scale(0.96) rotate(-2deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes checkPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.70), 0 0 0 4px rgba(37, 211, 102, 0.10); }
}
@keyframes ghost-rise {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    6% {
        opacity: 0.75;
    }
    50% {
        transform: translate(calc(var(--drift) * 0.5), -55vh);
        opacity: 0.90;
    }
    94% {
        opacity: 0.65;
    }
    100% {
        transform: translate(var(--drift), -120vh);
        opacity: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .ghost-msg { display: none; }
}
@media (max-width: 600px) {
    .ghost-msg { font-size: 10px !important; }
}

/* ==================== NAV ==================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.nav-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 6px 8px 6px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    pointer-events: auto;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                border-color 0.3s ease,
                border-radius 0.4s ease,
                box-shadow 0.3s ease,
                padding 0.4s ease,
                backdrop-filter 0.3s ease;
}
.nav.scrolled {
    padding: 10px 16px;
}
.nav.scrolled .nav-inner {
    max-width: 880px;
    padding: 8px 8px 8px 16px;
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(231, 226, 213, 0.6);
    border-radius: 999px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 12px 40px -8px rgba(15, 23, 42, 0.10),
        0 4px 12px -2px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    position: relative;
}
.nav-logo::before {
    content: '';
    position: absolute;
    left: -2px; top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background: radial-gradient(circle, rgba(20,184,166,0.35), transparent 65%);
    filter: blur(10px);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}
.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 3px;
    box-shadow:
        0 2px 8px rgba(20, 184, 166, 0.25),
        0 0 0 1.5px rgba(20, 184, 166, 0.30),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}
.nav-logo-text {
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 999px;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}
.nav-link:hover {
    color: var(--text);
    background: var(--bg-soft);
}
.nav.scrolled .nav-link {
    padding: 8px 12px;
    font-size: 13.5px;
}
.nav-cta { display: flex; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.2s;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 999px; }
.nav.scrolled .nav-cta .btn-sm {
    padding: 9px 18px;
    font-size: 13.5px;
}
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 14px; }
.btn-xl { padding: 20px 36px; font-size: 17px; border-radius: 16px; }

.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.30), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
    background: #1FBA5A;
    box-shadow: 0 6px 24px rgba(37,211,102,0.40), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--text-2);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.play-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    margin-right: -2px;
    transition: all 0.2s;
}
.btn-ghost:hover .play-icon { background: var(--green); color: #fff; }

/* ==================== TYPOGRAPHY ==================== */
.title-accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.title-whatsapp {
    color: var(--green-deep);
    font-weight: 700;
}

/* Typewriter */
.tw-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 0.16em;
    white-space: nowrap;
    max-width: 100%;
}
.tw-emoji {
    display: inline-block;
    font-size: 0.78em;
    line-height: 1;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s ease;
    transform-origin: center;
    transform: translateY(0.05em);
}
.tw-emoji.swap {
    transform: translateY(0.05em) scale(0.4) rotate(-12deg);
    opacity: 0;
}
.tw-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--teal);
    border-radius: 2px;
    margin-left: 4px;
    align-self: center;
    transform: translateY(0.12em);
    animation: caretBlink 1s steps(2) infinite;
    box-shadow: 0 0 12px rgba(20,184,166,0.5);
    flex-shrink: 0;
}
@keyframes caretBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
#typewriter {
    display: inline-block;
    min-width: 1ch;
    padding-bottom: 0.05em;
    overflow: visible;
}
.hero-title {
    margin-bottom: 20px;
}

/* ==================== SECTION HEADER ==================== */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--teal-deep);
    background: rgba(20,184,166,0.10);
    border: 1px solid rgba(20,184,166,0.20);
    border-radius: 999px;
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-2);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    padding: 160px 0 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-xs);
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(37,211,102,0.18);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(37,211,102,0.18); }
    50% { box-shadow: 0 0 0 6px rgba(37,211,102,0.10); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.18;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-check {
    font-size: 14px;
    color: var(--text-2);
    font-weight: 500;
}

/* Hero phone wrap */
.hero-phone-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}
.phone-shadow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 580px;
    background: radial-gradient(circle, rgba(37,211,102,0.20), transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

/* ==================== PHONE MOCKUP ==================== */
.phone {
    position: relative;
    width: 320px;
    height: 640px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 8px;
    box-shadow:
        0 0 80px rgba(37, 211, 102, 0.18),
        var(--shadow-xl),
        inset 0 0 0 2px #2d2d2d,
        inset 0 1px 0 rgba(255,255,255,0.1);
    z-index: 1;
}
.phone-notch {
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 28px;
    background: #000;
    border-radius: 14px;
    z-index: 2;
}
.phone-screen {
    width: 100%; height: 100%;
    background: #ECE5DD;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wpp-header {
    background: #075E54;
    color: #fff;
    padding: 38px 12px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wpp-back { color: #fff; padding: 4px; display: flex; }
.wpp-avatar {
    position: relative;
    width: 36px; height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.wpp-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.online-dot {
    position: absolute;
    bottom: 0; right: 0;
    width: 10px; height: 10px;
    background: #25D366;
    border: 2px solid #075E54;
    border-radius: 50%;
}
.wpp-info { flex: 1; min-width: 0; }
.wpp-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}
.wpp-status {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.wpp-chat {
    flex: 1;
    background: #ECE5DD url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0h40v40H0z' fill='%23ECE5DD'/%3E%3Ccircle cx='20' cy='20' r='1' fill='%23D9D2C5' opacity='0.5'/%3E%3C/svg%3E");
    padding: 12px 8px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    scroll-behavior: smooth;
    text-align: left;
}
.wpp-msg { text-align: left; }
.phone-screen { text-align: left; }
.wpp-chat::-webkit-scrollbar { width: 0; }

.wpp-date {
    align-self: center;
    background: rgba(225,245,254,0.92);
    color: #54636D;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    margin: 4px 0;
}

.wpp-msg {
    max-width: 80%;
    padding: 6px 10px 8px;
    border-radius: 8px;
    position: relative;
    word-wrap: break-word;
    animation: msgIn 0.3s ease forwards;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.08);
    font-size: 14px;
    line-height: 1.4;
    color: #111;
}
.wpp-msg.in {
    align-self: flex-start !important;
    margin-right: auto;
    background: #fff;
    border-top-left-radius: 0;
}
.wpp-msg.out {
    align-self: flex-end !important;
    margin-left: auto;
    background: #DCF8C6;
    border-top-right-radius: 0;
}
.wpp-msg-time {
    display: inline-block;
    font-size: 10px;
    color: #667781;
    margin-left: 6px;
    margin-top: 2px;
    float: right;
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.typing-dots {
    align-self: flex-start;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    border-top-left-radius: 0;
    display: inline-flex;
    gap: 4px;
}
.typing-dots span {
    width: 6px; height: 6px;
    background: #667781;
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.wpp-input {
    background: #ECE5DD;
    padding: 8px 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wpp-input-box {
    flex: 1;
    background: #fff;
    border-radius: 24px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wpp-placeholder {
    flex: 1;
    color: #91959A;
    font-size: 14px;
}
.wpp-mic {
    width: 40px; height: 40px;
    background: #075E54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating chips */
.floating-chip {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: chipFloat 4s ease-in-out infinite;
    z-index: 2;
    white-space: nowrap;
    width: max-content;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.chip-icon { font-size: 14px; }
.chip-1 { top: 12%; right: calc(100% - 25px); animation-delay: 0s; }
.chip-2 { top: 44%; left: calc(100% - 25px); animation-delay: -1.5s; }
.chip-3 { bottom: 12%; right: calc(100% - 25px); animation-delay: -3s; }

/* Inline mobile chips (below phone, in row) */
.floating-chip.inline {
    position: static;
    animation: none;
    transform: none;
    flex-shrink: 0;
}
.floating-chips-host {
    display: block;
    width: 100%;
}
.floating-chips-host.mobile-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    width: 100%;
}
@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==================== STATS BAR ==================== */
.stats-bar {
    padding: 48px 0;
    background: rgba(255, 255, 255, 0.40);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 40px);
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 13px;
    color: var(--text-2);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* ==================== PAIN POINTS (CAROUSEL) ==================== */
.pains-section { padding: 100px 0; }
.pains-section .section-header { margin-bottom: 48px; }

.pains-carousel {
    position: relative;
    overflow: hidden;
    padding: 16px 0 32px;
    margin-bottom: 32px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.pains-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: painsScroll 115s linear infinite;
}
.pains-carousel:hover .pains-track {
    animation-play-state: paused;
}
@keyframes painsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.pain-card {
    flex-shrink: 0;
    width: 360px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid var(--cat, var(--teal));
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
    border-left-color: var(--cat, var(--teal));
}

.pain-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: color-mix(in srgb, var(--cat) 12%, transparent);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cat);
    letter-spacing: 0.02em;
    align-self: flex-start;
}
.pain-cat-icon { font-size: 13px; }
.pain-cat-label { letter-spacing: 0.04em; }

.pain-quote {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text);
    letter-spacing: -0.01em;
    flex: 1;
}
.pain-quote strong {
    font-weight: 700;
    background: linear-gradient(180deg, transparent 62%, color-mix(in srgb, var(--cat) 28%, transparent) 62%);
    padding: 0 2px;
}

.pain-fix {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
}
.pain-fix-arrow {
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.pains-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}
.pains-fade-left {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}
.pains-fade-right {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
}

.pains-bridge {
    text-align: center;
    margin-top: 16px;
}
.bridge-arrow {
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 12px;
    animation: bounceArrow 2s ease-in-out infinite;
}
@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
.pains-bridge p {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
}
.pains-bridge strong {
    color: var(--green-deep);
}

/* ==================== HOW IT WORKS ==================== */
.how-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.40);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}
.how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.how-step {
    flex: 1;
    min-width: 240px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    position: relative;
    transition: all 0.3s ease;
}
.how-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.how-step-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    color: var(--teal);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.how-step-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.how-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.how-step p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
}
.how-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ==================== DEMO SECTION ==================== */
.demo-section { padding: 100px 0; }
.demo-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.demo-stage {
    display: flex;
    flex-direction: column-reverse;
    gap: 18px;
}

.demo-dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.demo-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 14px;
    background: var(--surface);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-lg);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xs);
    min-height: 110px;
    position: relative;
    overflow: hidden;
}
.demo-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,184,166,0.08), rgba(37,211,102,0.06));
    opacity: 0;
    transition: opacity 0.25s ease;
}
.demo-dot:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.demo-dot.active {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20,184,166,0.12), 0 8px 20px -4px rgba(20,184,166,0.18);
    transform: translateY(-2px);
}
.demo-dot.active::before { opacity: 1; }
.dot-icon {
    font-size: 32px;
    line-height: 1;
    position: relative;
    transition: transform 0.3s ease;
}
.demo-dot.active .dot-icon { transform: scale(1.08); }
.dot-label {
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-2);
    letter-spacing: -0.005em;
    position: relative;
}
.demo-dot.active .dot-label { color: var(--teal-deep); }

.demo-spotlight {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}
.demo-spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,184,166,0.04), rgba(37,211,102,0.03));
    pointer-events: none;
}
.spotlight-icon {
    font-size: 28px;
    line-height: 1;
    position: relative;
    grid-row: span 2;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(20,184,166,0.12), rgba(37,211,102,0.10));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spotlight-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--text);
    position: relative;
    grid-column: 2;
    grid-row: 1;
}
.spotlight-desc {
    color: var(--text-2);
    font-size: 12.5px;
    line-height: 1.4;
    position: relative;
    grid-column: 2;
    grid-row: 2;
    margin: 0;
}
.spotlight-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    grid-column: 3;
    grid-row: span 2;
    position: relative;
}
.spotlight-counter {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--text-3);
}
.spotlight-counter-sep { color: var(--text-muted); margin: 0 2px; }
.spotlight-tag {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: var(--green-deep);
    background: rgba(37,211,102,0.12);
    padding: 3px 8px;
    border-radius: 999px;
}
.spotlight-progress {
    grid-column: 1 / -1;
    height: 3px;
    background: var(--bg-soft);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}
.spotlight-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--grad-accent);
    transition: width 0.1s linear;
    border-radius: 999px;
}

.demo-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-demo {
    transform: scale(0.92);
}

/* ==================== BENTO ==================== */
.bento-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.40);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento-card {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(20,184,166,0.04), transparent 60%);
    pointer-events: none;
}
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}
.bento-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.bento-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.bento-card h3 em {
    font-style: italic;
    color: var(--teal-deep);
}
.bento-card > p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
}

/* Reminder stack */
.bento-visual { margin-top: auto; }
.reminder-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.reminder-item {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.reminder-item.active {
    background: linear-gradient(90deg, rgba(37,211,102,0.10), rgba(20,184,166,0.10));
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(37,211,102,0.10);
}
.r-time {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--text-2);
    background: var(--bg-soft);
    padding: 2px 8px;
    border-radius: 6px;
    min-width: 50px;
    text-align: center;
}
.reminder-item.active .r-time { color: var(--green-deep); background: rgba(37,211,102,0.18); }
.r-label { flex: 1; color: var(--text); font-weight: 500; }

/* Finance stat */
.bento-stat { display: flex; flex-direction: column; gap: 8px; }
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.stat-row span { color: var(--text-2); }
.stat-row strong { color: var(--text); font-weight: 600; }
.stat-bar {
    height: 6px;
    background: var(--bg-soft);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 4px;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #F59E0B, #EF4444);
    border-radius: 999px;
    transition: width 1s ease;
}
.finance-total {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.finance-total-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.finance-total-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-3);
    font-weight: 600;
}
.finance-total-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.finance-trend {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.trend-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 9px;
    background: rgba(37, 211, 102, 0.12);
    color: var(--green-deep);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.trend-arrow { font-weight: 800; }
.trend-label {
    font-size: 10px;
    color: var(--text-3);
}

/* Memory bubbles */
.memory-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.mem-bubble {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s;
}
.mem-bubble:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
}
.memory-recall {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-2);
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
}
.recall-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 0 4px rgba(139,92,246,0.18);
    animation: pulseDot 2s ease-in-out infinite;
}

/* Image preview */
.image-preview {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
    height: 200px;
}
.img-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.20), 0 4px 14px rgba(15,23,42,0.10);
    transition: transform 0.3s ease;
}
.bento-card:hover .img-card {
    transform: scale(1.01);
}
.img-1 {
    grid-row: span 2;
}
.img-scene {
    position: absolute;
    inset: 0;
}
.img-scene-1 {
    background: linear-gradient(180deg, #f59e0b, #ec4899);
}
.img-sun {
    position: absolute;
    width: 30px; height: 30px;
    background: #fff;
    border-radius: 50%;
    top: 30%; left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 30px rgba(255,255,255,0.6);
}
.img-mountain {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, #7c2d12, #1c1917);
    clip-path: polygon(0 60%, 30% 30%, 50% 50%, 80% 20%, 100% 50%, 100% 100%, 0 100%);
}
.img-scene-2 {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
}
.img-orb {
    position: absolute;
    width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 70%);
    top: 25%; left: 25%;
    border-radius: 50%;
    animation: orbPulse 3s ease-in-out infinite;
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}
.img-scene-3 {
    background: linear-gradient(135deg, #10b981, #84cc16);
}
.img-leaf {
    position: absolute;
    width: 60%; height: 60%;
    background: rgba(255,255,255,0.4);
    top: 20%; left: 20%;
    border-radius: 0 50% 0 50%;
    transform: rotate(-30deg);
}
.img-tag {
    position: absolute;
    bottom: 6px; left: 6px; right: 6px;
    font-size: 10px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    padding: 3px 6px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

/* Audio */
.audio-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.audio-time {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-2);
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: 6px;
}
.audio-time-out {
    color: var(--green-deep);
    background: rgba(37,211,102,0.12);
}
.audio-arrow {
    color: var(--text-muted);
    font-size: 14px;
}
.audio-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 36px;
    margin-bottom: 12px;
    padding: 0 8px;
    background: var(--bg-soft);
    border-radius: 10px;
}
.audio-wave span {
    width: 3px;
    background: var(--teal);
    border-radius: 999px;
    animation: waveBar 1.2s ease-in-out infinite;
}
.audio-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.audio-wave span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.audio-wave span:nth-child(3) { height: 80%; animation-delay: 0.2s; }
.audio-wave span:nth-child(4) { height: 50%; animation-delay: 0.3s; }
.audio-wave span:nth-child(5) { height: 70%; animation-delay: 0.4s; }
.audio-wave span:nth-child(6) { height: 90%; animation-delay: 0.5s; }
.audio-wave span:nth-child(7) { height: 40%; animation-delay: 0.6s; }
.audio-wave span:nth-child(8) { height: 65%; animation-delay: 0.7s; }
.audio-wave span:nth-child(9) { height: 75%; animation-delay: 0.8s; }
.audio-wave span:nth-child(10) { height: 45%; animation-delay: 0.9s; }
.audio-wave span:nth-child(11) { height: 85%; animation-delay: 1s; }
.audio-wave span:nth-child(12) { height: 55%; animation-delay: 1.1s; }
.audio-wave span:nth-child(13) { height: 70%; animation-delay: 0.05s; }
.audio-wave span:nth-child(14) { height: 35%; animation-delay: 0.15s; }
.audio-wave span:nth-child(15) { height: 60%; animation-delay: 0.25s; }
@keyframes waveBar {
    0%, 100% { transform: scaleY(0.6); opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
}
.audio-result {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-left: 3px solid var(--teal);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--text);
    font-style: italic;
}
.audio-topics-card {
    margin-top: 14px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 12px;
}
.audio-topics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.audio-time-mini {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-2);
}
.audio-topics-pill {
    font-size: 10px;
    font-weight: 700;
    color: var(--teal-deep);
    background: rgba(20, 184, 166, 0.12);
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.audio-topics-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.audio-topics-list li {
    font-size: 12.5px;
    color: var(--text);
    padding-left: 14px;
    position: relative;
    line-height: 1.45;
}
.audio-topics-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 5px; height: 5px;
    background: var(--teal);
    border-radius: 50%;
}

/* Shopping */
.shop-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.shop-item {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    transition: all 0.2s;
}
.shop-item .check {
    width: 18px; height: 18px;
    border: 2px solid var(--text-muted);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}
.shop-item.done {
    color: var(--text-muted);
    text-decoration: line-through;
    background: var(--bg-soft);
}
.shop-item.done .check {
    background: var(--green);
    border-color: var(--green);
}
.shop-item.done .check::after {
    content: '';
    position: absolute;
    top: 1px; left: 4px;
    width: 5px; height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ==================== EM BREVE / COMING SOON ==================== */
.coming-soon-section {
    padding: 80px 0;
    position: relative;
}

.coming-soon-tag span {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 35%, #fbbc04 65%, #ea4335 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.coming-soon-card {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(66,133,244,0.06), rgba(52,168,83,0.04) 50%, rgba(251,188,4,0.04) 75%, rgba(234,67,53,0.05));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coming-soon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.coming-soon-card:hover::before {
    opacity: 1;
}

.coming-soon-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 1;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(20,184,166,0.10);
    color: var(--teal-deep);
    border: 1px solid rgba(20,184,166,0.25);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.coming-soon-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.coming-soon-card p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

.coming-soon-more {
    text-align: center;
    margin-top: 36px;
    font-size: 14px;
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.coming-soon-more-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #34a853);
    box-shadow: 0 0 0 3px rgba(66,133,244,0.15);
    animation: pulse 2s infinite;
}

@media (max-width: 1024px) {
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .coming-soon-section {
        padding: 60px 0;
    }
}

/* ==================== PAINEL (MACBOOK) ==================== */
.painel-section { padding: 100px 0; }
.painel-header { text-align: center; margin-bottom: 56px; }
.painel-header .section-tag { background: rgba(245,158,11,0.10); color: #b45309; border-color: rgba(245,158,11,0.20); }

.painel-stage {
    max-width: 980px;
    margin: 0 auto 56px;
    perspective: 2000px;
}
.macbook {
    position: relative;
    transform: rotateX(2deg);
}
.macbook-screen {
    background: #1a1a1a;
    border-radius: 18px 18px 4px 4px;
    padding: 18px 18px 14px;
    box-shadow:
        var(--shadow-xl),
        inset 0 0 0 2px #2d2d2d;
    position: relative;
}
.macbook-camera {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 6px;
    background: #444;
    border-radius: 50%;
}

/* Dashboard */
.dashboard {
    background: #FAFAF7;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 540px;
    border: 1px solid #E5E2D8;
}
.dash-side {
    background: #fff;
    border-right: 1px solid var(--border-soft);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
}
.dash-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px 16px;
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
}
.dash-logo img { width: 24px; height: 24px; border-radius: 6px; }
.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.dn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    text-align: left;
    transition: all 0.15s;
}
.dn:hover { background: var(--bg-soft); color: var(--text); }
.dn.active {
    background: linear-gradient(90deg, rgba(20,184,166,0.10), rgba(37,211,102,0.06));
    color: var(--teal-deep);
    font-weight: 600;
}
.dn-emoji { font-size: 14px; }
.dash-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-soft);
    border-radius: 10px;
}
.dash-avatar {
    width: 32px; height: 32px;
    background: var(--grad-accent);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-user-name { font-size: 12px; font-weight: 600; }
.dash-user-plan { font-size: 11px; color: var(--text-3); }

.dash-main {
    padding: 18px;
    overflow-y: auto;
    overflow-x: hidden;
}
.dash-main::-webkit-scrollbar { width: 6px; }
.dash-main::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.dash-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}
.dash-greet {
    font-size: 12px;
    color: var(--text-3);
}
.dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-2);
    background: rgba(37,211,102,0.10);
    padding: 4px 10px;
    border-radius: 999px;
}
.live-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(37,211,102,0.20);
    animation: pulseDot 2s ease-in-out infinite;
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.kpi-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 12px;
}
.kpi-highlight {
    background: linear-gradient(135deg, rgba(20,184,166,0.08), rgba(37,211,102,0.06));
    border-color: rgba(20,184,166,0.30);
}
.kpi-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.kpi-icon {
    width: 26px; height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.kpi-trend {
    font-size: 10px;
    font-weight: 700;
    color: var(--green-deep);
    background: rgba(37,211,102,0.12);
    padding: 2px 6px;
    border-radius: 4px;
}
.kpi-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}
.kpi-label {
    font-size: 10px;
    color: var(--text-3);
}

.dash-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.dash-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 14px;
}
.card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 8px;
}
.card-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
}
.card-sub {
    font-size: 10px;
    color: var(--text-3);
    margin-top: 1px;
}
.chart-tabs {
    display: flex;
    gap: 2px;
    background: var(--bg-soft);
    padding: 2px;
    border-radius: 6px;
}
.chart-tab {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-3);
    border-radius: 4px;
    transition: all 0.15s;
}
.chart-tab.active {
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow-xs);
}

.chart {
    height: 110px;
    position: relative;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 90px;
    padding-bottom: 4px;
}
.chart-bars .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--teal), var(--green));
    border-radius: 2px 2px 0 0;
    transition: all 0.5s ease;
    min-height: 4px;
}
.chart-axis {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: var(--text-muted);
    padding-top: 4px;
}

.engage-card { text-align: center; }
.engage-ring {
    position: relative;
    width: 90px; height: 90px;
    margin: 8px auto 6px;
}
.engage-ring svg { width: 100%; height: 100%; }
.engage-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
}
.engage-num i {
    font-size: 11px;
    color: var(--text-3);
    font-style: normal;
    margin-left: 1px;
}
.engage-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--green-deep);
}
.engage-sub {
    font-size: 10px;
    color: var(--text-3);
}

.feed-card { padding: 14px; }
.feed { display: flex; flex-direction: column; gap: 8px; }
.feed-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--bg-soft);
    border-radius: 8px;
    font-size: 11px;
}
.feed-icon {
    width: 24px; height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.feed-content { flex: 1; }
.feed-text { color: var(--text); }
.feed-text b { font-weight: 600; }
.feed-time { color: var(--text-3); font-size: 10px; margin-top: 1px; }
.feed-tag {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-2);
    background: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--border-soft);
}

.macbook-base {
    background: linear-gradient(180deg, #2a2a2a, #161616);
    height: 14px;
    border-radius: 0 0 10px 10px;
    margin: 0 -28px;
    position: relative;
}
.macbook-base-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: #0a0a0a;
    border-radius: 0 0 8px 8px;
}

.painel-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.painel-feat {
    text-align: center;
}
.painel-feat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.painel-feat h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}
.painel-feat p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.5;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.40);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}
.testimonial-card {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}
.testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.testimonial-metric {
    display: inline-flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(20,184,166,0.10), rgba(37,211,102,0.06));
    border: 1px solid rgba(20,184,166,0.20);
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 16px;
}
.metric-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--teal-deep);
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.metric-label {
    font-size: 12px;
    color: var(--text-2);
    margin-top: 2px;
}
.testimonial-text {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
}
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--grad-accent);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}
.testimonial-role {
    font-size: 12px;
    color: var(--text-3);
}
.testimonial-verified {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: var(--green-deep);
    background: rgba(37,211,102,0.10);
    padding: 4px 8px;
    border-radius: 6px;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 16px 28px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-xs);
}
.rating-stars {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 2px;
}
.rating-text {
    font-size: 15px;
    color: var(--text-2);
}
.rating-text strong {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
    font-size: 17px;
}
.rating-sub {
    color: var(--text-3);
    font-size: 13px;
    margin-left: 6px;
}

/* ==================== PRICING ==================== */
.pricing-section { padding: 100px 0; }

/* === TRIAL HERO — único foco visual === */
.trial-hero {
    position: relative;
    max-width: 920px;
    margin: 0 auto 64px;
    padding: 56px 56px 48px;
    background: linear-gradient(180deg, #ffffff 0%, #FCFBF5 100%);
    border: 2px solid var(--green);
    border-radius: 32px;
    box-shadow: 0 0 0 8px rgba(37,211,102,0.06), 0 30px 80px rgba(37,211,102,0.18), var(--shadow-lg);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.trial-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}
.trial-hero-glow-1 {
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(37,211,102,0.32), transparent 70%);
}
.trial-hero-glow-2 {
    bottom: -120px; left: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(20,184,166,0.22), transparent 70%);
}
.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.trial-badge-dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: trial-pulse 2s ease-in-out infinite;
}
@keyframes trial-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.trial-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 16px;
}
.trial-sub {
    font-size: 17px;
    color: var(--text-2);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.55;
}
.trial-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 680px;
    margin: 0 auto 32px;
}
.trial-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 14px 20px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: var(--shadow-xs);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.trial-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--tile-tint, transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.trial-tile:hover {
    transform: translateY(-4px);
    border-color: var(--tile-color, var(--green));
    box-shadow: 0 12px 28px var(--tile-shadow, rgba(37,211,102,0.16));
}
.trial-tile:hover::before { opacity: 0.06; }
.trial-tile[data-cat="alert"]  { --tile-color: #F59E0B; --tile-tint: #F59E0B; --tile-shadow: rgba(245,158,11,0.20); }
.trial-tile[data-cat="money"]  { --tile-color: #25D366; --tile-tint: #25D366; --tile-shadow: rgba(37,211,102,0.20); }
.trial-tile[data-cat="list"]   { --tile-color: #14B8A6; --tile-tint: #14B8A6; --tile-shadow: rgba(20,184,166,0.20); }
.trial-tile[data-cat="notes"]  { --tile-color: #3B82F6; --tile-tint: #3B82F6; --tile-shadow: rgba(59,130,246,0.20); }
.trial-tile[data-cat="audio"]  { --tile-color: #8B5CF6; --tile-tint: #8B5CF6; --tile-shadow: rgba(139,92,246,0.20); }
.trial-tile[data-cat="image"]  { --tile-color: #EC4899; --tile-tint: #EC4899; --tile-shadow: rgba(236,72,153,0.20); }
.trial-tile[data-cat="search"] { --tile-color: #06B6D4; --tile-tint: #06B6D4; --tile-shadow: rgba(6,182,212,0.20); }
.trial-tile[data-cat="panel"]  { --tile-color: #0D9488; --tile-tint: #0D9488; --tile-shadow: rgba(13,148,136,0.20); }
.trial-tile[data-cat="memory"] { --tile-color: #EF4444; --tile-tint: #EF4444; --tile-shadow: rgba(239,68,68,0.20); }
.tile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--tile-bg, rgba(37,211,102,0.10));
    border-radius: 14px;
    transition: transform 0.25s ease;
}
.trial-tile[data-cat="alert"]  .tile-icon { background: rgba(245,158,11,0.12); }
.trial-tile[data-cat="money"]  .tile-icon { background: rgba(37,211,102,0.12); }
.trial-tile[data-cat="list"]   .tile-icon { background: rgba(20,184,166,0.12); }
.trial-tile[data-cat="notes"]  .tile-icon { background: rgba(59,130,246,0.12); }
.trial-tile[data-cat="audio"]  .tile-icon { background: rgba(139,92,246,0.12); }
.trial-tile[data-cat="image"]  .tile-icon { background: rgba(236,72,153,0.12); }
.trial-tile[data-cat="search"] .tile-icon { background: rgba(6,182,212,0.12); }
.trial-tile[data-cat="panel"]  .tile-icon { background: rgba(13,148,136,0.12); }
.trial-tile[data-cat="memory"] .tile-icon { background: rgba(239,68,68,0.12); }
.trial-tile:hover .tile-icon { transform: scale(1.08) rotate(-4deg); }
.tile-icon span {
    font-size: 26px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(15,23,42,0.10));
}
.tile-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.005em;
}
.trial-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(37,211,102,0.14), rgba(20,184,166,0.10));
    border: 1px solid rgba(37,211,102,0.32);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14.5px;
    box-shadow: 0 4px 14px rgba(37,211,102,0.10);
}
.trial-highlight-emo {
    font-size: 18px;
    line-height: 1;
}
.trial-highlight strong { font-weight: 800; }
.trial-highlight sup {
    font-size: 0.7em;
    color: var(--text-3);
    vertical-align: super;
    line-height: 0;
}
.btn-trial-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 18px 40px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px rgba(37,211,102,0.40), 0 0 0 4px rgba(37,211,102,0.10) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.btn-trial-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37,211,102,0.50), 0 0 0 6px rgba(37,211,102,0.14) !important;
}
.btn-trial-cta .btn-arrow {
    transition: transform 0.2s ease;
    font-weight: 700;
}
.btn-trial-cta:hover .btn-arrow {
    transform: translateX(4px);
}
.trial-fineprint {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-3);
    font-weight: 500;
}

/* === PLANS — informativos, sem CTAs === */
.plans-section {
    max-width: 1000px;
    margin: 0 auto 36px;
}
.plans-header {
    text-align: center;
    margin-bottom: 28px;
}
.plans-after-icon {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 8px;
}
.plans-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}
.plans-sub {
    font-size: 14px;
    color: var(--text-3);
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.plan-mini {
    position: relative;
    padding: 26px 24px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-xs);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plan-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}
.plan-mini-highlight {
    border: 2px solid var(--green);
    background: linear-gradient(180deg, #fff 0%, #FCFBF5 100%);
    box-shadow: 0 0 0 4px rgba(37,211,102,0.10), var(--shadow-sm);
}
.plan-mini-badge {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
    white-space: nowrap;
}
.plan-mini-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.plan-mini-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 10px;
}
.plan-mini-price .cur {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
}
.plan-mini-price .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-left: 2px;
}
.plan-mini-price .cents {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    align-self: flex-start;
    margin-top: 4px;
}
.plan-mini-price .per {
    font-size: 13px;
    color: var(--text-3);
    margin-left: 4px;
    font-weight: 500;
}
.plan-mini-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--green-deep);
    background: rgba(37,211,102,0.10);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}
.plan-mini-list {
    list-style: none;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.plan-mini-list li {
    font-size: 13.5px;
    color: var(--text);
    padding-left: 22px;
    position: relative;
    line-height: 1.4;
}
.plan-mini-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 5px;
    width: 14px; height: 14px;
    background: rgba(37,211,102,0.15);
    border-radius: 50%;
}
.plan-mini-list li::after {
    content: '';
    position: absolute;
    left: 4px; top: 7px;
    width: 4px; height: 7px;
    border: solid var(--green-deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.plan-mini-list sup {
    font-size: 0.7em;
    color: var(--text-3);
    vertical-align: super;
    line-height: 0;
}

/* === DISCLAIMER (amarelo, enxuto) === */
.pricing-disclaimer {
    max-width: 560px;
    margin: 0 auto 16px;
    padding: 6px 12px;
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 8px;
    font-size: 11.5px;
    color: #78350F;
    line-height: 1.5;
    text-align: center;
}
.pricing-disclaimer strong {
    color: #78350F;
    font-weight: 700;
}

/* === GARANTIA === */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 600px;
    margin: 0 auto;
    padding: 16px 24px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-2);
    text-align: center;
    box-shadow: var(--shadow-xs);
}
.guarantee-icon { font-size: 24px; flex-shrink: 0; }
.pricing-guarantee strong { color: var(--text); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .trial-hero {
        padding: 40px 28px 36px;
        border-radius: 24px;
    }
    .trial-title { font-size: 34px; }
    .trial-sub { font-size: 15px; margin-bottom: 32px; }
    .trial-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .tile-icon { width: 44px; height: 44px; border-radius: 12px; }
    .tile-icon span { font-size: 22px; }
    .tile-label { font-size: 12px; }
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .trial-hero { padding: 32px 20px; }
    .trial-title { font-size: 28px; }
    .trial-gallery { gap: 8px; }
    .trial-tile { padding: 16px 8px; gap: 8px; }
    .tile-icon { width: 40px; height: 40px; }
    .tile-icon span { font-size: 20px; }
    .tile-label { font-size: 11.5px; }
    .btn-trial-cta { padding: 16px 28px !important; font-size: 15px !important; }
    .trial-highlight { font-size: 13px; padding: 10px 16px; }
}

/* ==================== FAQ ==================== */
.faq-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.40);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--surface-2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s ease;
}
.faq-item[open] {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20,184,166,0.08), var(--shadow-sm);
}
.faq-item summary {
    list-style: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-deep); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.2s;
}
.faq-item[open] .faq-icon {
    background: var(--teal);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.65;
    animation: faqIn 0.3s ease;
}
.faq-answer p { margin: 0; }
@keyframes faqIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== FINAL CTA ==================== */
.final-cta { padding: 100px 0; }
.cta-card {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37,211,102,0.30), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(20,184,166,0.30), transparent 50%);
    pointer-events: none;
}
.cta-content { position: relative; }
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}
.cta-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: #fff;
}
.cta-title .title-accent {
    background: linear-gradient(135deg, #5eead4, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.cta-actions {
    margin-bottom: 24px;
}
.cta-foot {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 64px 0 32px;
    background: rgba(255, 255, 255, 0.50);
    border-top: 1px solid var(--border-soft);
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand p {
    margin-top: 16px;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

/* Footer enxuto — brand centralizado + nav horizontal */
.footer-brand-centered {
    text-align: center;
    margin-bottom: 28px;
}
.footer-brand-centered .nav-logo {
    display: inline-flex;
    justify-content: center;
}
.footer-brand-centered p {
    margin: 14px auto 0;
    max-width: 480px;
}
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin-bottom: 36px;
    font-size: 14px;
}
.footer-nav a {
    color: var(--text-2);
    transition: color 0.15s;
    padding: 4px 2px;
}
.footer-nav a:hover { color: var(--teal-deep); }
.footer-nav-sep {
    color: var(--text-muted);
    user-select: none;
}
@media (max-width: 640px) {
    .footer-nav { gap: 4px 12px; font-size: 13px; }
    .footer-nav-sep { display: none; }
}
.footer-col h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--text);
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-2);
    padding: 4px 0;
    transition: color 0.15s;
}
.footer-col a:hover { color: var(--teal-deep); }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-3);
}
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    height: 36px;
    padding: 0 14px 0 12px;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-2);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}
.footer-social-handle { line-height: 1; }

/* ==================== REVEAL ==================== */
.reveal,
.reveal-phone {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in,
.reveal-phone.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal-phone.in { transition-duration: 0.8s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-phone-wrap { order: -1; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat-divider { display: none; }

    .pain-card { width: 320px; }

    .demo-wrapper { grid-template-columns: 1fr; }
    .demo-phone-wrap { order: -1; }

    .bento-grid { grid-template-columns: repeat(2, 1fr); }

    .dashboard { grid-template-columns: 1fr; height: auto; max-height: 600px; overflow: hidden; }
    .dash-side { display: none; }
    .dash-kpis { grid-template-columns: repeat(2, 1fr); }
    .dash-row { grid-template-columns: 1fr; }
    .macbook-base { display: none; }
    .macbook { transform: none; padding: 0 8px; }
    .macbook-screen {
        border-radius: 36px 36px 36px 36px;
        padding: 14px;
        margin: 0 auto;
        max-width: 380px;
    }
    .macbook-camera {
        width: 60px;
        height: 16px;
        background: #000;
        border-radius: 999px;
        top: 12px;
    }
    .dashboard { border-radius: 22px; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card-highlight { transform: none; }
    .price-card-highlight:hover { transform: translateY(-4px); }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .nav-inner { position: relative; }
    .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        padding: 8px;
        border: 1px solid var(--border-soft);
        border-radius: 18px;
        box-shadow: 0 16px 48px -8px rgba(15, 23, 42, 0.16), 0 4px 12px -2px rgba(15, 23, 42, 0.08);
        gap: 2px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
        text-align: left;
        border-radius: 10px;
    }
    .nav-toggle { display: flex; }
    .nav-toggle span {
        transition: transform 0.25s ease, opacity 0.2s ease;
        transform-origin: center;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .how-arrow { display: none; }
    .how-steps { flex-direction: column; }
}

/* Tablet: chips render as inline row below phone (managed by JS) */
@media (min-width: 601px) and (max-width: 1100px) {
    .phone-shadow { display: none !important; }
    .hero-phone-wrap {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    .floating-chips-host.mobile-inline {
        margin-top: 24px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .hero-container { grid-template-columns: minmax(0, 1fr); }
    .hero-content { min-width: 0; }
    .hero-phone-wrap .phone { max-width: 100%; }
    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 36px; }
    .pain-card { width: 280px; }
    .pain-quote { font-size: 16px; }
    .bento-grid { grid-template-columns: 1fr; }
    .painel-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-card { padding: 48px 24px; }
    .cta-actions .btn { max-width: 100%; white-space: normal; }
    .cta-actions .btn svg { flex-shrink: 0; }
    .demo-wrapper { grid-template-columns: minmax(0, 1fr); }
    .demo-stage, .demo-phone-wrap { min-width: 0; }
    .phone-demo { max-width: 100%; }
    .cta-foot { gap: 12px; flex-direction: column; }

    /* Mobile: chips inline row below phone */
    .phone-shadow { display: none !important; }
    .hero-phone-wrap {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    .floating-chips-host.mobile-inline {
        margin-top: 20px;
        width: 100%;
    }
    .floating-chip.inline {
        font-size: 11px;
        padding: 6px 11px;
        gap: 6px;
    }
    .floating-chip.inline .chip-icon { font-size: 12px; }
}

@media (max-width: 360px) {
    .nav-inner { gap: 8px; padding-left: 12px; }
    .nav-cta .btn-sm { padding: 10px 12px; font-size: 12px; }
}
