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

/* Main Wrapper */
.premium-bento-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    padding: 100px 5%;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #0A0A0A !important;
}

@media (max-width: 768px) {
    .premium-bento-section {
        padding: 60px 5%;
    }
}

/* Grid Container */
.bento-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .bento-container {
        grid-template-columns: 1fr;
    }
}

/* Solid Cards (Not Glassmorphism) */
.solid-panel {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.solid-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(106, 191, 22, 0.5); /* Accent Green Border on Hover */
}

/* Grid Layout Elements */
.hero-card {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .hero-card {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

.geo-card {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

@media (max-width: 992px) {
    .geo-card {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

.faq-card {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

@media (max-width: 992px) {
    .faq-card {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

/* Typography Overrides */
.font-montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

.font-inter {
    font-family: 'Inter', sans-serif !important;
}

.text-white {
    color: #F3F7FF !important;
}

.text-gray {
    color: #A0AEC0 !important;
    line-height: 1.7;
}

.text-accent {
    color: #6ABF16 !important;
}

.text-trust {
    color: #1675BF !important;
}

/* Specific Content Styling */
.hero-card h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .hero-card h1 {
        font-size: 2.5rem;
    }
}

.hero-card p {
    font-size: 1.25rem;
    max-width: 90%;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
}

.faq-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.geo-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(106, 191, 22, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ABF16;
}