/* ============================================================
   SHARED CTA COMPONENT
   ============================================================ */
.home-cta {
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    text-align: center;
    position: relative;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(172, 125, 36, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.home-cta .site-container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
}

.cta-line {
    height: 2px;
    flex: 1;
}

.cta-line:first-child {
    background: linear-gradient(90deg, rgba(172, 125, 36, 0) 0%, #AC7D24 100%);
}

.cta-line:last-child {
    background: linear-gradient(90deg, #AC7D24 0%, rgba(172, 125, 36, 0) 100%);
}

.cta-diamond {
    width: 8px;
    height: 8px;
    background: #AC7D24;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    max-width: 568px;
    margin: 0 auto 32px auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #AC7D24;
    color: #FFFFFF;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #90661a;
    transform: translateY(-2px);
    color: #FFF;
}

@media (max-width: 575px) {
    .cta-line { width: 80px; }
}
