.final-cta-section {
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Deep Gradient Background */
    background: radial-gradient(circle at top right, #2E1065, #0F172A 60%);
    color: #FFFFFF;
    overflow: hidden;
    padding: 120px 20px;
}

/* 1. THE ARCHITECTURAL GRID PATTERN */
.final-cta-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; /* Adjust size of the grid */
    z-index: 0;
}

/* 2. THE VIOLET GLOW ORB */
.final-cta-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: rgba(139, 92, 246, 0.15);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
}

.cta-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #A095EE;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
}

.cta-content-wrapper h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(48px, 8vw, 72px); /* Scales based on screen size */
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 30px;
}

.text-glow {
    background: linear-gradient(90deg, #FFFFFF, #A095EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content-wrapper p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* 3. THE BUTTON STYLE */
.btn-primary-glow {
    display: inline-block;
    padding: 24px 50px;
    background: #FFFFFF;
    color: #0F172A;
    font-family: 'League Spartan', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(160, 149, 238, 0);
}

.btn-primary-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(160, 149, 238, 0.25);
    background: #A095EE;
    color: #FFFFFF;
}

.cta-alt-link {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    color: #64748B;
    font-size: 15px;
}

.underlined-link {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight: 600;
    transition: color 0.2s;
}

.underlined-link:hover {
    color: #A095EE;
}

/* MOBILE REFINEMENT */
@media (max-width: 768px) {
    .final-cta-section { padding: 80px 20px; }
    .btn-primary-glow { width: 100%; padding: 20px; }
}