/* =========================================================
   COMMON INNER PAGE HERO / BREADCRUMB
========================================================= */

.veda-page-hero {
    position: relative;
    min-height: 310px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #123D2A;
    padding-top: 130px;
}

/* Background Image */
.veda-page-hero-bg {
    position: absolute;
    inset: 0;
    top: 100px;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Image Overlay */
.veda-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 52, 32, 0.96) 0%, rgba(11, 98, 57, 0.88) 42%, rgb(18 61 42 / 0%) 100%);
}

/* Subtle Grid Texture */
.veda-page-hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px);
    background-size: 70px 70px;
}

/* Content */
.veda-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 78px 0 60px;
}

/* Breadcrumb */
.veda-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.veda-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.veda-breadcrumb a:hover {
    color: #FFFFFF;
}

.veda-breadcrumb-separator {
    color: #EF553B;
    font-size: 11px;
}

.veda-breadcrumb-current {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
}

/* Orange Accent */
.veda-page-hero-line {
    display: block;
    width: 48px;
    height: 3px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #EF553B;
}

/* Page Title */
/* Font size is controlled by th-text-perspective */
.veda-page-title {
    margin: 0;
    color: #FFFFFF;
    line-height: 1.05;
    letter-spacing: -1px;
    text-align: center !important;
}

.veda-page-title span {
    color: #EF553B;
}

/* Decorative Circle */
.veda-page-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 420px;
    height: 420px;
    right: -180px;
    top: 50%;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Decorative Dashed Circle */
.veda-page-hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 280px;
    height: 280px;
    right: -110px;
    top: 50%;
    border: 1px dashed rgba(239, 85, 59, 0.18);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
    .veda-page-hero {
        min-height: 280px;
    }

    .veda-page-hero-content {
        padding: 68px 0 72px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {
    .veda-page-hero {
        min-height: 240px;
    }

    .veda-page-hero-content {
        padding: 58px 0 62px;
    }

    .veda-breadcrumb {
        gap: 8px;
        margin-bottom: 16px;
    }

    .veda-breadcrumb a,
    .veda-breadcrumb-current {
        font-size: 11px;
    }

    .veda-page-hero-line {
        width: 40px;
        height: 2px;
        margin-bottom: 16px;
    }

    .veda-page-hero::after {
        width: 280px;
        height: 280px;
        right: -180px;
    }

    .veda-page-hero::before {
        width: 190px;
        height: 190px;
        right: -130px;
    }
}

/* =========================================================
   PAGE 02 — KNOW YOURSELF
========================================================= */

.know-yourself-page {
    overflow: hidden;
    background: #FFFFFF;
}

.know-yourself-page .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   COMMON
========================================================= */

.ky-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: #FF694F;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
    line-height: 1;
    text-transform: uppercase;
}

.ky-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    flex: 0 0 24px;
    border-radius: 10px;
    background: #FF694F;
}

.ky-section-heading h2,
.ky-intro-content h2,
.ky-report-content h2,
.ky-sample-header h2,
.ky-final-cta-content h2 {
    margin: 0 0 20px;
    color: #123D2A;
    line-height: 1.08;
    letter-spacing: -0.8px;
}

.ky-section-heading h2 span,
.ky-intro-content h2 span,
.ky-report-content h2 span,
.ky-sample-header h2 span,
.ky-final-cta-content h2 span {
    color: #FF694F;
}

.ky-btn-primary,
.ky-sample-btn,
.ky-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* =========================================================
   SECTION 01 — INTRO
========================================================= */

.ky-intro-section {
    padding: 75px 0;
    background: #FFFFFF;
}

.ky-intro-description {
    max-width: 590px;
    margin: 0 0 30px;
    color: #68756F;
    line-height: 1.85;
}

.ky-intro-visual {
    position: relative;
    max-width: 550px;
    margin-left: auto;
    padding: 15px 15px 45px 35px;
}

.ky-intro-image {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    border-radius: 28px 28px 28px 90px;
    background: #E5EEE9;
}

.ky-intro-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(11, 98, 57, 0) 48%,
            rgba(11, 98, 57, 0.35) 100%);
}

.ky-intro-image img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.ky-intro-visual::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 120px;
    border-left: 2px solid #FF694F;
    border-bottom: 2px solid #FF694F;
    border-radius: 0 0 0 35px;
}

.ky-intro-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 220px;
    padding: 17px 20px;
    border-radius: 14px;
    background: #123D2A;
    box-shadow: 0 20px 45px rgba(18, 61, 42, 0.18);
}

.ky-intro-badge>span {
    color: #FF694F;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.ky-intro-badge strong,
.ky-intro-badge small {
    display: block;
}

.ky-intro-badge strong {
    color: #FFFFFF;
    font-size: 13px;
}

.ky-intro-badge small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
}


/* =========================================================
   SECTION 02 — WHY KNOW YOURSELF
========================================================= */

.ky-why-section {
    padding: 75px 0;
    background: #F3F7F4;
}

.ky-why-content {
    max-width: 700px;
}

.ky-why-content>p {
    margin: 0;
    color: #56645D;
    line-height: 1.9;
}

.ky-why-highlight {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid rgba(11, 98, 57, 0.14);
}

.ky-highlight-line {
    width: 4px;
    flex: 0 0 4px;
    border-radius: 10px;
    background: #FF694F;
}

.ky-why-highlight p {
    margin: 0;
    color: #123D2A;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}

.ky-why-highlight strong {
    color: #0B6239;
}


/* =========================================================
   WHY — ICON CARDS
========================================================= */

.ky-influences {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 55px;
}

.ky-influence-item {
    position: relative;
    min-height: 155px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(11, 98, 57, 0.12);
    border-radius: 16px;
    background: #FFFFFF;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.ky-influence-item::after {
    content: "";
    position: absolute;
    right: -25px;
    bottom: -25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(11, 98, 57, 0.05);
    transition: 0.4s ease;
}

.ky-influence-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 105, 79, 0.45);
    box-shadow: 0 20px 45px rgba(18, 61, 42, 0.1);
}

.ky-influence-item:hover::after {
    transform: scale(1.5);
    background: rgba(255, 105, 79, 0.08);
}

.ky-influence-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 11px;
    background: rgba(11, 98, 57, 0.08);
    color: #0B6239;
    font-size: 15px;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.ky-influence-item:hover .ky-influence-icon {
    background: #FF694F;
    color: #FFFFFF;
    transform: rotate(-5deg);
}

.ky-influence-item>span {
    position: absolute;
    top: 22px;
    right: 20px;
    color: #A7B5AE;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ky-influence-item strong {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 160px;
    color: #123D2A;
    font-size: 13px;
    line-height: 1.45;
}


/* =========================================================
   SECTION 03 — FIVE LAYERS
========================================================= */

.ky-layers-section {
    padding: 75px 0;
    background: #FFFFFF;
}

.ky-heading-center {
    max-width: 720px;
    margin: 0 auto 50px;
}

.ky-heading-center>p {
    max-width: 650px;
    margin: 0 auto;
    color: #68756F;
    line-height: 1.8;
}

.ky-layer-explorer {
    display: grid;
    grid-template-columns: 335px minmax(0, 1fr);
    min-height: 560px;
    overflow: hidden;
    border: 1px solid #DCE7E0;
    border-radius: 24px;
    background: #F7FAF8;
    box-shadow: 0 25px 70px rgba(18, 61, 42, 0.08);
}


/* =========================================================
   LAYER NAV
========================================================= */

.ky-layer-nav {
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: #123D2A;
}

.ky-layer-tab {
    position: relative;
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 100px;
    padding: 14px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    background: transparent;
    color: #FFFFFF;
    text-align: left;
    cursor: pointer;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.ky-layer-tab:last-child {
    border-bottom: 0;
}

.ky-layer-tab:hover {
    background: rgba(11, 98, 57, 0.65);
}

.ky-layer-tab.active {
    background: #0B6239;
    /* transform: translateX(5px); */
}

.ky-layer-number {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ky-layer-tab.active .ky-layer-number {
    color: #FF694F;
}

.ky-layer-tab-content {
    min-width: 0;
}

.ky-layer-tab-content strong,
.ky-layer-tab-content small {
    display: block;
}

.ky-layer-tab-content strong {
    font-size: 13px;
    line-height: 1.35;
}

.ky-layer-tab-content small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
}

.ky-layer-arrow {
    color: rgba(255, 255, 255, 0.35);
    transition: 0.3s ease;
}

.ky-layer-tab.active .ky-layer-arrow {
    color: #FF694F;
    transform: translateX(3px);
}


/* =========================================================
   LAYER CONTENT
========================================================= */

.ky-layer-content {
    position: relative;
    min-width: 0;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(11, 98, 57, 0.08),
            transparent 30%),
        #F7FAF8;
}

.ky-layer-panel {
    display: none;
    min-height: 560px;
    padding: 65px 65px;
    animation: kyPanelIn 0.45s ease both;
}

.ky-layer-panel.active {
    display: flex;
    align-items: flex-start;
    gap: 45px;
}

@keyframes kyPanelIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ky-panel-number {
    flex: 0 0 auto;
    color: rgba(11, 98, 57, 0.1);
    font-size: 100px;
    font-weight: 900;
    line-height: 0.8;
}

.ky-panel-content {
    max-width: 620px;
}

.ky-panel-label,
.ky-explore-label {
    display: block;
    color: #FF694F;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
}

.ky-panel-content h3 {
    margin: 12px 0 18px;
    color: #123D2A;
    line-height: 1.15;
}

.ky-panel-intro {
    margin: 0 0 28px;
    color: #637069;
    line-height: 1.8;
}

.ky-explore-label {
    margin-bottom: 15px;
    color: #0B6239;
}

.ky-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ky-feature-list span {
    position: relative;
    padding: 12px 14px 12px 30px;
    border: 1px solid #DDE8E1;
    border-radius: 8px;
    background: #FFFFFF;
    color: #123D2A;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ky-feature-list span::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF694F;
    transform: translateY(-50%);
}

.ky-feature-list span:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 105, 79, 0.35);
    box-shadow: 0 8px 20px rgba(18, 61, 42, 0.06);
}


/* =========================================================
   MENTOR PANEL
========================================================= */

.ky-mentor-panel .ky-panel-content {
    max-width: 680px;
}

.ky-mentor-panel blockquote {
    margin: 28px 0;
    padding: 24px 28px;
    border-left: 3px solid #FF694F;
    border-radius: 0 10px 10px 0;
    background: rgba(11, 98, 57, 0.05);
    color: #123D2A;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
}

.ky-mentor-panel .ky-panel-content>p {
    margin: 0;
    color: #637069;
    line-height: 1.8;
}


/* =========================================================
   SECTION 04 — FINAL REPORT
========================================================= */

.ky-report-section {
    padding: 75px 0;
    background: #123D2A;
}

.ky-report-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 75px;
}

.ky-report-visual {
    position: relative;
    max-width: 500px;
}

.ky-report-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #FFFFFF;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.ky-report-image-wrap img {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.ky-report-floating-card {
    position: absolute;
    right: -20px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 13px;
    background: #FF694F;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.ky-report-floating-card>span {
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.ky-report-floating-card strong,
.ky-report-floating-card small {
    display: block;
}

.ky-report-floating-card strong {
    color: #FFFFFF;
    font-size: 13px;
}

.ky-report-floating-card small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
}

.ky-report-content {
    color: #FFFFFF;
}

.ky-report-content .ky-eyebrow {
    color: #FF694F;
}

.ky-report-content h2 {
    color: #FFFFFF;
}

.ky-report-content h2 span {
    display: block;
    color: #FF694F;
}

.ky-report-content>p {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.ky-report-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ky-report-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 49px;
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ky-report-points div:nth-child(odd) {
    margin-right: 18px;
}

.ky-report-points span {
    color: #FF694F;
    font-size: 9px;
    font-weight: 800;
}

.ky-report-points strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    line-height: 1.35;
}


/* =========================================================
   SECTION 05 — SAMPLE RESULT
========================================================= */

.ky-sample-section {
    padding: 75px 0;
    background: #F3F7F4;
}

.ky-sample-header {
    max-width: 700px;
    margin: 0 auto 45px;
}

.ky-sample-header h2 {
    color: #123D2A;
}

.ky-sample-header h2 span {
    color: #FF694F;
}

.ky-sample-header>p {
    max-width: 620px;
    margin: 0 auto;
    color: #68756F;
    line-height: 1.8;
}

.ky-sample-preview {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    max-width: 1050px;
    min-height: 460px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #E0E9E3;
    border-radius: 24px;
    background: #FFFFFF;
    box-shadow: 0 25px 65px rgba(18, 61, 42, 0.1);
}


/* =========================================================
   SAMPLE DOCUMENT
========================================================= */

.ky-sample-document-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    padding: 35px;
    background:
        radial-gradient(circle at center,
            rgba(11, 98, 57, 0.08),
            transparent 65%);
}

.ky-sample-document {
    position: relative;
    width: 285px;
    min-height: 380px;
    padding: 27px;
    border: 1px solid #DDE7E1;
    background: #FFFFFF;
    box-shadow: 15px 20px 40px rgba(18, 61, 42, 0.12);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.ky-sample-preview:hover .ky-sample-document {
    transform: rotate(0deg) translateY(-5px);
}

.ky-document-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 18px;
    border-bottom: 1px solid #DDE7E1;
}

.ky-document-top span {
    color: #0B6239;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.ky-document-top small {
    color: #89958F;
    font-size: 7px;
    letter-spacing: 1px;
}

.ky-document-title {
    margin: 24px 0 20px;
    color: #123D2A;
    font-size: 17px;
    font-weight: 800;
}

.ky-document-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ky-document-bars span {
    width: 100%;
    height: 7px;
    border-radius: 10px;
    background: #E8EFEA;
}

.ky-document-bars span:first-child {
    width: 65%;
    background: #0B6239;
}

.ky-document-bars span:last-child {
    width: 45%;
}

.ky-document-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
}

.ky-document-columns div {
    height: 75px;
    border-radius: 5px;
    background: #F1F5F2;
}

.ky-document-columns.small {
    margin-top: 10px;
}

.ky-document-columns.small div {
    height: 45px;
}

.ky-document-bottom {
    position: absolute;
    right: 27px;
    bottom: 23px;
    left: 27px;
    padding-top: 11px;
    border-top: 1px solid #DDE7E1;
    color: #0B6239;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================================
   SAMPLE CONTENT
========================================================= */

.ky-sample-info {
    max-width: 480px;
    padding: 50px 60px 50px 20px;
}

.ky-sample-number {
    display: block;
    margin-bottom: 14px;
    color: #FF694F;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ky-sample-info h3 {
    margin: 0 0 18px;
    color: #123D2A;
    line-height: 1.2;
}

.ky-sample-info>p {
    margin: 0 0 28px;
    color: #68756F;
    line-height: 1.8;
}

.ky-sample-btn {
    background: #0B6239;
    color: #FFFFFF;
}

.ky-sample-btn:hover {
    background: #FF694F;
    color: #FFFFFF;
}


/* =========================================================
   SECTION 06 — FINAL CTA
========================================================= */

.ky-final-cta {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background: #0B6239;
}

.ky-final-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.5) 1px,
            transparent 1px);
    background-size: 20px 20px;
}

.ky-final-cta-content {
    position: relative;
    z-index: 2;
}

.ky-final-cta-content .ky-eyebrow {
    color: #FF694F;
}

.ky-final-cta-content h2 {
    color: #FFFFFF;
}

.ky-final-cta-content h2 span {
    color: #FF694F;
}

.ky-final-cta-content>p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.68);
}

.th-btn.ky-cta-btn:after {
    background: #FF694F !important;
    color: #FFFFFF;
}

.ky-cta-btn:hover {
    background: #FFFFFF;
    color: #123D2A;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .ky-layer-explorer {
        grid-template-columns: 300px minmax(0, 1fr);
    }

    .ky-layer-panel {
        padding: 55px 45px;
        gap: 30px;
    }

    .ky-panel-number {
        font-size: 80px;
    }

    .ky-report-layout {
        gap: 55px;
    }
}


@media (max-width: 991px) {

    .ky-intro-section,
    .ky-why-section,
    .ky-layers-section,
    .ky-report-section,
    .ky-sample-section,
    .ky-final-cta {
        padding: 60px 0;
    }

    .ky-intro-visual {
        max-width: 650px;
        margin: 0 auto;
    }

    .ky-influences {
        grid-template-columns: repeat(3, 1fr);
    }

    .ky-layer-explorer {
        grid-template-columns: 1fr;
    }

    .ky-layer-nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 12px;
    }

    .ky-layer-tab {
        grid-template-columns: 1fr;
        justify-items: center;
        min-height: 100px;
        text-align: center;
    }

    .ky-layer-tab.active {
        transform: translateY(-3px);
    }

    .ky-layer-arrow {
        display: none;
    }

    .ky-layer-panel {
        min-height: 500px;
        padding: 50px 45px;
    }

    .ky-report-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ky-report-visual {
        max-width: 550px;
        margin: 0 auto;
    }

    .ky-report-content {
        max-width: 750px;
        margin: 0 auto;
    }

    .ky-sample-preview {
        grid-template-columns: 1fr;
    }

    .ky-sample-info {
        max-width: 650px;
        padding: 20px 50px 55px;
        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ky-intro-section,
    .ky-why-section,
    .ky-layers-section,
    .ky-report-section,
    .ky-sample-section,
    .ky-final-cta {
        padding: 60px 0;
    }

    .ky-intro-image {
        min-height: 350px;
    }

    .ky-intro-image img {
        height: 350px;
    }

    .ky-intro-visual {
        padding-left: 15px;
    }

    .ky-influences {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .ky-layer-nav {
        display: flex;
        padding: 20px 10px 10px;
    }

    .ky-layer-tab {
        grid-template-columns: 38px minmax(0, 1fr) 18px;
        justify-items: initial;
        min-height: 75px;
        text-align: left;
    }

    .ky-layer-tab-content small {
        display: none;
    }

    .ky-layer-panel {
        min-height: auto;
        padding: 40px 25px 45px;
        flex-direction: column;
        gap: 20px;
    }

    .ky-panel-number {
        font-size: 65px;
    }

    .ky-panel-content h3 {
        margin-top: 10px;
    }

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

    .ky-mentor-panel blockquote {
        font-size: 17px;
        padding: 20px;
    }

    .ky-report-image-wrap img {
        height: 430px;
    }

    .ky-report-floating-card {
        right: 10px;
    }

    .ky-report-points {
        grid-template-columns: 1fr;
    }

    .ky-report-points div:nth-child(odd) {
        margin-right: 0;
    }

    .ky-sample-document-wrap {
        min-height: 420px;
        padding: 25px;
    }

    .ky-sample-info {
        padding: 10px 30px 45px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ky-intro-badge {
        right: 5px;
    }

    .ky-influences {
        grid-template-columns: 1fr;
    }

    .ky-why-highlight {
        gap: 14px;
    }

    .ky-why-highlight p {
        font-size: 16px;
    }

    .ky-layer-tab {
        grid-template-columns: 32px minmax(0, 1fr) 14px;
        gap: 7px;
    }

    .ky-layer-number {
        font-size: 10px;
    }

    .ky-layer-tab-content strong {
        font-size: 12px;
    }

    .ky-layer-panel {
        padding: 35px 20px 45px;
    }

    .ky-report-image-wrap img {
        height: 360px;
    }

    .ky-report-floating-card {
        right: 5px;
        bottom: 20px;
    }

    .ky-sample-document {
        width: 235px;
        min-height: 350px;
    }

    .ky-sample-document-wrap {
        min-height: 390px;
    }
}

/* =========================================================
   PAGE 03 — OUR PROGRAMS
========================================================= */

.veda-programs-page {
    overflow: hidden;
    background: #ffffff;
}


/* =========================================================
   GLOBAL
========================================================= */

.veda-programs-page .ky-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: #ff694f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.3px;
    line-height: 1;
    text-transform: uppercase;
}

.veda-programs-page .ky-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 20px;
    background: #ff694f;
}

.veda-programs-page .program-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #ff694f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    line-height: 1.4;
    text-transform: uppercase;
}

.veda-programs-page .program-number {
    display: block;
    margin-bottom: 13px;
    color: rgba(11, 98, 57, 0.16);
    font-size: 46px;
    font-weight: 900;
    line-height: 0.9;
}

.veda-programs-page h3 {
    margin: 0;
    color: #123d2a;
    line-height: 1.08;
}

.veda-programs-page p {
    color: #68756f;
    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.programs-page-intro {
    padding: 75px 0;
    background: #ffffff;
}

.programs-page-intro-inner {
    max-width: 760px;
    margin: 0 auto;
}

.programs-page-intro h2 {
    margin: 0 0 18px;
    color: #123d2a;
    line-height: 1.08;
}

.programs-page-intro h2 span {
    color: #ff694f;
}

.programs-page-intro p {
    max-width: 650px;
    margin: 0 auto;
}


/* =========================================================
   EDITORIAL SECTIONS
========================================================= */

.program-editorial-section {
    padding: 75px 0;
}

.program-light {
    background: #ffffff;
}

.program-soft {
    background: #f3f7f4;
}

.program-editorial-row {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 80px;
}

.program-editorial-row.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.program-editorial-row.reverse .program-editorial-content {
    order: 2;
}

.program-editorial-row.reverse .program-editorial-image {
    order: 1;
}


/* =========================================================
   EDITORIAL CONTENT
========================================================= */

.program-editorial-content {
    position: relative;
    z-index: 2;
}

.program-editorial-content h3 {
    margin-bottom: 18px;
}

.program-description {
    max-width: 560px;
    margin: 0 0 30px;
}

.program-editorial-btn {
    margin-top: 10px;
}


/* =========================================================
   IMAGE
========================================================= */

.program-editorial-image {
    position: relative;
}

.program-image-frame {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 24px;
    background: #dce8e1;
    box-shadow: 0 25px 60px rgba(18, 61, 42, 0.13);
}

.program-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 50%,
            rgba(18, 61, 42, 0.6));
    pointer-events: none;
}

.program-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.program-image-frame:hover img {
    transform: scale(1.045);
}

.program-image-label {
    position: absolute;
    z-index: 2;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.program-image-label span {
    color: #ff694f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.program-image-label strong {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* =========================================================
   PROGRAM 01 — FLOW
========================================================= */

.program-flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.program-flow-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.program-flow-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #c9dad0;
    border-radius: 50%;
    color: #0b6239;
    font-size: 10px;
    font-weight: 800;
}

.program-flow-item strong {
    color: #123d2a;
    font-size: 14px;
}

.program-flow-arrow {
    color: #ff694f;
    font-size: 10px;
}


/* =========================================================
   PROGRAM 02 — VALUES
========================================================= */

.program-value-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 580px;
}

.program-value {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid #dce8e1;
    border-radius: 8px;
    background: #ffffff;
    transition: 0.3s ease;
}

.program-value span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 105, 79, 0.1);
    color: #ff694f;
    font-size: 16px;
}

.program-value strong {
    color: #123d2a;
    font-size: 13px;
}

.program-value:hover {
    border-color: #ff694f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 61, 42, 0.07);
}

.program-note {
    max-width: 620px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(11, 98, 57, 0.12);
}

.program-note span {
    display: block;
    margin-bottom: 6px;
    color: #ff694f;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.program-note p {
    margin: 0;
    color: #7b8782;
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   PROGRAM 03 — FIND YOUR PATH
========================================================= */

.program-path-section {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background: #123d2a;
}

.program-path-decoration {
    position: absolute;
    top: -250px;
    right: -250px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255, 105, 79, 0.12);
    border-radius: 50%;
}

.program-path-decoration::before,
.program-path-decoration::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.program-path-decoration::before {
    inset: 80px;
}

.program-path-decoration::after {
    inset: 170px;
}

.program-path-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 60px;
}

.program-path-heading .program-number {
    color: rgba(255, 255, 255, 0.18);
}

.program-path-heading h3 {
    color: #ffffff;
}

.program-path-heading p {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.65);
}

.program-note-dark {
    border-color: rgba(255, 255, 255, 0.12);
}

.program-note-dark p {
    color: rgba(255, 255, 255, 0.48);
}


/* =========================================================
   SKILL NETWORK
========================================================= */

.program-skills-area {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 520px;
    margin-left: auto;
}

.skills-center {
    position: absolute;
    top: 50%;
    left: 48%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 155px;
    height: 155px;
    border: 1px solid rgba(255, 105, 79, 0.45);
    border-radius: 50%;
    background: #0b6239;
    color: #ffffff;
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 25px rgba(255, 255, 255, 0.025),
        0 0 0 50px rgba(255, 255, 255, 0.018);
}

.skills-center span {
    color: #ff694f;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.skills-center strong {
    margin-top: 5px;
    font-size: 17px;
    letter-spacing: 1px;
}

.skill-node {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(5px);
    transition: 0.35s ease;
}

.skill-node i {
    color: #ff694f;
}

.skill-node:hover {
    border-color: #ff694f;
    background: #ff694f;
    color: #ffffff;
    transform: translateY(-4px);
}

.skill-node:hover i {
    color: #ffffff;
}

.skill-node-1 {
    top: 25px;
    left: 39%;
}

.skill-node-2 {
    top: 58px;
    left: 9%;
}

.skill-node-3 {
    top: 58px;
    right: 10%;
}

.skill-node-4 {
    top: 160px;
    left: -5%;
}

.skill-node-5 {
    top: 160px;
    right: 1%;
}

.skill-node-6 {
    bottom: 90px;
    left: 4%;
}

.skill-node-7 {
    bottom: 25px;
    left: 28%;
}

.skill-node-8 {
    bottom: 25px;
    right: 27%;
}

.skill-node-9 {
    bottom: 100px;
    right: 3%;
}

.skill-node-10 {
    top: 265px;
    left: -5%;
}

.skill-node-11 {
    top: 265px;
    right: -3%;
}


/* =========================================================
   PROGRAM 04 — RESTART
========================================================= */

.program-restart-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #0b2e20;
}

.restart-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.restart-glow-one {
    top: -250px;
    right: -100px;
    background: rgba(255, 105, 79, 0.12);
}

.restart-glow-two {
    bottom: -300px;
    left: -150px;
    background: rgba(11, 98, 57, 0.4);
}

.restart-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 240px;
    align-items: center;
    gap: 50px;
}

.restart-main .program-number {
    color: rgba(255, 255, 255, 0.13);
}

.restart-main h3 {
    color: #ffffff;
}

.restart-question {
    margin: 22px 0 15px;
    color: #ff694f;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.35;
}

.restart-question span {
    color: rgba(255, 255, 255, 0.25);
}

.restart-main p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.63);
}

.restart-support-label {
    display: block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.restart-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.restart-tags span {
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    transition: 0.3s ease;
}

.restart-tags span:hover {
    border-color: rgba(255, 105, 79, 0.6);
    background: rgba(255, 105, 79, 0.1);
    color: #ffffff;
    transform: translateY(-3px);
}

.restart-message {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.restart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 105, 79, 0.4);
    border-radius: 50%;
    color: #ff694f;
}

.restart-message>span {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.restart-message strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
}


/* =========================================================
   PROGRAM 05 — LIVE & LEAD
========================================================= */

.program-live-section {
    background: #f5f8f6;
}

.lead-values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 560px;
    margin-bottom: 25px;
}

.lead-values-list span {
    padding: 9px 12px;
    border: 1px solid #d8e5dd;
    border-radius: 7px;
    background: #ffffff;
    color: #123d2a;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.lead-values-list span:hover {
    border-color: #ff694f;
    background: #ff694f;
    color: #ffffff;
    transform: translateY(-3px);
}

.lead-statement {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-left: 18px;
    border-left: 3px solid #ff694f;
}

.lead-statement span {
    color: #7c8983;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.lead-statement strong {
    color: #123d2a;
    font-size: 17px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.programs-final-cta {
    padding: 75px 0;
    background: #0b6239;
    position: relative;
}

.programs-final-inner {
    max-width: 760px;
    margin: 0 auto;
}

.programs-final-inner h2 {
    margin: 0 0 14px;
    color: #ffffff;
    line-height: 1.08;
}

.programs-final-inner h2 span {
    color: #ff694f;
}

.programs-final-inner>p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.7);
}

.th-btn.programs-final-button:after {
    background: #ff694f;
    color: #ffffff;
}

.programs-final-button:hover {
    background: #ffffff;
    color: #123d2a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .program-editorial-row {
        gap: 50px;
    }

    .program-skills-area {
        height: 480px;
    }

    .restart-layout {
        grid-template-columns: 1fr 1fr;
    }

    .restart-message {
        grid-column: 1 / -1;
        padding-top: 25px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
        border-left: 0;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .programs-page-intro,
    .program-editorial-section,
    .program-path-section {
        padding: 65px 0;
    }

    .program-restart-section {
        padding: 75px 0;
    }

    .program-editorial-row,
    .program-editorial-row.reverse {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .program-editorial-row.reverse .program-editorial-content {
        order: 2;
    }

    .program-editorial-row.reverse .program-editorial-image {
        order: 1;
    }

    .program-image-frame {
        height: 390px;
    }

    .program-path-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-path-heading {
        max-width: 650px;
    }

    .program-skills-area {
        margin: 0 auto;
    }

    .restart-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .restart-message {
        grid-column: auto;
        padding-top: 0;
        padding-left: 25px;
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.13);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .programs-page-intro,
    .program-editorial-section,
    .program-path-section {
        padding: 55px 0;
    }

    .program-restart-section {
        padding: 65px 0;
    }

    .programs-final-cta {
        padding: 65px 0;
    }

    .program-editorial-row,
    .program-editorial-row.reverse {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .program-editorial-row.reverse .program-editorial-content,
    .program-editorial-row.reverse .program-editorial-image {
        order: initial;
    }

    .program-editorial-image {
        order: -1;
    }

    .program-image-frame {
        height: 330px;
        border-radius: 18px;
    }

    .program-flow {
        gap: 8px;
    }

    .program-flow-arrow {
        display: none;
    }

    .program-flow-item {
        padding: 7px 9px;
        border: 1px solid #dce8e1;
        border-radius: 7px;
        background: #ffffff;
    }

    .program-value-list {
        gap: 7px;
    }

    .program-path-layout {
        gap: 15px;
    }

    .program-skills-area {
        height: 500px;
    }

    .skill-node {
        font-size: 13px;
        padding: 9px 10px;
    }

    .skill-node-1 {
        left: 32%;
    }

    .skill-node-2 {
        left: 0;
    }

    .skill-node-3 {
        right: 0;
    }

    .skill-node-4 {
        left: -3%;
    }

    .skill-node-5 {
        right: -3%;
    }

    .skill-node-6 {
        left: 0;
    }

    .skill-node-7 {
        left: 20%;
    }

    .skill-node-8 {
        right: 18%;
    }

    .skill-node-9 {
        right: -2%;
    }

    .skill-node-10 {
        left: -2%;
    }

    .skill-node-11 {
        right: -2%;
    }

    .restart-layout {
        gap: 30px;
    }

    .restart-message {
        padding-left: 0;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
        border-left: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .programs-page-intro,
    .program-editorial-section,
    .program-path-section {
        padding: 50px 0;
    }

    .program-restart-section {
        padding: 55px 0;
    }

    .program-number {
        font-size: 40px !important;
    }

    .program-image-frame {
        height: 280px;
    }

    .program-flow-item strong {
        font-size: 9px;
    }

    .program-skills-area {
        height: 520px;
    }

    .skills-center {
        width: 125px;
        height: 125px;
    }

    .skills-center span {
        font-size: 11px;
    }

    .skills-center strong {
        font-size: 14px;
    }

    .skill-node {
        max-width: 130px;
        white-space: normal;
        line-height: 1.3;
    }

    .restart-question {
        font-size: 21px;
    }

}

.skill-node,
.program-value,
.lead-values-list span,
.restart-tags span {
    transition:
        opacity 0.2s ease,
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

/* =========================================================
   PAGE 04 — GROW WITHIN
========================================================= */

.grow-within-page {
    overflow: hidden;
    background: #ffffff;
}


/* =========================================================
   COMMON
========================================================= */

.grow-within-page .ky-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: #ff694f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
    line-height: 1;
    text-transform: uppercase;
}

.grow-within-page .ky-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 20px;
    background: #ff694f;
}

.grow-within-page p {
    line-height: 1.8;
}

.grow-within-page h3 {
    color: #123d2a;
    line-height: 1.15;
}


/* =========================================================
   INTRO
========================================================= */

.grow-intro-section {
    padding: 75px 0;
    background: #ffffff;
}

.grow-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.grow-intro-content {
    position: relative;
    z-index: 2;
}

.grow-intro-content h2 {
    margin: 0 0 22px;
    color: #123d2a;
    line-height: 1.06;
}

.grow-intro-content h2 span {
    color: #ff694f;
}

.grow-intro-lead {
    max-width: 570px;
    margin: 0;
    color: #53625b;
    font-size: 16px;
}

.grow-intro-line {
    width: 55px;
    height: 2px;
    margin: 28px 0 20px;
    background: #ff694f;
}

.grow-intro-small {
    max-width: 510px;
    margin: 0;
    color: #7a8781;
    font-size: 13px;
}

.grow-intro-image {
    position: relative;
}

.grow-image-frame {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 28px;
    background: #dce8e1;
    box-shadow: 0 25px 65px rgba(18, 61, 42, 0.13);
}

.grow-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.grow-image-frame:hover img {
    transform: scale(1.045);
}

.grow-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 50%,
            rgba(18, 61, 42, 0.65));
}

.grow-image-caption {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.grow-image-caption span {
    color: #ff694f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.grow-image-caption strong {
    color: #ffffff;
    font-size: 21px;
    line-height: 1.2;
}

.grow-image-shape {
    position: absolute;
    right: -30px;
    bottom: -30px;
    z-index: -1;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255, 105, 79, 0.4);
    border-radius: 50%;
}

.grow-image-shape::before,
.grow-image-shape::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(11, 98, 57, 0.12);
    border-radius: 50%;
}

.grow-image-shape::before {
    inset: 18px;
}

.grow-image-shape::after {
    inset: 36px;
}


/* =========================================================
   WHAT WE DEVELOP
========================================================= */

.grow-development-section {
    padding: 75px 0;
    background: #f3f7f4;
}

.grow-development-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

.grow-development-heading h2 {
    margin: 0;
    color: #123d2a;
    line-height: 1.08;
}

.grow-development-heading h2 span {
    color: #ff694f;
}


/* =========================================================
   DEVELOPMENT SHOWCASE
========================================================= */

.grow-development-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 230px 1fr;
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    column-gap: 65px;
    row-gap: 25px;
    max-width: 1050px;
    min-height: 570px;
    margin: 0 auto;
}


/* =========================================================
   CENTER
========================================================= */

.grow-development-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    text-align: center;
}

.grow-development-center-ring {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 185px;
    border: 1px solid rgba(255, 105, 79, 0.45);
    border-radius: 50%;
    background: #123d2a;
    box-shadow:
        0 0 0 18px rgba(11, 98, 57, 0.04),
        0 0 0 36px rgba(11, 98, 57, 0.025);
}

.grow-development-center-ring::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.grow-development-center-ring span {
    position: relative;
    color: #ff694f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.grow-development-center-ring strong {
    position: relative;
    margin-top: 5px;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 1px;
}

.grow-development-center>p {
    margin: 20px 0 0;
    color: #718079;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   DEVELOPMENT ITEM
========================================================= */

.grow-development-item {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 42px 52px 1fr;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(11, 98, 57, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    transition:
        transform 0.35s ease,
        opacity 0.25s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.grow-development-item:hover {
    border-color: rgba(255, 105, 79, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(18, 61, 42, 0.09);
}

.development-item-number {
    color: rgba(11, 98, 57, 0.2);
    font-size: 16px;
    font-weight: 900;
}

.development-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 105, 79, 0.08);
    color: #ff694f;
    font-size: 18px;
    transition: 0.35s ease;
}

.grow-development-item:hover .development-item-icon {
    background: #ff694f;
    color: #ffffff;
    transform: rotate(-8deg);
}

.grow-development-item h3 {
    margin: 0 0 5px;
    color: #123d2a;
    font-size: 18px;
}

.grow-development-item p {
    max-width: 250px;
    margin: 0;
    color: #78847e;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   GRID POSITIONS
========================================================= */

.development-top-left {
    grid-column: 1;
    grid-row: 1;
}

.development-top-right {
    grid-column: 3;
    grid-row: 1;
}

.development-middle-left {
    grid-column: 1;
    grid-row: 2;
}

.development-middle-right {
    grid-column: 3;
    grid-row: 2;
}

.development-bottom-left {
    grid-column: 1;
    grid-row: 3;
}

.development-bottom-right {
    grid-column: 3;
    grid-row: 3;
}


/* =========================================================
   CONNECTING LINES
========================================================= */

.grow-development-line {
    position: absolute;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 105, 79, 0.35),
            transparent);
}

.line-top-left {
    top: 19%;
    left: 31%;
    width: 15%;
    transform: rotate(20deg);
}

.line-top-right {
    top: 19%;
    right: 31%;
    width: 15%;
    transform: rotate(-20deg);
}

.line-bottom-left {
    bottom: 19%;
    left: 31%;
    width: 15%;
    transform: rotate(-20deg);
}

.line-bottom-right {
    right: 31%;
    bottom: 19%;
    width: 15%;
    transform: rotate(20deg);
}


/* =========================================================
   GROWTH IS MORE THAN PERFORMANCE
========================================================= */

.grow-statement-section {
    padding: 75px 0;
    background: #ffffff;
}

.grow-statement-editorial {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================================
   STATEMENT VISUAL
========================================================= */

.grow-statement-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
}

.grow-statement-circle {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #123d2a;
    text-align: center;
    box-shadow:
        0 20px 50px rgba(18, 61, 42, 0.16);
}

.grow-statement-circle span {
    color: #ff694f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.grow-statement-circle strong {
    margin-top: 5px;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 1px;
}

.grow-statement-orbit {
    position: absolute;
    border: 1px solid rgba(11, 98, 57, 0.12);
    border-radius: 50%;
}

.orbit-one {
    width: 260px;
    height: 260px;
}

.orbit-two {
    width: 340px;
    height: 340px;
}

/* =========================================================
   ORBITING DOTS
========================================================= */

.grow-statement-dot {
    position: absolute;
    z-index: 5;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff694f;
    box-shadow: 0 0 0 4px rgba(255, 105, 79, 0.08);
}


/* =========================================================
   DOT 01
========================================================= */

.dot-one {
    top: 50%;
    left: 50%;
    animation: orbitOne 9s linear infinite;
}


/* =========================================================
   DOT 02
========================================================= */

.dot-two {
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    animation: orbitTwo 12s linear infinite;
}


/* =========================================================
   DOT 03
========================================================= */

.dot-three {
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    animation: orbitThree 15s linear infinite;
}


/* =========================================================
   ORBIT ANIMATION 01
========================================================= */

@keyframes orbitOne {

    from {
        transform:
            rotate(0deg) translateX(130px) rotate(0deg);
    }

    to {
        transform:
            rotate(360deg) translateX(130px) rotate(-360deg);
    }

}


/* =========================================================
   ORBIT ANIMATION 02
========================================================= */

@keyframes orbitTwo {

    from {
        transform:
            rotate(120deg) translateX(170px) rotate(-120deg);
    }

    to {
        transform:
            rotate(480deg) translateX(170px) rotate(-480deg);
    }

}


/* =========================================================
   ORBIT ANIMATION 03
========================================================= */

@keyframes orbitThree {

    from {
        transform:
            rotate(240deg) translateX(150px) rotate(-240deg);
    }

    to {
        transform:
            rotate(600deg) translateX(150px) rotate(-600deg);
    }

}

/* =========================================================
   STATEMENT CONTENT
========================================================= */

.grow-statement-content {
    max-width: 570px;
}

.grow-statement-eyebrow {
    display: block;
    margin-bottom: 13px;
    color: #ff694f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.grow-statement-content h2 {
    margin: 0 0 20px;
    color: #123d2a;
    line-height: 1.12;
}

.grow-statement-content h2 span {
    color: #ff694f;
}

.grow-statement-content>p {
    max-width: 530px;
    margin: 0 0 28px;
    color: #69766f;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   STATEMENT POINTS
========================================================= */

.grow-statement-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

.grow-statement-points>div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e6ede9;
}

.grow-statement-points span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border-radius: 50%;
    background: rgba(255, 105, 79, 0.09);
    color: #ff694f;
    font-size: 10px;
    font-weight: 800;
}

.grow-statement-points strong {
    color: #123d2a;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   PROGRAM EXAMPLES
========================================================= */

.grow-programs-section {
    padding: 75px 0;
    background: #f3f7f4;
}

.grow-programs-header {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 45px;
}

.grow-programs-heading h2 {
    margin: 0;
    color: #123d2a;
    line-height: 1.08;
}

.grow-programs-heading h2 span {
    color: #ff694f;
}

.grow-programs-intro {
    max-width: 430px;
    margin: 0 0 4px;
    color: #718079;
    font-size: 16px;
}

.grow-program-list {
    border-top: 1px solid #d8e5dd;
}

.grow-program-item {
    display: grid;
    grid-template-columns: 75px 1fr 45px;
    align-items: center;
    gap: 20px;
    min-height: 105px;
    border-bottom: 1px solid #d8e5dd;
    transition:
        padding 0.35s ease,
        opacity 0.2s ease,
        background 0.35s ease;
}

.grow-program-item:hover {
    padding: 0 20px;
    background: #ffffff;
}

.grow-program-number {
    color: rgba(11, 98, 57, 0.25);
    font-size: 12px;
    font-weight: 800;
}

.grow-program-main span {
    display: block;
    margin-bottom: 5px;
    color: #ff694f;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.grow-program-main h3 {
    margin: 0;
    color: #123d2a;
    font-size: 18px;
}

.grow-program-main h3 small {
    margin-left: 8px;
    color: #839088;
    font-size: 9px;
    font-weight: 500;
}

.grow-program-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #d5e1da;
    border-radius: 50%;
    color: #0b6239;
    transition: 0.35s ease;
}

.grow-program-item:hover .grow-program-arrow {
    border-color: #ff694f;
    background: #ff694f;
    color: #ffffff;
    transform: translateX(4px);
}

.grow-program-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 800px;
    margin-top: 25px;
}

.grow-program-note>i {
    margin-top: 3px;
    color: #ff694f;
}

.grow-program-note p {
    margin: 0;
    color: #7c8882;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CARE & SUPPORT
========================================================= */

.grow-care-section {
    padding: 75px 0;
    background: #ffffff;
}

.grow-care-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    align-items: start;
    max-width: 950px;
    margin: 0 auto;
    padding: 45px 50px;
    border-radius: 22px;
    background: #123d2a;
}

.grow-care-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border: 1px solid rgba(255, 105, 79, 0.35);
    border-radius: 50%;
    color: #ff694f;
    font-size: 19px;
}

.grow-care-content>span {
    display: block;
    margin-bottom: 10px;
    color: #ff694f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.grow-care-content h2 {
    margin: 0 0 18px;
    color: #ffffff;
    line-height: 1.08;
}

.grow-care-content h2 span {
    color: #ff694f;
}

.grow-care-content p {
    max-width: 760px;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
}

.grow-care-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FINAL CTA
========================================================= */

.grow-final-section {
    padding: 75px 0;
    background: #0b6239;
    position: relative;
}

.grow-final-content {
    max-width: 760px;
    margin: 0 auto;
}

.grow-final-content h2 {
    margin: 0 0 15px;
    color: #ffffff;
    line-height: 1.08;
}

.grow-final-content h2 span {
    color: #ff694f;
}

.grow-final-content>p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.7);
}

.grow-final-button:after {
    background: #ff694f;
    color: #ffffff;
}

.grow-final-button:hover {
    background: #ffffff;
    color: #123d2a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .grow-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .grow-image-frame {
        height: 430px;
    }


    /* Development */

    .grow-development-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: auto;
        gap: 15px;
    }

    .grow-development-center {
        position: relative;
        top: auto;
        left: auto;
        grid-column: 1 / -1;
        grid-row: 1;
        transform: none;
        margin: 20px auto 35px;
    }

    .grow-development-center-ring {
        width: 150px;
        height: 150px;
    }

    .development-top-left {
        grid-column: 1;
        grid-row: 2;
    }

    .development-top-right {
        grid-column: 2;
        grid-row: 2;
    }

    .development-middle-left {
        grid-column: 1;
        grid-row: 3;
    }

    .development-middle-right {
        grid-column: 2;
        grid-row: 3;
    }

    .development-bottom-left {
        grid-column: 1;
        grid-row: 4;
    }

    .development-bottom-right {
        grid-column: 2;
        grid-row: 4;
    }

    .grow-development-line {
        display: none;
    }


    /* Statement */

    .grow-statement-editorial {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .grow-statement-visual {
        height: 300px;
    }

    .grow-statement-content {
        max-width: none;
    }


    /* Programs */

    .grow-programs-header {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .grow-intro-section,
    .grow-development-section,
    .grow-statement-section,
    .grow-programs-section,
    .grow-care-section {
        padding: 55px 0;
    }

    .grow-final-section {
        padding: 65px 0;
    }


    /* Intro */

    .grow-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .grow-intro-image {
        order: -1;
    }

    .grow-image-frame {
        height: 350px;
        border-radius: 20px;
    }


    /* Development */

    .grow-development-showcase {
        grid-template-columns: 1fr;
    }

    .grow-development-center {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 25px;
    }

    .development-top-left,
    .development-top-right,
    .development-middle-left,
    .development-middle-right,
    .development-bottom-left,
    .development-bottom-right {
        grid-column: 1;
    }

    .development-top-left {
        grid-row: 2;
    }

    .development-top-right {
        grid-row: 3;
    }

    .development-middle-left {
        grid-row: 4;
    }

    .development-middle-right {
        grid-row: 5;
    }

    .development-bottom-left {
        grid-row: 6;
    }

    .development-bottom-right {
        grid-row: 7;
    }

    .grow-development-item {
        grid-template-columns: 35px 45px 1fr;
        padding: 16px;
    }

    .grow-development-item p {
        font-size: 9px;
    }


    /* Statement */

    .grow-statement-section {
        padding: 55px 0;
    }

    .grow-statement-points {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .grow-statement-visual {
        height: 270px;
    }

    .grow-statement-circle {
        width: 150px;
        height: 150px;
    }

    .orbit-one {
        width: 215px;
        height: 215px;
    }

    .orbit-two {
        width: 280px;
        height: 280px;
    }


    /* Programs */

    .grow-program-item {
        grid-template-columns: 45px 1fr 38px;
        gap: 12px;
        min-height: 95px;
    }

    .grow-program-item:hover {
        padding: 0 10px;
    }

    .grow-program-main h3 {
        font-size: 15px;
    }


    /* Care */

    .grow-care-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 35px 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .grow-intro-section,
    .grow-development-section,
    .grow-statement-section,
    .grow-programs-section,
    .grow-care-section {
        padding: 50px 0;
    }

    .grow-image-frame {
        height: 300px;
    }

    .grow-image-caption {
        right: 20px;
        bottom: 20px;
    }

    .grow-program-main span {
        font-size: 7px;
    }

    .grow-program-main h3 {
        font-size: 14px;
    }

    .grow-program-main h3 small {
        display: block;
        margin: 4px 0 0;
    }

    .grow-program-arrow {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

}


/* =========================================================
   PAGE 07 — IDEAS & INNOVATION
========================================================= */

.innovation-page {

    --innovation-green: #123d2a;
    --innovation-green-dark: #0c2b1d;
    --innovation-green-soft: #edf4ef;

    --innovation-orange: #ff694f;

    --innovation-text: #26352e;
    --innovation-muted: #68776e;

    --innovation-border: #dce5df;

    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.innovation-page section {
    position: relative;

    padding: 75px 0;
}


.innovation-page p {
    margin-top: 0;

    color: var(--innovation-muted);

    font-size: 16px;

    line-height: 1.8;
}


.innovation-page .innovation-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--innovation-orange);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.3;

    text-transform: uppercase;
}


.innovation-page .innovation-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    flex-shrink: 0;

    background: var(--innovation-orange);

    border-radius: 20px;
}


/* =========================================================
   01 — INTRO
========================================================= */

.innovation-intro-section {
    background: var(--innovation-green-soft);
}


.innovation-intro-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 70px;

    align-items: center;
}


.innovation-intro-content {
    position: relative;

    z-index: 2;
}


.innovation-intro-content h2 {
    margin: 22px 0 28px;

    color: var(--innovation-green);

    line-height: 1.05;
}


.innovation-intro-content h2 span {
    display: block;

    color: var(--innovation-orange);
}


.innovation-intro-lead {
    max-width: 610px;

    font-size: 18px !important;
}


.innovation-intro-divider {
    width: 45px;
    height: 2px;

    margin: 28px 0 20px;

    background: var(--innovation-orange);
}


.innovation-intro-highlight {
    max-width: 530px;

    margin-bottom: 0;

    color: var(--innovation-green) !important;

    font-weight: 600;
}


/* =========================================================
   INTRO VISUAL
========================================================= */

.innovation-intro-visual {
    position: relative;

    width: min(500px, 100%);

    margin: auto;
}


.innovation-visual-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(circle at center,
            rgba(255, 105, 79, 0.08),
            transparent 45%);
}


.innovation-orbit {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(18, 61, 42, 0.13);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}


.innovation-orbit-one {
    width: 95%;
    height: 95%;
}


.innovation-orbit-two {
    width: 70%;
    height: 70%;

    border-color: rgba(255, 105, 79, 0.28);
}


.innovation-orbit-three {
    width: 45%;
    height: 45%;

    border-color: rgba(18, 61, 42, 0.18);
}


.innovation-visual-core {
    position: relative;

    z-index: 4;

    width: 135px;
    height: 135px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #ffffff;

    background: var(--innovation-green);

    border-radius: 50%;

    box-shadow:
        0 20px 50px rgba(18, 61, 42, 0.2);

    animation:
        innovation-core-pulse 3.5s ease-in-out infinite;
}


.innovation-visual-core i {
    color: var(--innovation-orange);

    font-size: 30px;
}


.innovation-visual-core span {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.innovation-visual-dot {
    position: absolute;

    z-index: 3;

    width: 9px;
    height: 9px;

    background: var(--innovation-orange);

    border-radius: 50%;

    box-shadow:
        0 0 0 7px rgba(255, 105, 79, 0.08);
}


.innovation-dot-one {
    top: 16%;
    right: 21%;

    animation:
        innovation-dot-one 5s ease-in-out infinite;
}


.innovation-dot-two {
    right: 10%;
    bottom: 27%;

    width: 7px;
    height: 7px;

    animation:
        innovation-dot-two 4s ease-in-out infinite;
}


.innovation-dot-three {
    bottom: 14%;
    left: 20%;

    width: 6px;
    height: 6px;

    animation:
        innovation-dot-three 6s ease-in-out infinite;
}


.innovation-visual-accent {
    position: absolute;

    right: -12px;
    bottom: 15px;

    width: 90px;
    height: 90px;

    border-right: 2px solid var(--innovation-orange);
    border-bottom: 2px solid var(--innovation-orange);

    opacity: 0.8;
}


/* =========================================================
   02 — PROCESS
========================================================= */

.innovation-process-section {
    background: #ffffff;
}


.innovation-section-heading {
    max-width: 800px;

    margin: 0 auto 60px;
}


.innovation-section-heading h2 {
    margin-top: 20px;

    color: var(--innovation-green);

    line-height: 1.06;
}


.innovation-section-heading h2 span {
    display: block;

    color: var(--innovation-orange);
}


/* Process */

.innovation-process {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 12px;
}


.innovation-process-line {
    position: absolute;

    top: 36px;
    left: 8%;

    width: 84%;
    height: 1px;

    z-index: 0;

    background: var(--innovation-border);
}


.innovation-process-progress {
    width: 17%;
    height: 100%;

    background: var(--innovation-orange);

    transition:
        width 0.4s ease;
}


.innovation-process-item {
    position: relative;

    z-index: 2;

    min-width: 0;

    cursor: pointer;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}


.innovation-process-node {
    position: relative;

    width: 74px;

    margin: 0 auto 24px;
}


.innovation-process-node>span {
    position: absolute;
    top: -30px;
    left: 50%;

    color: #9ba89f;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    transform:
        translateX(-50%);
}


.innovation-process-icon {
    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--innovation-green);

    background: #ffffff;

    border: 1px solid var(--innovation-border);

    border-radius: 50%;

    font-size: 20px;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.innovation-process-card {
    min-height: 190px;

    padding: 24px 18px;

    background: var(--innovation-green-soft);

    border: 1px solid transparent;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.innovation-process-label {
    display: block;

    margin-bottom: 14px;

    color: #89968e;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.innovation-process-card h3 {
    margin: 0 0 10px;

    color: var(--innovation-green);

    font-size: 22px;
    font-weight: 700;

    transition:
        color 0.35s ease;
}


.innovation-process-card p {
    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    transition:
        color 0.35s ease;
}


/* Active */

.innovation-process-item.active .innovation-process-icon,
.innovation-process-item:hover .innovation-process-icon {
    color: #ffffff;

    background: var(--innovation-orange);

    border-color: var(--innovation-orange);

    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(255, 105, 79, 0.18);
}


.innovation-process-item.active .innovation-process-card,
.innovation-process-item:hover .innovation-process-card {
    background: var(--innovation-green);

    border-color: var(--innovation-green);

    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(18, 61, 42, 0.1);
}


.innovation-process-item.active .innovation-process-card h3,
.innovation-process-item:hover .innovation-process-card h3 {
    color: #ffffff;
}


.innovation-process-item.active .innovation-process-card p,
.innovation-process-item:hover .innovation-process-card p {
    color: rgba(255, 255, 255, 0.68);
}


.innovation-process-item.active .innovation-process-label,
.innovation-process-item:hover .innovation-process-label {
    color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   03 — INNOVATION LAB
========================================================= */

.innovation-lab-section {
    background: var(--innovation-green);
}


.innovation-lab-heading {
    max-width: 850px;

    margin-bottom: 55px;
}


.innovation-lab-heading h2 {
    margin-top: 20px;

    color: #ffffff;

    line-height: 1.06;
}


.innovation-lab-heading h2 span {
    display: block;

    color: var(--innovation-orange);
}


/* Lab layout */

.innovation-lab-layout {
    position: relative;

    min-height: 360px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.innovation-lab-center {
    position: relative;

    width: 250px;
    height: 250px;

    flex-shrink: 0;
}


.innovation-lab-orbit {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}


.innovation-lab-orbit-one {
    width: 100%;
    height: 100%;
}


.innovation-lab-orbit-two {
    width: 75%;
    height: 75%;

    border-color:
        rgba(255, 105, 79, 0.35);
}


.innovation-lab-core {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 130px;
    height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    color: #ffffff;

    background: var(--innovation-orange);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2);
}


.innovation-lab-core i {
    margin-bottom: 5px;

    font-size: 26px;
}


.innovation-lab-core strong {
    font-size: 15px;
}


.innovation-lab-core span {
    font-size: 12px;

    opacity: 0.75;
}


/* Areas */

.innovation-area-list {
    position: absolute;

    inset: 0;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

    align-content: center;

    pointer-events: none;
}


.innovation-area-item {
    width: 330px;

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.12);

    pointer-events: auto;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}


.innovation-area-item:nth-child(odd) {
    justify-self: start;
}


.innovation-area-item:nth-child(even) {
    justify-self: end;
}


.innovation-area-item:hover {
    background:
        rgba(255, 105, 79, 0.12);

    border-color:
        rgba(255, 105, 79, 0.55);

    transform: translateY(-5px);
}


.innovation-area-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    color: var(--innovation-orange);

    border: 1px solid rgba(255, 105, 79, 0.35);

    border-radius: 50%;

    font-size: 16px;
}


.innovation-area-content span {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


.innovation-area-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;
}


/* =========================================================
   04 — CTA
========================================================= */

.innovation-cta-section {
    position: relative;

    overflow: hidden;

    background: #0b6239;
}


.innovation-cta-pattern {
    position: absolute;

    top: -100px;
    right: -100px;

    width: 360px;
    height: 360px;

    border: 1px solid #fc563a5e;

    border-radius: 50%;
}


.innovation-cta-pattern::before,
.innovation-cta-pattern::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid #fc563a5e;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}


.innovation-cta-pattern::before {
    width: 70%;
    height: 70%;
}


.innovation-cta-pattern::after {
    width: 40%;
    height: 40%;
}


.innovation-cta-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;
}


.innovation-cta-content .innovation-eyebrow {
    color: var(--innovation-orange);
}


.innovation-cta-content .innovation-eyebrow::before {
    background: var(--innovation-orange);
}


.innovation-cta-content h2 {
    margin: 20px 0;

    color: #ffffff;

    line-height: 1.05;
}


.innovation-cta-content h2 span {
    display: block;

    color: var(--innovation-orange);
}


.innovation-cta-content p {
    max-width: 620px;

    margin: 0 auto 30px;

    color: #fff;
}


.innovation-cta-button:after {
    background: var(--innovation-orange);
    color: #fff;
}


/* .innovation-cta-button:hover {
    color: var(--innovation-green) !important;

    background: #ffffff;

    transform: translateY(-3px);
} */


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes innovation-core-pulse {

    0%,
    100% {
        box-shadow:
            0 20px 50px rgba(18, 61, 42, 0.2),
            0 0 0 0 rgba(255, 105, 79, 0);
    }

    50% {
        box-shadow:
            0 20px 55px rgba(18, 61, 42, 0.22),
            0 0 0 18px rgba(255, 105, 79, 0.06);
    }

}


@keyframes innovation-dot-one {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-16px, 20px);
    }

}


@keyframes innovation-dot-two {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, -15px);
    }

}


@keyframes innovation-dot-three {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(14px, -18px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .innovation-intro-grid {
        grid-template-columns: 1fr 0.8fr;

        gap: 35px;
    }


    .innovation-process {
        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 45px;
    }


    .innovation-process-line {
        display: none;
    }


    .innovation-process-card {
        min-height: 180px;
    }


    .innovation-lab-layout {
        min-height: auto;

        display: grid;

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .innovation-lab-center {
        margin: auto;
    }


    .innovation-area-list {
        position: static;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }


    .innovation-area-item,
    .innovation-area-item:nth-child(n) {
        width: 100%;

        justify-self: stretch;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .innovation-page section {
        padding: 55px 0;
    }


    /* Intro */

    .innovation-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .innovation-intro-lead {
        font-size: 16px !important;
    }


    .innovation-intro-visual {
        width: min(330px, 100%);
    }


    .innovation-visual-accent {
        right: 0;
    }


    /* Process */

    .innovation-section-heading {
        margin-bottom: 40px;
    }


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

        gap: 18px;
    }


    .innovation-process-item {
        display: grid;

        grid-template-columns: 75px 1fr;

        gap: 15px;

        align-items: start;
    }


    .innovation-process-node {
        width: 72px;

        margin: 0;
    }


    .innovation-process-node>span {
        top: -8px;
    }


    .innovation-process-card {
        min-height: 0;

        padding: 22px;
    }


    /* Lab */

    .innovation-lab-heading {
        margin-bottom: 40px;
    }


    .innovation-lab-center {
        width: 210px;
        height: 210px;
    }


    .innovation-lab-core {
        width: 110px;
        height: 110px;
    }


    .innovation-area-list {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .innovation-cta-content p {
        font-size: 14px;
    }


    .innovation-cta-button {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .innovation-page *,
    .innovation-page *::before,
    .innovation-page *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}

/* =========================================
   PAGE 08 — FOR PARENTS
========================================= */


/* =========================================
   SECTION 01 — INTRO
   Light Background
========================================= */

.veda-parents-intro-section {
    padding: 75px 0;
    background: #edf4ef;
    overflow: hidden;
}

.veda-parents-intro {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 80px;
}

.veda-parents-intro__content {
    max-width: 680px;
}

.veda-section-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #ff694f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.veda-section-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: #ff694f;
}

.veda-parents-intro__content h2 {
    margin: 0 0 28px;
    max-width: 650px;
    color: #1f4439;
    line-height: 1.08;
}

.veda-parents-intro__content p {
    max-width: 630px;
    margin: 0 0 18px;
    color: #53635d;
    font-size: 17px;
    line-height: 1.8;
}

.veda-parents-intro__content p:last-child {
    margin-bottom: 0;
}

.veda-parents-intro__content strong {
    color: #1f4439;
    font-weight: 700;
}

.veda-parents-intro__visual {
    position: relative;
    padding: 0 20px 20px 0;
}

.veda-parents-intro__image {
    position: relative;
    z-index: 2;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

.veda-parents-intro__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.veda-parents-intro__accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    border: 2px solid #ff694f;
    opacity: 0.6;
}


/* =========================================
   SECTION 02 — WHAT PARENTS RECEIVE
========================================= */

.veda-parents-receive-section {
    padding: 75px 0;
    background: #ffffff;
}

.veda-parents-section-heading {
    max-width: 720px;
    margin-bottom: 55px;
    text-align: center;
}

.veda-parents-section-heading h2 {
    margin: 0 0 20px;
    color: #1f4439;
}

.veda-parents-section-heading h2 div {
    text-align: center !important;
}

h2 span {
    color: #ff694f;
}


.veda-parents-section-heading p {
    margin: 0;
    color: #64716c;
    font-size: 17px;
    line-height: 1.75;
}

.veda-parents-receive-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.veda-parent-card {
    position: relative;
    min-height: 300px;
    padding: 32px 25px;
    background: #f5f7f5;
    border: 1px solid #e3e9e5;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.veda-parent-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(31, 68, 57, 0.1);
}

.veda-parent-card__number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #c8d2cd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.veda-parent-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    background: #e5eee8;
    border-radius: 50%;
    color: #1f4439;
}

.veda-parent-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: #ff694f;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.veda-parent-card h3 {
    margin: 0 0 12px;
    color: #1f4439;
    font-size: 21px;
    line-height: 1.2;
}

.veda-parent-card p {
    margin: 0;
    color: #66736d;
    font-size: 15px;
    line-height: 1.65;
}

.veda-parents-receive-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: 850px;
    margin: 50px auto 0;
}

.veda-parents-receive-note__line {
    flex: 0 0 35px;
    height: 2px;
    margin-top: 11px;
    background: #ff694f;
}

.veda-parents-receive-note p {
    margin: 0;
    color: #65716c;
    font-size: 14px;
    font-style: italic;
    line-height: 1.7;
}


/* =========================================
   SECTION 03 — PROMISE
========================================= */

.veda-parents-promise-section {
    padding: 75px 0;
    background: #0b6239;
    color: #ffffff;
    overflow: hidden;
}

.veda-parents-promise {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 70px;
    align-items: start;
}

.veda-section-eyebrow--light {
    color: #ff694f;
}

.veda-section-eyebrow--light::before {
    background: #ff694f;
}

.veda-parents-promise__content {
    max-width: 850px;
}

.veda-parents-promise__content h2 {
    margin: 0 0 30px;
    color: #ffffff;
}

.veda-parents-promise__lead {
    max-width: 700px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.7;
}

.veda-parents-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.veda-parents-values span {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.veda-parents-promise__bottom {
    max-width: 700px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.veda-parents-promise__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .veda-parents-intro {
        grid-template-columns: 1fr 0.8fr;
        gap: 50px;
    }

    .veda-parents-receive-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .veda-parent-card:last-child {
        grid-column: 2;
    }

}


@media (max-width: 991px) {

    .veda-parents-intro {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .veda-parents-intro__content {
        max-width: 750px;
    }

    .veda-parents-intro__visual {
        max-width: 600px;
    }

    .veda-parents-intro__image {
        height: 460px;
    }

    .veda-parents-promise {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .veda-parents-promise__content {
        max-width: 750px;
    }

}


@media (max-width: 767px) {

    .veda-parents-intro-section,
    .veda-parents-receive-section,
    .veda-parents-promise-section {
        padding: 60px 0;
    }

    .veda-parents-intro__visual {
        padding-right: 12px;
        padding-bottom: 12px;
    }

    .veda-parents-intro__image {
        height: 390px;
    }

    .veda-parents-receive-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .veda-parent-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .veda-parent-card:last-child {
        grid-column: auto;
    }

    .veda-parents-section-heading {
        margin-bottom: 35px;
    }

    .veda-parents-receive-note {
        margin-top: 35px;
    }

    .veda-parents-values {
        gap: 8px;
        margin-bottom: 35px;
    }

    .veda-parents-values span {
        padding: 9px 14px;
        font-size: 13px;
    }

}

/* =========================================================
   PAGE 09 — FOR SCHOOLS
========================================================= */

.schools-page {

    --schools-green: #123d2a;
    --schools-green-dark: #0b2a1c;
    --schools-green-soft: #edf4ef;

    --schools-orange: #ff694f;

    --schools-text: #26352e;
    --schools-muted: #6c7a72;

    --schools-border: #dce5df;

    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.schools-page section {
    position: relative;

    padding: 75px 0;
}


.schools-page p {
    color: var(--schools-muted);

    font-size: 16px;

    line-height: 1.8;
}


.schools-page .schools-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--schools-orange);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.3;

    text-transform: uppercase;
}


.schools-page .schools-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    flex-shrink: 0;

    background: var(--schools-orange);

    border-radius: 20px;
}


/* =========================================================
   01 — INTRO
========================================================= */

.schools-intro-section {
    background: var(--schools-green-soft);
}


.schools-intro-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 70px;

    align-items: center;
}


.schools-intro-content h2 {
    margin: 22px 0 28px;

    color: var(--schools-green);

    line-height: 1.05;
}


.schools-intro-content h2 span {
    display: block;

    color: var(--schools-orange);
}


.schools-intro-content p {
    max-width: 620px;

    margin-bottom: 24px;

    font-size: 17px;
}


.schools-intro-line {
    width: 45px;
    height: 2px;

    margin: 26px 0 18px;

    background: var(--schools-orange);
}


.schools-intro-note {
    display: block;

    max-width: 520px;

    color: var(--schools-green);

    font-size: 14px;
    font-weight: 600;

    line-height: 1.7;
}


/* Intro image */

.schools-intro-visual {
    position: relative;
}


.schools-image-frame {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: var(--schools-green);
}


.schools-image-frame img {
    width: 100%;
    height: 100%;

    min-height: 500px;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.schools-image-frame:hover img {
    transform: scale(1.04);
}


.schools-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 45%,
            rgba(18, 61, 42, 0.78) 100%);
}


.schools-image-label {
    position: absolute;

    right: 25px;
    bottom: 25px;
    left: 25px;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.schools-image-label span {
    color: var(--schools-orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.schools-image-label strong {
    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
}


/* =========================================================
   02 — SERVICES
========================================================= */

.schools-services-section {
    background: #ffffff;
}


.schools-section-heading {
    display: grid;

    grid-template-columns: 0.55fr 1.45fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 55px;
}


.schools-heading-label {
    padding-bottom: 5px;
}


.schools-section-number {
    display: block;

    margin-bottom: 9px;

    color: #9aa69f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}


.schools-section-heading h2 {
    color: var(--schools-green);

    line-height: 1.06;
}


.schools-section-heading h2 span {
    display: block;

    color: var(--schools-orange);
}


/* Services grid */

.schools-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}


.schools-service-item {
    min-height: 140px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 22px;

    background: var(--schools-green-soft);

    border: 1px solid transparent;

    cursor: pointer;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.schools-service-item:hover {
    background: var(--schools-green);

    border-color: var(--schools-green);

    transform: translateY(-6px);

    box-shadow:
        0 18px 35px rgba(18, 61, 42, 0.1);
}


.schools-service-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}


.schools-service-top>span {
    color: #8d9a92;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        color 0.35s ease;
}


.schools-service-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--schools-green);

    background: #ffffff;

    border-radius: 50%;

    font-size: 17px;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}


.schools-service-item:hover .schools-service-icon {
    color: #ffffff;

    background: var(--schools-orange);

    transform: rotate(-7deg) scale(1.06);
}


.schools-service-item:hover .schools-service-top>span {
    color: rgba(255, 255, 255, 0.45);
}


.schools-service-content h3 {
    margin: 0;

    max-width: 270px;

    color: var(--schools-green);

    font-size: 18px;
    font-weight: 700;

    line-height: 1.4;

    transition:
        color 0.35s ease;
}


.schools-service-item:hover .schools-service-content h3 {
    color: #ffffff;
}


/* =========================================================
   03 — MODEL
========================================================= */

.schools-model-section {
    background: var(--schools-green-soft);
}


.schools-model-heading {
    max-width: 750px;

    margin-bottom: 55px;
}


.schools-model-heading h2 {
    margin-top: 20px;

    color: var(--schools-green);

    line-height: 1.06;
}


.schools-model-heading h2 span {
    display: block;

    color: var(--schools-orange);
}


/* Model flow */

.schools-model-flow {
    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 18px;
}


.schools-model-step {
    position: relative;

    min-height: 210px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 24px;

    background: #ffffff;

    border: 1px solid var(--schools-border);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.schools-model-step:hover,
.schools-model-step.active {
    background: var(--schools-green);

    border-color: var(--schools-green);

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(18, 61, 42, 0.12);
}


.schools-model-number {
    color: #9aa69f;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        color 0.35s ease;
}


.schools-model-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--schools-green);

    background: var(--schools-green-soft);

    border-radius: 50%;

    font-size: 18px;

    transition:
        color 0.35s ease,
        background 0.35s ease;
}


.schools-model-step:hover .schools-model-icon,
.schools-model-step.active .schools-model-icon {
    color: #ffffff;

    background: var(--schools-orange);
}


.schools-model-step:hover .schools-model-number,
.schools-model-step.active .schools-model-number {
    color: rgba(255, 255, 255, 0.45);
}


.schools-model-step h3 {
    margin: 0;

    color: var(--schools-green);

    font-size: 21px;
    font-weight: 700;

    transition:
        color 0.35s ease;
}


.schools-model-step:hover h3,
.schools-model-step.active h3 {
    color: #ffffff;
}


.schools-model-arrow {
    color: var(--schools-orange);

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   04 — CTA
========================================================= */

.schools-cta-section {
    overflow: hidden;
    padding: 40px 0 !important;
    position: relative;
    background: var(--schools-green);
}


.schools-cta-inner {
    position: relative;

    min-height: 260px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    z-index: 2;
}


.schools-cta-content h2 {
    margin-top: 20px;

    color: #ffffff;

    line-height: 1.06;
}


.schools-cta-content h2 span {
    display: block;

    color: var(--schools-orange);
}


.schools-cta-button:after {
    color: #ffffff !important;

    background: var(--schools-orange);

    border: 1px solid var(--schools-orange);
}


.schools-cta-button:hover {
    color: var(--schools-green) !important;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);
}


/* CTA decoration */

.schools-cta-shape {
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


.schools-cta-shape-one {
    width: 430px;
    height: 430px;

    top: -210px;
    right: -100px;
}


.schools-cta-shape-two {
    width: 260px;
    height: 260px;

    top: -125px;
    right: -15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .schools-intro-grid {
        grid-template-columns:
            1fr 0.85fr;

        gap: 40px;
    }


    .schools-services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .schools-model-flow {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }


    .schools-model-arrow {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .schools-page section {
        padding: 55px 0;
    }


    /* Intro */

    .schools-intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .schools-intro-content p {
        font-size: 15px;
    }


    .schools-image-frame {
        min-height: 350px;
    }


    .schools-image-frame img {
        min-height: 350px;
    }


    /* Services */

    .schools-section-heading {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 40px;
    }


    .schools-services-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .schools-service-item {
        min-height: 160px;
    }


    /* Model */

    .schools-model-flow {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .schools-model-step {
        min-height: 175px;
    }


    /* CTA */

    .schools-cta-inner {
        min-height: 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        padding: 15px 0;
    }


    .schools-cta-button {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .schools-page *,
    .schools-page *::before,
    .schools-page *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}

/* =========================================================
   PAGE 10 — CONTACT / START YOUR JOURNEY
========================================================= */

.contact-page {

    --contact-green: #123d2a;
    --contact-green-dark: #0b2b1d;
    --contact-green-soft: #edf4ef;

    --contact-orange: #ff694f;

    --contact-text: #26352e;
    --contact-muted: #6c7a72;

    --contact-border: #dce5df;

    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.contact-page section {
    position: relative;

    padding: 75px 0;
}


.contact-page p {
    color: var(--contact-muted);

    font-size: 16px;

    line-height: 1.8;
}


.contact-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--contact-orange);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1.3;

    text-transform: uppercase;
}


.contact-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--contact-orange);

    border-radius: 20px;
}


/* =========================================================
   01 — INTRO
========================================================= */

.contact-intro-section {
    padding-top: 90px !important;
    padding-bottom: 75px !important;

    background: var(--contact-green-soft);
}


.contact-intro-content {
    max-width: 900px;

    margin: auto;
}


.contact-intro-content h2 {
    margin: 22px 0 25px;

    color: var(--contact-green);

    line-height: 1.05;
}


.contact-intro-content h2 span {
    display: block;

    color: var(--contact-orange);
}


.contact-intro-content p {
    max-width: 650px;

    margin: auto;

    font-size: 17px;
}


/* =========================================================
   02 — JOURNEY
========================================================= */

.contact-journey-section {
    background: #ffffff;
}


.contact-section-heading {
    max-width: 800px;

    margin-bottom: 50px;
}


.contact-section-heading h2 {
    margin-top: 20px;

    color: var(--contact-green);

    line-height: 1.06;
}


.contact-section-heading h2 span {
    display: block;

    color: var(--contact-orange);
}


/* Journey cards */

.contact-journey-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.contact-journey-card {
    position: relative;

    min-height: 340px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 25px;

    background: var(--contact-green-soft);

    border: 1px solid transparent;

    text-decoration: none;

    overflow: hidden;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.contact-journey-card:hover {
    background: var(--contact-green);

    border-color: var(--contact-green);

    transform: translateY(-7px);

    box-shadow:
        0 20px 40px rgba(18, 61, 42, 0.12);
}


.contact-journey-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}


.contact-journey-top>span {
    color: #96a39b;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        color 0.35s ease;
}


.contact-journey-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--contact-green);

    background: #ffffff;

    border-radius: 50%;

    font-size: 18px;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}


.contact-journey-card:hover .contact-journey-icon {
    color: #ffffff;

    background: var(--contact-orange);

    transform: rotate(-7deg);
}


.contact-journey-card:hover .contact-journey-top>span {
    color: rgba(255, 255, 255, 0.45);
}


.contact-journey-content {
    position: relative;

    z-index: 2;
}


.contact-journey-content h3 {
    margin: 0 0 14px;

    color: var(--contact-green);

    font-size: 21px;
    font-weight: 700;

    line-height: 1.35;

    transition:
        color 0.35s ease;
}


.contact-journey-content p {
    margin-bottom: 16px;

    font-size: 14px;

    line-height: 1.7;

    transition:
        color 0.35s ease;
}


.contact-journey-content strong {
    color: var(--contact-orange);

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.35s ease;
}


.contact-journey-card:hover .contact-journey-content h3 {
    color: #ffffff;
}


.contact-journey-card:hover .contact-journey-content p {
    color: rgba(255, 255, 255, 0.68);
}


.contact-journey-card:hover .contact-journey-content strong {
    color: var(--contact-orange);
}


.contact-journey-arrow {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--contact-green);

    border: 1px solid rgba(18, 61, 42, 0.15);

    border-radius: 50%;

    font-size: 13px;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}


.contact-journey-card:hover .contact-journey-arrow {
    color: #ffffff;

    background: var(--contact-orange);

    border-color: var(--contact-orange);

    transform: translateX(4px);
}


/* =========================================================
   03 — CONTACT MAIN
========================================================= */

.contact-main-section {
    background: var(--contact-green-soft);
}


.contact-main-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 70px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information h2 {
    margin: 20px 0 22px;

    color: var(--contact-green);

    line-height: 1.05;
}


.contact-information h2 span {
    display: block;

    color: var(--contact-orange);
}


.contact-info-intro {
    max-width: 500px;

    margin-bottom: 35px;
}


.contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 15px;
    background-color: #ffffff;
    padding: 24px;

    margin-bottom: 24px;
}


.contact-detail-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    color: #ffffff;

    background: var(--contact-green);

    border-radius: 50%;

    font-size: 14px;
}


.contact-detail>div:last-child>span {
    display: block;

    margin-bottom: 4px;

    color: var(--contact-green);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.contact-detail p {
    max-width: 420px;

    margin: 0;

    font-size: 14px;

    line-height: 1.65;
}


.contact-detail a {
    color: var(--contact-green);

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.contact-detail a:hover {
    color: var(--contact-orange);
}


/* =========================================================
   MAP
========================================================= */

.contact-map {
    position: relative;

    overflow: hidden;

    background: #dfe7e2;

    border: 1px solid var(--contact-border);
}


.contact-map iframe {
    display: block;

    width: 100%;

    filter:
        saturate(0.7) contrast(0.95);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
    padding: 35px;

    background: #ffffff;

    border: 1px solid var(--contact-border);

    box-shadow:
        0 20px 50px rgba(18, 61, 42, 0.06);
}


.contact-form-header {
    margin-bottom: 30px;
}


.contact-form-header>span {
    display: block;

    margin-bottom: 8px;

    color: var(--contact-orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;
}


.contact-form-header h3 {
    margin: 0;

    color: var(--contact-green);

    font-size: 25px;
    font-weight: 700;
}


.contact-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}


.contact-form-group {
    margin-bottom: 20px;
}


.contact-form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--contact-green);

    font-size: 13px;
    font-weight: 700;
}


.contact-form-group label sup {
    color: var(--contact-orange);

    font-size: 11px;
}


.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {

    width: 100%;

    padding: 13px 14px;

    color: var(--contact-text);

    background: #f7faf8;

    border: 1px solid var(--contact-border);

    border-radius: 0;

    outline: none;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-form-group input,
.contact-form-group select {
    height: 48px;
}


.contact-form-group textarea {
    min-height: 145px;

    resize: vertical;
}


.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #9ba69f;
}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {

    background: #ffffff;

    border-color: var(--contact-orange);

    box-shadow:
        0 0 0 3px rgba(255, 105, 79, 0.08);
}


/* Consent */

.contact-form-consent {
    margin: 3px 0 25px;
}


.contact-form-consent label {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    cursor: pointer;
}


.contact-form-consent input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--contact-green);
    display: block;
    opacity: 1;
    visibility: visible;
}


.contact-form-consent span {
    color: var(--contact-muted);

    font-size: 12px;

    line-height: 1.5;
}


/* Submit */

.contact-submit-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    min-width: 170px;

    padding: 14px 22px;

    color: #ffffff !important;

    background: var(--contact-green);

    border: 1px solid var(--contact-green);

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


.contact-submit-button:hover {
    color: var(--contact-green) !important;

    background: var(--contact-orange);

    border-color: var(--contact-orange);

    transform: translateY(-3px);
}


.contact-form-message {
    display: none;

    margin-top: 18px;

    padding: 12px 15px;

    font-size: 13px;

    line-height: 1.5;
}


.contact-form-message.success {
    display: block;

    color: var(--contact-green);

    background: var(--contact-green-soft);
}


.contact-form-message.error {
    display: block;

    color: #a53a2b;

    background: #fff0ed;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .contact-main-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 40px;
    }


    .contact-journey-card {
        min-height: 320px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-page section {
        padding: 55px 0;
    }


    .contact-intro-section {
        padding-top: 70px !important;
    }


    .contact-journey-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .contact-journey-card {
        min-height: 280px;
    }


    .contact-main-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-form-wrapper {
        padding: 25px 20px;
    }


    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-submit-button {
        width: 100%;
    }


    .contact-map iframe {
        height: 230px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-page *,
    .contact-page *::before,
    .contact-page *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}