/* ==========================================
   DynamIQ WMS - Landing Page Styles
   Modern, Professional, Premium Design
   ========================================== */

/* CSS Variables */
:root {
    /* Colors - DynamIQ Brand */
    --primary-50: #fff7ed;
    --primary-100: #ffedd5;
    --primary-200: #fed7aa;
    --primary-300: #fdba74;
    --primary-400: #fb923c;
    --primary-500: #ff751f;
    --primary-600: #ea580c;
    --primary-700: #c2410c;
    --primary-800: #9a3412;
    --primary-900: #7c2d12;

    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
    --accent-orange: #ff751f;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #001b3d;

    /* Gradients - DynamIQ Brand */
    --gradient-primary: linear-gradient(135deg, #ff751f 0%, #ff8c42 50%, #ffa366 100%);
    --gradient-hero: linear-gradient(135deg, #001020 0%, #001b3d 50%, #002654 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(255, 117, 31, 0.15) 0%, transparent 70%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--gray-950);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gradient-text {
    background: var(--gradient-primary);
    -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: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

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

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary-500);
}

.btn-outline:hover {
    background: var(--primary-500);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.7rem;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

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

.logo-highlight {
    color: var(--primary-500);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-300);
}

.nav-links a:hover {
    color: #fff;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 6px;
    opacity: 0.7;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: rgba(0, 27, 61, 0.98);
    border: 1px solid rgba(255, 117, 31, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 117, 31, 0.15);
}

.dropdown-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.dropdown-item strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.dropdown-item small {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.dropdown-item.coming-soon {
    opacity: 0.7;
}

.soon-badge {
    display: inline-block;
    padding: 2px 6px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 4px;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-switch:hover {
    background: rgba(255, 117, 31, 0.2);
    border-color: var(--primary-500);
    color: var(--primary-500);
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition-fast);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.preview-dots span:nth-child(1) {
    background: #ff5f57;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:nth-child(3) {
    background: #28ca41;
}

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

.preview-content {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 300px;
}

.preview-sidebar {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.sidebar-item.active {
    background: var(--primary-500);
}

.preview-main {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.card-icon.blue {
    background: rgba(59, 130, 246, 0.2);
}

.card-icon.green {
    background: rgba(16, 185, 129, 0.2);
}

.card-icon.purple {
    background: rgba(139, 92, 246, 0.2);
}

.card-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

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

.preview-chart {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 100%;
}

.bar {
    width: 24px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: barGrow 1s ease forwards;
}

@keyframes barGrow {
    from {
        height: 0;
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.el-1 {
    top: -30px;
    right: 20%;
    animation-delay: 0s;
}

.el-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 2s;
}

.el-3 {
    top: 30%;
    left: -30px;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ==========================================
   Trusted Section
   ========================================== */
.trusted-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-text {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================
   Features Section
   ========================================== */
.features-section {
    padding: var(--section-padding);
    background: var(--gray-950);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
}

.feature-icon.orange {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-orange);
}

.feature-icon.cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent-cyan);
}

.feature-icon.pink {
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent-pink);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   Modules Section
   ========================================== */
.modules-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--gray-950) 0%, #0e0e18 100%);
}

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

.module-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
    position: relative;
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.module-card.featured {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.module-icon {
    font-size: 2rem;
}

.module-badge {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-400);
}

.module-badge.popular {
    background: var(--gradient-primary);
    color: #fff;
}

.module-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.module-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module-features li {
    color: var(--gray-400);
    font-size: 0.9rem;
    padding-left: 4px;
}

/* ==========================================
   Options Section
   ========================================== */
.options-section {
    padding: var(--section-padding);
    background: var(--gray-950);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Roadmap Grid - 2 columns centered */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}


.option-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.option-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.option-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.option-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.option-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0e0e18 0%, var(--gray-950) 100%);
}

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

.benefits-text .section-badge {
    text-align: left;
}

.benefits-text .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.benefit-content p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.benefits-visual {
    display: grid;
    gap: 20px;
}

.stats-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.stats-card.highlight {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-big {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.stat-big .suffix {
    font-size: 1.5rem;
    color: var(--primary-400);
    margin-left: 4px;
}

.stats-card p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--gray-950);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 1rem;
    color: var(--gray-500);
    transition: var(--transition-fast);
}

.toggle-label.active {
    color: #fff;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-700);
    border-radius: 100px;
    transition: var(--transition-normal);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition-normal);
}

input:checked+.slider {
    background: var(--gradient-primary);
}

input:checked+.slider:before {
    transform: translateX(28px);
}

.discount-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--accent-green);
    color: #fff;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 4px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 100px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.pricing-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.pricing-price {
    margin: 32px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-400);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    color: var(--gray-300);
    font-size: 0.95rem;
}

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

.pricing-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 40px;
}

.pricing-note a {
    color: var(--primary-400);
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* ==========================================
   Trial Section
   ========================================== */
.trial-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--gray-950) 0%, #0c0b16 100%);
}

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

.trial-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.trial-text p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.trial-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trial-benefits li {
    color: var(--gray-300);
    font-size: 1rem;
}

.trial-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.trial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input::placeholder {
    color: var(--gray-600);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-500);
    background: rgba(99, 102, 241, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--gray-800);
    color: #fff;
}

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

.form-note a {
    color: var(--primary-400);
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    padding: var(--section-padding);
    background: var(--gray-950);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-400);
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--gray-950) 0%, #080810 100%);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.contact-info>p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

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

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

.method-icon {
    font-size: 2rem;
}

.method-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.method-content a,
.method-content p {
    color: #fff;
    font-size: 1rem;
}

.method-content a:hover {
    color: var(--primary-400);
}

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

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-500);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 60px 0 30px;
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-brand .logo {
    margin-bottom: 16px;
}

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

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-visual {
        display: none;
    }

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

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

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

    .trial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trial-text {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-radius: var(--radius-md);
        margin-top: 10px;
    }

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

    .nav-cta {
        display: none;
    }

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

    .features-grid,
    .modules-container,
    .pricing-cards,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .footer-brand {
        margin-bottom: 20px;
    }

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

    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        padding: 16px 24px;
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-price .amount {
        font-size: 3rem;
    }

    .trial-form-container {
        padding: 24px;
    }
}

/* ==========================================
   Scroll Indicator
   ========================================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: fadeInUp 0.6s ease 0.5s both;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 28px;
        opacity: 0.3;
    }
}

/* ==========================================
   Service Page Hero Visuals
   ========================================== */

/* WMS Dashboard Visual */
.wms-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.wms-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.wms-dashboard .dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wms-dashboard .header-dots {
    display: flex;
    gap: 6px;
}

.wms-dashboard .header-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wms-dashboard .header-dots span:nth-child(1) {
    background: #ff5f57;
}

.wms-dashboard .header-dots span:nth-child(2) {
    background: #ffbd2e;
}

.wms-dashboard .header-dots span:nth-child(3) {
    background: #28ca41;
}

.wms-dashboard .header-title {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.wms-dashboard .dashboard-body {
    padding: 20px;
    display: grid;
    gap: 16px;
}

.wms-dashboard .stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wms-dashboard .stat-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.wms-dashboard .stat-box .icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.wms-dashboard .stat-box .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.wms-dashboard .stat-box .label {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.wms-dashboard .chart-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

.wms-dashboard .chart-bar {
    width: 20px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: barGrow 1s ease forwards;
}

/* Web Browser Visual */
.web-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.web-browser {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.web-browser .browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.web-browser .browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.web-browser .browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.web-browser .browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.web-browser .browser-dots span:nth-child(3) {
    background: #28ca41;
}

.web-browser .browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.web-browser .browser-body {
    padding: 20px;
    min-height: 280px;
}

.web-browser .site-preview {
    background: linear-gradient(180deg, var(--primary-500) 0%, var(--primary-700) 100%);
    border-radius: var(--radius-md);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.web-browser .site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.web-browser .site-logo {
    width: 80px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
}

.web-browser .site-menu {
    display: flex;
    gap: 12px;
}

.web-browser .site-menu span {
    width: 40px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.web-browser .site-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.web-browser .site-title {
    width: 60%;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
}

.web-browser .site-subtitle {
    width: 80%;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.web-browser .site-cta {
    width: 100px;
    height: 32px;
    background: var(--gray-950);
    border-radius: 6px;
    margin-top: 8px;
}

/* TMS Map Visual */
.tms-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.tms-map {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    padding: 20px;
    min-height: 320px;
    position: relative;
}

.tms-map .map-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 117, 31, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 117, 31, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.tms-map .route-line {
    position: absolute;
    top: 40%;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
    border-radius: 2px;
}

.tms-map .route-line::before,
.tms-map .route-line::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.tms-map .route-line::before {
    left: -8px;
    background: #28ca41;
    box-shadow: 0 0 10px rgba(40, 202, 65, 0.5);
}

.tms-map .route-line::after {
    right: -8px;
    background: var(--primary-500);
    box-shadow: 0 0 10px rgba(255, 117, 31, 0.5);
}

.tms-map .truck-icon {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: moveTruck 4s ease-in-out infinite;
}

@keyframes moveTruck {

    0%,
    100% {
        left: 20%;
    }

    50% {
        left: 70%;
    }
}

.tms-map .stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
}

.tms-map .stat-card {
    flex: 1;
    background: rgba(0, 27, 61, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
}

.tms-map .stat-card .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-500);
}

.tms-map .stat-card .label {
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* POD Mobile Visual */
.pod-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
    display: flex;
    justify-content: center;
}

.pod-phone {
    width: 220px;
    background: #1a1a2e;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-glow);
}

.pod-phone .phone-screen {
    background: var(--gray-950);
    border-radius: 24px;
    overflow: hidden;
    min-height: 380px;
}

.pod-phone .phone-header {
    background: var(--primary-500);
    padding: 16px;
    text-align: center;
}

.pod-phone .phone-header .title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.pod-phone .phone-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pod-phone .delivery-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 12px;
}

.pod-phone .delivery-info .order {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.pod-phone .delivery-info .address {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.pod-phone .signature-area {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.pod-phone .signature-area .icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.pod-phone .signature-area .text {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.pod-phone .action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.pod-phone .action-btn {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    text-align: center;
}

.pod-phone .action-btn .icon {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.pod-phone .action-btn .label {
    font-size: 0.65rem;
    color: var(--gray-400);
}

.pod-phone .confirm-btn {
    background: var(--primary-500);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 0.85rem;
}

/* Floating elements for service pages */
.service-floating {
    position: absolute;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.service-floating.f1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.service-floating.f2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

.service-floating.f3 {
    top: 30%;
    left: 0;
    animation-delay: 4s;
}

/* Responsive adjustments for service visuals */
@media (max-width: 992px) {
    .scroll-indicator {
        bottom: 20px;
    }

    .wms-dashboard .stat-row {
        grid-template-columns: 1fr;
    }

    .tms-map .stats-overlay {
        flex-direction: column;
    }

    .pod-phone {
        width: 180px;
    }

    .pod-phone .phone-screen {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .scroll-indicator span {
        font-size: 0.75rem;
    }

    .scroll-arrow {
        width: 24px;
        height: 40px;
    }
}