:root {
    --bg-main: #0f172a;
    --bg-card: #1e293b;
    --primary: #3b82f6; /* Global Primary Blue */
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
}
body { background: var(--bg-main); color: var(--text-white); font-family: 'Poppins', sans-serif; overflow-x: hidden; }
/* --- HERO SECTION --- */
.anim-hero {
    position: relative; min-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden; padding-top: 80px;
}
/* Dynamic Abstract Background */
.hero-bg-dynamic {
    position: absolute; inset: 0; background: #0f172a; z-index: 0;
    overflow: hidden;
}
.hero-bg-dynamic::before, .hero-bg-dynamic::after {
    content: ''; position: absolute; width: 600px; height: 600px;
    border-radius: 50%; background: var(--primary); opacity: 0.1;
    filter: blur(80px); animation: floatOrb 10s infinite alternate;
}
.hero-bg-dynamic::before { top: -200px; left: -200px; }
.hero-bg-dynamic::after { bottom: -200px; right: -200px; animation-delay: 5s; }
@keyframes floatOrb { from { transform: translate(0,0); } to { transform: translate(50px, 50px); } }
.relative-z { position: relative; z-index: 2; width: 100%; }
.pulse-tag {
    display: inline-block; padding: 8px 16px; background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--primary); color: #93c5fd; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}
.hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.hero-sub { font-size: 1.15rem; color: #cbd5e1; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.btn-group-hero { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.glow-effect {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); 
    border: none; background: linear-gradient(90deg, #3b82f6, #2563eb);
}
.glow-effect:hover { box-shadow: 0 0 30px rgba(59, 130, 246, 0.7); transform: translateY(-2px); }
/* --- ABOUT SECTION --- */
.section { padding: 80px 0; }
.split-layout { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.text-col { flex: 1; min-width: 320px; }
.visual-col { flex: 1; min-width: 320px; display: flex; justify-content: center; height: 300px; align-items: center; }
.sub-tag { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; display: block; }
.text-col h2 { font-size: 2.5rem; margin-bottom: 20px; }
.lead-text { font-size: 1.1rem; color: white; margin-bottom: 15px; }
.highlight { color: var(--primary); }
.text-col p { color: var(--text-muted); line-height: 1.7; }
/* Animated Floating Elements */
.float-box { position: relative; width: 100%; height: 100%; }
.float-item { position: absolute; color: var(--primary); opacity: 0.3; }
.f1 { font-size: 4rem; top: 20%; left: 20%; animation: floatY 4s infinite ease-in-out; }
.f2 { font-size: 3rem; bottom: 20%; right: 20%; animation: floatY 5s infinite ease-in-out reverse; }
.f3 { font-size: 2rem; top: 50%; left: 50%; animation: floatY 3s infinite ease-in-out 1s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
/* --- TYPES GRID --- */
.bg-darker { background: #0b1120; }
.sec-header.centered { text-align: center; margin-bottom: 60px; }
.types-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}
.type-card {
    background: var(--bg-card); padding: 30px; border-radius: 12px; text-align: center;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.type-card:hover { transform: translateY(-5px); border-color: var(--primary); background: rgba(30, 41, 59, 0.8); }
.type-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; transition: 0.3s; }
.type-card:hover i { transform: scale(1.1); }
.type-card h3 { font-size: 1.2rem; color: white; margin-bottom: 10px; }
.type-card p { font-size: 0.95rem; color: var(--text-muted); }
.wide-card { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; width: 100%; }
/* --- WORKFLOW WAVE --- */
.wave-process {
    display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px;
    max-width: 1000px; margin: 40px auto 0;
}
.wave-step { text-align: center; width: 120px; position: relative; }
.step-icon {
    width: 60px; height: 60px; background: rgba(59, 130, 246, 0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 15px;
    color: var(--primary); font-size: 1.2rem; border: 1px solid rgba(59, 130, 246, 0.2);
    transition: 0.3s;
}
.wave-step:hover .step-icon { background: var(--primary); color: white; transform: scale(1.1); }
.wave-step h4 { font-size: 1rem; color: white; margin-bottom: 5px; }
.wave-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.3; }
.wave-line {
    flex: 1; height: 2px; background: rgba(255,255,255,0.1); margin-top: -40px; min-width: 30px;
}
/* --- USE CASES PILLS --- */
.pill-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 40px; }
.pill {
    padding: 10px 25px; background: var(--bg-card); border-radius: 50px; border: 1px solid rgba(255,255,255,0.05);
    color: white; font-weight: 500; transition: 0.3s; cursor: default;
}
.pill:hover { border-color: var(--primary); color: var(--primary); transform: scale(1.05); }
/* --- CTA --- */
.cta-strip { padding: 80px 0; background: linear-gradient(180deg, var(--bg-main) 0%, #172554 100%); }
@media (max-width: 768px) {
    .anim-hero h1 { font-size: 2.2rem; }
    .split-layout { flex-direction: column; }
    .visual-col { height: 200px; }
    .wave-line { display: none; }
    .wave-process { flex-direction: column; gap: 30px; }
    .wave-step { width: 100%; }
}