/* ============================================
   HIP — HERO Intelligence Platform
   Premium Futuristic Enterprise Website
   ============================================ */

:root {
    --navy-dark: #0a0e1a;
    --navy: #0f1629;
    --navy-light: #1a2140;
    --navy-lighter: #242d4a;
    --pink: #ff2d7b;
    --pink-light: #ff5c9a;
    --blue: #00c8ff;
    --blue-light: #4dd9ff;
    --purple: #8b5cf6;
    --gradient-pink-blue: linear-gradient(135deg, #ff2d7b, #00c8ff);
    --gradient-pink-purple: linear-gradient(135deg, #ff2d7b, #8b5cf6);
    --gradient-blue-purple: linear-gradient(135deg, #00c8ff, #8b5cf6);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #6b7a99;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(15, 22, 41, 0.8);
    --glass-light: rgba(26, 33, 64, 0.6);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    background: rgba(10, 14, 26, 0.85);
    border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 14, 26, 0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-pink-blue);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 45, 123, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--pink);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 45, 123, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 45, 123, 0.2);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-logo-img {
    max-width: 280px;
    height: auto;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.gradient-text {
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Visual / Dashboard Mockup */
.hero-visual {
    flex: 1;
    max-width: 560px;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.dashboard-mockup {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow), 0 0 60px rgba(255, 45, 123, 0.1);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--navy-light);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mockup-body {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 48px;
    background: var(--navy-light);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 8px;
}

.sidebar-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.sidebar-item.active {
    background: var(--gradient-pink-blue);
    color: white;
}

.mockup-content {
    flex: 1;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-content: start;
}

.mockup-card {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-card span {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.mockup-card .card-icon {
    font-size: 1.2rem;
}

.mockup-card.glow-pink .card-icon { color: var(--pink); }
.mockup-card.glow-blue .card-icon { color: var(--blue); }
.mockup-card.glow-purple .card-icon { color: var(--purple); }

.card-bar {
    height: 4px;
    border-radius: 2px;
    background: var(--navy-lighter);
    position: relative;
    overflow: hidden;
}

.card-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70%;
    border-radius: 2px;
    animation: barGrow 2s ease infinite;
}

.glow-pink .card-bar::after { background: var(--gradient-pink-blue); }
.glow-blue .card-bar::after { background: var(--gradient-blue-purple); width: 55%; }
.glow-purple .card-bar::after { background: var(--gradient-pink-purple); width: 85%; }

.mockup-chart {
    grid-column: 1 / -1;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chart-line {
    height: 3px;
    border-radius: 2px;
    background: var(--navy-lighter);
    position: relative;
    overflow: hidden;
}

.chart-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 2px;
    background: var(--gradient-pink-blue);
    animation: barGrow 3s ease infinite;
}

.chart-line:nth-child(1)::after { width: 80%; animation-delay: 0s; }
.chart-line:nth-child(2)::after { width: 60%; animation-delay: 0.5s; }
.chart-line:nth-child(3)::after { width: 90%; animation-delay: 1s; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: var(--navy);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HOW IT WORKS - FLOW PIPELINE
   ============================================ */
.flow-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 110px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    border-color: var(--pink);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 45, 123, 0.15);
}

.flow-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink-blue);
    border-radius: 12px;
    font-size: 1.2rem;
    color: white;
}

.flow-step h4 {
    font-size: 0.8rem;
    font-weight: 600;
}

.flow-step p {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}

.flow-arrow {
    color: var(--pink);
    font-size: 1rem;
    opacity: 0.5;
}

.file-types {
    text-align: center;
    padding: 32px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.file-types-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.file-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.file-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.file-tag:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ============================================
   PROBLEMS / COMPARISON
   ============================================ */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.comparison-card {
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.comparison-card.before {
    background: rgba(255, 45, 123, 0.03);
    border-color: rgba(255, 45, 123, 0.2);
}

.comparison-card.after {
    background: rgba(0, 200, 255, 0.03);
    border-color: rgba(0, 200, 255, 0.2);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.comparison-header i {
    font-size: 1.5rem;
}

.before .comparison-header i { color: var(--pink); }
.after .comparison-header i { color: var(--blue); }

.comparison-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.before .comparison-list i { color: var(--pink); font-size: 0.8rem; }
.after .comparison-list i { color: var(--blue); font-size: 0.8rem; }

.comparison-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.comparison-arrow i {
    font-size: 2rem;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-arrow span {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ============================================
   GROWTH JOURNEY TIMELINE
   ============================================ */
.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--pink), var(--blue), var(--purple));
    opacity: 0.3;
}

.journey-stage {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.stage-marker {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink-blue);
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    z-index: 1;
}

.stage-content {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    flex: 1;
    transition: all 0.3s ease;
}

.stage-content:hover {
    border-color: var(--pink);
    box-shadow: 0 10px 40px rgba(255, 45, 123, 0.1);
}

.stage-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stage-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.stage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.stage-tags span {
    padding: 4px 10px;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ============================================
   ECOSYSTEM MODULES
   ============================================ */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.module-card {
    background: var(--navy-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-pink-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-card:hover {
    border-color: rgba(255, 45, 123, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.module-card:hover::before {
    opacity: 1;
}

.module-card.featured {
    border-color: rgba(255, 45, 123, 0.3);
}

.module-card.featured::before {
    opacity: 1;
}

.module-card.coming-soon {
    opacity: 0.7;
}

.module-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink-blue);
    border-radius: 14px;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 16px;
}

.module-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.module-status.active {
    background: rgba(40, 202, 66, 0.15);
    color: #28ca42;
    border: 1px solid rgba(40, 202, 66, 0.3);
}

.module-status.upcoming {
    background: rgba(255, 189, 46, 0.15);
    color: #ffbd2e;
    border: 1px solid rgba(255, 189, 46, 0.3);
}

.module-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.module-tagline {
    font-size: 0.85rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 12px;
}

.module-card > p:last-of-type {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.module-features span {
    padding: 4px 10px;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ============================================
   FUTURE VISION
   ============================================ */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.vision-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
}

.vision-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 12px;
}

.vision-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.vision-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.founder-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    border-left: 3px solid var(--pink);
    padding-left: 24px;
    margin-bottom: 32px;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink-blue);
    border-radius: 50%;
    font-size: 1.4rem;
    color: white;
}

.founder-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.founder-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.founder-pain-points h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--navy-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.pain-point:hover {
    border-color: var(--pink);
}

.pain-point i {
    color: var(--pink);
    font-size: 1.1rem;
}

.pain-point span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--pink);
    color: var(--text-primary);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--pink);
    width: 24px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 32px;
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.footer-brand h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 400px;
    max-height: 600px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--navy-light);
    border-bottom: 1px solid var(--border);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink-blue);
    border-radius: 50%;
    font-size: 1rem;
    color: white;
}

.chat-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.chat-status {
    font-size: 0.7rem;
    color: #28ca42;
}

.chat-header-actions {
    display: flex;
    gap: 8px;
}

.chat-header-actions button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.chat-header-actions button:hover {
    background: var(--navy-lighter);
    color: var(--text-primary);
}

.chat-persona-select {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.chat-persona-select p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.persona-options {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.persona-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: var(--navy-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.persona-btn:hover {
    border-color: var(--pink);
}

.persona-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    color: white;
}

.persona-avatar.female { background: var(--gradient-pink-purple); }
.persona-avatar.male { background: var(--gradient-blue-purple); }

.persona-btn small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 300px;
}

.chat-message {
    margin-bottom: 16px;
}

.chat-message.bot .message-content {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: 12px 12px 12px 4px;
    padding: 14px 18px;
}

.chat-message.user .message-content {
    background: var(--gradient-pink-blue);
    border-radius: 12px 12px 4px 12px;
    padding: 14px 18px;
    margin-left: 40px;
}

.message-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul {
    list-style: none;
    padding: 0;
}

.message-content ul li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 3px 0;
    padding-left: 12px;
    position: relative;
}

.message-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pink);
}

.chat-input-area {
    padding: 12px 16px 16px;
    border-top: 1px solid var(--border);
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.chat-suggestions button {
    padding: 6px 12px;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-suggestions button:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.chat-input-wrapper {
    display: flex;
    gap: 8px;
}

.chat-input-wrapper input {
    flex: 1;
    padding: 12px 16px;
    background: var(--navy-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input-wrapper input:focus {
    border-color: var(--pink);
}

.chat-send {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink-blue);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.chat-send:hover {
    transform: scale(1.05);
}

/* Chat FAB */
.chat-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink-blue);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 10px 40px rgba(255, 45, 123, 0.4);
    transition: transform 0.3s ease;
}

.chat-fab:hover {
    transform: scale(1.1);
}

.fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-pink-blue);
    animation: fabPulse 2s infinite;
    z-index: -1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes barGrow {
    0% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
    50.01% { transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 100%;
        width: 100%;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .flow-pipeline {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-widget {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 90px;
        max-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .mockup-content {
        grid-template-columns: 1fr;
    }
}
