﻿:root {
    --navy: #0D2545;
    --navy-mid: #1A3A6A;
    --navy-light: #254F8F;
    --gold: #C9973A;
    --gold-light: #E8B85A;
    --gold-pale: #FAF0D7;
    --cream: #FDFBF6;
    --text-dark: #0D2545;
    --text-mid: #3A4F6B;
    --text-muted: #7A8FA8;
    --white: #FFFFFF;
    --border: rgba(13,37,69,0.1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(13,37,69,0.97);
    backdrop-filter: blur(8px);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    border-bottom: 1px solid rgba(201,151,58,0.3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -1px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .nav-brand-text .t1 {
        font-size: 15px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: 0.3px;
    }

    .nav-brand-text .t2 {
        font-size: 10px;
        font-weight: 300;
        color: var(--gold-light);
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-links a {
        color: rgba(255,255,255,0.75);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--gold-light);
        }

.nav-cta {
    padding: 9px 22px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

    .nav-cta:hover {
        background: var(--gold-light);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
    }

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -5%;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,151,58,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -15%;
        left: -10%;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(37,79,143,0.4) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,151,58,0.15);
    border: 1px solid rgba(201,151,58,0.3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

    .hero-eyebrow span {
        font-size: 11px;
        font-weight: 500;
        color: var(--gold-light);
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 10px;
}

    .hero h1 .accent {
        color: var(--gold-light);
    }

.hero-tagline {
    font-size: 15px;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 30px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-1px);
    }

.btn-outline {
    padding: 14px 30px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline:hover {
        border-color: var(--gold-light);
        color: var(--gold-light);
    }

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: 12px;
    padding: 24px 20px;
    transition: border-color 0.2s, background 0.2s;
}

    .stat-card:hover {
        border-color: rgba(201,151,58,0.5);
        background: rgba(255,255,255,0.08);
    }

    .stat-card .num {
        font-family: 'Playfair Display', serif;
        font-size: 40px;
        font-weight: 700;
        color: var(--gold-light);
        line-height: 1;
    }

        .stat-card .num sup {
            font-size: 20px;
            vertical-align: super;
        }

    .stat-card .lbl {
        font-size: 12px;
        font-weight: 400;
        color: rgba(255,255,255,0.55);
        margin-top: 6px;
        letter-spacing: 0.5px;
    }

.verticals-pill {
    background: rgba(201,151,58,0.1);
    border: 1px solid rgba(201,151,58,0.25);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.v-icon {
    font-size: 26px;
}

.v-text .vnum {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-light);
}

.v-text .vdesc {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

    .scroll-indicator span {
        font-size: 10px;
        color: rgba(255,255,255,0.35);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201,151,58,0.6), transparent);
}

/* SECTION COMMONS */
section {
    padding: 85px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

    .section-label .line {
        width: 28px;
        height: 2px;
        background: var(--gold);
    }

    .section-label span {
        font-size: 11px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 560px;
}

/* ABOUT */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 20px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 18px;
}

.founder-card {
    background: var(--navy);
    border-radius: 16px;
    overflow: hidden;
}

.founder-header {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    padding: 15px;
    border-bottom: 1px solid rgba(201,151,58,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}

.founder-info {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}

.founder-role {
    font-size: 12px;
    color: var(--gold-light);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.founder-body {
    padding: 24px 28px;
}

    .founder-body p {
        font-size: 13px;
        color: rgba(255,255,255,0.65);
        line-height: 1.75;
        margin-bottom: 14px;
    }

.values-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 28px 28px;
}

.val-tag {
    padding: 5px 12px;
    border: 1px solid rgba(201,151,58,0.35);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

/* VISION */
.vision {
    background: var(--gold-pale);
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.v-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 26px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

    .v-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    }

.v-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.v-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.v-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* SERVICES */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.svc-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

    .svc-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 0;
        background: var(--navy);
        transition: height 0.3s;
        z-index: 0;
    }

    .svc-card:hover::after {
        height: 100%;
    }

    .svc-card:hover .svc-num, .svc-card:hover .svc-title, .svc-card:hover .svc-desc {
        color: var(--white);
    }

    .svc-card:hover .svc-title {
        color: var(--gold-light);
    }

    .svc-card > * {
        position: relative;
        z-index: 1;
    }

.svc-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: rgba(13,37,69,0.1);
    line-height: 1;
    margin-bottom: 14px;
    transition: color 0.3s;
}

.svc-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.svc-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    transition: color 0.3s;
}

/* INDUSTRIES */
.industries {
    background: var(--navy);
}

    .industries .section-title {
        color: var(--white);
    }

    .industries .section-sub {
        color: rgba(255,255,255,0.6);
    }

    .industries .section-label span {
        color: var(--gold-light);
    }

    .industries .section-label .line {
        background: var(--gold-light);
    }

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.ind-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: 12px;
    padding: 24px 18px;
    transition: all 0.25s;
}

    .ind-card:hover {
        background: rgba(201,151,58,0.12);
        border-color: rgba(201,151,58,0.5);
        transform: translateY(-3px);
    }

.ind-num {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ind-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.ind-roles {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

/* WHY US */
.why {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.why-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px 24px;
    border: 1px solid var(--border);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--gold-pale);
    border: 1px solid rgba(201,151,58,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* CONTACT */
.contact {
    background: var(--navy);
}

    .contact .section-title {
        color: var(--white);
    }

    .contact .section-sub {
        color: rgba(255,255,255,0.6);
    }

    .contact .section-label span {
        color: var(--gold-light);
    }

    .contact .section-label .line {
        background: var(--gold-light);
    }

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 52px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: 12px;
    padding: 20px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(201,151,58,0.15);
    border: 1px solid rgba(201,151,58,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item-text .label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item-text .val {
    font-size: 14px;
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label {
        font-size: 12px;
        font-weight: 500;
        color: rgba(255,255,255,0.55);
        letter-spacing: 0.5px;
    }

    .form-group input, .form-group select, .form-group textarea {
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 8px;
        padding: 12px 16px;
        color: var(--white);
        font-size: 14px;
        font-family: 'DM Sans', sans-serif;
        outline: none;
        transition: border-color 0.2s;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--gold);
        }

        .form-group input::placeholder, .form-group textarea::placeholder {
            color: rgba(255,255,255,0.25);
        }

        .form-group select option {
            background: var(--navy);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

.form-submit {
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    width: 100%;
}

    .form-submit:hover {
        background: var(--gold-light);
    }

/* FOOTER */
footer {
    background: #070F1E;
    padding: 28px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.footer-brand-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-tagline {
    font-size: 12px;
    color: var(--gold);
    font-style: italic;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeUp 0.6s ease both;
}

    .hero-content > *:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hero-content > *:nth-child(2) {
        animation-delay: 0.2s;
    }

    .hero-content > *:nth-child(3) {
        animation-delay: 0.3s;
    }

    .hero-content > *:nth-child(4) {
        animation-delay: 0.4s;
    }

    .hero-content > *:nth-child(5) {
        animation-delay: 0.5s;
    }

.hero-stats {
    animation: fadeUp 0.6s ease 0.4s both;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-cards {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .ind-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 5%;
    }

    .ind-grid {
        grid-template-columns: 1fr;
    }
}

/* RESUME UPLOAD */
.upload-zone {
    border: 1.5px dashed rgba(201,151,58,0.4);
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    background: rgba(255,255,255,0.04);
}

    .upload-zone:hover, .upload-zone.dragover {
        border-color: var(--gold);
        background: rgba(201,151,58,0.08);
    }

    .upload-zone input[type="file"] {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
    }

.upload-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.upload-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
}

    .upload-hint span {
        color: var(--gold-light);
    }

.upload-preview {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(201,151,58,0.1);
    border: 1px solid rgba(201,151,58,0.3);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 10px;
}

    .upload-preview.show {
        display: flex;
    }

.preview-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.preview-info {
    flex: 1;
    min-width: 0;
}

.preview-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-size {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.preview-remove {
    font-size: 16px;
    color: rgba(255,255,255,0.35);
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

    .preview-remove:hover {
        color: #F09595;
    }

.form-section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0;
}

    .form-section-divider span {
        font-size: 10px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .form-section-divider::before, .form-section-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(201,151,58,0.2);
    }

/* TOP HEADER */
.top-header {
    background: #08192f;
    color: #fff;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-header a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: 0.3s;
}

    .top-header a:hover {
        color: #E8B85A;
    }

.top-right a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    top: 54px;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,15,30,0.78);
}

.floating-social {
    position: fixed;
    right: 18px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

    .floating-social a {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #C9973A;
        color: #08192f;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        text-decoration: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
        transition: 0.3s;
    }

        .floating-social a:hover {
            transform: translateY(-3px) scale(1.05);
        }

@media(max-width:768px) {
    .top-header {
        flex-direction: column;
        gap: 8px;
        padding: 8px 4%;
        text-align: center;
    }

    .top-left {
        flex-direction: column;
        gap: 6px;
    }

    nav {
        top: 90px;
    }

    .top-right {
        gap: 10px;
    }

        .top-right a {
            width: 30px;
            height: 30px;
        }
}

/* ── TAB SWITCHER ── */
.tab-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.tab-wrap-margin {
    margin-top:100px;
}

.tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-top: -28px;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(15,30,60,0.12);
}

.tab-btn {
    padding: 20px 24px;
    border: none;
    background: var(--white);
    cursor: pointer;
    font-family: 'DM Sans',sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .25s;
    border-bottom: 3px solid transparent;
}

    .tab-btn:first-child {
        border-right: 1.5px solid var(--border);
    }

    .tab-btn.active {
        color: var(--navy);
        border-bottom-color: var(--gold);
        background: var(--white);
    }

        .tab-btn.active .tab-icon {
            background: var(--navy);
            color: var(--gold);
        }

.tab-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--off);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all .25s;
}

.tab-label-wrap {
    text-align: left;
}

.tab-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.tab-sub {
    display: block;
    font-size: 11.5px;
    font-weight: 400;
    color: var(--muted);
    margin-top: 1px;
}

/* ── FORM PANELS ── */
.panels {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 20px 60px;
}

.panel {
    display: none;
}

    .panel.active {
        display: block;
    }

/* ── FORM CARD ── */
.form-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15,30,60,0.07);
}

.form-card-header {
    padding: 28px 36px 24px;
    border-bottom: 1px solid var(--border);
}

.fch-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.fch-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.fch-icon--client {
    background: var(--navy);
}

.fch-icon--candidate {
    background: var(--green);
}

.fch-title {
    font-family: 'Playfair Display',serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}

.fch-desc {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.65;
    max-width: 620px;
}

.progress-wrap {
    padding: 18px 36px;
    background: var(--off);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0;
}

.prog-step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

    .prog-step:last-child {
        flex: 0;
    }

.prog-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    background: var(--white);
    transition: all .3s;
    flex-shrink: 0;
}

    .prog-num.done {
        background: var(--green);
        border-color: var(--green);
        color: #fff;
    }

    .prog-num.active {
        border-color: var(--navy);
        color: var(--navy);
    }

.prog-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

    .prog-label.active {
        color: var(--navy);
    }

.prog-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 10px;
    border-radius: 2px;
}

    .prog-line.done {
        background: var(--green);
    }

/* ── FORM BODY ── */
.form-body {
    padding: 32px 36px;
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .step-title::before {
        content: '';
        width: 4px;
        height: 18px;
        background: var(--gold);
        border-radius: 2px;
        display: block;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

    .form-grid.cols3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .form-grid.cols1 {
        grid-template-columns: 1fr;
    }

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .fg label {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--mid);
    }

        .fg label .req {
            color: var(--red);
            margin-left: 2px;
        }

    .fg input, .fg select, .fg textarea {
        width: 100%;
        padding: 11px 14px;
        border: 1.5px solid var(--border);
        border-radius: 9px;
        font-family: 'DM Sans',sans-serif;
        font-size: 14px;
        color: var(--text);
        background: var(--white);
        outline: none;
        transition: border-color .2s,box-shadow .2s;
    }

        .fg input:focus, .fg select:focus, .fg textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(35,81,160,0.08);
        }

        .fg input.error, .fg select.error, .fg textarea.error {
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
        }

    .fg .err-msg {
        font-size: 11.5px;
        color: var(--red);
        display: none;
    }

        .fg .err-msg.show {
            display: block;
        }

    .fg textarea {
        resize: vertical;
        min-height: 100px;
    }

    .fg select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8699' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
    }

    .fg .hint {
        font-size: 11.5px;
        color: var(--muted);
        margin-top: 2px;
    }

.section-divider {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
    margin-top: 8px;
}

/* Checkbox & radio groups */
.check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--mid);
    transition: all .2s;
    user-select: none;
}

    .check-item:hover {
        border-color: var(--blue);
        color: var(--navy);
    }

    .check-item input {
        accent-color: var(--navy);
        width: 14px;
        height: 14px;
    }

    .check-item.selected {
        border-color: var(--navy);
        background: var(--blue-lt);
        color: var(--navy);
        font-weight: 500;
    }

/* Upload zone */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: var(--off);
}

    .upload-zone:hover, .upload-zone.dragover {
        border-color: var(--blue);
        background: var(--blue-lt);
    }

    .upload-zone input[type="file"] {
        display: none;
    }

.uz-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.uz-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

    .uz-title span {
        color: var(--blue);
        font-weight: 600;
    }

.uz-hint {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.upload-preview {
    display: none;
    align-items: center;
    gap: 12px;
    background: var(--green-lt);
    border: 1px solid rgba(26,107,80,0.22);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 10px;
}

    .upload-preview.show {
        display: flex;
    }

.up-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
}

.up-size {
    font-size: 12px;
    color: var(--muted);
}

.up-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 16px;
    margin-left: auto;
    transition: color .2s;
    padding: 2px 6px;
}

    .up-remove:hover {
        color: var(--red);
    }

/* Consent box */
.consent-box {
    background: var(--gold-pale);
    border: 1px solid rgba(201,151,58,0.3);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 6px;
}

    .consent-box input[type="checkbox"] {
        accent-color: var(--navy);
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .consent-box p {
        font-size: 12.5px;
        color: var(--mid);
        line-height: 1.7;
    }

        .consent-box p strong {
            color: var(--navy);
        }

/* Form footer / nav buttons */
.form-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 36px;
    border-top: 1px solid var(--border);
    background: var(--off);
}

.btn-back {
    background: none;
    border: 1.5px solid var(--border);
    color: var(--mid);
    padding: 11px 24px;
    border-radius: 9px;
    font-family: 'DM Sans',sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

    .btn-back:hover {
        border-color: var(--navy);
        color: var(--navy);
    }

.btn-next {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 9px;
    font-family: 'DM Sans',sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

    .btn-next:hover {
        background: var(--blue);
    }

.btn-submit {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 36px;
    border-radius: 9px;
    font-family: 'DM Sans',sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

    .btn-submit:hover {
        background: #145C43;
    }

    .btn-submit:disabled, .btn-next:disabled {
        opacity: .6;
        cursor: not-allowed;
    }

/* Success screen */
.success-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

    .success-screen.show {
        display: flex;
    }

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green-lt);
    border: 2px solid rgba(26,107,80,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.success-screen h3 {
    font-family: 'Playfair Display',serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.success-screen p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
    max-width: 480px;
}

.btn-restart {
    margin-top: 28px;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 9px;
    font-family: 'DM Sans',sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

    .btn-restart:hover {
        background: var(--blue);
    }

/* Step counter label */
.step-counter {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* Info strip */
.info-strip {
    background: var(--blue-lt);
    border: 1px solid rgba(35,81,160,0.18);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}

    .info-strip i {
        color: var(--blue);
        margin-top: 2px;
        font-size: 15px;
        flex-shrink: 0;
    }

    .info-strip p {
        font-size: 13px;
        color: var(--mid);
        line-height: 1.6;
    }

/* ── RESPONSIVE ── */
@media(max-width:680px) {
    .topbar, .form-card-header, .form-body, .form-foot {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-grid, .form-grid.cols3 {
        grid-template-columns: 1fr;
    }

    .tabs {
        grid-template-columns: 1fr;
    }

    .tab-btn:first-child {
        border-right: none;
        border-bottom: 1.5px solid var(--border);
    }

    nav {
        padding: 0 16px;
    }

    .page-hero {
        padding: 44px 20px 40px;
    }

    .progress-wrap {
        padding: 14px 20px;
        overflow-x: auto;
    }
}

/* CLIENT LOGO SLIDER */
.clients {
    background: var(--white);
    padding: 70px 5%;
    overflow: hidden;
}

.clients-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 44px;
}

    .clients-head .section-label {
        justify-content: center;
    }

    .clients-head .section-title {
        font-size: clamp(24px, 3vw, 32px);
        margin-bottom: 0;
    }

.marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 90px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--cream);
    transition: all 0.25s;
}

    .client-logo:hover {
        border-color: var(--gold);
        background: var(--gold-pale);
        transform: translateY(-2px);
    }

    .client-logo span {
        font-family: 'Playfair Display', serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 0.3px;
        text-align: center;
        padding: 0 12px;
        opacity: 0.55;
        transition: opacity 0.25s;
    }

    .client-logo:hover span {
        opacity: 1;
        color: var(--gold);
    }

@media (max-width: 768px) {
    .client-logo {
        width: 130px;
        height: 68px;
    }

        .client-logo span {
            font-size: 13px;
        }
}

/* ── ANIMATED ICON KEYFRAMES ─────────────────────────── */
@keyframes tk-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes tk-spin-r {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes tk-pulse {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.18)
    }
}

@keyframes tk-float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

@keyframes tk-bounce {
    0%,100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-5px)
    }

    65% {
        transform: translateY(-2px)
    }
}

@keyframes tk-ping {
    0% {
        transform: scale(.7);
        opacity: 1
    }

    100% {
        transform: scale(1.9);
        opacity: 0
    }
}

@keyframes tk-ping2 {
    0% {
        transform: scale(.7);
        opacity: .7
    }

    100% {
        transform: scale(2.4);
        opacity: 0
    }
}

@keyframes tk-draw {
    from {
        stroke-dashoffset: 120
    }

    to {
        stroke-dashoffset: 0
    }
}

@keyframes tk-zap {
    0%,89%,100% {
        opacity: 1
    }

    45%,55% {
        opacity: .25
    }
}

@keyframes tk-bar1 {
    0%,100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(.55)
    }
}

@keyframes tk-bar2 {
    0%,100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(1.35)
    }
}

@keyframes tk-bar3 {
    0%,100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(.75)
    }
}

@keyframes tk-fly {
    0%,100% {
        transform: translate(0,0);
        opacity: 1
    }

    50% {
        transform: translate(3px,-3px);
        opacity: 0
    }

    51% {
        transform: translate(-3px,3px);
        opacity: 0
    }
}

@keyframes tk-upload {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

@keyframes tk-orbit {
    from {
        transform: rotate(0deg) translateX(9px)
    }

    to {
        transform: rotate(360deg) translateX(9px)
    }
}

@keyframes tk-shake {
    0%,100% {
        transform: rotate(0)
    }

    20% {
        transform: rotate(-8deg)
    }

    70% {
        transform: rotate(8deg)
    }
}

@keyframes tk-scan {
    0%,100% {
        transform: rotate(-25deg)
    }

    50% {
        transform: rotate(25deg)
    }
}

@keyframes tk-node {
    0%,100% {
        r: 2;
        opacity: 1
    }

    50% {
        r: 3.5;
        opacity: .6
    }
}

@keyframes tk-wave {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes tk-shield {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

@keyframes tk-rise {
    from {
        transform: scaleY(0);
        transform-origin: bottom
    }

    to {
        transform: scaleY(1);
        transform-origin: bottom
    }
}
