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

:root {
    /* Nexos Chumbo & Purple Identity */
    --bg: #0f0f12; /* Deep Chumbo background */
    --bg2: #1a1a1e;
    --bg3: #232328;
    --card: #1a1a1e;
    --white: #FFFFFF;
    --black: #000000;
    --purple: #8B3CF7;
    --purple-light: #B280FF;
    --purple-dark: #6D28D9;
    --purple-glow: rgba(139, 60, 247, 0.15);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);
    --text-main: #F5F5F7;
    --text-muted: #A1A1AA;
    --text-faint: #71717A;
    --glass: rgba(15, 15, 18, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --success-green: #2ecc71;
}

.light-theme {
    /* Keeping a light theme fallback if needed */
    --bg: #FAFAFB;
    --bg2: #F1F1F4;
    --bg3: #E9E9ED;
    --card: #FFFFFF;
    --white: #FFFFFF;
    --black: #0F0F11;
    --text-main: #1A1A1E;
    --text-muted: #646470;
    --text-faint: #9494A0;
    --border: rgba(0, 0, 0, 0.05);
    --border-strong: rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.4);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

/* modern grid background */
body::before {
    display: none;
}


/* ── NAV ─────────────────────────────── */
nav {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    width: 90%;
    max-width: 1000px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 80px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

nav.scrolled {
    width: 80%;
    max-width: 800px;
    padding: 0.6rem 1.2rem;
    top: 1rem;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-main);
    z-index: 1001;
}

.logo span {
    color: var(--purple);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

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

.nav-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1001;
}

.btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
}

.btn-purple {
    background: var(--purple);
    color: white;
}

.btn-purple:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px var(--purple-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
    background: var(--bg2);
    border-color: var(--text-main);
}

/* ── HERO ────────────────────────────── */
/* ── HERO REVAMP ─────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10rem 4% 6rem;
    background: radial-gradient(circle at 50% -20%, var(--purple-glow), transparent 60%);
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 4rem;
}

.purple-gradient {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-purple-glow {
    background: var(--purple);
    color: white;
    box-shadow: 0 10px 30px -10px var(--purple);
}

.btn-purple-glow:hover {
    transform: translateY(-2px);
    background: var(--purple-dark);
    box-shadow: 0 15px 40px -10px var(--purple);
}

.hero-visual {
    width: 100%;
    max-width: 1100px;
    perspective: 1000px;
}

.mockup-frame {
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background: var(--glass-border);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.2);
    transform: rotateX(10deg) translateY(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 6s ease-in-out infinite;
}

.mockup-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.mockup-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(139, 60, 247, 0.15), transparent 75%);
    z-index: -1;
    opacity: 0.8;
}

@keyframes float {

    0%,
    100% {
        transform: rotateX(10deg) translateY(0);
    }

    50% {
        transform: rotateX(12deg) translateY(-20px);
    }
}

.hero {
    background: radial-gradient(circle at 50% -20%, rgba(139, 60, 247, 0.04), transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--purple-glow);
    border: 1px solid rgba(139, 60, 247, 0.2);
    color: var(--purple-light);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

h1 .purple {
    color: var(--purple)
}

h1 .dim {
    color: var(--faint)
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--off);
    font-weight: 300;
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    justify-content: center;
}

.avatars {
    display: flex
}

.av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg2);
    border: 2px solid var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.av:first-child {
    margin-left: 0
}

.social-txt {
    font-size: 0.8rem;
    color: var(--faint);
    font-family: 'Outfit', sans-serif
}

.social-txt strong {
    color: var(--text-main);
    font-weight: 600
}

/* ── MARQUEE ─────────────────────────── */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.875rem 0;
    background: var(--bg2);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Outfit', sans-serif;
}

.marquee-item::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.8;
}

/* ── SECTIONS ─────────────────────────── */
.section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 6rem 2rem
}

.eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple3);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
}

h2 .purple {
    color: var(--purple)
}

h2 .dim {
    color: var(--faint)
}

.lead {
    font-size: 1rem;
    color: var(--off);
    font-weight: 300;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 3rem
}

/* ── CARDS ──────────────────────────── */
/* ── BENTO GRID ─────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    border-color: var(--purple-light);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.bento-1-3 {
    grid-column: span 4;
}

.bento-2-3 {
    grid-column: span 8;
}

.bento-full {
    grid-column: span 12;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pain-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--purple-glow);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
}

.pain-icon {
    margin-bottom: 1.5rem;
}

.pain-icon i {
    width: 48px;
    height: 48px;
    color: var(--purple);
}

.pain-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em
}

.pain-desc {
    font-size: 0.84rem;
    color: var(--faint);
    line-height: 1.65;
    font-weight: 300
}

/* ── APP SHOWCASE ────────────────────── */
.showcase-wrap {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.showcase-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.app-window {
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 40px 80px rgba(0, 0, 0, 0.12), 0 0 60px rgba(139, 60, 247, 0.06);
}

.window-bar {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dots {
    display: flex;
    gap: 5px
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.dot-r {
    background: #FF5F57
}

.dot-y {
    background: #FEBC2E
}

.dot-g {
    background: #28C840
}

.url-bar {
    flex: 1;
    margin: 0 0.875rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    color: var(--faint);
    font-family: monospace;
}

.win-btns {
    display: flex;
    gap: 0.4rem
}

.win-btn {
    font-size: 0.65rem;
    color: var(--faint);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.03);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.win-btn.act {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    font-weight: 700
}

.window-body {
    padding: 1.5rem
}

.win-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.win-sub {
    font-size: 0.72rem;
    color: var(--faint);
    text-align: center;
    margin-bottom: 1.25rem;
    font-family: 'Outfit', sans-serif
}

.win-search {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 0.55rem 1rem;
    margin-bottom: 1.25rem;
    background: rgba(0, 0, 0, 0.04);
}

.s-icon {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1.5px solid var(--faint);
    position: relative;
    flex-shrink: 0;
}

.s-icon::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 4px;
    height: 1.5px;
    background: var(--faint);
    transform: rotate(45deg);
    border-radius: 2px;
}

.win-search span {
    font-size: 0.75rem;
    color: var(--faint);
    font-family: 'Outfit', sans-serif
}

.brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem
}

.brand-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 0.55rem 0.75rem;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}

.brand-pill:hover {
    border-color: rgba(139, 60, 247, 0.5);
    background: rgba(139, 60, 247, 0.06)
}

.bp-left {
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.bp-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--purple-dk);
    border: 1px solid rgba(139, 60, 247, 0.2);
    font-size: 0.55rem;
    font-weight: 800;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
}

.bp-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Outfit', sans-serif
}

.bp-sub {
    font-size: 0.6rem;
    color: var(--faint);
    font-family: 'Outfit', sans-serif
}

.bp-arrow {
    font-size: 0.6rem;
    color: var(--faint)
}

/* showcase text */
.showcase-text .eyebrow {
    margin-bottom: 0.75rem
}

.showcase-text h2 {
    margin-bottom: 1rem
}

.showcase-text .lead {
    margin-bottom: 2rem
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem
}

.feat-row {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    transition: border-color .2s, background .2s;
    cursor: default;
}

.feat-row:hover {
    border-color: rgba(139, 60, 247, 0.3);
    background: rgba(139, 60, 247, 0.04)
}

.feat-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    background: var(--purple-glow);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-ico i {
    width: 22px;
    height: 22px;
}

.feat-body .feat-t {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em
}

.feat-body .feat-d {
    font-size: 0.8rem;
    color: var(--faint);
    font-weight: 300;
    line-height: 1.5
}

/* ── COMPARISON ──────────────────────── */
.comp-section {
    background: var(--bg2);
    padding: 6rem 2rem
}

.comp-inner {
    max-width: 1140px;
    margin: 0 auto
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 3rem;
}

.comp-table th {
    padding: 1rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--bg3);
    color: var(--faint);
    border-bottom: 1px solid var(--border);
    font-family: 'Outfit', sans-serif;
}

.comp-table th.col-us {
    background: var(--purple-dk);
    color: var(--purple);
    border-bottom: 1px solid rgba(139, 60, 247, 0.2);
}

.comp-table td {
    padding: 0.875rem 1.25rem;
    font-size: 0.84rem;
    border-bottom: 1px solid var(--border);
    color: var(--off);
    vertical-align: middle;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.comp-table tr:last-child td {
    border-bottom: none
}

.comp-table td.col-us {
    color: var(--purple);
    font-weight: 600;
    background: rgba(139, 60, 247, 0.04)
}

.tick {
    color: var(--purple3)
}

.cross {
    color: #FF5F57
}

.dash {
    color: var(--faint)
}

/* ── TESTIMONIALS ────────────────────── */
.testi-section {
    padding: 6rem 2rem
}

.testi-inner {
    max-width: 1140px;
    margin: 0 auto
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color .2s, transform .2s;
}

.testi-card:hover {
    border-color: rgba(139, 60, 247, 0.3);
    transform: translateY(-2px)
}

.testi-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.875rem
}

.testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--purple-dk);
    border: 1px solid rgba(139, 60, 247, 0.2);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.testi-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em
}

.testi-role {
    font-size: 0.72rem;
    color: var(--faint);
    font-family: 'Outfit', sans-serif
}

.testi-text {
    font-size: 0.84rem;
    color: var(--off);
    line-height: 1.65;
    font-weight: 300
}

/* stars */
.stars {
    color: var(--purple);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px
}

/* ── PRICING ─────────────────────────── */
.pricing-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 2rem;
}

.pricing-inner {
    max-width: 1140px;
    margin: 0 auto
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem
}

.plan-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, transform .2s;
    position: relative;
}

.plan-card:hover {
    border-color: var(--border2);
    transform: translateY(-2px)
}

.plan-card.featured {
    background: linear-gradient(145deg, rgba(139, 60, 247, 0.08), rgba(139, 60, 247, 0.03));
    border: 1px solid rgba(139, 60, 247, 0.35);
    box-shadow: 0 0 40px rgba(139, 60, 247, 0.08);
}

.plan-top-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.875rem;
    border-radius: 20px;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}

.plan-name {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.plan-card.featured .plan-name {
    color: rgba(121, 40, 224, 0.6)
}

.plan-price {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-faint);
}

.plan-card.featured .plan-price {
    color: var(--purple3)
}

.plan-period {
    font-size: 0.78rem;
    color: var(--faint);
    margin-bottom: 1.75rem;
    font-weight: 300;
    font-family: 'Outfit', sans-serif
}

.plan-div {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 1.25rem
}

.plan-card.featured .plan-div {
    border-color: rgba(139, 60, 247, 0.2)
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    margin-bottom: 1.75rem
}

.plan-feats li {
    font-size: 0.84rem;
    color: var(--off);
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.45;
    font-family: 'Outfit', sans-serif;
}

.plan-feats li::before {
    content: '✓';
    color: var(--purple3);
    font-weight: 800;
    flex-shrink: 0
}

.plan-cta {
    display: block;
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all .18s;
    letter-spacing: 0.02em;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border2);
}

.plan-cta:hover {
    background: #111;
    color: #fff;
    border-color: #111
}

.plan-card.featured .plan-cta {
    background: var(--purple);
    color: #fff;
    border-color: transparent
}

.plan-card.featured .plan-cta:hover {
    background: var(--purple2);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(139, 60, 247, 0.4)
}

/* ── FINAL CTA ───────────────────────── */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 450px;
    background: radial-gradient(ellipse at top, rgba(139, 60, 247, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cta-inner h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.cta-inner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap
}

.cta-note {
    font-size: 0.75rem;
    color: var(--faint);
    margin-top: 1.25rem;
    font-family: 'Outfit', sans-serif
}

/* ── FOOTER ──────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
}

.foot-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.foot-logo span {
    color: var(--purple)
}

footer p {
    font-size: 0.78rem;
    color: var(--faint);
    font-family: 'Outfit', sans-serif
}

footer a {
    color: var(--faint);
    text-decoration: none;
    transition: color .15s;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem
}

footer a:hover {
    color: var(--white)
}

/* ── ANIMATIONS ──────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-badge {
    animation: fadeUp .45s ease both
}

h1 {
    animation: fadeUp .5s .07s ease both
}

.hero-sub {
    animation: fadeUp .5s .14s ease both
}

.hero-ctas {
    animation: fadeUp .5s .21s ease both
}

.social-row {
    animation: fadeUp .5s .28s ease both
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 860px) {
    nav {
        top: 1rem;
        width: 95%;
        padding: 0.5rem 1rem;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .nav-links {
        position: fixed;
        top: 4.5rem;
        right: 2.5%;
        width: 95%;
        height: auto;
        background: var(--card);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        border-radius: 20px;
        border: 1px solid var(--border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--text-main);
    }

    .mobile-toggle {
        display: block;
    }

    .nav-btns {
        display: none;
    }

    h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section {
        padding: 5rem 5%;
    }

    .mockup-frame {
        transform: rotateX(0deg) !important;
        animation: none !important;
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .plan-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 4rem 1.25rem
    }

    .comp-section,
    .pricing-section,
    .testi-section,
    .cta-section {
        padding: 4rem 1.25rem
    }

    footer {
        flex-direction: column;
        gap: .75rem;
        text-align: center
    }
}

/* ── NOVOS ESTILOS ───────────────────── */

/* Pain stat */
.pain-stat {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.pain-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FF5F57;
    line-height: 1;
}

.pain-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
}

/* ── NOVAS REGRAS RESPONSIVAS ──────────────────────── */
.demo-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.demo-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

@media (max-width: 992px) {

    .demo-section-grid,
    .demo-page-grid {
        grid-template-columns: 1fr;
        gap: 4rem !important;
    }

    .bento-1-3,
    .bento-2-3,
    .bento-full {
        grid-column: span 12;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .demo-app {
        width: 100% !important;
        max-width: 100%;
        padding: 1rem;
    }

    .demo-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .social-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .bento-card {
        padding: 1.5rem;
    }

    .plan-feats {
        margin-bottom: 2rem !important;
    }
}

/* Plan badges */
.plan-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
}

.plan-badge.popular {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
}

.plan-feats li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feat-check {
    width: 16px;
    height: 16px;
    color: var(--purple);
    flex-shrink: 0;
}

.plan-note {
    font-size: 0.75rem;
    color: var(--text-faint);
    text-align: center;
    margin-top: 1rem;
    font-family: 'Outfit', sans-serif;
}

/* Counter animation */
.counter {
    display: inline-block;
    font-weight: 700;
    color: var(--purple);
}

/* Toast notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--purple-glow);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.toast-time {
    font-size: 0.75rem;
    color: var(--text-faint);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    border-color: rgba(139, 60, 247, 0.3);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: linear-gradient(145deg, rgba(139, 60, 247, 0.08), rgba(139, 60, 247, 0.03));
    border: 1px solid rgba(139, 60, 247, 0.35);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--purple-glow);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.testimonial-business {
    font-size: 0.8rem;
    color: var(--text-faint);
    font-family: 'Outfit', sans-serif;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(139, 60, 247, 0.1);
    border-radius: 8px;
}

.testimonial-result i {
    width: 16px;
    height: 16px;
    color: var(--purple);
}

.testimonial-result span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple);
    font-family: 'Outfit', sans-serif;
}

/* Demo section */
.demo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.demo-phone {
    width: 280px;
    background: var(--bg3);
    border-radius: 24px;
    padding: 1rem;
    border: 1px solid var(--border);
}

.demo-screen {
    background: #E5DDD5;
    border-radius: 16px;
    overflow: hidden;
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #075E54;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.demo-header span {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.demo-header i {
    width: 20px;
    height: 20px;
    color: white;
    opacity: 0.8;
}

.demo-chat {
    padding: 1rem;
    min-height: 150px;
}

.demo-message {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 0 12px 12px 12px;
    max-width: 85%;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.demo-message p {
    font-size: 0.85rem;
    color: #111;
    margin: 0;
}

.demo-time {
    font-size: 0.65rem;
    color: var(--text-faint);
    display: block;
    margin-top: 0.25rem;
    text-align: right;
}

.demo-typing {
    display: flex;
    gap: 4px;
    padding: 0.5rem;
}

.demo-typing span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.demo-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.demo-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

.demo-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.demo-arrow i {
    width: 32px;
    height: 32px;
    color: var(--purple);
    animation: pulse 2s infinite;
}

.demo-arrow span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: translateX(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(5px);
    }
}

.demo-app {
    width: 350px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.demo-search-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.demo-search-box i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.demo-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
}

.demo-cursor {
    color: var(--purple);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.demo-results {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.demo-results.show {
    opacity: 1;
    transform: translateY(0);
}

.demo-product {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg2);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.demo-product-img {
    width: 60px;
    height: 60px;
    background: var(--bg3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-product-img i {
    width: 28px;
    height: 28px;
    color: var(--text-muted);
}

.demo-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-product-ref {
    font-size: 0.75rem;
    color: var(--text-faint);
    font-family: 'Outfit', sans-serif;
}

.demo-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.demo-product-price {
    font-size: 0.9rem;
    color: var(--purple);
    font-weight: 600;
}

.demo-product-photos {
    display: flex;
    gap: 0.5rem;
}

.demo-photo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3a3a40, #252528);
    border-radius: 8px;
}

.demo-photo.more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg3);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Loading state for buttons */
.plan-cta.loading {
    position: relative;
    color: transparent !important;
}

.plan-cta.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--text-main);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive for new sections */
@media (max-width: 860px) {
    .pain-stat {
        flex-direction: column;
        align-items: flex-start;
    }

    .pain-number {
        font-size: 2.5rem;
    }

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

    .demo-container {
        flex-direction: column;
    }

    .demo-phone,
    .demo-app {
        width: 100%;
        max-width: 350px;
    }

    .toast-notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* ── ADDITIONAL POLISH ──────────────── */

.feat-check {
    width: 18px;
    height: 18px;
    color: var(--purple);
    flex-shrink: 0;
}

#sharing .feat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    gap: 1rem;
    transition: all 0.3s ease;
}

#tecnologia ul.plan-feats li {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cta-section .eyebrow {
    color: white;
    opacity: 0.7;
}

.hero-visual .pain-label {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}