/* Averon Labs - Premium Tech CSS */
:root {
    --bg: #05070a;
    --card-bg: rgba(15, 18, 25, 0.8);
    --primary: #2563eb;
    --accent: #60a5fa;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Global Typography --- */
h1, h2, h3, .gradient-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* --- Page Header --- */
.page-header { 
    text-align: center; 
    margin-bottom: 80px; 
}

.badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header h1 { 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    margin: 20px 0; 
    line-height: 1.1; 
}

.gradient-text {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle { 
    color: var(--text-dim); 
    font-size: 1.2rem; 
    max-width: 700px; 
    margin: 0 auto; 
}

/* --- Bento Grid (Single Line Desktop) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-bottom: 100px;
    align-items: stretch;
    perspective: 1000px;
}

.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

/* --- Premium Hover Effects --- */
.bento-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(37, 99, 235, 0.1);
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.bento-item:hover::before { opacity: 1; }

.icon-circle {
    width: 50px; height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px; font-size: 1.2rem;
    transition: all 0.4s ease;
    color: white;
}

.bento-item:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 15px var(--primary);
}

/* --- Content Uniformity Fix --- */
.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.bento-item p, 
.feat-list li {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.feat-list {
    list-style: none;
    margin-top: 15px;
}

.feat-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 300;
}

.feat-list i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-right: 12px;
}

/* --- Modern Accordion --- */
.legal-container { max-width: 800px; margin: 0 auto; }
.modern-accordion { 
    background: var(--card-bg); 
    border-radius: 20px; 
    border: 1px solid var(--border); 
    overflow: hidden; 
}

.acc-item { border-bottom: 1px solid var(--border); }
.acc-header {
    padding: 24px 32px; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer; transition: 0.3s;
}

.acc-header span { font-weight: 600; font-size: 1.1rem; }
.acc-header i { transition: 0.4s; color: var(--text-dim); }

.acc-body { 
    max-height: 0; overflow: hidden; transition: 0.4s ease; 
    padding: 0 32px; color: var(--text-dim); 
}

.acc-item.active .acc-body { max-height: 300px; padding-bottom: 24px; }
.acc-item.active .acc-header { color: var(--primary); }
.acc-item.active i { transform: rotate(45deg); color: var(--primary); }

/* --- Fully Responsive Breakpoints --- */
@media (max-width: 1100px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
    }
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 2.2rem; }
    .bento-grid {
        grid-template-columns: 1fr; /* Mobile: Stacked */
    }
    .bento-item { padding: 35px 25px; }
}