:root {
    --ap-primary: #2b9a87;
    --ap-primary-deep: #1e7667;
    --ap-accent: #f4b942;
    --ap-ink: #102a2c;
    --ap-muted: #5d6f73;
    --ap-card: #ffffff;
    --ap-border: #d8ece8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ap-ink);
    background:
        radial-gradient(circle at 8% 10%, rgba(43, 154, 135, 0.11), transparent 34%),
        radial-gradient(circle at 92% 6%, rgba(244, 185, 66, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fdfc 0%, #f2fbf9 45%, #eef9f7 100%);
    line-height: 1.6;
}

.page-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.section-pad {
    padding: 5rem 0;
}

.navbar {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(43, 154, 135, 0.1);
}

.navbar-brand {
    font-weight: 800;
    color: var(--ap-ink);
}

.brand-dot {
    color: var(--ap-primary);
}

.btn-primary {
    --bs-btn-bg: var(--ap-primary);
    --bs-btn-border-color: var(--ap-primary);
    --bs-btn-hover-bg: var(--ap-primary-deep);
    --bs-btn-hover-border-color: var(--ap-primary-deep);
    --bs-btn-active-bg: var(--ap-primary-deep);
    --bs-btn-active-border-color: var(--ap-primary-deep);
    --bs-btn-focus-shadow-rgb: 43, 154, 135;
}

.btn-outline-primary {
    --bs-btn-color: var(--ap-primary);
    --bs-btn-border-color: var(--ap-primary);
    --bs-btn-hover-bg: var(--ap-primary);
    --bs-btn-hover-border-color: var(--ap-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-focus-shadow-rgb: 43, 154, 135;
}

.hero-chip {
    border: 1px solid rgba(43, 154, 135, 0.25);
    color: var(--ap-primary-deep);
    background-color: rgba(43, 154, 135, 0.1);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.85rem;
    margin-bottom: 1rem;
}

.display-tight {
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.text-muted-custom {
    color: var(--ap-muted);
}

.ap-card {
    border: 1px solid #dcedea;
    border-radius: 1rem;
    background-color: var(--ap-card);
    box-shadow: 0 10px 25px rgba(16, 42, 44, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.ap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(16, 42, 44, 0.12);
}

.visual-frame {
    border-radius: 1.25rem;
    border: 1px solid #d8ece8;
    background: linear-gradient(145deg, #ffffff, #ebf8f5);
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(12, 42, 44, 0.12);
}

.visual-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.exam-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid #cde7e1;
    background-color: #f7fcfb;
    font-weight: 700;
    color: #245950;
}

.icon-badge {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(43, 154, 135, 0.12);
    color: var(--ap-primary-deep);
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.cta-band {
    border-radius: 1.4rem;
    background: linear-gradient(145deg, #154842 0%, #2b9a87 55%, #54b8a6 100%);
    color: #fff;
    box-shadow: 0 16px 45px rgba(20, 70, 63, 0.35);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-img {
    border-radius: 1rem;
    border: 1px solid #d8ece8;
    box-shadow: 0 12px 30px rgba(14, 46, 42, 0.09);
}

.counter-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ap-primary-deep);
}

footer {
    background-color: #0f2e31;
    color: #def0ec;
}

footer a {
    color: #def0ec;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .page-hero {
        padding-top: 7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}