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

/* Landing Page Styling System */
.landing-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #0b0f19;
    color: #e2e8f0;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6, .brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Section Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

/* Glass Navbar */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(11, 15, 25, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    gap: 0.5rem;
}

.logo-box {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    padding: 0.35rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.accent-text {
    background: linear-gradient(135deg, #06b6d4, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Glowing Primary Button */
.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-glow:hover {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.45);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 8.5rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    background-color: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #06b6d4;
    border-radius: 50%;
    margin-right: 0.5rem;
    display: inline-block;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px #06b6d4; }
    100% { transform: scale(0.9); opacity: 0.4; }
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2.25rem;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
}

.avatar-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #0b0f19;
    margin-right: -8px;
    display: inline-block;
}

.avatar-1 { background-color: #2563eb; }
.avatar-2 { background-color: #06b6d4; }
.avatar-3 { background-color: #6366f1; }

.trust-text {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* WMS Dashboard Mockup Visual */
.dashboard-mockup {
    background-color: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(6, 182, 212, 0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mockup-header {
    background-color: rgba(10, 15, 30, 0.9);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #eab308; }
.dot.green { background-color: #22c55e; }

.mockup-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 0.75rem;
}

.mockup-body {
    padding: 1.25rem;
}

.mockup-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mockup-card {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.card-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0.15rem;
}

.pulse-green {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

.text-cyan { color: #06b6d4 !important; }
.text-indigo { color: #818cf8 !important; }

.mockup-inner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0.75rem;
}

.mockup-panel {
    background-color: rgba(30, 41, 59, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: start;
}

.panel-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.warehouse-grid-preview {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    padding: 0.5rem;
    background-color: rgba(10, 15, 30, 0.4);
    border-radius: 6px;
    min-height: 120px;
}

.grid-box {
    border-radius: 2px;
    aspect-ratio: 1;
}

.h-high { opacity: 0.9; }
.h-medium { opacity: 0.7; }
.h-low { opacity: 0.45; }

.st-alert { background-color: #dc3545; box-shadow: 0 0 5px rgba(220, 53, 69, 0.5); }
.st-empty { background-color: rgba(255,255,255,0.06); }
.st-filled { background-color: #0d6efd; }

.grid-legend {
    font-size: 0.6rem;
    color: #64748b;
}

.leg-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.box-color {
    width: 8px;
    height: 8px;
    border-radius: 1px;
    display: inline-block;
}

.bg-green { background-color: #0d6efd; }
.bg-blue { background-color: rgba(255,255,255,0.2); }
.bg-red { background-color: #dc3545; }

.mockup-logs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.65rem;
    color: #94a3b8;
    max-height: 145px;
    overflow-y: hidden;
}

.log-item {
    border-bottom: 1px solid rgba(255,255,255,0.02);
    padding-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.log-time {
    color: #06b6d4;
    font-family: monospace;
    margin-right: 0.4rem;
}

/* Stats Section */
.stats-section {
    background-color: rgba(15, 23, 42, 0.4);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background-color: rgba(30, 41, 59, 0.2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(30, 41, 59, 0.4);
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.05);
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
}

.stat-card h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.stat-card p {
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.stat-sub {
    font-size: 0.75rem;
    color: #64748b;
    display: block;
    line-height: 1.4;
}

/* Key Features Section */
.features-section {
    position: relative;
}

.max-w-2xl {
    max-width: 42rem;
}

.features-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-nav-btn {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: #94a3b8;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-nav-btn:hover {
    color: #ffffff;
    background-color: rgba(255,255,255,0.06);
}

.tab-nav-btn.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
    border-color: #06b6d4;
    color: #06b6d4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.tab-pane-grid {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.tab-pane-grid.active {
    display: grid;
}

.pane-text {
    text-align: start;
}

.pane-text h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pane-text p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pane-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pane-list li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
}

.text-success { color: #10b981 !important; }

.glass-card-nested {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.nested-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    text-align: start;
}

.attribute-item {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255,255,255,0.02);
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #cbd5e1;
    text-align: start;
}

/* 3D Spinning Cube Animation */
.cube-container {
    perspective: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.cube {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: spinCube 8s infinite linear;
}

.face {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #06b6d4;
    background-color: rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.front  { transform: translateZ(40px); }
.back   { transform: rotateY(180deg) translateZ(40px); }
.right  { transform: rotateY(90deg) translateZ(40px); }
.left   { transform: rotateY(-90deg) translateZ(40px); }
.top    { transform: rotateX(90deg) translateZ(40px); }
.bottom { transform: rotateX(-90deg) translateZ(40px); }

@keyframes spinCube {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

/* Shipping Tag barcode style */
.shipping-tag {
    background-color: #ffffff;
    color: #000000 !important;
    font-family: monospace;
}

.shipping-tag * {
    color: #000000 !important;
}

.barcode-simulator {
    font-size: 1.65rem;
    letter-spacing: 0.05em;
    font-weight: normal;
    text-align: center;
    line-height: 1;
}

.btn-outline-cyan {
    background-color: transparent;
    border: 1px solid #06b6d4;
    color: #06b6d4;
    transition: all 0.2s ease;
}

.btn-outline-cyan:hover {
    background-color: #06b6d4;
    color: #000000;
}

/* Cinthia AI Chat Sandbox */
.cinthia-section {
    position: relative;
    background-color: rgba(15, 23, 42, 0.2);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.hero-glow-3 {
    position: absolute;
    top: 30%;
    right: 25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.section-desc {
    color: #94a3b8;
    line-height: 1.6;
}

.chat-presets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: start;
}

.preset-btn {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    color: #cbd5e1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: start;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
}

.preset-btn:hover {
    background-color: rgba(30, 41, 59, 0.8);
    border-color: #06b6d4;
    transform: translateX(4px);
    color: #ffffff;
}

.chat-container-card {
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(99, 102, 241, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 480px;
}

.chat-header {
    background-color: rgba(10, 15, 30, 0.9);
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cinthia-avatar-glow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
}

.pulse-dot-small {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulseGlow 1.5s infinite;
}

.chat-body-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #090d16;
}

.chat-message-wrapper {
    display: flex;
    max-width: 80%;
}

.chat-message-wrapper.assistant {
    align-self: flex-start;
    text-align: start;
}

.chat-message-wrapper.user {
    align-self: flex-end;
    text-align: start;
}

.message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
    position: relative;
}

.chat-message-wrapper.assistant .message-bubble {
    background-color: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.15);
    color: #cbd5e1;
    border-top-left-radius: 2px;
}

.chat-message-wrapper.user .message-bubble {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #f8fafc;
    border-top-right-radius: 2px;
}

.message-sender {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.chat-message-wrapper.assistant .message-sender {
    color: #06b6d4;
}

.chat-message-wrapper.user .message-sender {
    color: #818cf8;
}

.message-time {
    font-size: 0.65rem;
    color: #475569;
    text-align: right;
    margin-top: 0.25rem;
}

/* Typing Indicator Animation */
.typing-bubble {
    background-color: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border-top-left-radius: 2px;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 10px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background-color: #06b6d4;
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.chat-footer {
    padding: 0.85rem 1.25rem;
    background-color: rgba(10, 15, 30, 0.9);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.chat-input {
    background-color: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #94a3b8 !important;
    font-size: 0.85rem;
}

.chat-input::placeholder {
    color: #475569;
}

.btn-cyan-glow {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border: none;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

/* Workflow Timeline */
.workflow-section {
    position: relative;
}

.timeline-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.timeline-line {
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #06b6d4, #6366f1, #10b981);
    z-index: 0;
}

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

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0f172a;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.timeline-step h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-step p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* CTA Bottom Section */
.cta-bottom-section {
    padding-bottom: 5rem;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    overflow: hidden;
    padding: 4rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 50px rgba(99, 102, 241, 0.15);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.cta-inner h2 {
    font-size: 2.5rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.cta-inner p {
    color: #94a3b8;
    line-height: 1.6;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.max-w-xl { max-width: 36rem; }

/* Footer */
.landing-footer {
    background-color: #070a12;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.text-muted-hover {
    transition: color 0.2s ease;
}

.text-muted-hover:hover {
    color: #06b6d4 !important;
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-grid, .tab-pane-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-desc {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas, .hero-trust {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-line {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none; /* simple burger toggle or mobile hide */
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Improved Footer Readability & Contrast */
.landing-footer .text-muted {
    color: #cbd5e1 !important; /* brighter slate for high contrast */
}

.landing-footer .text-muted-hover {
    color: #cbd5e1 !important;
}

.landing-footer .text-muted-hover:hover {
    color: #06b6d4 !important;
}

/* Custom Brand Logo */
.logo-img {
    height: 38px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}

/* Experimental AI Alert */
.alert-experimental {
    background-color: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    color: #cbd5e1;
    line-height: 1.45;
    text-align: start;
}

.alert-experimental strong {
    color: #eab308;
}

.animate-pulse {
    animation: simplePulse 1.5s infinite alternate;
}

@keyframes simplePulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Modal Styling Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: linear-gradient(135deg, #0f172a 0%, #090d16 100%);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 16px;
    padding: 2.25rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6), 0 0 30px rgba(6, 182, 212, 0.15);
    position: relative;
}

.btn-close-custom {
    background: transparent;
    color: #94a3b8;
    border: none;
    font-size: 1.25rem;
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-close-custom:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.contact-channels {
    text-align: start;
}

.channel-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.channel-item:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(6, 182, 212, 0.2);
}

.channel-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
}

.channel-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.05em;
}

.channel-value {
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.channel-value:hover {
    color: #06b6d4 !important;
}

.social-grid {
    display: flex;
    gap: 0.75rem;
}

.social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.85rem;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-box i {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.social-box:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: #06b6d4;
    transform: translateY(-2px);
    color: #06b6d4;
}

/* Utilities */
.cursor-pointer {
    cursor: pointer !important;
}

.text-purple {
    color: #a855f7 !important;
}

/* Real WMS Dashboard Image Layout styling */
.dashboard-real-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(6, 182, 212, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-real-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(6, 182, 212, 0.25);
}

.dashboard-real-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    object-fit: cover;
}
