/* SmartFlow Suite - Landing Page Styles */
/* Premium Navy Blue + Neon Cyan Theme with Glassmorphism */

:root {
    /* Primary Colors - Neon Cyan */
    --cyan: #00F5FF;
    --cyan-light: #7DFFFF;
    --cyan-dark: #00C4CC;
    --cyan-glow: rgba(0, 245, 255, 0.5);

    /* Background Colors - Navy Blue */
    --navy: #0A1628;
    --navy-light: #1A2744;
    --navy-lighter: #243555;
    --navy-dark: #050D1A;

    /* Accent & Text */
    --gold: #FFD700;
    --white: #FFFFFF;
    --gray: #7A8BA3;
    --gray-light: #A3B3C9;

    /* Status Colors */
    --success: #00E676;
    --error: #FF5252;
    --warning: #FFB300;

    /* Gradients */
    --gradient-cyan: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-navy: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(26, 39, 68, 0.7);
    --glass-border: rgba(0, 245, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-navy);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
}

/* Buttons - Neon Cyan with Glow */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-cyan);
    color: var(--navy-dark);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--cyan-glow), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.btn-gold {
    background: var(--gradient-cyan);
    color: var(--navy-dark);
    font-weight: 700;
    box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--cyan-glow), 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* Navbar - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.btn-nav {
    background: var(--gradient-cyan);
    color: var(--navy-dark) !important;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--cyan-glow);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Gradient Glow */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 200, 255, 0.1) 0%, transparent 40%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    max-width: 500px;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px var(--cyan-glow);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-light);
}

/* Hero Laptop Image */
.hero-laptop-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-laptop-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 245, 255, 0.2),
        0 0 60px rgba(0, 245, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-laptop-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 100px rgba(0, 245, 255, 0.25),
        0 0 80px rgba(0, 245, 255, 0.15);
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-light);
}

.platform-icon {
    font-size: 1.2rem;
}

/* Mockup - Glassmorphism */
.mockup {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--glass-shadow), 0 0 40px rgba(0, 245, 255, 0.1);
    border: 1px solid var(--glass-border);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
}

.mockup-dots span:first-child {
    background: #EF4444;
}

.mockup-dots span:nth-child(2) {
    background: #F59E0B;
}

.mockup-dots span:last-child {
    background: #10B981;
}

.mockup-content {
    padding: 20px;
}

.kanban-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.kanban-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
}

.column-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.column-header.cold {
    background: rgba(96, 165, 250, 0.2);
    color: #60A5FA;
}

.column-header.warm {
    background: rgba(251, 146, 60, 0.2);
    color: #FB923C;
}

.column-header.hot {
    background: rgba(245, 166, 35, 0.2);
    color: var(--gold);
}

.column-header.won {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.lead-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: var(--gray-light);
}

.lead-card.highlight-card {
    border-left: 3px solid var(--cyan);
}

.lead-card.success-card {
    border-left: 3px solid var(--success);
}

/* Problems Section - Glassmorphism */
.problems {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.problems h2 {
    text-align: center;
    margin-bottom: 60px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--cyan);
}

.problem-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.problem-card p {
    color: var(--gray-light);
}

/* Enhanced Pain Cards */
.pain-card {
    text-align: center;
    min-height: 200px;
}

.pain-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
}

.problems-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .problems-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .problems-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .problems-grid-5 {
        grid-template-columns: 1fr;
    }
}

.pain-headline {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pain-detail {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.pain-detail strong {
    color: #FFD93D;
}

.pain-question {
    text-align: center;
    margin: 40px 0;
    padding: 25px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
}

.pain-question p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FF6B6B;
    margin: 0;
}

.solution-banner {
    background: var(--gradient-cyan);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0 40px var(--cyan-glow);
}

.solution-banner h3 {
    color: var(--navy-dark);
    font-size: 1.75rem;
    margin: 0;
}

.solution-subtitle {
    color: var(--navy-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--gray-light);
    font-size: 1.125rem;
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-light);
}

/* Demo Section - Glassmorphism */
.demo {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.demo-video {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 20px;
    box-shadow: 0 0 30px var(--cyan-glow);
}

.video-placeholder p {
    color: var(--gray-light);
}

/* AI Assistant Preview */
.ai-preview {
    padding: 15px;
}

.ai-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ai-message.user {
    justify-content: flex-end;
}

.ai-message.user span {
    background: var(--cyan);
    color: var(--navy-dark);
    padding: 10px 15px;
    border-radius: 15px 15px 0 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.ai-message.assistant {
    background: rgba(0, 0, 0, 0.3);
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background: var(--navy-dark);
}

.demo-video {
    max-width: 900px;
    margin: 40px auto 0;
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.ai-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ai-text {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.ai-text p {
    margin-bottom: 8px;
}

.ai-text strong {
    color: var(--cyan);
}

.ai-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-text ul li {
    padding: 4px 0;
    font-size: 0.75rem;
}

/* Flat Pricing Grid */
.pricing-grid-flat {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto 60px;
    align-items: start;
}

.grid-header {
    grid-column: span 2;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 10px 0;
    margin-bottom: 5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
}

.header-pro {
    color: var(--gold);
    border-bottom-color: rgba(245, 166, 35, 0.4);
}

.header-teams {
    color: var(--cyan);
    border-bottom-color: rgba(0, 245, 255, 0.4);
}

.card-small {
    padding: 20px 15px !important;
    border-radius: 16px !important;
}

.card-small .plan-icon {
    font-size: 1.8rem !important;
    margin-bottom: 8px !important;
}

.card-small .badge-plan-type {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
}

.price-compact .amount {
    font-size: 2.2rem !important;
}

.price-compact .currency,
.price-compact .period {
    font-size: 0.9rem !important;
}

.feat-small li {
    font-size: 0.8rem !important;
    padding: 6px 0 !important;
}

.btn-small {
    padding: 10px 15px !important;
    font-size: 0.85rem !important;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 32px 24px;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 245, 255, 0.1);
}

.pricing-card.featured {
    border-color: var(--cyan);
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.08) 0%, var(--glass-bg) 30%);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.1);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--gradient-cyan);
    color: var(--navy-dark);
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.4);
}

.badge-most-chosen {
    background: rgba(0, 245, 255, 0.1);
    color: var(--cyan);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
}

.badge-plan-type {
    background: rgba(0, 245, 255, 0.2);
    color: var(--cyan);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-plan-type.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.option-box {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.option-box.primary {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    box-shadow: inset 0 0 20px rgba(0, 245, 255, 0.05);
    padding: 20px 15px;
}

.option-box.secondary-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
}

.featured-box {
    border-color: var(--cyan) !important;
    background: rgba(0, 245, 255, 0.1) !important;
}

.founder-seal {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.option-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.option-divider {
    text-align: center;
    position: relative;
    margin: 5px 0;
}

.option-divider span {
    background: var(--navy);
    padding: 0 10px;
    font-size: 0.7rem;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.option-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.savings-tag {
    background: #FF4B2B;
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin: 10px 0;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-small {
    scale: 0.8;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cyan);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}

.period {
    font-size: 1rem;
    color: var(--gray-light);
}

.price-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--gray-light);
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 245, 255, 0.05);
}

/* Plan Features */
.plan-features {
    list-style: none;
    margin-top: auto;
}

.plan-features li {
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li strong {
    color: var(--white);
}

/* Guarantee Section */
.guarantee {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 60px auto 0;
    border: 1px solid var(--glass-border);
}

.guarantee-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.guarantee-text p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Comparison Table Redesign */
.comparison {
    padding: 100px 0;
    position: relative;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 60px;
}

.table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table thead th {
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    vertical-align: top;
}

.comparison-table thead th small {
    display: block;
    color: var(--cyan);
    font-size: 0.75rem;
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.8;
}

.comparison-table tbody td {
    color: var(--gray-light);
    font-size: 1rem;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 245, 255, 0.03);
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
    text-align: center;
}

.highlight-row {
    background: rgba(0, 245, 255, 0.05);
}

.highlight-row td {
    color: var(--white) !important;
}

.highlight-cell {
    color: var(--cyan) !important;
    font-weight: 800;
}

@media (max-width: 768px) {
    .table-wrapper {
        overflow-x: auto;
        margin: 0 10px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 20px;
        min-width: 140px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 200px;
        position: sticky;
        left: 0;
        background: var(--navy-light);
        z-index: 1;
    }
}

/* FAQ Styles Enhancement */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--cyan);
    background: rgba(0, 245, 255, 0.03);
}

.faq-item h4 {
    color: var(--cyan);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Final CTA - Glow Effect */
.final-cta {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(0, 245, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 50%, rgba(0, 200, 255, 0.1) 0%, transparent 40%);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--gray-light);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer - Clean Navy */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--gray);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-showcase {
        flex-direction: column;
    }

    .feature-showcase.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid-flat {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .grid-header {
        grid-column: span 1;
        font-size: 1.2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
    }

    .kanban-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-text {
        text-align: center;
    }

    .feature-list {
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .pricing-grid-flat {
        grid-template-columns: 1fr;
    }

    .grid-header {
        display: none;
    }
}


/* ================================
   Feature Showcase Styles
   ================================ */

.feature-showcase {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-showcase.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(245, 166, 35, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}

.feature-text h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.feature-text p {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--gray-light);
    padding: 8px 0;
    font-size: 1rem;
}

.feature-list li::before {
    content: '';
}

.feature-mockup {
    flex: 1;
    max-width: 500px;
}

.feature-mockup .mockup {
    width: 100%;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-title {
    color: var(--gray-light);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Properties Preview */
.properties-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.property-card {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
    align-items: center;
    transition: transform 0.2s ease;
}

.property-card:hover {
    transform: translateX(5px);
}

.property-image {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border-radius: 10px;
}

.property-info {
    flex: 1;
}

.property-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 4px;
}

.property-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.property-status {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
}

.property-status.available {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.property-status.reserved {
    background: rgba(245, 166, 35, 0.2);
    color: var(--gold);
}

/* Agenda Preview */
.agenda-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agenda-header {
    background: rgba(245, 166, 35, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 8px;
}

.agenda-item {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 16px;
    border-radius: 10px;
    align-items: center;
    border-left: 3px solid var(--dark-light);
}

.agenda-item.urgent {
    border-left-color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
}

.agenda-item.success {
    border-left-color: #22C55E;
    background: rgba(34, 197, 94, 0.1);
}

.agenda-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray);
    min-width: 50px;
}

.agenda-content {
    flex: 1;
}

.agenda-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.agenda-subtitle {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Metrics Preview */
.metrics-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.metric-value.gold {
    color: var(--gold);
}

.metric-value.green {
    color: #22C55E;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
}

.funnel-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.funnel-bar {
    background: rgba(96, 165, 250, 0.3);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.funnel-bar:nth-child(1) {
    background: rgba(96, 165, 250, 0.4);
}

.funnel-bar:nth-child(2) {
    background: rgba(251, 146, 60, 0.4);
}

.funnel-bar:nth-child(3) {
    background: rgba(245, 166, 35, 0.4);
}

.funnel-bar.success {
    background: rgba(34, 197, 94, 0.4);
}

/* Settings Preview */
.settings-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.settings-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
}

.settings-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-light);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dark-light);
}

.team-member {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.team-member:last-child {
    border-bottom: none;
}

.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-light);
}

.member-avatar.admin {
    background: var(--gradient);
    color: var(--black);
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.member-role {
    font-size: 0.75rem;
    color: var(--gray);
}

.add-user-btn {
    background: rgba(245, 166, 35, 0.1);
    border: 2px dashed rgba(245, 166, 35, 0.3);
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-user-btn:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: var(--gold);
}