.split-grid,
.about-grid,
.contact-grid,
.credential-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(26px, 5vw, 54px);
    align-items: center;
}
.info-card,
.page-panel,
.contact-card,
.card,
.plan-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-card);
}
.info-card,
.page-panel,
.contact-card { padding: clamp(24px, 4vw, 38px); }
.image-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}
.image-card img { width: 100%; min-height: 440px; object-fit: cover; }
.image-card figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 14px;
    border-radius: 16px;
    color: #fff;
    background: rgba(6,35,26,.82);
    font-weight: 700;
}
.objectives,
.objective-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}
.objectives div,
.objective-grid div {
    padding: 16px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--aqua));
}
.objectives b,
.objective-grid b { display: block; font-weight: 700; line-height: 1.2; }
.objectives span,
.objective-grid span { display: block; margin-top: 6px; color: rgba(255,255,255,.82); font-size: .88rem; }

.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.step-no {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--aqua));
    font-weight: 700;
}
.process-card b { display: block; font-weight: 700; color: var(--forest-2); margin-bottom: 8px; }
.process-card p { margin: 0; color: var(--muted); }

.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { overflow: hidden; }
.card img { width: 100%; height: 285px; object-fit: cover; background: #e4f1df; }
.card-body { padding: 24px; }
.card h2,
.card h3 { margin: 8px 0 8px; color: var(--forest-2); font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.1; font-weight: 700; }
.card span { color: var(--green); font-weight: 700; }
.mini-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
    letter-spacing: .02em;
}
.mini-label::before {
    content: "";
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
}
.check-list { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; color: var(--soft-ink); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }

.supply-banner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 28px;
    padding: 28px;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(245,185,54,.22), transparent 18rem),
        linear-gradient(135deg, var(--forest), var(--aqua));
    box-shadow: var(--shadow-soft);
}
.supply-banner b { display: block; font-size: 1.15rem; margin-bottom: 8px; }
.supply-banner span { color: rgba(255,255,255,.78); }
.supply-banner strong { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.14); white-space: nowrap; }

.investment { background: linear-gradient(180deg, #f5fbf2, #fff); }
.plan-card { overflow: hidden; }
.plan-head { padding: 24px; color: #fff; }
.plan-head.monthly { background: linear-gradient(135deg, #176fae, var(--green)); }
.plan-head.sixmonth { background: linear-gradient(135deg, var(--orange, #f27642), var(--gold)); color: #13251d; }
.plan-head span { display: block; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .82rem; }
.plan-head h2 { margin: 8px 0 0; font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.1; }
.plan-list { list-style: none; margin: 0; padding: 0; }
.plan-list li { display: grid; grid-template-columns: 170px 1fr; gap: 18px; padding: 18px 24px; border-top: 1px solid var(--line); }
.plan-list b { color: var(--forest-2); font-weight: 700; }
.plan-list span { color: var(--soft-ink); }
.note-box { margin-top: 20px; padding: 18px 20px; border: 1px solid rgba(245,185,54,.28); border-radius: 16px; background: #fff8df; color: #574618; }

.credentials {
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(46,168,79,.18), transparent 24rem),
        linear-gradient(135deg, #052b20, #0a3b2c);
}
.credentials .section-lead { color: rgba(255,255,255,.76); }
.credentials .eyebrow { color: #dff7df; background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.12); }
.credential-grid { align-items: stretch; }
.certificate-card,
.award-card {
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.certificate-card { padding: 18px; }
.certificate-card img { width: 100%; max-height: 650px; object-fit: contain; border-radius: 24px; background: #fff; }
.award-card { display: grid; gap: 20px; padding: 18px; }
.award-gallery { display: grid; grid-template-columns: .74fr 1.26fr; gap: 14px; }
.award-gallery img { width: 100%; height: 270px; object-fit: cover; border-radius: 22px; background: #fff; }
.reg-box { padding: 12px 6px 4px; }
.reg-box h2,
.reg-box h3 { margin: 0 0 10px; font-size: 1.75rem; letter-spacing: -.035em; }
.reg-box p { margin: 0 0 16px; color: rgba(255,255,255,.76); }
.reg-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.reg-pill-row span { display: inline-flex; padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.10); color: #dff7df; font-weight: 700; }

.contact { background: linear-gradient(135deg, #eff9ed, #f7fbff); }
.contact-grid { align-items: stretch; }
.contact-card h2,
.contact-card h3 { margin: 0; font-size: 1.35rem; letter-spacing: -.02em; font-weight: 700; }
.contact-list { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.contact-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 74px;
    padding: 14px 16px;
    border: 1px solid rgba(18, 35, 27, .11);
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 10px 26px rgba(10, 48, 34, .04);
}
.icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #0d5f49;
    background: #fff;
    border: 1.4px solid rgba(13, 95, 73, .28);
}
.icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.icon.whatsapp-icon svg,
.footer-link.whatsapp-link svg { color: inherit; fill: currentColor; stroke: none; }
.contact-copy { min-width: 0; }
.contact-list b { display: block; margin-bottom: 3px; color: var(--forest-2); font-size: .96rem; font-weight: 700; }
.contact-list span,
.contact-list a { color: var(--soft-ink); font-size: .98rem; line-height: 1.55; word-break: break-word; }

.phone-line {
    display: block;
}
.phone-line strong {
    color: var(--forest-2);
    font-weight: 700;
}
.contact-list a:hover { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

.cta-card {
    position: relative;
    display: grid;
    min-height: 460px;
    align-content: end;
    overflow: hidden;
    padding: clamp(28px, 4vw, 40px);
    border-radius: var(--radius-lg);
    color: #fff;
    background: linear-gradient(135deg, rgba(8,42,32,.98), rgba(23,111,174,.86));
    box-shadow: var(--shadow-card);
}
.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("about.jpg?v=12") center / cover no-repeat;
    opacity: .28;
}
.cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 92% 12%, rgba(245,185,54,.38), transparent 20rem);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card img { width: 132px; height: 132px; margin-bottom: 22px; object-fit: contain; border-radius: 50%; background: #fff; padding: 8px; }
.cta-card h2,
.cta-card h3 { max-width: 520px; margin: 0 0 10px; font-size: clamp(1.75rem, 3vw, 2.35rem); line-height: 1.05; letter-spacing: -.04em; font-weight: 700; }
.cta-card p { max-width: 620px; margin: 0; color: rgba(255,255,255,.82); }
.contact-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

footer {
    padding: 28px 0;
    color: rgba(255,255,255,.74);
    background: #06231a;
    font-size: .92rem;
}
footer .wrap { display: grid; grid-template-columns: 1.2fr auto 1fr; gap: 24px; align-items: center; }
footer strong { color: #fff; font-weight: 700; }
.footer-brand { display: grid; gap: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; justify-content: center; }
