/* ==========================================
   AirsoftCRM Landing Page Styles
   ========================================== */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--gray-300);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Typography
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   Navigation
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-icon {
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-links .btn {
    padding: 10px 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-700);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-800);
    border-bottom: 1px solid var(--gray-700);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.preview-dots span:first-child { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #eab308; }
.preview-dots span:last-child { background: #22c55e; }

.preview-title {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.preview-content {
    padding: 24px;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.preview-stat-card {
    background: var(--gray-800);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
}

.preview-stat-card .emoji {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.preview-stat-card .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.preview-stat-card .label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.preview-chart {
    background: var(--gray-800);
    border-radius: var(--radius);
    padding: 24px;
    height: 150px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 12px;
}

.chart-bars .bar {
    flex: 1;
    background: var(--gray-600);
    border-radius: 4px 4px 0 0;
    transition: background 0.3s;
}

.chart-bars .bar.active {
    background: var(--gradient);
}

/* ==========================================
   Section Common Styles
   ========================================== */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-400);
    font-size: 1.125rem;
}

/* ==========================================
   PWA Section
   ========================================== */

.pwa-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--gray-900) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.pwa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pwa-text h2 {
    margin-bottom: 20px;
}

.pwa-subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.7;
}

.pwa-features {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.pwa-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pwa-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pwa-feature strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.pwa-feature p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin: 0;
}

.pwa-note {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: var(--gray-300);
    font-size: 0.95rem;
}

/* PWA Visual / Phone mockup */
.pwa-visual {
    position: relative;
}

.pwa-phones {
    position: relative;
    display: flex;
    justify-content: center;
}

.pwa-phone {
    width: 280px;
    background: var(--gray-800);
    border-radius: 36px;
    padding: 12px;
    border: 3px solid var(--gray-700);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    background: var(--dark);
    border-radius: 28px;
    overflow: hidden;
}

.pwa-app-header {
    background: var(--gradient);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwa-app-header .app-icon {
    font-size: 1.5rem;
}

.pwa-app-header .app-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.pwa-app-content {
    padding: 20px;
}

.pwa-app-content .app-welcome {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.pwa-app-content .app-card {
    background: var(--gray-800);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    position: relative;
}

.pwa-app-content .app-card strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.pwa-app-content .app-card span {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.app-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
}

.app-badge.hot {
    background: #ef4444;
}

.pwa-app-content .app-nav {
    display: flex;
    justify-content: space-around;
    background: var(--gray-800);
    margin: 20px -20px -20px;
    padding: 16px;
    border-radius: 0 0 28px 28px;
}

.pwa-app-content .app-nav span {
    font-size: 1.3rem;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
}

.pwa-app-content .app-nav span.active {
    opacity: 1;
}

/* Install Prompt */
.pwa-install-prompt {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--dark);
    padding: 14px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.02); }
}

.install-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.install-text strong {
    display: block;
    font-size: 0.95rem;
}

.install-text span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Responsive PWA Section */
@media (max-width: 1024px) {
    .pwa-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pwa-text {
        order: 1;
    }

    .pwa-visual {
        order: 2;
        margin-top: 40px;
    }

    .pwa-features {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 32px;
    }

    .pwa-note {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .pwa-phone {
        width: 260px;
    }

    .pwa-install-prompt {
        padding: 12px 18px;
        gap: 10px;
    }
}

/* ==========================================
   Features Section
   ========================================== */

.features {
    background: var(--gray-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-card.feature-large {
    grid-column: span 1;
    grid-row: span 2;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.feature-card > p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* ==========================================
   How It Works
   ========================================== */

.how-it-works {
    position: relative;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: var(--gray-700);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

.step-content h3 {
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray-400);
    max-width: 250px;
    margin: 0 auto;
}

/* ==========================================
   Demo Section
   ========================================== */

.demo-section {
    background: var(--gray-900);
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.demo-tab {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.demo-tab:hover {
    border-color: var(--gray-500);
    color: var(--white);
}

.demo-tab.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

.demo-panel {
    display: none;
}

.demo-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.demo-card {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    overflow: hidden;
}

.demo-card-header {
    background: var(--gray-800);
    padding: 16px 20px;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid var(--gray-700);
}

.demo-card-body {
    padding: 20px;
}

.demo-card-body p {
    color: var(--gray-400);
    margin-bottom: 8px;
}

/* Phone mockup */
.demo-phone {
    max-width: 320px;
    margin: 0 auto;
    background: var(--dark-light);
    border-radius: 40px;
    border: 4px solid var(--gray-700);
    padding: 12px;
    box-shadow: var(--shadow-xl);
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: var(--gray-800);
    border-radius: 12px;
    margin: 0 auto 16px;
}

.phone-content {
    background: var(--gray-800);
    border-radius: 24px;
    padding: 20px;
    min-height: 400px;
}

.chat-message {
    background: var(--gray-700);
    padding: 12px 16px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.chat-message strong {
    color: var(--white);
}

.chat-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.chat-buttons span {
    background: var(--gray-600);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--gray-200);
}

.chat-buttons span.primary {
    background: var(--gradient);
    color: var(--white);
}

/* PWA Demo Panel */
.pwa-demo-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.pwa-demo-phone {
    max-width: 300px;
}

.pwa-phone-content {
    padding: 0;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.pwa-demo-header {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: var(--gradient);
}

.pwa-demo-icon {
    font-size: 1.3rem;
}

.pwa-demo-title {
    flex: 1;
    margin-left: 10px;
    font-weight: 700;
    color: var(--white);
}

.pwa-demo-menu {
    font-size: 1.2rem;
    opacity: 0.8;
}

.pwa-demo-body {
    flex: 1;
    padding: 16px;
    overflow: hidden;
}

.pwa-demo-welcome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-700);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.pwa-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.pwa-demo-welcome strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.pwa-demo-welcome span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.pwa-demo-section h4 {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 12px;
}

.pwa-event-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-700);
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.pwa-event-date {
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.pwa-event-date .day {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.pwa-event-date .month {
    font-size: 0.7rem;
    color: var(--primary-light);
    text-transform: uppercase;
}

.pwa-event-info {
    flex: 1;
    min-width: 0;
}

.pwa-event-info strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pwa-event-info span {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.pwa-price {
    color: var(--secondary) !important;
    font-weight: 600;
}

.pwa-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.pwa-demo-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px;
    background: var(--gray-700);
    border-radius: 0 0 24px 24px;
}

.pwa-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.5;
}

.pwa-nav-item.active {
    opacity: 1;
}

.pwa-nav-item span {
    font-size: 1.2rem;
}

.pwa-nav-item small {
    font-size: 0.65rem;
    color: var(--gray-300);
}

/* PWA Demo Features */
.pwa-demo-features {
    text-align: left;
}

.pwa-demo-features h3 {
    margin-bottom: 8px;
}

.pwa-demo-features > p {
    color: var(--gray-400);
    margin-bottom: 24px;
}

.pwa-demo-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.pwa-demo-features li {
    padding: 8px 0;
    color: var(--gray-300);
}

.pwa-platforms {
    display: flex;
    gap: 16px;
}

.pwa-platforms span {
    background: var(--gray-700);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .pwa-demo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pwa-demo-phone {
        margin: 0 auto;
    }

    .pwa-demo-features {
        text-align: center;
    }

    .pwa-demo-features ul {
        display: inline-block;
        text-align: left;
    }

    .pwa-platforms {
        justify-content: center;
    }
}

/* ==========================================
   Pricing Section
   ========================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--gray-500);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-700);
    margin-bottom: 24px;
}

.pricing-header h3 {
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}

.pricing-price .period {
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li.disabled {
    color: var(--gray-600);
}

.pricing-features .check {
    color: var(--secondary);
    font-weight: 700;
}

.pricing-features .x {
    color: var(--gray-600);
}

.pricing-note {
    text-align: center;
    padding: 24px;
    background: var(--gray-800);
    border-radius: var(--radius);
}

.pricing-note p {
    margin-bottom: 8px;
}

/* ==========================================
   Testimonials
   ========================================== */

.testimonials {
    background: var(--gray-900);
}

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

.testimonial-card {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-300);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.author-info strong {
    display: block;
    color: var(--white);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ==========================================
   Contact Section
   ========================================== */

.contact {
    background: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-400);
    margin-bottom: 32px;
}

.contact-benefits {
    margin-bottom: 32px;
}

.benefit {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.benefit p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

.contact-direct {
    padding: 20px;
    background: var(--gray-800);
    border-radius: var(--radius);
}

.contact-direct p {
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-300);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    accent-color: var(--primary);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 16px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 24px;
}

.form-success h3 {
    margin-bottom: 12px;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: var(--gray-900);
    padding: 60px 0 30px;
    border-top: 1px solid var(--gray-800);
}

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

.footer-brand p {
    color: var(--gray-500);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

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

.social-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--primary);
}

/* ==========================================
   Responsive
   ========================================== */

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

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

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

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

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

    .feature-card.feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

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

    .steps {
        flex-direction: column;
        gap: 40px;
    }

    .steps::before {
        display: none;
    }

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

    .demo-tabs {
        flex-wrap: wrap;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .preview-stats {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
