/* --------------------------------------------------
   📄 Page Intro (DETAILS ONLY)
-------------------------------------------------- */
.page-intro {
    background: linear-gradient(180deg, #fdfdff 0%, #faf7fb 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.page-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    display: block;
    margin: 0.6rem auto;
}

.page-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: auto;
}

/* --------------------------------------------------
   📘 Content Body (DETAILS ONLY)
-------------------------------------------------- */
.content-wrapper {
    padding: 3rem 0;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
}

.content-body h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
}

.content-body h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    position: absolute;
    bottom: 0;
    left: 0;
}

.content-body li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
}

.content-body li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* --------------------------------------------------
   🚀 CTA (DETAILS ONLY)
-------------------------------------------------- */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
}
.btn-cta {
    padding: 1rem 3rem;
    border-radius: 50px;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}
