/* DESIGN SYSTEM - LIGHT & CYAN */
.custodia-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    text-align: center;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px; height: 8px;
    background-color: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(90deg, #0f172a 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.hero-buttons { display: flex; gap: 15px; justify-content: center; position: relative; z-index: 2; }

.btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-primary { background: #0f172a; color: #00d4ff; border: 1px solid #0f172a; }
.btn-primary:hover { background: #00d4ff; color: #0f172a; border-color: #00d4ff; }
.btn-outline { background: white; color: #0f172a; border: 1px solid #cbd5e1; }
.btn-outline:hover { border-color: #0f172a; }

/* STATS BAR (Dark & Sleek) */
.stats-bar {
    max-width: 1000px;
    margin: -30px auto 60px;
    background: #0f172a;
    border-radius: 8px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-around;
    padding: 25px;
    position: relative;
    z-index: 5;
    color: white;
}

.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.5rem; font-weight: 800; color: #00d4ff; }
.stat-label { font-size: 0.75rem; color: #94a3b8; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.stat-divider { width: 1px; background: #334155; height: 40px; }

/* PRODUCT SPOTLIGHT */
.product-spotlight { padding: 0 20px 80px; max-width: 1200px; margin: 0 auto; }
.spotlight-container {
    display: flex; align-items: center; gap: 50px;
    background: white; border: 1px solid #e2e8f0;
    border-radius: 20px; padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}
.spotlight-image { flex: 1; position: relative; }
.spotlight-image img { width: 100%; border-radius: 10px; }
.spotlight-content { flex: 1; }
.accent-text { color: #00d4ff; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
.spotlight-content h2 { font-size: 2.5rem; color: #0f172a; margin-bottom: 20px; line-height: 1; text-transform: uppercase; }
.spotlight-content p { color: #64748b; line-height: 1.6; margin-bottom: 30px; }
.tech-list { list-style: none; padding: 0; margin-bottom: 30px; }
.tech-list li { margin-bottom: 10px; font-weight: 600; color: #334155; display: flex; align-items: center; gap: 10px; }
.tech-list li span { color: #00d4ff; }
.learn-more-btn { color: #0f172a; font-weight: 700; text-decoration: none; border-bottom: 2px solid #00d4ff; padding-bottom: 2px; }

/* SERVICES GRID */
.services-section { padding: 60px 20px; background: #f8fafc; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2rem; color: #0f172a; margin-bottom: 10px; }
.line-accent { width: 50px; height: 3px; background: #00d4ff; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.service-card { background: white; padding: 30px; border-radius: 12px; border: 1px solid #e2e8f0; transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #00d4ff; box-shadow: 0 10px 30px -10px rgba(0, 212, 255, 0.15); }
.icon-box { width: 50px; height: 50px; background: rgba(0, 212, 255, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #00d4ff; margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; color: #0f172a; margin-bottom: 10px; }
.service-card p { color: #64748b; font-size: 0.95rem; line-height: 1.5; }

@media(max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .stats-bar { flex-direction: column; gap: 20px; margin-top: 20px; padding: 20px; }
    .stat-divider { display: none; }
    .spotlight-container { flex-direction: column; padding: 20px; }
}