

/* MANIFESTO CLOSING */

.closing-manifesto {
    background: #ffffff; /* Apple white, bukan off-white */
    padding: 160px 5% 120px;
    text-align: center;
    border-top: 0px solid rgba(0, 0, 0, 0.08); /* Hairline divider Apple */
}

.closing-container {
    max-width: 980px; /* Apple content width */
    margin: 0 auto;
}

.closing-text {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Gede tapi elegan */
    font-weight: 600;
    letter-spacing: -0.045em; /* Tight tracking Apple */
    line-height: 1.05;
    color: #1d1d1f; /* Apple black, bukan #000 */
    margin: 0 0 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

.closing-text .accent {
	background: linear-gradient(
	180deg,
	#4a4a4a 0%,
	#1d1d1f 45%,
	#7a7a7a 100%
	);

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.closing-subtext {
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0.011em;
    color: #6e6e73; /* Apple gray text */
    margin: 0 0 48px 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.closing-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0071E3;
    color: #fff;
    padding: 12px 28px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em; /* Apple tighten */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: #0077ED;
}

@media (max-width: 734px) {
    .closing-manifesto {
        padding: 100px 5% 80px;
    }
    .closing-text {
        font-size: 2.5rem;
    }
    .closing-subtext {
        font-size: 19px;
    }
}