/* ============================================================
   SECTION 7: SCOPE MANAGEMENT (COMPLETE)
   ============================================================ */

.scope-section {
    padding: 140px 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.scope-header {
    text-align: center;
    margin-bottom: 60px; /* Tightened header gap */
}

.scope-header .section-head {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #0F172A; /* Your primary color */
    text-transform: uppercase;
}

/* 1. INCLUSIONS AREA (TOP BOX) */
.inclusions-wrapper {
    position: relative;
    max-width: 1200px; /* Main Width */
    margin: 0 auto 30px; /* 30px gap between this and boundaries */
    padding: 80px 60px;
    background-color: #F8FAFC;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    z-index: 1;
}

.inclusions-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../assets/struckaxiom.webp'); 
    background-attachment: fixed;
    border-radius: 24px;
    opacity: 0.5; /* Keeps pattern subtle */
    z-index: -1;
    pointer-events: none;
}

.inclusions-wrapper h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 32px;
    color: #0F172A;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
}

.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.inclusion-item h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #40387A 0%, #A095EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.inclusion-item p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* 2. BOUNDARIES AREA (BOTTOM BOX) */
.boundaries-banner {
    max-width: 1200px; /* MATCHES INCLUSIONS */
    margin: 0 auto;
    background: #0F172A;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.boundaries-content {
    padding: 60px;
    flex: 1.2;
}

.boundaries-image {
    flex: 0.8;
    background-image: url('https://images.unsplash.com/photo-1510915228340-29c85a43dcfe?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.7);
}

.boundaries-content h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 28px;
    color: #F43F5E; /* Rose color for "Exclusions" */
    margin-bottom: 30px;
    text-transform: uppercase;
}

.exclusion-item {
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #CBD5E1;
}

.exclusion-item strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 5px;
}

/* 3. FINAL CTA BUTTON (OUTSIDE CONTAINERS) */
.scope-footer-cta {
    text-align: center;
    margin-top: 60px; /* Space after the dark box */
}

.btn-get-started {
    display: inline-block;
    padding: 22px 50px;
    background: linear-gradient(90deg, #40387A 0%, #A095EE 100%);
    color: #FFFFFF;
    font-family: 'League Spartan', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .inclusion-grid { grid-template-columns: 1fr; }
    .boundaries-banner { flex-direction: column; }
    .inclusions-wrapper, .boundaries-banner { margin-left: 20px; margin-right: 20px; }
}