/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

:root {

    --mapp-primary: #11a8e8;
    --mapp-primary-dark: #0b8fca;
    --mapp-primary-light: #eaf8ff;

    --mapp-dark: #102a43;
    --mapp-dark-soft: #243b53;

    --mapp-text: #52606d;
    --mapp-text-light: #7b8794;

    --mapp-border: #d9e2ec;

    --mapp-section: #f7fafc;
    --mapp-white: #ffffff;

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--mapp-text);
    background: #fbfcfd;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn {
    font-family: 'Manrope', sans-serif;
    color: var(--mapp-dark);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1320px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #edf2f7;
}

.navbar {
    padding: 10px 0;
    min-height: 92px;
}

.site-logo img {
    width: 165px;
    height: auto;
    display: block;
}

.navbar-nav {
    gap: 42px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #3e4c59;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #12a8ea;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    position: relative;
}

.navbar-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #3e4c59;
    transition: all 0.3s ease;
}

.navbar-nav a:hover,
.navbar-nav .current-menu-item > a {
    color: #11a8e8;
}

/*--------------------------------------------------------------
# Header CTA Buttons
--------------------------------------------------------------*/

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 16px;
    background: #eaf3f8;
    color: #243b53;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-btn-secondary:hover {
    background: #ddebf3;
    color: #102a43;
}

.header-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 16px;
    background: #12a8ea;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(18,168,234,0.16);
    transition: all 0.3s ease;
}

.header-btn-primary:hover {
    background: #0998d7;
    color: #ffffff;
    transform: translateY(-1px);
}


/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.mapp-hero-section {
    padding: 70px 0 60px;
}

.mapp-hero-inner {
    max-width: 980px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: var(--mapp-primary-light);
    color: var(--mapp-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 28px;
    font-size: 88px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.07em;
    color: #102a43;
}

.hero-description {
    max-width: 980px;
    margin: 0 auto 40px;
    font-size: 21px;
    line-height: 1.7;
    color: #62748a;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 70px;
}

.hero-btn-primary,
.hero-btn-secondary {
    min-width: 290px;
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: var(--mapp-primary);
    border-color: var(--mapp-primary);
    color:#ffffff;
    box-shadow: 0 12px 30px rgba(17,168,232,0.22);
}

.hero-btn-primary:hover {
    background: var(--mapp-primary-dark);
    border-color: var(--mapp-primary-dark);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    border: 1px solid #cbd2d9;
    color: var(--mapp-dark);
    background: #ffffff;
}

.hero-btn-secondary:hover {
    border-color: var(--mapp-primary);
    color: var(--mapp-primary);
    background: #ffffff;
}


/*--------------------------------------------------------------
# Hero Features
--------------------------------------------------------------*/

.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 30px;
}

.hero-feature-card {
    padding: 34px 32px;
    border: 1px solid #dbe4ea;
    border-radius: 24px;
    background: #ffffff;
    transition: all 0.35s ease;
}

.hero-feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(15,23,42,0.06),
        0 4px 12px rgba(15,23,42,0.04);
}

.hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: var(--mapp-primary-light);
    color: var(--mapp-primary);
    font-size: 22px;
    font-weight: 800;
}

.hero-feature-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.hero-feature-card p {
    margin-bottom: 0;
    color: #6b7280;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Shared Section Styles
--------------------------------------------------------------*/

.section-heading {
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(37,99,235,0.08);
    color: var(--mapp-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 22px;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.08;
    color: var(--mapp-dark);
    letter-spacing: -0.04em;
}

.section-description {
    font-size: 19px;
    line-height: 1.8;
    color: #64748b;
}



/*--------------------------------------------------------------
# Content Image Section
--------------------------------------------------------------*/

.mapp-content-image-section {
    padding: 40px 0;
    background: #ffffff;
}

.content-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    background: #f8fafc;
    box-shadow:
        0 30px 60px rgba(15,23,42,0.08),
        0 8px 20px rgba(15,23,42,0.04);
}

.content-image-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.content-block {
    padding-left: 30px;
}

.content-block .section-title {
    margin-bottom: 28px;
}

.content-text {
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
}

.content-btn {
    min-width: 240px;
    padding: 18px 32px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #58d3f7 0%, #35b9ea 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(53,185,234,0.18);
    transition: all 0.3s ease;
}

.content-btn:hover {
    background: linear-gradient(135deg, #46c8f2 0%, #24aae0 100%);
    color: #0f172a;
    transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Checklist
--------------------------------------------------------------*/

.content-checklist {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(17,168,232,0.1);
    color: #11a8e8;
}

.check-icon svg {
    width: 16px;
    height: 16px;
}

.checklist-item span {
    position: relative;
    top: -2px;
    font-size: 17px;
    font-weight: 500;
    color: var(--mapp-dark);
}

.content-btn {
    min-width: 240px;
    padding: 16px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(37,99,235,0.18);
}


/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/

.mapp-process-section {
    padding: 40px 0;
    background: #f4f9fc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-card {
    position: relative;
    padding: 42px 38px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: all 0.35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 50px rgba(15,23,42,0.06),
        0 4px 14px rgba(15,23,42,0.04);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 28px;
    border-radius: 20px;
    background: var(--mapp-primary);
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.process-card h3 {
    margin-bottom: 18px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--mapp-dark);
}

.process-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

/*--------------------------------------------------------------
# Dark CTA Section
--------------------------------------------------------------*/

.mapp-dark-section {
    padding: 40px 0 40px;
    background: #ffffff;
}

.dark-section-card {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(20,184,230,0.12), transparent 35%),
        linear-gradient(135deg, #0f2740 0%, #102a43 100%);
    box-shadow:
        0 30px 70px rgba(15,39,64,0.12);
}

.dark-image-wrapper {
    overflow: hidden;
    border-radius: 28px;
}

.dark-image-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.dark-content {
    color: rgba(255,255,255,0.9);
}

.dark-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    color: #63d5ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.dark-title {
    margin-bottom: 24px;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.dark-description {
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.74);
}


/*--------------------------------------------------------------
# Dark Checklist
--------------------------------------------------------------*/

.dark-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.dark-check-item {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
}


/*--------------------------------------------------------------
# Dark Buttons
--------------------------------------------------------------*/

.dark-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dark-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #58d3f7 0%, #35b9ea 100%);
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(53,185,234,0.18);
    transition: all 0.3s ease;
}

.dark-btn-primary:hover {
    transform: translateY(-2px);
    color: #0f172a;
}

.dark-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dark-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.mapp-pricing-section {
    padding: 40px 0;
    background: #ffffff;
}

.pricing-wrapper {
    padding: 70px;
    border-radius: 36px;
    background: #f7fbfd;
    border: 1px solid #e4edf3;
}

.pricing-content .section-title {
    max-width: 680px;
}

.pricing-text {
    max-width: 640px;
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 1.9;
    color: #62748a;
}


/*--------------------------------------------------------------
# Pricing Features
--------------------------------------------------------------*/

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.pricing-feature {
    font-size: 16px;
    font-weight: 500;
    color: #243b53;
}

.pricing-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #58d3f7 0%, #35b9ea 100%);
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(53,185,234,0.18);
    transition: all 0.3s ease;
}

.pricing-main-btn:hover {
    transform: translateY(-2px);
    color: #0f172a;
}


/*--------------------------------------------------------------
# Pricing Card
--------------------------------------------------------------*/

.pricing-card {
    padding: 42px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #dbe7ef;
    box-shadow:
        0 20px 50px rgba(15,23,42,0.05);
}

.pricing-card-top {
    margin-bottom: 32px;
}

.pricing-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef7fb;
    color: #11a8e8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.pricing-price {
    margin-bottom: 4px;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: #102a43;
}

.pricing-small {
    color: #7b8794;
    font-size: 15px;
}

.pricing-includes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 34px;
}

.pricing-item {
    font-size: 16px;
    font-weight: 500;
    color: #243b53;
}

.pricing-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 999px;
    background: #102a43;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-card-btn:hover {
    background: #0b1f33;
    color: #ffffff;
}

/*--------------------------------------------------------------
# Organizations Section
--------------------------------------------------------------*/

.mapp-organizations-section {
    padding: 40px 0;
    background: #f7fbfd;
}

.organization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.organization-card {
    padding: 36px 32px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #dbe7ef;
    transition: all 0.35s ease;
}

.organization-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(15,23,42,0.05);
}

.organization-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.organization-card h3 {
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 800;
    color: #102a43;
}

.organization-card p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #62748a;
}

.organization-card-dark {
    background: #102a43;
    border-color: transparent;
}

.organization-card-dark h3,
.organization-card-dark p {
    color: #ffffff;
}

.organization-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 28px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #58d3f7 0%, #35b9ea 100%);
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Coaching Section
--------------------------------------------------------------*/

.mapp-coaching-section {
    padding: 40px 0;
    background: #ffffff;
}

.coaching-image {
    overflow: hidden;
    border-radius: 30px;
}

.coaching-image img {
    width: 100%;
    display: block;
}


/*--------------------------------------------------------------
# Why MAPP
--------------------------------------------------------------*/

.mapp-why-section {
    padding: 40px 0;
    background: #f7fbfd;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 34px 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dbe7ef;
    text-align: center;
}

.why-card h3 {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 800;
    color: #102a43;
}

.why-card p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #62748a;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/

.mapp-faq-section {
    padding: 40px 0;
    background: #ffffff;
}

.faq-wrapper {
    max-width: 980px;
    margin: 0 auto;
}


/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/

.accordion {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.accordion-item {
    border: 1px solid #dbe7ef !important;
    border-radius: 28px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 14px 30px rgba(15,23,42,0.03);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    padding: 32px 36px;
    background: #ffffff;
    color: #102a43;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #102a43;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
}

.accordion-body {
    padding: 0 36px 34px;
    font-size: 17px;
    line-height: 1.9;
    color: #62748a;
}


/*--------------------------------------------------------------
# Final CTA Section
--------------------------------------------------------------*/

.mapp-final-cta-section {
    padding: 40px 0 0;
    background: #ffffff;
}

.final-cta-card {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(88,211,247,0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(53,185,234,0.14), transparent 30%),
        linear-gradient(135deg, #0d2238 0%, #102a43 100%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.final-eyebrow {
    display: inline-block;
    margin-bottom: 26px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #63d5ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.final-title {
    margin-bottom: 28px;
    font-size: 74px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.final-description {
    max-width: 760px;
    margin: 0 auto 42px;
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
}


/*--------------------------------------------------------------
# Final CTA Buttons
--------------------------------------------------------------*/

.final-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.final-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #58d3f7 0%, #35b9ea 100%);
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(53,185,234,0.18);
    transition: all 0.3s ease;
}

.final-btn-primary:hover {
    transform: translateY(-2px);
    color: #0f172a;
}

.final-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.final-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.mapp-footer {
    padding-top: 110px;
    background: #ffffff;
}

.footer-top {
    padding-bottom: 70px;
    border-bottom: 1px solid #dbe7ef;
}

.footer-logo {
    width: 170px;
    margin-bottom: 26px;
}

.footer-text {
    max-width: 340px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.9;
    color: #62748a;
}


/*--------------------------------------------------------------
# Footer Socials
--------------------------------------------------------------*/

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-socials a {
    color: #102a43;
    font-size: 15px;
    font-weight: 600;
}

.footer-socials a:hover {
    color: #11a8e8;
}


/*--------------------------------------------------------------
# Footer Widgets
--------------------------------------------------------------*/

.footer-widget h3 {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 800;
    color: #102a43;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget li {
    margin-bottom: 14px;
}

.footer-widget a {
    color: #62748a;
    font-size: 15px;
    line-height: 1.8;
}

.footer-widget a:hover {
    color: #11a8e8;
}


/*--------------------------------------------------------------
# Footer Bottom
--------------------------------------------------------------*/

.footer-bottom {
    padding: 30px 0;
}

.copyright {
    margin-bottom: 0;
    font-size: 14px;
    color: #7b8794;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}

.footer-bottom-links a {
    color: #7b8794;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: #11a8e8;
}


/*--------------------------------------------------------------
# Scroll Reveal Animations
--------------------------------------------------------------*/

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    will-change: transform, opacity;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}


/*--------------------------------------------------------------
# Stagger Delays
--------------------------------------------------------------*/

.process-card:nth-child(2),
.organization-card:nth-child(2),
.why-card:nth-child(2) {
    transition-delay: 0.1s;
}

.process-card:nth-child(3),
.organization-card:nth-child(3),
.why-card:nth-child(3) {
    transition-delay: 0.2s;
}

.organization-card:nth-child(4),
.why-card:nth-child(4) {
    transition-delay: 0.3s;
}

.organization-card:nth-child(5) {
    transition-delay: 0.4s;
}

.organization-card:nth-child(6) {
    transition-delay: 0.5s;
}


/*--------------------------------------------------------------
# SVG Icon System
--------------------------------------------------------------*/

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: #eaf8ff;
    color: #11a8e8;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}


/*--------------------------------------------------------------
# Single Post Layout
--------------------------------------------------------------*/

.mapp-single-post {
    padding: 100px 0;
    background: #ffffff;
}

.single-post-article {
    max-width: 100%;
}


/*--------------------------------------------------------------
# Categories
--------------------------------------------------------------*/

.single-categories {
    margin-bottom: 24px;
}

.single-categories a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #eef8fd;
    color: #11a8e8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/

.single-title {
    margin-bottom: 28px;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #102a43;
}


/*--------------------------------------------------------------
# Meta
--------------------------------------------------------------*/

.single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 42px;
    font-size: 15px;
    color: #7b8794;
}

.meta-divider {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd2d9;
}


/*--------------------------------------------------------------
# Featured Image
--------------------------------------------------------------*/

.single-thumbnail {
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 34px;
}

.single-thumbnail img {
    width: 100%;
    display: block;
}


/*--------------------------------------------------------------
# Content Styling
--------------------------------------------------------------*/

.single-entry {
    font-size: 20px;
    line-height: 24px;
    color: #243b53;
}

.single-entry p {
    margin-bottom: 20px;
    line-height: 24px;
}

.single-entry h2,
.single-entry h3,
.single-entry h4 {
    margin-top: 60px;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #102a43;
}

.single-entry h2 {
    font-size: 42px;
    font-weight: 800;
}

.single-entry h3 {
    font-size: 32px;
    font-weight: 700;
}

.single-entry img {
    margin: 50px 0;
    border-radius: 28px;
}

.single-entry ul,
.single-entry ol {
    margin-bottom: 34px;
    padding-left: 26px;
}

.single-entry li {
    margin-bottom: 14px;
}


/*--------------------------------------------------------------
# Tags
--------------------------------------------------------------*/

.single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 60px;
}

.single-tags a {
    padding: 10px 16px;
    border-radius: 999px;
    background: #f2f6f9;
    color: #486581;
    font-size: 14px;
    font-weight: 600;
}


/*--------------------------------------------------------------
# Author Box
--------------------------------------------------------------*/

.author-box {
    display: flex;
    gap: 24px;
    margin-top: 70px;
    padding: 40px;
    border-radius: 32px;
    background: #f7fbfd;
    border: 1px solid #e4edf3;
}

.author-avatar img {
    border-radius: 50%;
}

.author-content h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #102a43;
}

.author-content p {
    margin-bottom: 0;
    color: #62748a;
    line-height: 1.9;
}


/*--------------------------------------------------------------
# Post Navigation
--------------------------------------------------------------*/

.post-navigation-modern {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
}

.post-navigation-modern a {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    background: #102a43;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.mapp-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    margin-bottom: 30px;
    padding: 34px 30px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e4edf3;
    box-shadow:
        0 10px 30px rgba(15,23,42,0.03);
}

.widget-title {
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 800;
    color: #102a43;
}

.sidebar-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 16px;
}

.sidebar-widget a {
    color: #486581;
    line-height: 1.7;
}

.sidebar-widget a:hover {
    color: #11a8e8;
}


/*--------------------------------------------------------------
# Search Form
--------------------------------------------------------------*/

.search-form {
    display: flex;
    gap: 12px;
}

.search-field {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid #d9e2ec;
    border-radius: 14px;
}

.search-submit {
    height: 52px;
    padding: 0 22px;
    border: none;
    border-radius: 14px;
    background: #11a8e8;
    color: #ffffff;
    font-weight: 700;
}


/*--------------------------------------------------------------
# Category Hero
--------------------------------------------------------------*/

.mapp-category-hero {
    padding: 110px 0 60px;
    background: #ffffff;
}

.category-hero-content {
    max-width: 900px;
}

.category-title {
    margin-bottom: 24px;
    font-size: 74px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #102a43;
}

.category-description {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.9;
    color: #62748a;
}


/*--------------------------------------------------------------
# Category Posts
--------------------------------------------------------------*/

.mapp-category-posts {
    padding: 20px 0 110px;
    background: #ffffff;
}

.modern-post-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/*--------------------------------------------------------------
# Modern Post Card
--------------------------------------------------------------*/

.modern-post-card {
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid #e4edf3;
    transition: all 0.35s ease;
    box-shadow:
        0 14px 30px rgba(15,23,42,0.03);
}

.modern-post-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px rgba(15,23,42,0.08);
}


/*--------------------------------------------------------------
# Image
--------------------------------------------------------------*/

.modern-post-image {
    display: block;
    overflow: hidden;
}

.modern-post-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.modern-post-card:hover .modern-post-image img {
    transform: scale(1.04);
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

.modern-post-content {
    padding: 36px;
}


/*--------------------------------------------------------------
# Categories
--------------------------------------------------------------*/

.modern-post-categories {
    margin-bottom: 20px;
}

.modern-post-categories a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #eef8fd;
    color: #11a8e8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/

.modern-post-title {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.modern-post-title a {
    color: #102a43;
}


/*--------------------------------------------------------------
# Meta
--------------------------------------------------------------*/

.modern-post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: #7b8794;
    font-size: 14px;
}

.meta-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd2d9;
}


/*--------------------------------------------------------------
# Excerpt
--------------------------------------------------------------*/

.modern-post-excerpt {
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.9;
    color: #486581;
}


/*--------------------------------------------------------------
# Read More
--------------------------------------------------------------*/

.modern-read-more {
    color: #11a8e8;
    font-size: 15px;
    font-weight: 700;
}


/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.modern-pagination {
    margin-top: 60px;
}

.modern-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.modern-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    background: #f7fbfd;
    border: 1px solid #dbe7ef;
    color: #102a43;
    font-weight: 700;
}

.modern-pagination .current {
    background: #11a8e8;
    border-color: #11a8e8;
    color: #ffffff;
}


/*--------------------------------------------------------------
# Modern Page Hero
--------------------------------------------------------------*/

.mapp-page-hero {
    padding: 110px 0 50px;
    background: #ffffff;
}

.page-hero-content {
    max-width: 920px;
}


/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #7b8794;
}

.page-breadcrumb a {
    color: #11a8e8;
}


/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/

.page-title {
    margin-bottom: 28px;
    font-size: 76px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #102a43;
}


/*--------------------------------------------------------------
# Page Description
--------------------------------------------------------------*/

.page-description {
    max-width: 760px;
    font-size: 21px;
    line-height: 1.9;
    color: #62748a;
}


/*--------------------------------------------------------------
# Content Section
--------------------------------------------------------------*/

.mapp-page-content-section {
    padding: 20px 0 110px;
    background: #ffffff;
}


/*--------------------------------------------------------------
# Featured Image
--------------------------------------------------------------*/

.page-featured-image {
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 34px;
}

.page-featured-image img {
    width: 100%;
    display: block;
}


/*--------------------------------------------------------------
# Modern Content Wrapper
--------------------------------------------------------------*/

.modern-page-content {
    padding: 50px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid #e4edf3;
    box-shadow:
        0 14px 40px rgba(15,23,42,0.04);
}


/*--------------------------------------------------------------
# Page Entry Styling
--------------------------------------------------------------*/

.page-entry {
    font-size: 19px;
    line-height: 1.95;
    color: #243b53;
}

.page-entry p {
    margin-bottom: 34px;
}

.page-entry h2,
.page-entry h3,
.page-entry h4 {
    margin-top: 60px;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #102a43;
}

.page-entry h2 {
    font-size: 42px;
    font-weight: 800;
}

.page-entry h3 {
    font-size: 32px;
    font-weight: 700;
}

.page-entry img {
    margin: 50px 0;
    border-radius: 24px;
}

.page-entry ul,
.page-entry ol {
    margin-bottom: 34px;
    padding-left: 24px;
}

.page-entry li {
    margin-bottom: 14px;
}

.page-entry blockquote {
    margin: 50px 0;
    padding: 40px;
    border-left: 5px solid #11a8e8;
    border-radius: 24px;
    background: #f7fbfd;
    font-size: 24px;
    line-height: 1.7;
    color: #102a43;
}


/*--------------------------------------------------------------
# Tables
--------------------------------------------------------------*/

.page-entry table {
    width: 100%;
    margin-bottom: 40px;
    border-collapse: collapse;
}

.page-entry th,
.page-entry td {
    padding: 18px;
    border: 1px solid #dbe7ef;
}

.page-entry th {
    background: #f7fbfd;
    color: #102a43;
}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 991px) {

    .navbar-collapse {
        padding-top: 20px;
    }

    .navbar-nav {
        gap: 8px;
        margin-bottom: 20px;
    }

    .nav-link {
        padding: 10px 0;
    }

    .header-cta {
        width: 100%;
    }

    .header-btn {
        width: 100%;
    }

    .hero-title {
        font-size: 64px;
        line-height: 1;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }

    .hero-feature-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 767px) {

    .mapp-hero-section {
        padding: 70px 0 60px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 1.05;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        margin-bottom: 50px;
    }

    .hero-feature-card {
        padding: 28px 24px;
    }

}

@media (max-width: 991px) {

    .section-title {
        font-size: 42px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {

    .mapp-process-section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 34px;
        line-height: 1.12;
    }

    .section-description {
        font-size: 16px;
    }

    .process-card {
        padding: 34px 28px;
    }

    .process-card h3 {
        font-size: 24px;
    }

}

@media (max-width: 991px) {

    .mapp-content-image-section {
        padding: 90px 0;
    }

    .content-block {
        padding-left: 0;
    }

}

@media (max-width: 767px) {

    .mapp-content-image-section {
        padding: 70px 0;
    }

    .content-image-wrapper {
        border-radius: 24px;
    }

    .content-text {
        font-size: 16px;
    }

    .checklist-item span {
        font-size: 15px;
    }

    .content-btn {
        width: 100%;
    }

}


@media (max-width: 991px) {

    .dark-section-card {
        padding: 50px;
    }

    .dark-title {
        font-size: 42px;
    }

}


@media (max-width: 767px) {

    .mapp-dark-section {
        padding: 80px 0;
    }

    .dark-section-card {
        padding: 34px 26px;
        border-radius: 28px;
    }

    .dark-title {
        font-size: 34px;
    }

    .dark-description {
        font-size: 16px;
    }

    .dark-check-grid {
        grid-template-columns: 1fr;
    }

    .dark-buttons {
        flex-direction: column;
    }

    .dark-btn-primary,
    .dark-btn-secondary {
        width: 100%;
    }

}


@media (max-width: 991px) {

    .pricing-wrapper {
        padding: 50px;
    }

}


@media (max-width: 767px) {

    .mapp-pricing-section {
        padding: 80px 0;
    }

    .pricing-wrapper {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .pricing-price {
        font-size: 52px;
    }

    .pricing-main-btn,
    .pricing-card-btn {
        width: 100%;
    }

}


@media (max-width: 991px) {

    .organization-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 767px) {

    .mapp-faq-section {
        padding: 80px 0;
    }

    .accordion {
        gap: 16px;
    }

    .accordion-item {
        border-radius: 22px !important;
    }

    .accordion-button {
        padding: 24px;
        font-size: 17px;
    }

    .accordion-body {
        padding: 0 24px 24px;
        font-size: 15px;
    }

}


@media (max-width: 991px) {

    .final-title {
        font-size: 54px;
        line-height: 1;
    }

    .final-cta-card {
        padding: 90px 34px;
    }

}


@media (max-width: 767px) {

    .mapp-final-cta-section {
        padding-top: 20px;
    }

    .final-cta-card {
        padding: 70px 24px;
        border-radius: 26px;
    }

    .final-title {
        font-size: 40px;
        line-height: 1.05;
    }

    .final-description {
        font-size: 16px;
    }

    .final-buttons {
        flex-direction: column;
    }

    .final-btn-primary,
    .final-btn-secondary {
        width: 100%;
    }

}


@media (max-width: 991px) {

    .footer-bottom-links {
        justify-content: flex-start;
    }

}


@media (max-width: 767px) {

    .mapp-footer {
        padding-top: 80px;
    }

    .footer-top {
        padding-bottom: 50px;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 14px;
    }

}


@media (max-width: 767px) {

    .mapp-single-post {
        padding: 70px 0;
    }

    .single-title {
        font-size: 42px;
    }

    .single-entry {
        font-size: 17px;
    }

    .single-entry h2 {
        font-size: 30px;
    }

    .author-box {
        flex-direction: column;
        padding: 28px;
    }

    .post-navigation-modern {
        flex-direction: column;
    }

}


@media (max-width: 767px) {

    .mapp-category-hero {
        padding: 70px 0 40px;
    }

    .category-title {
        font-size: 44px;
        line-height: 1.05;
    }

    .category-description {
        font-size: 16px;
    }

    .modern-post-content {
        padding: 28px 24px;
    }

    .modern-post-title {
        font-size: 28px;
    }

    .modern-post-excerpt {
        font-size: 15px;
    }

}


@media (max-width: 767px) {

    .mapp-page-hero {
        padding: 70px 0 30px;
    }

    .page-title {
        font-size: 44px;
        line-height: 1.04;
    }

    .page-description {
        font-size: 16px;
    }

    .modern-page-content {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .page-entry {
        font-size: 16px;
    }

    .page-entry h2 {
        font-size: 30px;
    }

    .page-entry blockquote {
        padding: 28px;
        font-size: 20px;
    }

}


