:root {
    --purple: #38105f;
    --purple-deep: #26073f;
    --purple-mid: #5b2591;
    --yellow: #ffc736;
    --yellow-deep: #e8a900;
    --white: #ffffff;
    --ink: #1b1225;
    --gray: #6e6478;
    --line: #e7e1ef;
    --paper: #fbfafc;
    --maxw: 1240px;
    --fade: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 25%,
        rgba(255, 255, 255, 0) 60%
    );
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "IBM Plex Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
    font-family: "Archivo", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.05;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}
::selection {
    background: var(--yellow);
    color: var(--purple-deep);
}
:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

/* ---------- NAV ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.navrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    height: 70px;
}

.logo > img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.links {
    display: flex;
    gap: 34px;
}
.links a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition:
        border-color 0.15s,
        color 0.15s;
}
.links a:hover {
    border-color: var(--yellow);
    color: var(--purple);
}
.btn {
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 13px 24px;
    border: 2px solid var(--purple);
    transition: 0.15s;
}
.btn:hover {
    background: var(--white);
    color: var(--purple);
}
.btn.yellow {
    background: var(--yellow);
    color: var(--purple-deep);
    border-color: var(--yellow);
}
.btn.yellow:hover {
    background: var(--white);
    color: var(--purple-deep);
    border-color: var(--purple-deep);
}
.btn.ghost {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
}
.btn.ghost:hover {
    background: var(--purple);
    color: var(--white);
}

/* ---------- HERO ---------- */
.hero {
    padding: 76px 0 56px;
    border-bottom: 1px solid var(--line);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--purple);
    margin-bottom: 22px;
}
.eyebrow::before {
    content: "";
    width: 24px;
    height: 3px;
    background: var(--yellow);
}
.hero h1 {
    font-size: clamp(40px, 5.6vw, 68px);
    max-width: 16ch;
    margin-bottom: 26px;
}
.hero h1 em {
    font-style: normal;
    color: var(--purple);
}
.hero .lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--gray);
    max-width: 640px;
    margin-bottom: 36px;
}
.strapline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 34px;
    flex-wrap: wrap;
}
.strapline .a {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.strapline .dot {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: var(--yellow-deep);
}
.strapline .b {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gray);
    text-transform: uppercase;
}
.ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.stat {
    padding: 26px 28px 0 28px;
    border-right: 1px solid var(--line);
}
.stat:last-child {
    border-right: none;
}
.stat .num {
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: var(--purple);
    line-height: 1;
}
.stat .label {
    font-size: 13.5px;
    color: var(--gray);
    margin-top: 10px;
    line-height: 1.5;
    max-width: 26ch;
}

/* ---------- MARQUEE ---------- */
.marquee-wrap {
    background: var(--purple);
    overflow: hidden;
    padding: 16px 0;
    border-bottom: 4px solid var(--yellow);
}
.marquee {
    display: flex;
    gap: 44px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--white);
    text-transform: uppercase;
}
.marquee span {
    display: flex;
    gap: 44px;
}
.marquee b {
    color: var(--yellow);
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .marquee {
        animation: none;
    }
}

/* ---------- SECTION HEAD ---------- */
.head {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: end;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 44px;
}
.head h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    max-width: 18ch;
}
.head .desc {
    font-size: 15.5px;
    color: var(--gray);
    line-height: 1.6;
    padding-bottom: 4px;
}

section {
    padding: 84px 0;
}
section.tight {
    padding: 84px 0 96px;
}

/* ---------- CAROUSEL / PILLARS ---------- */
.carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.cfeat p {
    font-size: 13.5px;
    color: var(--gray);
    margin-top: 14px;
    line-height: 1.5;
}
.tile {
    aspect-ratio: 1/1.05;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.3;
    position: relative;
    overflow: hidden;
    color: var(--purple-deep);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.tile .idx {
    position: absolute;
    top: 16px;
    left: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.85;
    color: var(--white);
}
.t1 {
    background: var(--purple);
}
.t2 {
    background: var(--purple-deep);
}
.t3 {
    background: var(--yellow-deep);
    color: var(--purple-deep);
}
.t4 {
    background: var(--purple-mid);
}
.t5 {
    background: var(--ink);
}
.tile.feature {
    box-shadow: 0 0 0 4px var(--yellow);
}
.tile .tag {
    font-size: 11px;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.tile-1 {
    background:
        var(--fade),
        url("/images/production.webp") center / cover no-repeat;
}
.tile-2 {
    background:
        var(--fade),
        url("/images/students.webp") bottom / cover no-repeat;
}
.tile-3 {
    background:
        var(--fade),
        url("/images/Business_Handshake.webp") center / cover no-repeat;
}
.tile-4 {
    background:
        var(--fade),
        url("/images/people.webp") center / cover no-repeat;
}
.tile-5 {
    background:
        var(--fade),
        url("/images/world-language-books.webp") center / cover no-repeat;
}

/* ---------- CARD GRID ---------- */
.catsection {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.catsection h2 {
    font-size: clamp(26px, 3vw, 36px);
    max-width: 22ch;
    margin-bottom: 12px;
}
.catsection .sub {
    color: var(--gray);
    font-size: 15px;
    max-width: 600px;
    margin-bottom: 44px;
    line-height: 1.6;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.card {
    background: var(--white);
    padding: 0;
    display: flex;
    flex-direction: column;
}
.thumb {
    aspect-ratio: 16/10;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 18px;
}
.thumb .num {
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.18);
    padding: 4px 10px;
}

.thumb-1 {
    background: url("./images/software_product_design.webp") center / cover
        no-repeat;
}
.thumb-2 {
    background: url("./images/web-dev.webp") center / cover
        no-repeat;
}
.thumb-3 {
    background: url("/images/talent-managment.webp") center / cover no-repeat;
}
.thumb-4 {
    background: url("./images/Business_Handshake.webp") top / cover no-repeat;
}
.card .body {
    padding: 26px 26px 30px;
}
.tag {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple-mid);
}
.meta {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 3px;
}
.card h3 {
    font-size: 19px;
    margin: 14px 0 10px;
}
.card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 18px;
}

.card-1 {
    background: url("./images/website-development.webp") center / cover
        no-repeat;
}
.card-2 {
    background: url("./images/ui-ux.webp") center / cover no-repeat;
}
.card-3 {
    background: url("./images/research.webp") center / cover no-repeat;
}
.card-3 {
    background: url("./images/research.webp") center / cover no-repeat;
}
.card-4 {
    background: url("./images/pr.webp") center / cover no-repeat;
}
.card-5 {
    background: url("./images/content-creation.webp") center / cover no-repeat;
}
.card-6 {
    background: url("./images/seo.webp") center / cover no-repeat;
}

.learn {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.learn::after {
    content: "→";
    transition: transform 0.15s;
}
.card:hover .learn::after {
    transform: translateX(4px);
}

/* ---------- SDG ---------- */
.sdg {
    padding: 90px 0;
}
.sdg .head {
    grid-template-columns: 1fr;
    max-width: 760px;
}
.sdg .head p {
    font-size: 15.5px;
    color: var(--gray);
    line-height: 1.6;
    margin-top: 14px;
}
.sdggrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.sdgcard {
    border: 1px solid var(--line);
    padding: 26px 20px;
    background: var(--white);
}
.sdgcard .code {
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    font-size: 34px;
    color: var(--white);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.sdgcard h4 {
    font-size: 15.5px;
    margin-bottom: 10px;
}
.sdgcard p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.55;
}
.sdg4 .code {
    background: var(--purple);
}
.sdg5 .code {
    background: var(--yellow-deep);
    color: var(--purple-deep);
}
.sdg8 .code {
    background: var(--purple-mid);
}
.sdg10 .code {
    background: var(--ink);
}
.sdg17 .code {
    background: var(--purple-deep);
}

/* ---------- CTA BAND ---------- */
.ctaband {
    background: var(--purple);
    color: var(--white);
    padding: 90px 0;
    border-top: 4px solid var(--yellow);
}
.ctaband .wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.ctaband h2 {
    color: var(--white);
    font-size: clamp(28px, 3.4vw, 42px);
    max-width: 14ch;
}
.ctaband p {
    color: #d9cbee;
    font-size: 16px;
    margin-top: 16px;
    max-width: 44ch;
    line-height: 1.6;
}
.contacts {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.contacts a {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.15s;
}
.contacts a:hover {
    color: var(--yellow);
}
.contacts a::after {
    content: "→";
    font-weight: 400;
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--purple-deep);
    color: #cfc0e6;
    padding: 70px 0 0;
}
.fgrid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
footer h4 {
    color: var(--white);
    font-size: 19px;
    margin-bottom: 14px;
}
.ftagline {
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 32ch;
    color: #b7a6d6;
}
.fcol h5 {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b7a6d6;
    margin-bottom: 16px;
    font-weight: 700;
    font-family: "IBM Plex Sans", sans-serif;
}
.fcol a {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    color: #e4d8f4;
}
.fcol a:hover {
    color: var(--yellow);
}
.fbottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #9985bc;
}
.socials {
    display: flex;
    gap: 18px;
}
.socials a {
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #e4d8f4;
}
.socials a:hover {
    color: var(--yellow);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .links {
        display: none;
    }
    .head {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .carousel {
        grid-template-columns: repeat(3, 1fr);
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .sdggrid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ctaband .wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .fgrid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}
@media (max-width: 640px) {
    .logo {
        height: 48px;
    }
    .wrap {
        padding: 0 20px;
    }
    .stat-row {
        grid-template-columns: 1fr;
    }
    .stat {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 20px 0;
    }
    .carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .sdggrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fgrid {
        grid-template-columns: 1fr;
    }
    .fbottom {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }
}
