/* =========================================================
   SHARED SECTION UTILITIES
   (about / realisation / approach / misconceptions /
   why-we-exist / what-we-stand-for — sab isi se banenge)
   ========================================================= */

.sec-pad {
    padding: clamp(3rem, 5vw, 4rem) 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 0 1.1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.eyebrow .eyebrow-line {
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-color);
}

.eyebrow--center {
    justify-content: center;
}

.eyebrow--danger {
    color: #b91c1c;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.eyebrow--danger .eyebrow-line {
    background: #b91c1c;
}

.sec-head {
    max-width: 700px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.sec-title {
    margin: 0 0 1.2rem;
    font-size: clamp(2rem, 3.8vw, 2.2rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark-color);
}

.sec-title--light {
    color: var(--white-color);
}

.sec-title span {
    color: var(--primary-color);
    font-style: italic;
}

.sec-title--light span {
    color: var(--accent-color);
}

.sec-lede {
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: #4b5563;
}

.sec-lede--light {
    color: var(--muted-color);
}

.num-badge {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(11, 17, 32, 0.08);
}

.num-badge--light {
    color: rgba(255, 255, 255, 0.12);
}

.icon-box {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    font-size: 1.05rem;
    color: var(--dark-color);
    background: rgb(255 198 87);
    border-radius: 14px;
    transition: transform 0.35s var(--ease-out);
}

.icon-box:hover,
[data-hover-parent]:hover .icon-box {
    transform: scale(1.08) rotate(-4deg);
}

.card-lift {
    transition:
        transform 0.4s var(--ease-out),
        box-shadow 0.4s var(--ease-out),
        border-color 0.4s ease;
}

.card-lift:hover {
    transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {

    .icon-box,
    .card-lift {
        transition: none !important;
    }

    .icon-box:hover,
    [data-hover-parent]:hover .icon-box,
    .card-lift:hover {
        transform: none;
    }
}


/* =========================================================
   About Us
   ========================================================= */
.abt {
    position: relative;
    background: var(--white-color);
    overflow: hidden;
}

.abt-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
}

.abt-img-wrap {
    position: relative;
    aspect-ratio: 4 / 4.5;
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 30px 60px -28px rgba(11, 17, 32, 0.3);
}

.abt-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-content {
    max-width: 560px;
}

.abt-title {
    margin: 0 0 1.3rem;
    font-size: clamp(2rem, 4vw, 2.2rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--dark-color);
}

.abt-title span {
    color: var(--primary-color);
    font-style: italic;
}

.abt-lede {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--dark-soft);
}

.abt-text {
    margin: 0 0 2.2rem;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: #4b5563;
}

.abt-features {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.4rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(11, 17, 32, 0.08);
}

.abt-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.abt-feature .icon-box {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
    color: var(--primary-color);
    background: rgba(2, 22, 49, 0.06);
}

.abt-feature:hover .icon-box {
    color: var(--dark-color);
    background: rgb(255 198 87);
}

.abt-feature strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
}

.abt-feature p {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.6;
    color: #7c8695;
}

@media (max-width: 991.98px) {
    .abt-grid {
        grid-template-columns: 1fr;
    }

    .abt-content {
        max-width: 100%;
    }

    .abt-img-wrap {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 575.98px) {
    .abt-title {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
    }

    .abt-lede {
        font-size: 1rem;
    }

    .abt-features {
        gap: 1.3rem;
    }
}


/* =========================================================
   The Realisation
   ========================================================= */
.rls {
    position: relative;
    background: var(--dark-color);
    overflow: hidden;
}

.rls::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -140px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 178, 27, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.rls-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 6vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.rls-title {
    margin: 0;
    font-size: clamp(1.8rem, 4.2vw, 2.2rem);
    font-weight: 500;
    line-height: 1.18;
}

.rls-support {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
}

.rls-support-lede {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.rls-support-text {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted-color);
}

.rls-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.rls-card {
    position: relative;
    padding: 2.1rem 1.8rem 1.9rem;
    background: var(--dark-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.rls-card:hover {
    border-color: rgba(255, 178, 27, 0.35);
    box-shadow: 0 24px 48px -22px rgba(0, 0, 0, 0.6);
}

.rls-card--highlight {
    background: linear-gradient(155deg, rgba(255, 178, 27, 0.14), rgba(255, 178, 27, 0.03));
    border-color: rgba(255, 178, 27, 0.3);
}

.rls-card .num-badge {
    margin-bottom: 1.4rem;
    font-size: 2.2rem;
}

.rls-card--highlight .num-badge {
    color: rgba(255, 178, 27, 0.25);
}

.rls-tag {
    display: inline-block;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--accent-color);
}

.rls-text {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991.98px) {
    .rls-top {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .rls-card {
        padding: 1.75rem 1.5rem 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .rls-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .rls-title {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
    }

    .rls-support-lede {
        font-size: 0.98rem;
    }

    .rls-card {
        padding: 1.6rem 1.4rem 1.4rem;
        border-radius: 16px;
    }

    .rls-card .num-badge {
        font-size: 1.8rem;
        margin-bottom: 1.1rem;
    }
}


/* =========================================================
   Our Approach
   ========================================================= */
.apr {
    position: relative;
    background: #faf9f7;
    overflow: hidden;
}

.apr-highlight-line {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-top: 1.1rem;
}

.apr-highlight-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.apr-quote {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 5vw, 4rem);
    text-align: center;
    background: var(--dark-color);
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
}

.apr-quote::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 178, 27, 0.16) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.apr-quote::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(2, 22, 49, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.apr-quote .icon-box {
    display: inline-grid;
    margin-bottom: 1.5rem;
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
    border-radius: 15px;
}

.apr-quote-text {
    margin: 0 auto 2.2rem;
    max-width: 680px;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
}

.apr-quote-text span {
    color: var(--accent-color);
    font-style: italic;
}

@media (max-width: 767.98px) {
    .apr-quote {
        border-radius: 22px;
        padding: 2.25rem 1.5rem;
    }

    .apr-quote-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .apr-highlight-line {
        font-size: 0.92rem;
    }

    .apr-quote-text {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
    }
}


/* =========================================================
   Misconceptions
   ========================================================= */
.msc {
    position: relative;
    background: var(--white-color);
}

.msc-title span {
    color: var(--primary-color);
}

.msc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.msc-card {
    position: relative;
    padding: 2.1rem 1.8rem 2rem;
    background: #faf9f7;
    border: 1px solid rgba(11, 17, 32, 0.07);
    border-radius: 20px;
}

.msc-card:hover {
    border-color: rgba(185, 28, 28, 0.2);
    box-shadow: 0 22px 46px -20px rgba(11, 17, 32, 0.18);
}

.msc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.msc-x {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.08);
    border: 1px solid rgba(185, 28, 28, 0.18);
    border-radius: 50%;
    transition: transform 0.35s var(--ease-out);
}

.msc-card:hover .msc-x {
    transform: rotate(90deg);
}

.msc-tag {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b91c1c;
}

.msc-myth {
    margin: 0 0 1rem;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--dark-color);
    text-decoration: line-through;
    text-decoration-color: rgba(185, 28, 28, 0.45);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.msc-text {
    margin: 0;
    font-size: 0.87rem;
    font-weight: 300;
    line-height: 1.85;
    color: #4b5563;
}

@media (max-width: 991.98px) {
    .msc-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .msc-card {
        padding: 1.85rem 1.6rem 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .msc-myth {
        font-size: 1.02rem;
    }

    .msc-card {
        border-radius: 16px;
        padding: 1.6rem 1.4rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .msc-x {
        transition: none !important;
    }

    .msc-card:hover .msc-x {
        transform: none;
    }
}


/* =========================================================
   Why We Exist
   ========================================================= */
.wwe {
    position: relative;
    background: #faf9f7;
}

.wwe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.wwe-block {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border: 1px solid rgba(11, 17, 32, 0.07);
    border-radius: 22px;
    overflow: hidden;
}

.wwe-block:hover {
    box-shadow: 0 26px 52px -22px rgba(11, 17, 32, 0.22);
}

.wwe-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e5e2dc;
}

.wwe-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.wwe-block:hover .wwe-media img {
    transform: scale(1.06);
}

.wwe-block-content {
    position: relative;
    padding: clamp(1.5rem, 2.5vw, 2.1rem);
}

.wwe-block-content .icon-box {
    width: 52px;
    height: 52px;
    margin-top: -3.6rem;
    margin-bottom: 1.2rem;
    border: 4px solid var(--white-color);
    box-shadow: 0 10px 24px -10px rgba(11, 17, 32, 0.35);
    position: relative;
    z-index: 2;
}

.wwe-block-num {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9aa1ab;
}

.wwe-block-title {
    margin: 0 0 0.9rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.01em;
    color: var(--dark-color);
}

.wwe-block-text {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    color: #4b5563;
}

@media (max-width: 991.98px) {
    .wwe-grid {
        grid-template-columns: 1fr;
    }

    .wwe-block-content .icon-box {
        margin-top: -3.2rem;
    }
}

@media (max-width: 575.98px) {
    .wwe-block {
        border-radius: 18px;
    }

    .wwe-block-content .icon-box {
        width: 46px;
        height: 46px;
        font-size: 1rem;
        margin-top: -2.9rem;
        margin-bottom: 1rem;
    }

    .wwe-block-title {
        font-size: 1.12rem;
    }
}


/* =========================================================
   What We Stand For
   ========================================================= */
.wsf {
    position: relative;
    background: var(--dark-color);
    overflow: hidden;
}

.wsf::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 178, 27, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.wsf-head {
    position: relative;
    z-index: 1;
}

.wsf-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.wsf-step {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.1rem 1.7rem 2rem;
    background: var(--dark-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
}

.wsf-step:hover {
    border-color: rgba(255, 178, 27, 0.3);
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
}

.wsf-step--mid {
    background: linear-gradient(155deg, rgba(255, 178, 27, 0.09), rgba(17, 24, 39, 1));
    border-color: rgba(255, 178, 27, 0.18);
}

.wsf-step--final {
    background: linear-gradient(155deg, rgba(255, 178, 27, 0.2), rgba(255, 178, 27, 0.04));
    border-color: rgba(255, 178, 27, 0.4);
}

.wsf-step--final .wsf-step-title,
.wsf-step--final .wsf-step-text {
    color: rgba(255, 255, 255, 0.68);
}

.wsf-step--final .wsf-step-text {
    color: rgba(255, 255, 255, 0.68);
}

.wsf-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.3rem;
}

.wsf-step--final .num-badge {
    color: rgba(11, 17, 32, 0.15);
}

.wsf-tag {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.7rem;
    padding: 0.28rem 0.7rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(255, 178, 27, 0.1);
    border-radius: var(--radius-pill);
}

.wsf-step--final .wsf-tag {
    color: var(--accent-color);
    background: rgba(255, 178, 27, 0.1);
}

.wsf-step-title {
    margin: 0 0 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--white-color);
}

.wsf-step-text {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
}

.wsf-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.18);
    font-size: 1.2rem;
}

@media (max-width: 1199.98px) {
    .wsf-flow {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .wsf-connector {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .wsf-flow {
        grid-template-columns: 1fr;
    }

    .wsf-step {
        padding: 1.8rem 1.5rem 1.7rem;
    }

    .wsf-step-title {
        font-size: 1.15rem;
    }
}