/* ══════════════════════════════════════════════════════════════════════════════
   INTAPRICE AI — Landing Page Styles
   ══════════════════════════════════════════════════════════════════════════════ */

html {
    scroll-padding-top: 88px;
    overflow-x: hidden;
}

/* Landing page only — kill horizontal scroll from marquees, transforms, decorations */
body.landing-page {
    margin: 0;
    overflow-x: hidden;
    max-width: 100%;
}

body.landing-page > nav,
body.landing-page > .site-main,
body.landing-page > footer {
    max-width: 100%;
    box-sizing: border-box;
}

body.landing-page .site-main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    display: block;
}

body.landing-page .section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
    box-sizing: border-box;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr auto;
    align-items: center;
    gap: 24px;
    max-width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    justify-self: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-light);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 160px;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 208, 132, 0.2);
    top: -100px;
    left: -100px;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(108, 99, 255, 0.15);
    bottom: -100px;
    right: -100px;
}

.hero-orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    top: 10%;
    right: 20%;
    animation: float 8s ease-in-out infinite alternate;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 208, 132, 0.1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, rgba(108, 99, 255, 0.1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, rgba(255, 107, 107, 0.05) 0, transparent 50%);
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.hero-content {
    min-width: 0;
    max-width: 36rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
    align-items: center;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── Hero Visual ───────────────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    min-width: 0;
    justify-self: center;
    width: 100%;
    max-width: min(340px, 100%);
    overflow: visible;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 40px 100px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    z-index: 3;
    pointer-events: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wa-header {
    background: #075E54;
    padding: 40px 16px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.wa-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.wa-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-messages {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: 200px;
}

.wa-msg {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wa-msg.received {
    align-self: flex-start;
}

.wa-msg.sent {
    align-self: flex-end;
}

.wa-bubble {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    line-height: 1.4;
}

.received .wa-bubble {
    background: white;
    color: black;
    border-top-left-radius: 2px;
}

.sent .wa-bubble {
    background: #DCF8C6;
    color: black;
    border-top-right-radius: 2px;
}

.wa-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    align-self: flex-end;
}

.wa-input {
    padding: 12px;
    background: #F0F2F5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-input-field {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.wa-send {
    width: 40px;
    height: 40px;
    background: #00A884;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.float-card {
    position: absolute;
    background: rgba(10, 14, 26, 0.4);
    backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: min(240px, 85vw);
}

.float-card-1 {
    top: 15%;
    right: 0;
    animation: float 5s ease-in-out infinite;
}

.float-card-2 {
    bottom: 15%;
    left: 0;
    animation: float 6s ease-in-out infinite reverse;
}

.float-icon {
    font-size: 1.2rem;
}

.float-val {
    font-weight: 700;
    color: white;
    font-size: 0.9375rem;
}

.float-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ── Trust Bar ─────────────────────────────────────────────────────────── */
.trust-bar {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: hidden;
    box-sizing: border-box;
}

.trust-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 30px)); }
}

.trust-bar .container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.trust-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* ── Features ───────────────────────────────────────────────────────────── */
.section-header {
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.text-center h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-wrap: balance;
}

.section-header.text-center .section-tag {
    vertical-align: middle;
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 208, 132, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-desc {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 24px;
}

.feature-card {
    grid-column: span 4;
    min-width: 0;
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.feature-card-large {
    grid-column: span 8;
}

.feature-card-wide {
    grid-column: span 12;
}

.glass-card {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-8px) scale(1.01);
}

/* Feature specific glow colors */
.feature-card:nth-child(1):hover { border-color: rgba(0, 208, 132, 0.4); box-shadow: 0 20px 60px rgba(0, 208, 132, 0.1); }
.feature-card:nth-child(2):hover { border-color: rgba(108, 99, 255, 0.4); box-shadow: 0 20px 60px rgba(108, 99, 255, 0.1); }
.feature-card:nth-child(3):hover { border-color: rgba(255, 107, 107, 0.4); box-shadow: 0 20px 60px rgba(255, 107, 107, 0.1); }
.feature-card:nth-child(4):hover { border-color: rgba(37, 211, 102, 0.4); box-shadow: 0 20px 60px rgba(37, 211, 102, 0.1); }
.feature-card:nth-child(5):hover { border-color: rgba(96, 165, 250, 0.4); box-shadow: 0 20px 60px rgba(96, 165, 250, 0.1); }
.feature-card:nth-child(6):hover { border-color: rgba(255, 184, 48, 0.4); box-shadow: 0 20px 60px rgba(255, 184, 48, 0.1); }


.feature-card-large {
    grid-column: span 8;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 14, 26, 0.2) 100%);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

/* .text-gradient on wrapper made child <i> inherit transparent fill — icons disappeared */
.feature-icon.text-gradient {
    background: rgba(255, 255, 255, 0.03);
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.feature-icon.text-gradient > i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.08);
}


.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.feature-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

/* ── Feature card: WhatsApp-style chat preview ───────────────────────────── */
.feature-wa-chat {
    --wa-chat-bg: #0b141a;
    --wa-chat-pattern: rgba(134, 150, 160, 0.08);
    --wa-incoming: #202c33;
    --wa-outgoing: #005c4b;
    --wa-out-shadow: rgba(0, 0, 0, 0.25);
    --wa-typing: #202c33;
    --wa-text-in: #e9edef;
    --wa-text-out: #e9edef;
    --wa-time: rgba(255, 255, 255, 0.5);
    background: var(--wa-chat-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    min-height: 220px;
}

.feature-wa-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #202c33;
    border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.feature-wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(145deg, #00a884, #006b5e);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-wa-topbar-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.feature-wa-topbar-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e9edef;
}

.feature-wa-topbar-sub {
    font-size: 0.68rem;
    color: #8696a0;
}

.feature-wa-body {
    padding: 12px 10px 14px;
    min-height: 168px;
    background-color: var(--wa-chat-bg);
    background-image: radial-gradient(circle at 25% 20%, var(--wa-chat-pattern) 0%, transparent 42%),
        radial-gradient(circle at 80% 60%, var(--wa-chat-pattern) 0%, transparent 38%),
        radial-gradient(circle at 50% 100%, var(--wa-chat-pattern) 0%, transparent 45%);
    position: relative;
}

.feature-wa-body::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        125deg,
        transparent,
        transparent 52px,
        rgba(134, 150, 160, 0.018) 52px,
        rgba(134, 150, 160, 0.018) 53px
    );
    pointer-events: none;
}

.demo-chat-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.demo-wa-row {
    display: flex;
    width: 100%;
    opacity: 0;
    transform: translateY(14px) scale(0.94);
    transition:
        opacity 0.38s cubic-bezier(0.25, 0.9, 0.35, 1),
        transform 0.45s cubic-bezier(0.25, 0.9, 0.35, 1);
}

.demo-wa-incoming {
    transform-origin: bottom left;
    justify-content: flex-start;
}

.demo-wa-outgoing,
.demo-wa-typing-row {
    transform-origin: bottom right;
    justify-content: flex-end;
}

.demo-wa-row.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.demo-wa-bubble-wrap {
    max-width: 88%;
}

.demo-wa-bubble {
    border-radius: 8px;
    position: relative;
    box-shadow: 0 1px 0.5px var(--wa-out-shadow);
}

.demo-wa-bubble-in {
    background: var(--wa-incoming);
    color: var(--wa-text-in);
    border-top-left-radius: 2px;
    padding: 6px 10px 5px 10px;
}

.demo-wa-bubble-out {
    background: var(--wa-outgoing);
    color: var(--wa-text-out);
    border-top-right-radius: 2px;
    padding: 6px 8px 5px 10px;
}

.demo-wa-bubble-in::before,
.demo-wa-bubble-out::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    filter: drop-shadow(0 1px 0.5px var(--wa-out-shadow));
}

.demo-wa-bubble-in::before {
    left: -4px;
    border-right-color: var(--wa-incoming);
    border-bottom: none;
    border-left: none;
}

.demo-wa-bubble-out::before {
    right: -4px;
    border-left-color: var(--wa-outgoing);
    border-bottom: none;
    border-right: none;
}

.demo-wa-text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.42;
    font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, 'Lucida Grande', Arial, Ubuntu, Cantarell, 'Fira Sans',
        sans-serif;
    word-wrap: break-word;
}

.demo-wa-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 2px;
    padding-left: 48px;
}

.demo-wa-meta-out {
    padding-left: 40px;
}

.demo-wa-time {
    font-size: 0.65rem;
    color: var(--wa-time);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.demo-wa-ticks {
    display: inline-flex;
    margin-left: 1px;
    line-height: 0;
}

.demo-wa-tick-icon {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.35s ease;
}

.demo-wa-read .demo-wa-tick-icon {
    color: #53bdeb;
}

.demo-reply-content .ph-truck {
    display: inline-block;
    margin: 0 2px;
    font-size: 1.08em;
    vertical-align: -0.14em;
}

.demo-wa-bubble-typing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    background: var(--wa-typing);
    border-top-right-radius: 2px;
    min-width: 56px;
}

.demo-wa-bubble-typing::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -4px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: var(--wa-typing);
    border-bottom: none;
    border-right: none;
    filter: drop-shadow(0 1px 0.5px var(--wa-out-shadow));
}

.demo-wa-typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8696a0;
    animation: demoWaTypingPulse 1.05s infinite ease-in-out;
}

.demo-wa-typing-dot:nth-child(2) {
    animation-delay: 0.18s;
}

.demo-wa-typing-dot:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes demoWaTypingPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.45;
    }

    50% {
        transform: translateY(-4px) scale(1.08);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .demo-wa-row {
        transition: none;
    }

    .demo-wa-tick-icon {
        transition: none;
    }

    .demo-wa-typing-dot {
        animation: none;
        opacity: 0.75;
    }
}


.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.feature-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.feat-check {
    color: var(--primary);
    margin-right: 4px;
}

.feature-stat-row {
    display: flex;
    gap: 24px;
    margin-top: auto;
}

.f-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.f-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.feature-card-green {
    border-color: rgba(37, 211, 102, 0.2);
}

.feature-card-green:hover {
    border-color: var(--wa-green);
}

.payment-brands {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.pay-brand {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.link-demo {
    background: var(--bg-card-2);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: monospace;
}

.link-phone {
    color: var(--primary);
}

.copy-btn {
    font-size: 0.7rem;
    background: var(--bg-hover);
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
}

/* ── How it Works ───────────────────────────────────────────────────────── */
.how-section {
    background: rgba(0, 208, 132, 0.02);
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-xl);
    transition: var(--transition-slow);
}

.step-card:hover {
    border-color: rgba(0, 208, 132, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: -45px;
    transition: var(--transition);
}

.step-card:hover .step-num {
    color: rgba(0, 208, 132, 0.1);
}


.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.step-icon.text-gradient {
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
    background-clip: unset;
    background: none;
}

.step-icon.text-gradient > i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card h4 {
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.steps-arrow {
    padding-top: 60px;
    color: var(--border-light);
    font-size: 1.5rem;
}

/* ── Pricing ────────────────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 100%;
    padding: 12px 2px 4px;
    box-sizing: border-box;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
}

/* Accent only on the pill — card uses same surface as other plans (no ::before glow / green wash) */
.pricing-popular {
    position: relative;
}

.pricing-popular .popular-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 208, 132, 0.3);
}

.plan-price-val {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -2px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.plan-badge {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.plan-price {
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.plan-currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.plan-amount {
    font-size: 3rem;
    font-weight: 800;
}

.plan-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    min-height: 48px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    display: flex;
    gap: 12px;
    font-size: 0.875rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.plan-features .feat-off {
    opacity: 0.4;
    color: var(--text-muted);
}

.pricing-note {
    margin-top: 40px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.t-stars {
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.t-text {
    font-style: italic;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.t-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.t-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-card-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.cta-orb-faint {
    opacity: 0.3;
}

.footer-heart {
    color: #ef4444;
}

/* Staggered entrance helpers (replaces inline animation-delay) */
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.2s; }
.anim-d3 { animation-delay: 0.3s; }
.anim-d4 { animation-delay: 0.4s; }
.anim-d5 { animation-delay: 0.5s; }
.anim-d6 { animation-delay: 0.6s; }

.t-name {
    font-weight: 600;
}

.t-biz {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── CTA ────────────────────────────────────────────────────────────────── */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--bg-card);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0 32px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-col h5 {
    margin-bottom: 24px;
    color: white;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Typing Animation ──────────────────────────────────────────────────── */
.typing span {
    width: 6px;
    height: 6px;
    background: #91979F;
    border-radius: 50%;
    display: inline-block;
    margin: 0 1px;
    animation: typing 1s infinite alternate;
}

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

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

@keyframes typing {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-4px);
    }
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 40rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Must reset 12-col spans or grid creates implicit columns and cards overlap */
    .features-grid .feature-card,
    .features-grid .feature-card-large,
    .features-grid .feature-card-wide {
        grid-column: span 1;
    }

    .steps-arrow {
        display: none;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        align-items: stretch;
    }

    .step-card {
        margin-bottom: 0;
        min-height: 0;
    }
}

.cta-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .navbar {
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
    }

    .nav-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 16px;
    }

    .nav-logo {
        flex: 1;
        min-width: 0;
    }

    .nav-actions {
        order: 2;
        margin-left: auto;
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-links {
        order: 4;
        flex: 1 1 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 12px 0 4px;
        margin-top: 8px;
        border-top: 1px solid var(--border);
        justify-self: stretch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links .nav-link {
        display: block;
        padding: 14px 4px;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .features-grid {
        gap: 16px;
    }

    .features-grid .feature-card,
    .features-grid .feature-card-large,
    .features-grid .feature-card-wide {
        grid-column: 1 / -1;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .glass-card:hover {
        transform: none;
    }

    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .footer-grid {
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col a {
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-popular:hover {
        transform: translateY(-8px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-content .hero-actions {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .step-card {
        margin-bottom: 0;
        width: 100%;
        max-width: none;
        padding: 28px 22px;
        box-sizing: border-box;
    }

    .step-num {
        font-size: 4rem;
        margin-bottom: -36px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}