/* --- ELITE SAAS DESIGN SYSTEM --- */
:root {
    --bg-dark: #020617;
    --card-bg: rgba(15, 42, 95, 0.15); /* #0F2A5F base with opacity */
    --card-border: rgba(30, 79, 163, 0.3);
    
    --brand-orange: #F28C28;
    --brand-orange-light: #ffaa5b;
    --brand-blue: #0F2A5F;
    --brand-blue-light: #1E4FA3;
    --brand-blue-bright: #3a78eb;
    
    --text-primary: #ffffff;
    --text-muted: #94A3B8; /* Slate 400 */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

section {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out-expo);
}

img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
ul { list-style: none; }

/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(242, 140, 40, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(242, 140, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 140, 40, 0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes soft-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* --- UTILITIES --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 10; }
.container-md { max-width: 1000px; position: relative; z-index: 10; }
.container-lg { max-width: 1300px; position: relative; z-index: 10; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 1rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 5rem; }
.pr-4 { padding-right: 1.5rem; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-muted, .muted { color: var(--text-muted); }
.text-blue { color: var(--brand-blue-bright); }
.text-orange { color: var(--brand-orange); }
.font-bold { font-weight: 700; }
.font-lg { font-size: 1.5rem; }

.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.dot-blue { background-color: var(--brand-blue-bright); box-shadow: 0 0 8px var(--brand-blue-bright); }
.dot-orange { background-color: var(--brand-orange); box-shadow: 0 0 8px var(--brand-orange); }
.border-top { border-top: 1px solid var(--card-border); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid transparent;
}
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; text-align: center; }

.btn-orange {
    background: linear-gradient(to right, var(--brand-orange), var(--brand-orange-light));
    color: #020617; /* Dark text for high contrast on orange */
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.4);
}
.btn-orange:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.6); 
    color: #000;
}

.btn-outline { border: 1px solid var(--card-border); color: var(--text-primary); }
.btn-outline:hover { background: rgba(30, 79, 163, 0.15); border-color: rgba(30, 79, 163, 0.4); }

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}
.btn-glass:hover { background: rgba(30, 79, 163, 0.2); border-color: rgba(30, 79, 163, 0.5); }

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 50;
    padding: 1.25rem 0;
    background: rgba(2, 6, 23, 0.4); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s var(--ease-out-expo);
}
.nav-container { position: relative; max-width: 1300px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-text { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.5px; }

.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.nav-links a:hover { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.3); }

.nav-cta { display: flex; gap: 1rem; align-items: center; }

/* --- HERO SECTION --- */
.hero-section { position: relative; padding-top: 180px; display: flex; flex-direction: column; align-items: center; text-align: center; overflow: hidden; width: 100%; }
.hero-content { position: relative; z-index: 10; width: 100%; max-width: 100vw; }
.hero-bg-glow { position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 1000px; max-width: 100%; height: 600px; background: radial-gradient(circle, rgba(30, 79, 163, 0.25) 0%, transparent 60%); z-index: 0; pointer-events: none; }

.tag-pill { display: inline-flex; align-items: center; gap: 8px; padding: 0.4rem 1.2rem; background: rgba(30, 79, 163, 0.1); border: 1px solid rgba(30, 79, 163, 0.3); border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; color: #fff; box-shadow: 0 0 20px rgba(30,79,163,0.2); }

.hero-title { font-size: 5.5rem; font-weight: 800; line-height: 1.05; letter-spacing: -2px; margin-bottom: 1.5rem; position: relative; z-index: 1;}
.hero-title::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 60%; background: radial-gradient(ellipse, rgba(242, 140, 40, 0.15) 0%, transparent 60%); z-index: -1; filter: blur(30px); pointer-events: none;}
.text-gradient { 
    background: linear-gradient(to right, #4fa1ff, var(--brand-orange)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-shadow: 0 10px 30px rgba(30, 79, 163, 0.4); 
    filter: drop-shadow(0 0 15px rgba(242, 140, 40, 0.3));
}
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 2.5rem; line-height: 1.7; }

.hero-btns { display: flex; justify-content: center; gap: 1.25rem; margin-bottom: 1rem; }
.hero-microcopy { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4rem; opacity: 0.8; }

/* Dashboard Mockup - Premium 3D */
.hero-mockup { 
    width: 100%; 
    max-width: 950px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 20; 
    padding: 0 1rem; 
    animation: float 7s ease-in-out infinite; 
}
.mockup-window { 
    background: #020617; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 16px; 
    box-shadow: 0 30px 100px rgba(30, 79, 163, 0.35), 0 0 0 1px rgba(30, 79, 163, 0.25) inset, 0 0 40px rgba(242, 140, 40, 0.1); 
    overflow: hidden; 
    transform: perspective(1200px) rotateX(4deg); 
    transition: all 0.6s var(--ease-out-expo);
    transform-origin: bottom center;
}
.mockup-window:hover {
    transform: perspective(1200px) rotateX(1deg) translateY(-8px) scale(1.01);
    box-shadow: 0 50px 120px rgba(30, 79, 163, 0.5), 0 0 0 1px rgba(242, 140, 40, 0.4) inset, 0 0 80px rgba(242, 140, 40, 0.2);
}


.mac-header { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; background: #061126; justify-content: flex-start; }
.mac-btns { display: flex; gap: 8px; margin-right: 20px; }
.mac-btn { width: 12px; height: 12px; border-radius: 50%; opacity: 0.8; transition: opacity 0.3s; }
.mockup-window:hover .mac-btn { opacity: 1; }
.mac-btn.red { background: #ff5f56; }
.mac-btn.yellow { background: #ffbd2e; }
.mac-btn.green { background: #27c93f; }
.mockup-address { background: #020617; padding: 0.4rem 1.5rem; border-radius: 6px; font-size: 0.85rem; text-align: left; width: 350px; color: var(--text-muted); border: 1px solid rgba(255,255,255,0.02); }

.mockup-body { padding: 2rem; background: var(--bg-dark); position: relative; z-index: 10; overflow: hidden; }
.mockup-body::after {
    content: ''; position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
    width: 80%; height: 250px;
    background: radial-gradient(ellipse at bottom, rgba(242, 140, 40, 0.12) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
    transition: opacity 0.5s;
}
.mockup-window:hover .mockup-body::after { opacity: 1; background: radial-gradient(ellipse at bottom, rgba(242, 140, 40, 0.18) 0%, transparent 65%); }

/* Mockup Internals */
.mockup-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.m-stat-box { background: rgba(30, 79, 163, 0.05); border: 1px solid rgba(30, 79, 163, 0.15); padding: 1.25rem 1.5rem; border-radius: 12px; text-align: left; transition: all 0.3s; }
.m-stat-box:hover { background: rgba(30, 79, 163, 0.1); border-color: rgba(30, 79, 163, 0.3); }
.m-stat-title { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 0.5rem; }
.m-stat-val { font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; letter-spacing: -0.5px; }

/* Uniform colors for mockups */
.m-stat-diff.text-blue { color: var(--brand-blue-bright); }
.m-stat-diff.text-green { color: var(--brand-blue-bright); } /* Removed green */
.m-stat-diff.text-orange { color: var(--brand-orange); }
.text-purple { color: var(--brand-blue-bright); } /* Removed purple */

.mockup-charts { display: grid; grid-template-columns: 2fr 1.3fr; gap: 1.25rem; }
.m-chart-left, .m-chart-right { background: rgba(30, 79, 163, 0.05); border: 1px solid rgba(30, 79, 163, 0.15); padding: 1.5rem; border-radius: 12px; transition: all 0.3s; }
.m-chart-left:hover, .m-chart-right:hover { background: rgba(30, 79, 163, 0.1); border-color: rgba(30, 79, 163, 0.3); }

.m-chart-title { font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 1.5rem; }
.m-bars { display: flex; align-items: flex-end; justify-content: space-evenly; height: 100px; padding: 0 1rem; }
.m-bar { width: 18px; border-radius: 4px; transition: height 1s var(--ease-out-expo); cursor: pointer; }
.m-bar:hover { filter: brightness(1.2); }
.m-bar.blue { background: rgba(30, 79, 163, 0.6); }
.m-bar.orange { background: var(--brand-orange); box-shadow: 0 0 15px rgba(242, 140, 40, 0.4); }

.m-int-list { display: flex; flex-direction: column; gap: 1rem; justify-content: center; height: 100%; padding-bottom: 1.5rem; }
.m-int-item { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; }
.m-ai-tag { display: inline-flex; align-items: center; justify-content: center; width: 60px; color: #F28C28; background: rgba(242, 140, 40, 0.1); border: 1px solid rgba(242, 140, 40, 0.25); padding: 5px 8px; border-radius: 12px; font-weight: 500; font-size: 0.75rem; transition: background 0.3s; }
.m-int-item:hover .m-ai-tag { background: rgba(242, 140, 40, 0.2); }
.text-white { color: #fff !important; }
.pl-2 { padding-left: 0.75rem; }

/* --- STATS & INTEGRATIONS --- */
.stats-integrations { position: relative; z-index: 10; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 2rem 0; margin-top: 4rem; position: relative; z-index: 10; }
.stats-grid::before { content: ''; position: absolute; top: 0; left: 10%; width: 80%; height: 1px; background: linear-gradient(to right, transparent, rgba(30, 79, 163, 0.5), transparent); z-index: 0; }

.stat-col { text-align: center; transition: transform 0.4s var(--ease-out-expo); cursor: default; }
.stat-col:hover { transform: translateY(-5px); }
.stat-icon-wrap { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 1.25rem; transition: all 0.4s; }
.stat-icon-wrap.blue { background: rgba(30, 79, 163, 0.15); color: var(--brand-blue-bright); border: 1px solid rgba(30, 79, 163, 0.3); }
.stat-icon-wrap.orange { background: rgba(242, 140, 40, 0.15); color: var(--brand-orange); border: 1px solid rgba(242, 140, 40, 0.3); }
.stat-col:hover .stat-icon-wrap { transform: scale(1.15); box-shadow: 0 0 25px currentColor; }

.stat-col h3 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; letter-spacing: -1px; transition: transform 0.4s var(--ease-out-expo), color 0.4s; }
.stat-col:hover h3 { transform: scale(1.08); color: var(--brand-orange); }
.stat-col p { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }

.integration-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.integration-pills span { padding: 0.7rem 1.4rem; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 50px; font-size: 0.875rem; color: var(--text-muted); font-weight: 500; transition: all 0.3s; cursor: default; }
.integration-pills span:hover { color: #fff; border-color: rgba(255,255,255,0.3); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }

/* --- FEATURES SECTION --- */
.section-title { font-size: 2.8rem; font-weight: 800; line-height: 1.15; letter-spacing: -1px; }
.section-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; max-width: 600px; margin-left: auto; margin-right: auto; }

.features-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.feature-large-card { background: var(--bg-dark); border: 1px solid var(--card-border); border-radius: 24px; padding: 3.5rem; display: flex; flex-direction: column; overflow: hidden; position: relative; transition: all 0.5s var(--ease-out-expo); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 20px 40px rgba(0,0,0,0.4); }
.feature-large-card:hover { transform: translateY(-8px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 30px 70px rgba(0,0,0,0.6); }

/* Card Gradients */
.feature-large-card.border-blue { background: linear-gradient(160deg, rgba(30, 79, 163, 0.1) 0%, var(--bg-dark) 60%); }
.feature-large-card.border-blue:hover { border-color: rgba(30, 79, 163, 0.8); box-shadow: 0 0 50px rgba(30, 79, 163, 0.25); }
.feature-large-card.border-orange { background: linear-gradient(160deg, rgba(242, 140, 40, 0.08) 0%, var(--bg-dark) 60%); }
.feature-large-card.border-orange:hover { border-color: rgba(242, 140, 40, 0.8); box-shadow: 0 0 50px rgba(242, 140, 40, 0.25); }

.feat-tag { display: inline-block; align-self: flex-start; padding: 0.4rem 0.8rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; border-radius: 6px; }
.feat-tag.blue { background: rgba(30, 79, 163, 0.2); color: var(--brand-blue-bright); }
.feat-tag.orange { background: rgba(242, 140, 40, 0.15); color: var(--brand-orange); }

.feat-head { display: flex; align-items: center; gap: 1.2rem; }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: transform 0.3s; }
.feature-large-card:hover .feat-icon { transform: scale(1.1); }
.feat-icon.blue { background: rgba(30, 79, 163, 0.2); color: var(--brand-blue-bright); border: 1px solid rgba(30, 79, 163, 0.4); }
.feat-icon.orange { background: rgba(242, 140, 40, 0.15); color: var(--brand-orange); border: 1px solid rgba(242, 140, 40, 0.3); }

.feature-large-card h3 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.5px; color: #fff; }
.feat-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }
.feat-list { flex: 1; display: flex; flex-direction: column; gap: 0.9rem; }
.feat-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; font-weight: 500; }
.feat-list i { font-size: 1.2rem; }
.feat-link { font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.feat-link:hover { gap: 10px; text-shadow: 0 0 10px currentColor; }
.feat-link.blue { color: var(--brand-blue-bright); }
.feat-link.orange { color: var(--brand-orange); }

.unified-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 0.8rem 1.8rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; box-shadow: 0 10px 30px rgba(0,0,0,0.5); backdrop-filter: blur(10px); }

/* --- AI FEATURES --- */
.ai-section { background: radial-gradient(circle at center, rgba(30, 79, 163, 0.1) 0%, var(--bg-dark) 70%); }
.ai-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* Chatbot Mock */
.chat-mockup { background: var(--bg-dark); border: 1px solid rgba(242, 140, 40, 0.3); border-radius: 20px; display: flex; flex-direction: column; overflow: hidden; position: relative; z-index: 20; box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(30, 79, 163, 0.15); transition: transform 0.5s var(--ease-out-expo); transform: perspective(1000px) rotateY(-3deg); }
.chat-mockup:hover { transform: perspective(1000px) rotateY(0deg) scale(1.02); box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 80px rgba(242, 140, 40, 0.3); }
.chat-mockup::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(to right, var(--brand-orange), transparent); z-index: 10; }

.chat-head { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--card-border); background: rgba(255,255,255,0.02); display: flex; justify-content: space-between; align-items: center; }
.chat-avatar { width: 40px; height: 40px; background: rgba(242, 140, 40, 0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; border: 1px solid rgba(242, 140, 40, 0.3); }
.chat-name { font-weight: 700; font-size: 0.95rem; color: #fff; }
.chat-badge { padding: 4px 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; font-size: 0.75rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }

.live-indicator { display: block; width: 6px; height: 6px; background-color: var(--brand-orange); border-radius: 50%; animation: pulse-glow 2s infinite; }

.chat-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; min-height: 220px; background: linear-gradient(to bottom, transparent, rgba(242, 140, 40, 0.02)); }
.msg { padding: 0.9rem 1.15rem; border-radius: 12px; font-size: 0.9rem; max-width: 85%; line-height: 1.6; }
.msg.user { align-self: flex-end; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-bottom-right-radius: 4px; color: #fff; }
.msg.ai { align-self: flex-start; background: rgba(242, 140, 40, 0.1); border: 1px solid rgba(242, 140, 40, 0.2); border-bottom-left-radius: 4px; color: #fff; }

.chat-input { padding: 1.25rem 1.5rem; border-top: 1px solid var(--card-border); background: rgba(255,255,255,0.02); display: flex; justify-content: space-between; align-items: center; }
.typing-cursor { animation: blink 1s step-end infinite; color: var(--brand-orange); font-weight: bold; }
.chat-send { color: var(--brand-orange); font-size: 1.4rem; cursor: pointer; transition: transform 0.3s; }
.chat-send:hover { transform: translateX(3px) scale(1.1); }

/* Grid */
.ai-grid { grid-column: span 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ai-card { background: var(--bg-dark); border: 1px solid var(--card-border); border-radius: 20px; padding: 2rem; transition: all 0.4s var(--ease-out-expo); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.ai-card:hover { transform: translateY(-8px) scale(1.04); border-color: rgba(30, 79, 163, 0.6); box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 30px rgba(30, 79, 163, 0.15); background: rgba(30, 79, 163, 0.08); }
.ai-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem; transition: transform 0.3s; }
.ai-card:hover .ai-icon { transform: scale(1.15) rotate(5deg); box-shadow: 0 0 20px currentColor; }

/* Uniform Grid Icon colors (Brand strict) */
.ai-icon.blue { background: rgba(30, 79, 163, 0.2); color: var(--brand-blue-bright); border: 1px solid rgba(30, 79, 163, 0.4); }
.ai-icon.orange { background: rgba(242, 140, 40, 0.15); color: var(--brand-orange); border: 1px solid rgba(242, 140, 40, 0.3); }

.ai-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; color: #fff; letter-spacing: -0.3px; }
.ai-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* --- TESTIMONIALS --- */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.test-card { background: var(--bg-dark); border: 1px solid var(--card-border); padding: 2.5rem; border-radius: 20px; display: flex; flex-direction: column; transition: all 0.5s var(--ease-out-expo); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.test-card:hover { transform: perspective(1000px) rotateX(2deg) translateY(-8px); border-color: rgba(242, 140, 40, 0.5); box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 40px rgba(242, 140, 40, 0.15); }
.stars { font-size: 1.2rem; display: flex; gap: 4px; transition: transform 0.3s, text-shadow 0.3s; }
.test-card:hover .stars { transform: scale(1.08); text-shadow: 0 0 15px rgba(242, 140, 40, 0.8); }
.test-text { font-size: 1.05rem; font-weight: 400; color: #e2e8f0; line-height: 1.7; flex: 1; font-style: italic; }
.test-user { display: flex; align-items: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; margin-top: 1.5rem; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; border: 2px solid var(--bg-dark); box-shadow: 0 0 0 2px rgba(255,255,255,0.1); }
.test-user h5 { font-size: 1rem; font-weight: 700; color: #fff; }

/* --- BOTTOM CTA & FORM --- */
.cta-gradient-banner { padding: 4.5rem 2rem; background: linear-gradient(135deg, rgba(30, 79, 163, 0.25) 0%, rgba(242, 140, 40, 0.15) 100%), var(--bg-dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 20px 50px rgba(0,0,0,0.5); }
.cta-gradient-banner h2 { font-size: 2.6rem; font-weight: 800; letter-spacing: -1px; }
.cta-banner-links { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.cta-banner-links span { font-size: 1rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; color: #e2e8f0; }
.cta-banner-links i { font-size: 1.3rem; }

.book-demo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.demo-left h3 { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; color: #fff; }
.demo-perks { display: flex; flex-direction: column; gap: 1.75rem; }
.demo-perks li { display: flex; gap: 1.25rem; align-items: flex-start; }
.d-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(30, 79, 163, 0.15); color: var(--brand-blue-bright); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; border: 1px solid rgba(30, 79, 163, 0.3); flex-shrink: 0; }
.demo-perks h5 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 2px; }

.dark-form { background: var(--card-bg); border: 1px solid var(--card-border); padding: 3rem; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); backdrop-filter: blur(10px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-ctrl label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-ctrl input, .form-ctrl select { width: 100%; padding: 0.9rem 1.1rem; background: rgba(2, 6, 23, 0.7); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; font-family: inherit; font-size: 0.95rem; outline: none; transition: all 0.3s; }
.form-ctrl input:focus, .form-ctrl select:focus { border-color: var(--brand-orange); background: rgba(2, 6, 23, 0.95); box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.2); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.s-icon { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }

/* --- FOOTER --- */
.footer { background: var(--bg-dark); position: relative; z-index: 10; width: 100%; overflow: hidden; }
.footer-inner-border { border-top: 1px solid var(--card-border); box-shadow: inset 0 1px 0 rgba(255,255,255,0.02); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); color: var(--text-muted); font-size: 1.2rem; margin-right: 0.5rem; transition: all 0.3s; }
.socials a:hover { color: #fff; border-color: var(--brand-blue-bright); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(30, 79, 163, 0.3); }
.f-links { display: flex; flex-direction: column; gap: 0.9rem; }
.f-links h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.f-links a { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.f-links a:hover { color: var(--brand-blue-bright); padding-left: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }

/* --- RESPONSIVENESS AND ANIMATIONS --- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.fade-up.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- ADMIN DASHBOARD --- */
.admin-layout { display: flex; min-height: 100vh; overflow: hidden; background: var(--bg-dark); }
.admin-sidebar { width: 280px; background: rgba(6, 7, 11, 0.95); border-right: 1px solid var(--card-border); display: flex; flex-direction: column; padding: 2rem 1.5rem; flex-shrink: 0; z-index: 40; }
.admin-main { flex: 1; overflow-y: auto; padding: 2.5rem; position: relative; z-index: 10; height: 100vh; }
.admin-nav { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.admin-nav-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1.2rem; color: var(--text-muted); font-weight: 600; border-radius: 12px; cursor: pointer; transition: all 0.3s; }
.admin-nav-item:hover { background: rgba(30, 79, 163, 0.1); color: #fff; }
.admin-nav-item.active { background: var(--brand-blue-bright); color: #fff; box-shadow: 0 10px 20px rgba(30, 79, 163, 0.3); }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.tab-content { display: none; animation: fadeIn 0.4s var(--ease-out-expo); }
.tab-content.active { display: block; }

.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.dash-card { background: var(--card-bg); border: 1px solid var(--card-border); padding: 1.5rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.d-c-top { display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.95rem; font-weight: 600; margin-bottom: 1rem; position: relative; z-index: 2; }
.d-c-val { font-size: 2.5rem; font-weight: 800; color: #fff; letter-spacing: -1px; position: relative; z-index: 2; }

.admin-table-wrap { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; text-align: left; }
.admin-table th { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--card-border); color: var(--text-muted); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-table td { padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.02); color: #fff; font-size: 0.95rem; font-weight: 500; }
.admin-table tr:hover { background: rgba(255,255,255,0.02); }
.admin-table tr:last-child td { border-bottom: none; }
.action-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 5px; border-radius: 6px; transition: all 0.2s; font-size: 1.2rem; }
.action-btn:hover { background: rgba(255, 95, 86, 0.1); color: #ff5f56; }
.action-btn.qr-btn:hover { background: rgba(30, 79, 163, 0.1); color: var(--brand-orange); }

.qrcode-box { background: #fff; padding: 1.5rem; border-radius: 12px; display: inline-block; margin-top: 1.5rem; }
.qrcode-box img { margin: 0 auto; }

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

@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .nav-links, .nav-cta .btn-outline { display: none; }
    .mockup-charts { grid-template-columns: 1fr; }
    .ai-layout { grid-template-columns: 1fr; gap: 3rem; }
    .ai-grid { grid-template-columns: repeat(2, 1fr); }
    .test-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
}

@media (max-width: 768px) {
    .hero-section { padding-top: 140px; }
    .hero-title { font-size: 3rem; }
    .hero-btns { flex-direction: column; }
    .mockup-stats { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-split-grid { grid-template-columns: 1fr; }
    .ai-grid { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .book-demo-split { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; gap: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .f-brand { grid-column: span 2; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .mockup-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .f-brand { grid-column: span 1; }
    .cta-banner-links { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
