﻿:root {
    --red: #E21F26;
    --red-dark: #B0181D;
    --red-tint: #FDECEC;
    --ink: #1F2430;
    --slate: #5B6272;
    --slate-light: #8A90A0;
    --line: #E7E8EE;
    --surface: #F7F7F9;
    --white: #FFFFFF;
    --radius: 10px;
    --shadow: 0 4px 18px rgba(31,36,48,0.07);
    --shadow-hover: 0 10px 30px rgba(31,36,48,0.12);
    --font: DINNextLTPro-Regular,sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    max-width: 94%;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

h1, h2, h3, h4 {
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: clamp(28px,4vw,44px);
}

h2 {
    font-size: clamp(22px,3vw,29px);
}

h3 {
    font-size: 19px;
}

p {
    margin: 0 0 14px;
    color: var(--slate);
}

.eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section {
    padding: 25px 0;
}

.section-alt {
    background: var(--surface);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

    .section-head p {
        margin: 0 auto;
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .18s ease;
    font-family: var(--font);
}

.btn-primary {
    background: var(--red);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--red-dark);
        transform: translateY(-1px);
    }

.btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

    .btn-outline:hover {
        background: rgba(255,255,255,.12);
    }

.btn-outline-red {
    background: transparent;
    border-color: var(--red);
    color: var(--red);
}

    .btn-outline-red:hover {
        background: var(--red-tint);
    }

:focus-visible {
    outline: 3px solid #ffb703;
    outline-offset: 2px;
}

/* ===== Header / Nav ===== */
.top-strip {
    background: var(--ink);
    color: #c9cbd6;
    font-size: 13px;
}

    .top-strip .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 24px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .top-strip a {
        color: #c9cbd6;
    }

        .top-strip a:hover {
            color: #fff;
        }

    .top-strip .contact-links {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

header.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--ink);
}

    .logo .mark {
        width: 38px;
        height: 38px;
        flex: none;
    }

    .logo .brand-sub {
        display: block;
        font-size: 10.5px;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--slate);
        text-transform: uppercase;
    }

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

    nav.main-nav > ul {
        display: flex;
        align-items: center;
        gap: 2px;
    }

        nav.main-nav > ul > li {
            position: relative;
        }

            nav.main-nav > ul > li > a, nav.main-nav > ul > li > button.nav-top {
                display: flex;
                align-items: center;
                gap: 5px;
                padding: 10px 12px;
                font-size: 14.5px;
                font-weight: 600;
                color: var(--ink);
                border: none;
                background: none;
                cursor: pointer;
                font-family: var(--font);
                border-radius: 6px;
            }

                nav.main-nav > ul > li > a:hover, nav.main-nav > ul > li > button.nav-top:hover {
                    color: var(--red);
                    background: var(--red-tint);
                }

.caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    padding: 8px;
    margin-top: 6px;
}

li.has-dropdown:hover .dropdown, li.has-dropdown.open .dropdown {
    display: block;
}

.dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}

    .dropdown li a:hover {
        background: var(--red-tint);
        color: var(--red);
    }

.badge-new {
    background: var(--red);
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 2px 6px;
    border-radius: 20px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--ink);
        margin: 5px 0;
        border-radius: 2px;
    }

.breadcrumb {
    background: var(--surface);
    font-size: 13px;
    color: var(--slate-light);
    padding: 12px 0;
}

    .breadcrumb a {
        color: var(--slate);
    }

        .breadcrumb a:hover {
            color: var(--red);
        }

    .breadcrumb .sep {
        margin: 0 6px;
        color: var(--slate-light);
    }

    .breadcrumb .current {
        color: var(--ink);
        font-weight: 600;
    }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(120deg,#171A22 0%,#22242f 55%,#3a1416 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    /* height: 650px; */
}

    /* was: display:grid; grid-template-columns:1.05fr .95fr; */
    .hero .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0px 45px;
        padding: 7% 24px 3% 24px;
        max-width: 94% !important;
        width: 100% !important;
    }

        .hero .container > .hero-copy {
            flex: 1.05 1 500px;
            min-width: 0;
        }

        .hero .container > .hero-art {
            flex: 0.95 1 320px;
            min-width: 0;
        }

    .hero .eyebrow {
        color: #ff8f8f;
    }

    .hero h1 {
        color: #fff;
        margin-bottom: 10px;
        font-size: 36px;
    }

    .hero .subhead {
        font-size: 18px;
        font-weight: 600;
        color: #ffd8d8;
        margin-bottom: 16px;
    }

    .hero p.body {
        color: #d6d8e2;
        max-width: 520px;
    }

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 22px 0 32px;
}

.credibility-strip {
    display: flex;
    flex-wrap: wrap;
    /* gap: 26px; */
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 22px;
    width: 95%;
    justify-content: space-between;
    margin: 0 auto;
    margin-left: 4%;
    margin-right: 4%;
}

    .credibility-strip .stat b {
        display: block;
        font-size: 26px;
        color: #fff;
    }

    .credibility-strip .stat span {
        font-size: 13px;
        color: #b9bccb;
        text-transform: uppercase;
        letter-spacing: .4px;
    }

.hero-art {
    position: relative;
}

    .hero-art svg {
        width: 100%;
        height: auto;
    }

/* ===== CV section ===== */
/* was: display:grid; grid-template-columns:1fr 1fr; */
.cv-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 56px;
    width: 100% !important;
    max-width: 94% !important;
}

    .cv-section .container > .cv-visual,
    .cv-section .container > .cv-copy {
        flex: 1 1 380px;
        min-width: 0;
    }

.cv-visual {
    border-radius: 16px;
}

/* ===== Cards grids ===== */
/* was: display:grid; gap:22px; */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

/* was: grid-template-columns:repeat(3,1fr); */
.grid-3 > * {
    flex: 1 1 calc((100% - 44px) / 3);
    min-width: 260px;
}

/* was: grid-template-columns:repeat(2,1fr); */
.grid-2 > * {
    flex: 1 1 calc((100% - 22px) / 2);
    min-width: 260px;
}

/* utility for the 4-column "related services" row
   (use class="grid grid-4" in place of the inline
   style="grid-template-columns:repeat(4,1fr)") */
.grid-4 > * {
    flex: 1 1 calc((100% - 66px) / 4);
    min-width: 220px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    transition: box-shadow .2s ease, transform .2s ease;
    /* height: 100%;*/
}

    .card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }

    .card .icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: var(--red-tint);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

        .card .icon-wrap svg {
            width: 26px;
            height: 26px;
            stroke: var(--red);
        }

    .card p:last-child {
        margin-bottom: 0;
    }

    .card p {
        font-size: 14px;
    }

/* fit checks numbered */
.fit-card {
    position: relative;
    padding-left: 70px;
}

.fit-num {
    position: absolute;
    left: 22px;
    top: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* situations list */
/* was: display:grid; grid-template-columns:repeat(2,1fr); */
.situations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .situations-list > .situation-item {
        flex: 1 1 calc((100% - 14px) / 2);
        min-width: 260px;
    }

.situation-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px 18px;
}

    .situation-item svg {
        width: 20px;
        height: 20px;
        flex: none;
        stroke: var(--red);
        margin-top: 2px;
    }

    .situation-item span {
        font-size: 14.5px;
        font-weight: 600;
        color: var(--ink);
    }

/* engagement model */
.model-card {
    border-top: 4px solid var(--red);
    padding: 18px;
}

    .model-card a.model-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--red);
        font-weight: 700;
        font-size: 14px;
        margin-top: 8px;
    }

        .model-card a.model-link:hover {
            text-decoration: underline;
        }

/* CTA + form */
.cta-form-section {
    background: var(--surface);
}

    /* was: display:grid; grid-template-columns:1fr 1.15fr; */
    .cta-form-section .container {
        display: flex;
        flex-wrap: wrap;
        /* align-items: center; */
        gap: 24px;
    }

        .cta-form-section .container > .cta-copy {
            flex: 1 1 425px;
            min-width: 0;
        }

        .cta-form-section .container > .form-card {
            flex: 1.15 1 380px;
            min-width: 0;
        }

.cta-copy .badge-heading {
    color: var(--red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.cta-copy h2 {
    margin-bottom: 14px;
}

.cta-copy .support {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 24px;
    font-size: 14px;
}

    .cta-copy .support strong {
        color: var(--ink);
    }

.contact-inline {
    margin-top: 22px;
    font-size: 14.5px;
}

    .contact-inline a {
        color: var(--red);
        font-weight: 700;
    }

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 19px 28px 0px 28px;
    box-shadow: var(--shadow);
}

    .form-card h3 {
        margin-bottom: 4px;
    }

    .form-card .form-sub {
        font-size: 13.5px;
        color: var(--slate-light);
        margin-bottom: 10px;
    }

/* was: display:grid; grid-template-columns:1fr 1fr; */
.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 12px;
}

.field {
    flex: 1 1 calc((100% - 16px) / 2);
    min-width: 145px;
    margin-bottom: 16px;
    width: 50%;
}

    /* was: grid-column:1/-1; */
    .field.full {
        flex: 1 1 100%;
    }

    .field label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 6px;
    }

        .field label .req {
            color: var(--red);
        }

    .field input, .field select, .field textarea {
        width: 100%;
        padding: 7px 12px;
        border: 1.5px solid var(--line);
        border-radius: 7px;
        font-family: var(--font);
        font-size: 14px;
        color: var(--ink);
        background: #fff;
        transition: border-color .15s ease;
    }

        .field input:focus, .field select:focus, .field textarea:focus {
            border-color: var(--red);
        }

    .field textarea {
        resize: vertical;
        min-height: 50px;
    }

    .field .error-msg {
        display: none;
        color: var(--red);
        font-size: 12.5px;
        margin-top: 5px;
        font-weight: 600;
    }

    .field.invalid input, .field.invalid select, .field.invalid textarea {
        border-color: var(--red);
        background: var(--red-tint);
    }

    .field.invalid .error-msg {
        display: block;
    }

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.form-note {
    font-size: 12px;
    color: var(--slate-light);
    margin-top: 10px;
}

.form-success {
    display: none;
    background: #EAF7EE;
    border: 1px solid #bfe6c9;
    color: #1c6b34;
    padding: 16px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 18px;
    font-weight: 600;
}

    .form-success.show {
        display: block;
    }

.form-card form.hidden {
    display: none;
}

/* FAQ */
.faq-list {
    /* max-width: 820px; */
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 18px 20px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font);
}

    .faq-q:hover {
        color: var(--red);
    }

    .faq-q .plus {
        width: 20px;
        height: 20px;
        position: relative;
        flex: none;
    }

        .faq-q .plus::before, .faq-q .plus::after {
            content: "";
            position: absolute;
            background: var(--red);
            border-radius: 2px;
            transition: transform .2s ease;
        }

        .faq-q .plus::before {
            width: 14px;
            height: 2.5px;
            top: 9px;
            left: 3px;
        }

        .faq-q .plus::after {
            height: 14px;
            width: 2.5px;
            left: 9px;
            top: 3px;
        }

.faq-item.open .faq-q .plus::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    background: #fff;
}

    .faq-a p {
        padding: 0 20px 18px;
        margin: 0;
        font-size: 14.5px;
    }

.faq-item.open .faq-a {
    max-height: 300px;
}

/* related */
.related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 24%;
    max-width: 100%;
    padding: 15px;
    height: 220px;
    flex: initial;
}

    .related-card .icon-wrap {
        background: var(--ink);
    }

        .related-card .icon-wrap svg {
            stroke: #fff;
        }

    .related-card a.rel-link {
        margin-top: auto;
        color: var(--red);
        font-weight: 700;
        font-size: 13.5px;
    }

/* sticky mobile cta */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}

    .sticky-cta .btn {
        width: 100%;
    }

/* Footer */
footer {
    background: #14161D;
    color: #c5c7d3;
    padding-top: 56px;
}

/* was: display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; */
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .footer-grid > *:nth-child(1) {
        flex: 1.3 1 260px;
        min-width: 0;
    }

    .footer-grid > *:nth-child(2),
    .footer-grid > *:nth-child(3) {
        flex: 1 1 180px;
        min-width: 0;
    }

    .footer-grid > *:nth-child(4) {
        flex: 1.1 1 220px;
        min-width: 0;
    }

footer h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 16px;
}

footer .foot-about p {
    color: #9a9db0;
    font-size: 13.5px;
}

footer ul li {
    margin-bottom: 10px;
}

    footer ul li a {
        color: #b6b8c6;
        font-size: 13.5px;
    }

        footer ul li a:hover {
            color: var(--red);
        }

.foot-contact p {
    color: #b6b8c6;
    font-size: 13.5px;
    margin-bottom: 10px;
}

.foot-contact a {
    color: #fff;
    font-weight: 600;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

    .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .social-row a:hover {
            background: var(--red);
        }

    .social-row svg {
        width: 16px;
        height: 16px;
        stroke: #fff;
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--red);
    color: #fff;
    padding: 10px 16px;
    z-index: 200;
    border-radius: 0 0 8px 0;
}

    .skip-link:focus {
        left: 0;
    }

@media (max-width: 980px) {
    /* was: .grid-3{grid-template-columns:repeat(2,1fr);} */
    .grid-3 > * {
        flex: 1 1 calc((100% - 22px) / 2);
    }

    /* was: .hero .container{grid-template-columns:1fr;} */
    .hero .container > .hero-copy,
    .hero .container > .hero-art {
        flex: 1 1 100%;
    }

    .hero-art {
        order: -1;
        max-width: 100%;
        margin: 56px auto 28px auto;
    }

    /* was: .cv-section .container{grid-template-columns:1fr;} */
    .cv-section .container > .cv-visual,
    .cv-section .container > .cv-copy {
        flex: 1 1 100%;
    }

    /* was: .cta-form-section .container{grid-template-columns:1fr;} */
    .cta-form-section .container > .cta-copy,
    .cta-form-section .container > .form-card {
        flex: 1 1 100%;
    }

    nav.main-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 640px) {
    /* was: .grid-3, .grid-2{grid-template-columns:1fr;} */
    .grid-3 > *,
    .grid-2 > *,
    .grid-4 > * {
        flex: 1 1 100%;
    }

    /* was: .situations-list{grid-template-columns:1fr;} */
    .situations-list > .situation-item {
        flex: 1 1 100%;
    }

    /* was: .form-grid{grid-template-columns:1fr;} */
    .field {
        flex: 1 1 100%;
    }

    /* was: .footer-grid{grid-template-columns:1fr 1fr;} */
    .footer-grid > * {
        flex: 1 1 calc((100% - 32px) / 2);
    }

    /*    .sticky-cta {
        display: block;
    }*/

    .credibility-strip {
        gap: 22px;
        justify-content: space-between;
    }

    .hero svg {
        display: none;
    }

    .hero .container {
        gap: 2px 45px;
    }

    .fit-card {
        padding-left: 75px;
    }

    #why-vision-india .card {
        flex-direction: column !important;
        gap: 0px !important;
    }
}

@media (max-width: 991px) {
    .stat {
        width: 44%;
    }
}

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