/* ═══════════════════════════════════════════════════
   ZMAI LANDING PAGE — Saleshandy-Inspired Design
   Dark hero, white feature sections, blue accents
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── DESIGN TOKENS ── */
:root {
    --z-bg-dark: #0f1729;
    --z-bg-dark-2: #162040;
    --z-bg-white: #ffffff;
    --z-bg-light: #f8fafc;
    --z-bg-card-dark: rgba(255,255,255,0.06);

    --z-text-white: #ffffff;
    --z-text-white-70: rgba(255,255,255,0.7);
    --z-text-white-50: rgba(255,255,255,0.5);
    --z-text-dark: #0f172a;
    --z-text-gray: #475569;
    --z-text-muted: #94a3b8;

    --z-blue: #3b63f7;
    --z-blue-light: #6283ff;
    --z-blue-dark: #2b4fd4;
    --z-purple: #8b5cf6;

    --z-gradient: linear-gradient(135deg, #3b63f7 0%, #6283ff 100%);
    --z-gradient-hero: linear-gradient(180deg, #030712 0%, #030712 100%);
    --z-gradient-text: linear-gradient(90deg, #6283ff, #3b63f7);

    --z-border-dark: rgba(255,255,255,0.1);
    --z-border-light: #e2e8f0;
    --z-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --z-shadow-lg: 0 20px 60px -15px rgba(0,0,0,0.3);
    --z-shadow-blue: 0 4px 20px rgba(59,99,247,0.3);

    --z-radius: 12px;
    --z-radius-lg: 16px;
    --z-radius-xl: 20px;
    --z-radius-pill: 100px;
    --z-nav-height: 72px;
    --z-announcement-height: 40px;
    --z-container: 1200px;

    --z-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body.landing-page { font-family: var(--z-font); background: var(--z-bg-white); color: var(--z-text-dark); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ── CONTAINER ── */
.landing-container { max-width: var(--z-container); margin: 0 auto; padding: 0 24px; }

/* ── SECTION UTILITIES ── */
.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-title.center { text-align: center; }
.section-subtitle {
    font-size: 18px;
    color: var(--z-text-gray);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 48px;
}
.section-subtitle.center { text-align: center; margin-left: auto; margin-right: auto; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
    background: var(--z-gradient);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1001;
}
.announcement-bar a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 8px;
}
.announcement-bar a:hover { opacity: 0.85; }

/* ── ANIME NAVBAR (floating glass pill) ── */
.anime-nav {
    position: fixed;
    top: var(--z-announcement-height);
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 12px 24px;
    background: rgba(3,7,18,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    animation: navSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes navSlideIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.anime-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--z-container);
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.anime-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    z-index: 10;
}
.anime-nav-logo .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Center pill */
.anime-nav-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 6px;
    border-radius: var(--z-radius-pill);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: relative;
    overflow: visible;
}

/* Nav links inside pill */
.anime-nav-link {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    padding: 10px 20px;
    border-radius: var(--z-radius-pill);
    transition: color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}
.anime-nav-link:hover {
    color: rgba(255,255,255,0.9);
}
.anime-nav-link.active {
    color: #fff;
}

/* Glow behind active tab */
.anime-nav-glow {
    position: absolute;
    border-radius: var(--z-radius-pill);
    z-index: 1;
    pointer-events: none;
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
    overflow: hidden;
}
.anime-nav-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(139,92,246,0.2);
    border-radius: inherit;
    filter: blur(8px);
}
.anime-nav-glow::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(139,92,246,0.12);
    border-radius: inherit;
    filter: blur(16px);
    animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.04); }
}

/* Shine sweep across active glow */
.anime-nav-glow .shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.2), transparent);
    animation: shineMove 3s ease-in-out infinite;
}
@keyframes shineMove {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Hover highlight */
.anime-nav-hover {
    position: absolute;
    border-radius: var(--z-radius-pill);
    background: rgba(255,255,255,0.08);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: left 0.25s ease, width 0.25s ease, opacity 0.2s ease;
}

/* ── ANIME MASCOT ── */
.anime-mascot {
    position: absolute;
    top: -48px;
    z-index: 10;
    pointer-events: none;
    width: 44px;
    height: 48px;
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Dragon body */
.mascot-body {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a855f7 50%, #7c3aed 100%);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: mascotFloat 2s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(124,58,237,0.4), inset 0 -2px 4px rgba(0,0,0,0.15);
}
@keyframes mascotFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-3px); }
}
.mascot-body.excited {
    animation: mascotExcited 0.5s ease-in-out;
}
@keyframes mascotExcited {
    0% { transform: translateX(-50%) scale(1) rotate(0deg); }
    25% { transform: translateX(-50%) scale(1.1) rotate(-5deg); }
    50% { transform: translateX(-50%) scale(1.05) rotate(5deg); }
    100% { transform: translateX(-50%) scale(1) rotate(0deg); }
}

/* Dragon horns */
.dragon-horn {
    position: absolute;
    width: 6px;
    height: 12px;
    background: linear-gradient(to top, #f59e0b, #fbbf24);
    border-radius: 3px 3px 1px 1px;
    top: -8px;
    z-index: 2;
}
.dragon-horn-l { left: 22%; transform: rotate(-12deg); }
.dragon-horn-r { right: 22%; transform: rotate(12deg); }

/* Dragon wings */
.dragon-wing {
    position: absolute;
    width: 14px;
    height: 18px;
    top: 8px;
    z-index: -1;
    border-radius: 50% 50% 30% 30%;
    transition: transform 0.3s ease;
}
.dragon-wing-l {
    left: -8px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    transform: rotate(15deg);
}
.dragon-wing-r {
    right: -8px;
    background: linear-gradient(225deg, #8b5cf6 0%, #6d28d9 100%);
    transform: rotate(-15deg);
}
.mascot-body.excited .dragon-wing-l { transform: rotate(15deg) translateY(-3px) scale(1.15); }
.mascot-body.excited .dragon-wing-r { transform: rotate(-15deg) translateY(-3px) scale(1.15); }

/* Dragon eyes */
.mascot-eye {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 34%;
    transition: transform 0.2s ease;
    box-shadow: inset 0 0 0 2.5px #1a1a2e;
}
.mascot-eye::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    top: 1px;
    right: 1px;
}
.mascot-eye-l { left: 22%; }
.mascot-eye-r { right: 22%; }
.mascot-body.blink .mascot-eye {
    transform: scaleY(0.15);
}

/* Dragon nostrils */
.dragon-nostril {
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    position: absolute;
    top: 55%;
}
.dragon-nostril-l { left: 34%; }
.dragon-nostril-r { right: 34%; }

/* Dragon mouth */
.mascot-mouth {
    width: 14px;
    height: 5px;
    border-bottom: 2px solid rgba(255,255,255,0.6);
    border-radius: 0 0 50% 50%;
    position: absolute;
    left: 50%;
    top: 62%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}
.mascot-body.excited .mascot-mouth {
    height: 8px;
    border-bottom-width: 2.5px;
    border-bottom-color: #fbbf24;
    top: 58%;
}

/* Pointer triangle */
.mascot-pointer {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 2px 2px 6px rgba(124,58,237,0.3);
}

/* Sparkles on hover */
.mascot-sparkle {
    position: absolute;
    font-size: 10px;
    opacity: 0;
    animation: sparkleIn 0.4s ease forwards;
    pointer-events: none;
}
.mascot-sparkle:nth-child(1) { top: -4px; right: -4px; animation-delay: 0s; }
.mascot-sparkle:nth-child(2) { top: -8px; left: 0; animation-delay: 0.1s; }
@keyframes sparkleIn {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Right actions */
.anime-nav-actions { display: flex; align-items: center; gap: 12px; z-index: 10; }
.btn-nav-login {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-nav-login:hover { color: #fff; background: rgba(255,255,255,0.08); }
.btn-nav-cta {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--z-radius-pill);
    color: #fff;
    background: var(--z-gradient);
    border: none;
}
.btn-nav-cta:hover {
    box-shadow: var(--z-shadow-blue);
    transform: translateY(-1px);
    color: #fff;
}

/* ── HERO SECTION ── */
.landing-hero {
    position: relative;
    background: #030712;
    text-align: center;
    overflow: visible;
    padding-bottom: 0;
}

/* Radial glow (subtle purple tint from top) */
.hero-radial-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 20% 80% at 50% -20%, rgba(120,119,198,0.25), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 0;
}

/* Retro perspective grid */
.retro-grid {
    position: absolute;
    inset: 0;
    overflow: hidden;
    perspective: 200px;
    pointer-events: none;
    opacity: 0.45;
    z-index: 0;
}
.retro-grid-inner {
    position: absolute;
    inset: 0;
    transform: rotateX(65deg);
}
.retro-grid-lines {
    background-image:
        linear-gradient(to right, rgba(100,100,120,0.6) 1px, transparent 0),
        linear-gradient(to bottom, rgba(100,100,120,0.6) 1px, transparent 0);
    background-repeat: repeat;
    background-size: 60px 60px;
    height: 300vh;
    inset: 0% 0px;
    margin-left: -200%;
    transform-origin: 100% 0 0;
    width: 600vw;
    animation: gridScroll 20s linear infinite;
}
.retro-grid-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #030712 0%, transparent 90%);
    z-index: 1;
}

@keyframes gridScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

.landing-hero .landing-container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 40px;
}

/* Badge / pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(to right, rgba(120,119,198,0.12), rgba(59,99,247,0.12), transparent);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: var(--z-radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    transition: all 0.3s ease;
    cursor: default;
}
.hero-badge:hover svg { transform: translateX(3px); }
.hero-badge svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

/* Hero heading with gradient text */
.landing-hero h1 {
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}
.hero-text-regular {
    background: linear-gradient(180deg, #FFF 0%, rgba(255,255,255,0.0) 200%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text-gradient {
    background: linear-gradient(to right, #7c3aed, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(209,213,219,0.8);
    max-width: 640px;
    margin: 0 auto 40px;
}

/* Animated spinning border CTA wrapper */
.hero-cta-wrapper {
    position: relative;
    display: inline-block;
    max-width: 520px;
    width: 100%;
    margin: 0 auto 32px;
    border-radius: var(--z-radius);
    padding: 2px;
    overflow: hidden;
}
.hero-cta-glow {
    position: absolute;
    inset: -200%;
    animation: spinGlow 3s linear infinite;
    background: conic-gradient(from 90deg at 50% 50%, #E2CBFF 0%, #393BB2 50%, #E2CBFF 100%);
    z-index: 0;
}
@keyframes spinGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.hero-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    background: #0a0a1a;
    border-radius: calc(var(--z-radius) - 1px);
    overflow: hidden;
}
.hero-cta:focus-within {
    box-shadow: 0 0 20px rgba(120,119,198,0.3);
}
.hero-email-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 15px;
    font-family: var(--z-font);
    color: #fff;
}
.hero-email-input::placeholder { color: rgba(255,255,255,0.35); }
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(to right, rgba(120,119,198,0.3), rgba(139,92,246,0.4));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--z-font);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    border-left: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.btn-hero:hover {
    background: linear-gradient(to right, rgba(120,119,198,0.5), rgba(139,92,246,0.6));
    box-shadow: 0 0 20px rgba(139,92,246,0.3);
}

/* Trust badges */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}
.hero-trust-item svg { color: rgba(255,255,255,0.4); }

/* ── LOGO CLOUD (inside hero) ── */
.logo-cloud {
    padding: 32px 0 40px;
    position: relative;
    z-index: 1;
}
.logo-cloud-label {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--z-text-white-50);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.logo-cloud-label strong { color: var(--z-text-white-70); }
.logo-cloud-track {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logo-cloud-grid {
    display: flex;
    gap: 56px;
    animation: scrollLogos 20s linear infinite;
    width: max-content;
}
.logo-cloud-grid span {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── DASHBOARD PREVIEW ── */
.dashboard-preview {
    position: relative;
    z-index: 2;
    padding: 0 0 240px;
    margin-bottom: -120px;
}
.dashboard-preview-frame {
    background: #0a0a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--z-radius-xl);
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7), 0 0 60px rgba(139,92,246,0.08), 0 0 0 1px rgba(255,255,255,0.05);
}
.dashboard-preview-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.preview-dot { width: 12px; height: 12px; border-radius: 50%; }
.preview-dot.red { background: #ff5f57; }
.preview-dot.yellow { background: #ffbd2e; }
.preview-dot.green { background: #28ca41; }
.dashboard-preview-content { padding: 0; overflow: hidden; }
.dashboard-preview-img {
    width: 100%;
    aspect-ratio: 16 / 5.5;
    object-fit: cover;
    object-position: top left;
    display: block;
}

/* ── TESTIMONIALS (Saleshandy-style, on blue bg) ── */
.testimonials-section {
    padding: 280px 0 120px;
    background: #000000;
}
.testimonial-large {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--z-radius-xl);
    padding: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    transition: all 0.4s ease;
}
.testimonial-large:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.testimonial-large:last-child { margin-bottom: 0; }
.quote-mark {
    font-size: 72px;
    font-weight: 900;
    color: rgba(255,255,255,0.2);
    line-height: 0.8;
    flex-shrink: 0;
    margin-top: -8px;
}
.testimonial-large-quote { flex: 1; }
.testimonial-large-text {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}
.testimonial-large-text strong {
    color: #fff;
    font-weight: 700;
}
.testimonial-large-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-large-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.testimonial-large-author p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ── FEATURE TABS SECTION ── */
.feature-tabs-section {
    padding: 100px 0;
    background: var(--z-bg-light);
    text-align: center;
}
.feature-tabs-section .section-title {
    color: var(--z-text-dark);
    margin-bottom: 48px;
}
.feature-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.feature-tab-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--z-font);
    color: var(--z-text-gray);
    background: #fff;
    border: 1px solid var(--z-border-light);
    border-radius: var(--z-radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
}
.feature-tab-btn:hover {
    border-color: var(--z-blue);
    color: var(--z-blue);
    background: rgba(59,99,247,0.04);
}
.feature-tab-btn.active {
    background: var(--z-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--z-shadow-blue);
}
.feature-tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--z-radius-xl);
    padding: 48px;
    border: 1px solid var(--z-border-light);
    box-shadow: var(--z-shadow);
}
.feature-tab-content.active {
    display: grid;
    animation: fadeSlideUp 0.5s ease;
}
.feature-tab-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--z-text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.feature-tab-info p {
    font-size: 16px;
    color: var(--z-text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}
.feature-tab-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.feature-tab-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--z-text-gray);
    font-weight: 500;
}
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(59,99,247,0.1);
    color: var(--z-blue);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.feature-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--z-gradient);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--z-radius-pill);
    transition: all 0.3s ease;
}
.feature-cta-btn:hover {
    box-shadow: var(--z-shadow-blue);
    transform: translateY(-2px);
    color: #fff;
}

/* Feature tab visuals */
.feature-tab-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--z-bg-light);
    border: 1px solid var(--z-border-light);
    border-radius: var(--z-radius-lg);
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

/* Search Mockup */
#tab-leads .feature-tab-visual { padding: 24px; flex-direction: column; align-items: stretch; justify-content: flex-start; }
.search-card-mockup { width: 100%; display: flex; flex-direction: column; gap: 16px; z-index: 1; }
.search-bar {
    display: flex; align-items: center; gap: 10px; padding: 12px 16px;
    background: #fff; border: 1px solid var(--z-border-light); border-radius: 8px;
    font-size: 13px; color: var(--z-text-muted);
}
.search-bar::before { content: '🔍'; font-size: 14px; }
.location-filter {
    display: flex; align-items: center; gap: 8px; padding: 10px 14px;
    background: transparent; border: 1px solid var(--z-border-light); border-radius: 6px;
    font-size: 12px; color: var(--z-text-muted);
}
.location-filter::before { content: '📍'; font-size: 13px; }
.result-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px; background: #fff; border-radius: 6px;
    border: 1px solid var(--z-border-light); font-size: 12px;
}
.result-name { font-weight: 600; color: var(--z-text-dark); }
.result-info { color: var(--z-text-muted); font-size: 11px; }

/* Email Mockup */
#tab-outreach .feature-tab-visual { padding: 24px; flex-direction: column; align-items: stretch; justify-content: flex-start; }
.email-mockup {
    width: 100%; display: flex; flex-direction: column; z-index: 1;
    border: 1px solid var(--z-border-light); border-radius: 8px; overflow: hidden;
}
.email-header {
    padding: 14px 16px; background: #fff; border-bottom: 1px solid var(--z-border-light);
    display: flex; justify-content: space-between; align-items: center; font-size: 12px;
}
.email-from { font-weight: 600; color: var(--z-text-dark); }
.email-time { color: var(--z-text-muted); font-size: 11px; }
.email-subject {
    padding: 12px 16px; background: #fafbfc; border-bottom: 1px solid var(--z-border-light);
    font-size: 12px; font-weight: 600; color: var(--z-text-dark);
}
.email-body { padding: 16px; font-size: 12px; line-height: 1.6; color: var(--z-text-gray); }
.email-greeting { margin-bottom: 12px; font-weight: 500; }
.email-content { color: var(--z-text-muted); line-height: 1.5; margin-bottom: 12px; }
.email-sent-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; background: rgba(40,202,65,0.08);
    border: 1px solid rgba(40,202,65,0.25); border-radius: 4px;
    color: #16a34a; font-size: 11px; font-weight: 600; margin-top: 8px;
}
.email-sent-badge::before { content: '✓'; font-weight: 700; }

/* Chat Mockup */
#tab-support .feature-tab-visual { padding: 24px; flex-direction: column; align-items: stretch; justify-content: flex-end; gap: 12px; }
.chat-mockup { display: flex; flex-direction: column; gap: 12px; z-index: 1; }
.message-bubble { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; line-height: 1.5; }
.message-bubble.user { justify-content: flex-end; }
.message-bubble.bot { justify-content: flex-start; }
.bubble-avatar {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 600; flex-shrink: 0;
}
.bubble-avatar.bot { background: rgba(59,99,247,0.1); color: var(--z-blue); }
.bubble-avatar.user { background: rgba(139,92,246,0.1); color: var(--z-purple); }
.bubble-content {
    max-width: 70%; padding: 10px 12px; border-radius: 6px;
    background: #fff; border: 1px solid var(--z-border-light); color: var(--z-text-gray);
}
.message-bubble.user .bubble-content {
    background: rgba(59,99,247,0.06); border-color: rgba(59,99,247,0.2); color: var(--z-text-dark);
}

/* Analytics Mockup */
#tab-analytics .feature-tab-visual { padding: 24px; flex-direction: column; align-items: stretch; gap: 20px; }
.analytics-mockup { z-index: 1; display: flex; flex-direction: column; gap: 20px; }
.analytics-stat-row { display: flex; gap: 16px; }
.analytics-stat {
    flex: 1; background: #fff; border: 1px solid var(--z-border-light);
    border-radius: 8px; padding: 16px; text-align: center;
}
.analytics-num { display: block; font-size: 24px; font-weight: 800; color: var(--z-blue); }
.analytics-label { display: block; font-size: 12px; color: var(--z-text-muted); margin-top: 4px; }
.analytics-bar-chart {
    display: flex; gap: 8px; align-items: flex-end; height: 120px;
    background: #fff; border: 1px solid var(--z-border-light);
    border-radius: 8px; padding: 16px;
}
.analytics-bar {
    flex: 1; background: var(--z-gradient); border-radius: 4px 4px 0 0;
    min-height: 20px; transition: height 0.3s ease;
}

/* ── INDUSTRY SECTION ── */
.industry-section {
    padding: 100px 0;
    background: var(--z-bg-white);
    text-align: center;
}
.industry-section .section-title { color: var(--z-text-dark); }
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.industry-card {
    background: var(--z-bg-light);
    border: 1px solid var(--z-border-light);
    border-radius: var(--z-radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.industry-card:hover {
    border-color: var(--z-blue);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(59,99,247,0.1);
}
.industry-card-icon { font-size: 40px; margin-bottom: 16px; transition: all 0.4s ease; }
.industry-card:hover .industry-card-icon { transform: scale(1.15) rotate(5deg); }
.industry-card h4 { font-size: 18px; font-weight: 700; color: var(--z-text-dark); margin-bottom: 8px; }
.industry-card p { font-size: 14px; color: var(--z-text-muted); line-height: 1.6; }

/* ── FEATURE GRID ── */
.feature-grid-section {
    padding: 100px 0;
    background: var(--z-bg-light);
    text-align: center;
}
.feature-grid-section .section-title { color: var(--z-text-dark); }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--z-border-light);
    border-radius: var(--z-radius-lg);
    padding: 36px 28px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--z-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-card:hover {
    border-color: rgba(59,99,247,0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.feature-card:hover::before { opacity: 1; }
.feature-card-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
}
.feature-card-icon.blue { background: rgba(59,99,247,0.1); }
.feature-card-icon.purple { background: rgba(139,92,246,0.1); }
.feature-card-icon.emerald { background: rgba(16,185,129,0.1); }
.feature-card-icon.orange { background: rgba(245,158,11,0.1); }
.feature-card-icon.cyan { background: rgba(6,182,212,0.1); }
.feature-card-icon.red { background: rgba(239,68,68,0.1); }
.feature-card h3 { font-size: 20px; font-weight: 700; color: var(--z-text-dark); margin-bottom: 12px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14px; color: var(--z-text-gray); line-height: 1.7; }

/* ── PRICING ── */
.pricing-section {
    padding: 100px 0;
    background: #000000;
    text-align: center;
}
.pricing-section .section-title { color: #fff; }
.pricing-section .section-subtitle { color: rgba(255,255,255,0.6); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--z-radius-lg);
    padding: 40px 32px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.pricing-card:hover {
    border-color: rgba(59,99,247,0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.pricing-card.featured {
    border-color: var(--z-blue);
    box-shadow: 0 0 0 1px var(--z-blue), 0 8px 40px rgba(59,99,247,0.12);
    transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--z-gradient);
    color: #fff; font-size: 12px; font-weight: 700;
    padding: 5px 16px; border-radius: var(--z-radius-pill);
    letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}
.pricing-card-header { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.pricing-tier-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; }
.pricing-amount { font-size: 48px; font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.pricing-period { font-size: 16px; color: rgba(255,255,255,0.5); font-weight: 500; }
.pricing-description { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 8px; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500; }
.pricing-features li .check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(59,99,247,0.1); color: var(--z-blue);
    font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.pricing-features li.disabled { color: rgba(255,255,255,0.3); opacity: 0.5; }
.pricing-features li .x {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3);
    font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.pricing-cta {
    display: block; width: 100%; text-align: center;
    padding: 14px 24px; border-radius: var(--z-radius-pill);
    font-size: 15px; font-weight: 600; font-family: var(--z-font);
    cursor: pointer; transition: all 0.3s ease;
    background: transparent; border: 2px solid var(--z-blue); color: var(--z-blue);
}
.pricing-cta:hover {
    background: var(--z-gradient); border-color: transparent; color: #fff;
    box-shadow: var(--z-shadow-blue); transform: translateY(-2px);
}
.pricing-cta.featured {
    background: var(--z-gradient); border-color: transparent; color: #fff;
}
.pricing-cta.featured:hover { box-shadow: var(--z-shadow-blue); transform: translateY(-2px); }
.pricing-note { text-align: center; color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 40px; }

/* ── CTA BANNER ── */
.cta-banner {
    padding: 80px 0;
    background: var(--z-bg-light);
}
.cta-banner-inner {
    background: var(--z-gradient-hero);
    border-radius: var(--z-radius-xl);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(98,131,255,0.2), transparent 70%);
    pointer-events: none;
}
.cta-banner-inner h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800; color: #fff;
    margin-bottom: 16px; letter-spacing: -0.02em;
    position: relative; z-index: 1;
}
.cta-banner-inner p {
    font-size: 17px; color: var(--z-text-white-70);
    margin-bottom: 32px; max-width: 560px;
    margin-left: auto; margin-right: auto; line-height: 1.7;
    position: relative; z-index: 1;
}
.btn-cta-large {
    display: inline-flex; align-items: center;
    padding: 16px 36px; background: #fff; color: var(--z-blue);
    font-size: 16px; font-weight: 700;
    border-radius: var(--z-radius-pill);
    transition: all 0.3s ease;
    position: relative; z-index: 1;
}
.btn-cta-large:hover {
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* ── FAQ ── */
.faq-section {
    padding: 100px 0;
    background: var(--z-bg-white);
}
.faq-section .section-title { color: var(--z-text-dark); }
.faq-list {
    max-width: 720px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--z-bg-light);
    border: 1px solid var(--z-border-light);
    border-radius: var(--z-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(59,99,247,0.3); }
.faq-item.open {
    border-color: var(--z-blue);
    box-shadow: 0 0 20px rgba(59,99,247,0.06);
}
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    background: transparent; border: none; cursor: pointer;
    font-size: 16px; font-weight: 600; font-family: var(--z-font);
    color: var(--z-text-dark); text-align: left;
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--z-blue); }
.faq-chevron { font-size: 12px; color: var(--z-text-muted); transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--z-blue); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 24px; }
.faq-answer p { font-size: 15px; color: var(--z-text-gray); line-height: 1.7; }

/* ── FOOTER ── */
.landing-footer {
    padding: 64px 0 32px;
    background: var(--z-bg-dark);
    color: #fff;
}
.landing-footer .landing-logo { color: #fff; display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 700; }
.landing-footer .landing-logo .logo-icon { width: 48px; height: 48px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-column h4 {
    font-size: 14px; font-weight: 700; color: #fff;
    margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-column ul { display: flex; flex-direction: column; gap: 10px; }
.footer-column a { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-column a:hover { color: #8bb4ff; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-powered-by { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.4); }
.footer-powered-by:hover { color: #8bb4ff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 700;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    border-color: rgba(59,99,247,0.5); color: #8bb4ff;
    background: rgba(59,99,247,0.1); transform: translateY(-2px);
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeSlideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.35s; }
.animate-delay-4 { animation-delay: 0.5s; }

/* Staggered delays */
.feature-card:nth-child(1), .industry-card:nth-child(1), .pricing-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2), .industry-card:nth-child(2), .pricing-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3), .industry-card:nth-child(3), .pricing-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4), .industry-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5), .industry-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .testimonial-large { padding: 32px; }
}

@media (max-width: 768px) {
    .anime-nav-pill { display: none; }
    .anime-mascot { display: none; }
    .landing-hero .landing-container { padding-top: 60px; }
    .landing-hero h1 { font-size: 36px; }
    .hero-cta-wrapper { border-radius: var(--z-radius); }
    .hero-cta-glow { display: none; }
    .hero-cta {
        flex-direction: column;
        border-radius: var(--z-radius);
        background: transparent; gap: 12px;
    }
    .hero-cta:focus-within { box-shadow: none; }
    .hero-email-input {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: var(--z-radius); width: 100%;
    }
    .btn-hero { border-radius: var(--z-radius); border-left: none; width: 100%; justify-content: center; background: linear-gradient(to right, rgba(120,119,198,0.4), rgba(139,92,246,0.5)); }
    .hero-trust { flex-direction: column; gap: 12px; align-items: center; }
    .feature-tab-content.active { grid-template-columns: 1fr; padding: 24px; }
    .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-banner-inner { padding: 40px 24px; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-large { flex-direction: column; gap: 16px; padding: 24px; }
    .testimonial-large-text { font-size: 18px; }
    .dashboard-preview { margin-bottom: -60px; }
    .testimonials-section { padding-top: 120px; }
}

@media (max-width: 480px) {
    .industry-grid { grid-template-columns: 1fr; }
    .logo-cloud-grid { gap: 32px; }
    .feature-tabs-nav { flex-direction: column; align-items: stretch; }
    .feature-tab-btn { text-align: center; }
    .analytics-stat-row { flex-direction: column; }
}
