/* === FINAL FULL-WIDTH CTA SECTION === */

.final-cta-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #0f172a; /* Deep dark blue base */
    overflow: hidden;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Background Effects */
.cta-bg-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0f172a 70%);
    z-index: 1;
}
/* Subtle pattern overlay */
.cta-bg-overlay::after {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(#334155 1px, transparent 1px), linear-gradient(90deg, #334155 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
}

.cta-content-wrapper {
    position: relative; z-index: 10;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* 1. Header Styles */
.cta-eyebrow {
    display: inline-block;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: #3b82f6; margin-bottom: 20px;
    background: rgba(59, 130, 246, 0.1); padding: 6px 16px; border-radius: 30px; border: 1px solid rgba(59, 130, 246, 0.3);
}

.cta-title {
    font-size: 3.5rem; line-height: 1.1; font-weight: 900; margin-bottom: 25px; color: #fff;
}
.highlight-text {
    color: transparent;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}

.cta-lead {
    font-size: 1.2rem; color: #94a3b8; max-width: 700px; margin: 0 auto 60px auto; line-height: 1.6;
}

/* 2. Feature Grid Styles */
.cta-features-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; width: 100%; max-width: 1100px;
    margin-bottom: 70px;
}

.cta-feat-card {
    background: rgba(30, 41, 59, 0.6); /* Semi-transparent card */
    border: 1px solid rgba(51, 65, 85, 0.5);
    padding: 30px 20px; border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}
.cta-feat-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.9);
    border-color: #3b82f6;
}

.cf-icon-box {
    font-size: 2.5rem; margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05); width: 70px; height: 70px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px auto;
}

.cf-title { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cf-desc { font-size: 0.9rem; color: #cbd5e1; line-height: 1.5; }


/* 3. Footer Action Styles */
.cta-footer-action {
    display: flex; flex-direction: column; align-items: center; gap: 25px;
}

.cta-motivation {
    font-size: 1.5rem; font-weight: 700; color: #fff;
}

.btn-register-giant {
    background: #3b82f6;
    color: #fff; border: none;
    padding: 20px 50px; border-radius: 12px;
    font-size: 1.3rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    animation: pulse-giant 2s infinite;
    display: flex; align-items: center; gap: 15px;
    transition: transform 0.2s, background 0.2s;
}
.btn-register-giant:hover {
    background: #2563eb; transform: scale(1.02);
}

@keyframes pulse-giant {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(59, 130, 246, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.cta-trust-badges {
    display: flex; gap: 15px; align-items: center;
    font-size: 0.8rem; color: #64748b; font-weight: 600; text-transform: uppercase; margin-top: 10px;
}
.dot { color: #334155; }


/* Responsive */
@media (max-width: 900px) {
    .cta-title { font-size: 2.2rem; }
    .cta-features-row { grid-template-columns: 1fr; gap: 20px; }
    .cta-motivation { font-size: 1.2rem; padding: 0 20px; }
    .btn-register-giant { width: 90%; justify-content: center; font-size: 1.1rem; }
    .cta-trust-badges { flex-direction: column; gap: 5px; }
    .dot { display: none; }
}