
:root {
    --navy: #0a2540;
    --navy-dk: #061829;
    --navy-mid: #0d3361;
    --red: #e63946;
    --red-dk: #c0303b;
    --red-lt: #fff0f1;
    --sun: #ffb703;
    --sun-lt: #fff8e7;
    --mint: #06d6a0;
    --mint-lt: #edfcf7;
    --sky: #48cae4;
    --sky-lt: #ebf9fc;
    --white: #ffffff;
    --off: #f8f9fc;
    --gray: #f3f4f6;
    --border: #e5e9f0;
    --text: #1e293b;
    --muted: #64748b;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.serif {
    font-family: "Fraunces", serif;
}
img {
    display: block;
    max-width: 100%;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: 68px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 20px rgba(10, 37, 64, 0.06);
}
.nav-logo {
    font-family: "Fraunces", serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
}
.nav-logo span {
    color: var(--red);
}
.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--navy);
}
.nav-cta {
    background: var(--red);
    color: white;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.25);
}
.nav-cta:hover {
    background: var(--red-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

/* ── HERO ── */
#home {
    min-height: 100vh;
    background: var(--sun-lt);
    display: flex;
    align-items: center;
    padding: 68px 0 0;
    overflow: hidden;
    position: relative;
}
.hero-blob {
    position: absolute;
    top: -120px;
    right: -180px;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(255, 183, 3, 0.18) 0%,
        rgba(6, 214, 160, 0.08) 50%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.hero-blob2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(72, 202, 228, 0.12) 0%,
        transparent 60%
    );
    border-radius: 50%;
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1.5px solid var(--border);
    color: var(--navy);
    padding: 6px 14px 6px 10px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(10, 37, 64, 0.07);
}
.kicker-dot {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    flex-shrink: 0;
}
h1.hero-title {
    font-size: clamp(2.8rem, 4.8vw, 4.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
h1.hero-title em {
    font-style: italic;
    color: var(--red);
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 2.25rem;
}
.hero-btns {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.btn-pill {
    background: var(--red);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.28);
}
.btn-pill:hover {
    background: var(--red-dk);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(230, 57, 70, 0.35);
}
.btn-pill-outline {
    background: white;
    color: var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: 2px solid var(--border);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-block;
    box-shadow: 0 2px 12px rgba(10, 37, 64, 0.07);
}
.btn-pill-outline:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hstat {
    background: white;
    border-radius: var(--radius-sm);
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(10, 37, 64, 0.06);
}
.hstat-n {
    font-family: "Fraunces", serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
}
.hstat-l {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 2px;
}
.hero-photos {
    position: relative;
    height: 520px;
}
.hp-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    bottom: 80px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10, 37, 64, 0.16);
}
.hp-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hp-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 210px;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 16px 48px rgba(10, 37, 64, 0.16);
}
.hp-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}
.hp-card-body {
    padding: 10px 14px 14px;
}
.hp-card-body p {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
}
.hp-card-body span {
    font-size: 0.72rem;
    color: var(--muted);
}
.hp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--sun);
    color: var(--navy);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.82rem;
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.35);
    z-index: 2;
}
.hp-badge strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.3rem;
}

/* ── SHARED ── */
.section-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 5%;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.6rem;
}
.eyebrow::before {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}
.sec-title {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 0.875rem;
}
.sec-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
}

/* ── ABOUT ── */
#about {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3.5rem;
}
.about-img-wrap {
    position: relative;
    height: 540px;
}
.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 50px;
    bottom: 80px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(10, 37, 64, 0.13);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-sm {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 190px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 36px rgba(10, 37, 64, 0.13);
}
.about-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-tag {
    position: absolute;
    top: 24px;
    right: 0;
    background: var(--mint);
    color: #04342c;
    padding: 12px 18px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-weight: 700;
    font-size: 0.82rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.3);
    z-index: 2;
}
.about-tag strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
}
.about-body p {
    color: var(--muted);
    line-height: 1.88;
    margin-bottom: 1rem;
    font-size: 0.975rem;
}
.mission-block {
    margin-top: 1.75rem;
    background: linear-gradient(
        135deg,
        var(--navy) 0%,
        var(--navy-mid) 100%
    );
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--sun);
}
.mission-block .mlabel {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.mission-block p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}
.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.pillar {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.25rem;
    transition: all 0.25s;
}
.pillar:hover {
    background: var(--sky-lt);
    border-color: var(--sky);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 202, 228, 0.15);
}
.pillar-i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 0.6rem;
}
.pi-sun {
    background: var(--sun-lt);
}
.pi-mint {
    background: var(--mint-lt);
}
.pi-sky {
    background: var(--sky-lt);
}
.pi-red {
    background: var(--red-lt);
}
.pillar h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}
.pillar p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── SERVICES ── */
#services {
    background: var(--off);
}
.services-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.svc-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    cursor: default;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.1);
    border-color: transparent;
}
.svc-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}
.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.svc-card:hover .svc-img img {
    transform: scale(1.07);
}
.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(10, 37, 64, 0.7) 0%,
        transparent 55%
    );
}
.svc-num {
    position: absolute;
    top: 14px;
    left: 14px;
    background: white;
    color: var(--navy);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", serif;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.svc-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--red);
    color: white;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.svc-body {
    padding: 1.25rem 1.25rem 1.5rem;
}
.svc-body h3 {
    font-family: "Fraunces", serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}
.svc-body p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0.875rem;
}
.svc-list {
    list-style: none;
}
.svc-list li {
    font-size: 0.8rem;
    color: var(--muted);
    padding: 3px 0 3px 1.125rem;
    position: relative;
}
.svc-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 0.75rem;
}

/* ── WORK & TRAVEL ── */
#work-travel {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.wt-decor {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 183, 3, 0.08) 0%,
        transparent 60%
    );
    border-radius: 50%;
    pointer-events: none;
}
.wt-decor2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(6, 214, 160, 0.07) 0%,
        transparent 60%
    );
    border-radius: 50%;
    pointer-events: none;
}
.wt-inner {
    position: relative;
    z-index: 1;
}
.wt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
    align-items: start;
}
.wt-steps {
    display: flex;
    flex-direction: column;
}
.wt-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.wt-step:last-child {
    border-bottom: none;
}
.wt-step-num {
    font-family: "Fraunces", serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 183, 3, 0.3);
    line-height: 1;
    min-width: 40px;
}
.wt-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.wt-step p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}
.wt-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 430px;
}
.wt-tile {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.wt-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.wt-tile:hover img {
    transform: scale(1.06);
}
.wt-tile.big {
    grid-row: span 2;
}
.wt-tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0.875rem 0.875rem;
    background: linear-gradient(
        0deg,
        rgba(10, 37, 64, 0.85),
        transparent
    );
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}
.wt-cta {
    margin-top: 2rem;
    background: rgba(255, 183, 3, 0.1);
    border: 1.5px solid rgba(255, 183, 3, 0.25);
    border-radius: var(--radius);
    padding: 1.375rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.wt-cta p {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}
.btn-sun {
    background: var(--sun);
    color: var(--navy);
    padding: 0.8rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.3);
}
.btn-sun:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 183, 3, 0.4);
}

/* ── FOR EMPLOYERS ── */
#for-employers {
    background: var(--white);
}
.emp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3.5rem;
}
.emp-photos {
    position: relative;
    height: 520px;
}
.emp-main {
    position: absolute;
    inset: 0 50px 70px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(10, 37, 64, 0.13);
}
.emp-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.emp-sm {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    height: 185px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 36px rgba(10, 37, 64, 0.13);
}
.emp-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.emp-pill {
    position: absolute;
    top: 24px;
    left: 0;
    background: var(--sky);
    color: #042c53;
    padding: 10px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 800;
    font-size: 0.8rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(72, 202, 228, 0.3);
    z-index: 2;
}
.emp-pill strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
}
.usps {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 1.75rem;
}
.usp-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.125rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: all 0.25s;
}
.usp-row:hover {
    border-color: var(--sky);
    background: var(--sky-lt);
    transform: translateX(4px);
}
.usp-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--sun-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.usp-row h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}
.usp-row p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}
.ind-box {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}
.ind-box h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}
.ind-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.ind-tag {
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.78);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s;
}
.ind-tag:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ── FOR CANDIDATES ── */
#for-candidates {
    background: var(--gray);
}
.cand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    margin-top: 3.5rem;
}
.cand-photo-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10, 37, 64, 0.14);
}
.cand-photo-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.cand-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        0deg,
        rgba(10, 37, 64, 0.9),
        rgba(10, 37, 64, 0.3) 60%,
        transparent
    );
    padding: 2rem;
}
.cand-overlay h3 {
    font-family: "Fraunces", serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.4rem;
}
.cand-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}
.cand-steps {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}
.cstep {
    display: flex;
    gap: 1.125rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    background: white;
    border: 1.5px solid var(--border);
    transition: all 0.25s;
}
.cstep:hover {
    border-color: var(--mint);
    box-shadow: 0 6px 24px rgba(6, 214, 160, 0.1);
    transform: translateX(4px);
}
.cstep-num {
    font-family: "Fraunces", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mint);
    line-height: 1;
    min-width: 36px;
}
.cstep h4 {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.cstep p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}
.who-bar {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.who-bar h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}
.who-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    flex: 1;
}
.who-tag {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ── CONTACT ── */
#contact {
    background: var(--sun-lt);
    position: relative;
    overflow: hidden;
}
.contact-blob {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(
        circle,
        rgba(255, 183, 3, 0.15) 0%,
        transparent 65%
    );
    border-radius: 50%;
    pointer-events: none;
}
.contact-blob2 {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(
        circle,
        rgba(6, 214, 160, 0.1) 0%,
        transparent 60%
    );
    border-radius: 50%;
    pointer-events: none;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}
.cleft h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.1;
}
.cleft h2 em {
    color: var(--red);
}
.cleft > p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.cinfo {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.cinfo-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.125rem 1.25rem;
    box-shadow: 0 2px 12px rgba(10, 37, 64, 0.05);
    transition: all 0.2s;
}
.cinfo-item:hover {
    border-color: var(--red);
    transform: translateX(4px);
}
.cinfo-ico {
    width: 40px;
    height: 40px;
    background: var(--red-lt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.cinfo-item h4 {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 2px;
}
.cinfo-item a,
.cinfo-item p {
    font-size: 0.95rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}
.cinfo-item a:hover {
    color: var(--red);
}
.vision-strip {
    margin-top: 1.5rem;
    background: var(--navy);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--sun);
}
.vision-strip .vl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.vision-strip p {
    color: white;
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: italic;
}
.cform-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    padding: 2.25rem;
    box-shadow: 0 8px 40px rgba(10, 37, 64, 0.08);
}
.cform-card h3 {
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}
.fg {
    margin-bottom: 0.875rem;
}
.fr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}
label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
input,
select,
textarea {
    width: 100%;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--red);
    background: white;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
}
input::placeholder,
textarea::placeholder {
    color: #b0b8c4;
    font-weight: 400;
}
textarea {
    resize: vertical;
    min-height: 100px;
}
.fsub {
    width: 100%;
    background: var(--red);
    color: white;
    border: none;
    padding: 0.95rem;
    border-radius: 100px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.25);
}
.fsub:hover {
    background: var(--red-dk);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(230, 57, 70, 0.35);
}

/* ── FOOTER ── */
footer {
    background: var(--navy-dk);
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.flogo {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}
.flogo span {
    color: var(--red);
}
footer p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}
.fsoc {
    display: flex;
    gap: 1.25rem;
}
.fsoc a {
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.2s;
}
.fsoc a:hover {
    color: var(--sun);
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal-l {
    opacity: 0;
    transform: translateX(-28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal-l.in {
    opacity: 1;
    transform: translateX(0);
}
.reveal-r {
    opacity: 0;
    transform: translateX(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal-r.in {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 960px) {
    #home .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-photos {
        display: none;
    }
    .about-grid,
    .wt-grid,
    .emp-grid,
    .cand-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .svc-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-img-wrap,
    .emp-photos {
        height: 280px;
    }
    .pillars {
        grid-template-columns: 1fr;
    }
    .fr {
        grid-template-columns: 1fr;
    }
    .nav-links,
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    footer {
        flex-direction: column;
        text-align: center;
    }
    .who-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .wt-mosaic {
        height: auto;
    }
    .wt-tile.big {
        grid-row: span 1;
    }
}
@media (max-width: 600px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
}