/* ── Base ── */
/* Brand: #573cf9 purple · #bfc3ff light purple · #ffbc27 yellow · white */
body { background: white; }

p, h1, h2 { pointer-events: none; user-select: none; }
a { pointer-events: all; text-decoration: none; }

/* ── HERO ── */
.on-hero {
    background: #573cf9;
    padding: 90px 5% 100px;
    text-align: center;
}

.on-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.on-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffbc27;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 26px;
    pointer-events: none;
    user-select: none;
}

.on-hero-title {
    font-size: clamp(1.7rem, 5vw, 2.9rem);
    font-weight: 900;
    color: white;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
}

.on-hero-sub {
    font-size: 1rem;
    color: #bfc3ff;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── STATS ── */
.on-stats-section {
    padding: 0 5%;
    margin-top: -48px;
    position: relative;
    z-index: 10;
}

.on-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.on-stat-card {
    background: white;
    border-radius: 20px;
    padding: 26px 16px 22px;
    text-align: center;
    box-shadow: 0 4px 28px rgba(87,60,249,0.13), 0 1px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.on-stat-icon {
    width: 50px; height: 50px;
    background: #ffbc27;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2px;
}

.on-stat-pre {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #bfc3ff; margin-bottom: -4px;
    pointer-events: none; user-select: none;
}

.on-stat-num {
    font-size: 2rem; font-weight: 900;
    color: #573cf9; line-height: 1; letter-spacing: -0.03em;
}

.on-stat-label {
    font-size: 0.74rem; font-weight: 600;
    color: #5a5270; line-height: 1.35;
    pointer-events: none; user-select: none;
}

/* ── WHO WE ARE ── */
.on-who-section {
    padding: 80px 5% 70px;
    background: #f5f4ff;
}

.on-who-inner {
    display: flex; gap: 64px; align-items: center;
}

.on-who-text { flex: 1.3; }
.on-who-visual { flex: 0.7; display: flex; flex-direction: column; gap: 14px; }

.on-section-label {
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #573cf9; margin-bottom: 12px;
    pointer-events: none; user-select: none;
}

.on-label-light { color: #ffbc27; }

.on-section-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 900; color: #573cf9;
    line-height: 1.25; margin-bottom: 20px; letter-spacing: -0.02em;
}

.on-section-title.center { text-align: center; margin-bottom: 8px; }

.on-title-white { color: white !important; margin-bottom: 40px !important; }

.on-body-text {
    font-size: 0.93rem; color: #3d2f6e; line-height: 1.8;
}

/* ── VISUAL CARDS (who section) ── */
.on-visual-card {
    background: white;
    border: 1.5px solid #d4cfff;
    border-radius: 18px;
    padding: 20px 22px;
    display: flex; align-items: center; gap: 16px;
    box-shadow: 0 2px 10px rgba(87,60,249,0.07);
}

.on-visual-card-accent {
    background: #573cf9;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(87,60,249,0.35);
}

.on-visual-icon {
    flex-shrink: 0; width: 54px; height: 54px;
    background: #ffbc27; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}

.on-visual-icon-accent { background: rgba(255,255,255,0.18); }

.on-visual-title {
    font-size: 0.92rem; font-weight: 800; color: #573cf9;
    margin-bottom: 4px; pointer-events: none; user-select: none;
}

.on-visual-title-white { color: white !important; }

.on-visual-sub {
    font-size: 0.78rem; color: #5a5270; line-height: 1.4;
    pointer-events: none; user-select: none;
}

.on-visual-sub-white { color: rgba(255,255,255,0.75) !important; }

/* ── HOW IT WORKS ── */
.on-how-section {
    background: #573cf9;
    padding: 80px 5%;
}

.on-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.on-step {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 22px 20px;
    display: flex; gap: 14px; align-items: flex-start;
    transition: background 0.2s;
}

.on-step:hover { background: rgba(255,255,255,0.16); }

.on-step-num {
    flex-shrink: 0; width: 36px; height: 36px;
    background: #ffbc27;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; font-weight: 900; color: #573cf9;
}

.on-step-text {
    font-size: 0.86rem; font-weight: 500;
    color: white; line-height: 1.55; padding-top: 8px;
    pointer-events: none; user-select: none;
}

/* ── WHY TRUST US ── */
.on-trust-section {
    padding: 80px 5%;
    background: white;
}

.on-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px; margin-top: 36px;
}

.on-trust-card {
    background: #f5f4ff;
    border-radius: 18px; padding: 22px 16px;
    border: 2px solid #e0dbff;
    display: flex; flex-direction: column; gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.on-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(87,60,249,0.15);
    border-color: #573cf9;
}

.on-trust-icon, .on-contact-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.on-icon-purple { background: #bfc3ff; }
.on-icon-yellow { background: #fff5d4; }
.on-icon-wa     { background: #dcfce7; }

.on-trust-title {
    font-size: 0.88rem; font-weight: 800; color: #573cf9;
    pointer-events: none; user-select: none; line-height: 1.3;
}

.on-trust-desc {
    font-size: 0.76rem; color: #5a5270; line-height: 1.6;
    pointer-events: none; user-select: none;
}

/* ── OUR GOAL ── */
.on-goal-section {
    background: #ffbc27;
    padding: 90px 5%;
    text-align: center;
}

.on-goal-inner { position: relative; z-index: 1; }

.on-goal-quote { display: none; }

.on-goal-text {
    font-size: clamp(1.4rem, 3.5vw, 2.1rem);
    font-weight: 900; color: #573cf9;
    line-height: 1.35; margin-bottom: 20px; letter-spacing: -0.03em;
}

.on-goal-sub {
    font-size: 0.95rem; color: rgba(87,60,249,0.8);
    font-weight: 500;
    line-height: 1.75; max-width: 560px; margin: 0 auto;
}

/* ── HANFA ── */
.on-hanfa-section {
    padding: 50px 5%;
    background: white;
}

.on-hanfa-inner {
    background: #bfc3ff;
    border: none;
    border-radius: 22px;
    padding: 32px 36px;
}

.on-hanfa-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #573cf9; color: white;
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px;
    margin-bottom: 18px;
    pointer-events: none; user-select: none;
}

.on-hanfa-text {
    font-size: 0.87rem; color: #3d2f6e; line-height: 1.65;
    pointer-events: none; user-select: none;
}

.on-hanfa-link {
    display: inline-flex; align-items: center; gap: 4px;
    color: #573cf9; font-size: 0.87rem; font-weight: 700;
    margin-top: 10px; transition: opacity 0.2s;
    pointer-events: all;
}

.on-hanfa-link:hover { opacity: 0.7; }

/* ── CONTACT ── */
.on-contact-section {
    padding: 80px 5% 100px;
    background: #573cf9;
}

.on-contact-section .on-section-label { color: #ffbc27; }
.on-contact-section .on-section-title { color: white; }

.on-contact-intro {
    text-align: center; font-size: 0.93rem;
    color: #bfc3ff;
    margin-top: 10px; margin-bottom: 40px;
    pointer-events: none; user-select: none;
}

.on-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px; max-width: 660px; margin: 0 auto;
}

.on-contact-card {
    background: white;
    border-radius: 20px; padding: 30px 20px;
    text-align: center; border: none;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: inherit; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    pointer-events: all;
}

.on-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* WhatsApp card: yellow */
.on-contact-card:last-child {
    background: #ffbc27;
}

.on-contact-label {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #8875b8;
    pointer-events: none; user-select: none;
}

.on-contact-card:last-child .on-contact-label { color: rgba(87,60,249,0.6); }
.on-contact-card:last-child .on-contact-value { color: #573cf9; }

.on-contact-value {
    font-size: 0.88rem; font-weight: 800; color: #573cf9;
    pointer-events: none; user-select: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
    .on-hero { padding: 60px 5% 72px; }

    .on-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .on-stats-section { margin-top: -36px; }

    .on-who-section, .on-trust-section, .on-contact-section { padding: 56px 5%; }

    .on-who-inner { flex-direction: column; gap: 32px; }
    .on-who-visual { width: 100%; }

    .on-how-section, .on-goal-section { padding: 56px 5%; }

    .on-steps-grid { grid-template-columns: 1fr; gap: 10px; }

    .on-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .on-trust-grid .on-trust-card:last-child { grid-column: 1 / -1; }

    .on-contact-grid { grid-template-columns: 1fr; max-width: 300px; }

    .on-hanfa-inner { padding: 24px 20px; }

    .on-goal-quote { font-size: 4rem; }
}
