:root {
    --navy: #071b3a;
    --navy-2: #0b2f63;
    --blue: #0b5ed7;
    --blue-light: #eff6ff;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --white: #ffffff;
    --light: #f6f8fc;
    --text: #172033;
    --muted: #667085;
    --border: #e5eaf1;
    --green: #16a34a;
    --shadow: 0 20px 50px rgba(7, 27, 58, .10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: white;
    background: var(--navy);
}

.logo-text span {
    color: var(--orange);
}

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

.main-nav a {
    color: #344054;
    font-size: 13px;
    font-weight: 600;
    transition: .2s;
}

.main-nav a:hover {
    color: var(--blue);
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 8px;
    padding: 13px 21px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: .25s;
}

.btn-primary {
    color: white;
    background: var(--orange);
}

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

.btn-secondary {
    color: white;
    background: var(--navy);
}

.btn-outline {
    color: var(--navy);
    background: white;
    border: 1px solid #d0d5dd;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-large {
    padding: 15px 24px;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 92px 0 88px;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(37, 99, 235, .35),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-2)
        );
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: -300px;
    border-radius: 50%;
    border: 80px solid rgba(255,255,255,.025);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px;
    margin-bottom: 23px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px;
    background: rgba(255,255,255,.07);
    color: #dbeafe;
    font-size: 11px;
    font-weight: 700;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34,197,94,.12);
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 23px;
    font-size: clamp(43px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.8px;
    font-weight: 800;
}

.hero h1 strong {
    display: block;
    color: #60a5fa;
}

.hero-text {
    max-width: 600px;
    margin-bottom: 25px;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.75;
}

.hero-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 31px;
}

.hero-languages span {
    padding: 6px 11px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 11px;
}

.hero-actions {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}

.hero .btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,.35);
    color: white;
}

.hero .btn-outline:hover {
    background: white;
    color: var(--navy);
}

.hero-trust {
    display: flex;
    gap: 38px;
    margin-top: 43px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 23px;
}

.trust-item span {
    color: #94a3b8;
    font-size: 10px;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;
}

.hero-photo {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.15);
    background:
        linear-gradient(
            135deg,
            #123d78,
            #071b3a
        );
    box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

.hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(96,165,250,.25),
            transparent 35%
        );
}

.office-scene {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-circle {
    position: relative;
    width: 280px;
    height: 280px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.agent-circle::before {
    content: "KAY";
    position: absolute;
    color: rgba(255,255,255,.05);
    font-size: 90px;
    font-weight: 800;
}

.agent-symbol {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 42px;
    box-shadow: 0 20px 40px rgba(249,115,22,.25);
}

.office-label {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border-radius: 14px;
    background: rgba(7,27,58,.84);
    backdrop-filter: blur(12px);
}

.office-label-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    background: var(--orange);
}

.office-label strong,
.office-label span {
    display: block;
}

.office-label strong {
    font-size: 13px;
}

.office-label span {
    margin-top: 2px;
    color: #94a3b8;
    font-size: 10px;
}

.floating-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border-radius: 12px;
    background: white;
    color: var(--text);
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.floating-card-top {
    top: 55px;
    left: -32px;
}

.floating-card-bottom {
    right: -25px;
    bottom: 55px;
}

.floating-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #dcfce7;
    color: var(--green);
    font-weight: 800;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card span {
    color: var(--muted);
    font-size: 9px;
}

.floating-number {
    color: var(--blue);
    font-size: 20px;
    font-weight: 800;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

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

.section-label {
    margin-bottom: 11px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.section-heading h2,
.why-section h2 {
    margin-bottom: 15px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -1.3px;
}

.section-heading p {
    color: var(--muted);
    font-size: 14px;
}


/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 29px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: white;
    transition: .25s;
}

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

.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 19px;
    border-radius: 12px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 21px;
}

.service-card h3 {
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 16px;
}

.service-card p {
    min-height: 65px;
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.service-card a {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}


/* =========================
   WHY KAY
========================= */

.why-section {
    padding: 100px 0;
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

.why-intro {
    max-width: 590px;
    margin-bottom: 35px;
    color: var(--muted);
}

.feature-list {
    display: grid;
    gap: 22px;
}

.feature {
    display: flex;
    gap: 14px;
}

.feature-check {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #dcfce7;
    color: var(--green);
    font-weight: 800;
}

.feature h3 {
    margin-bottom: 2px;
    color: var(--navy);
    font-size: 14px;
}

.feature p {
    color: var(--muted);
    font-size: 11px;
}

.stats-card {
    padding: 35px;
    border-radius: 20px;
    color: white;
    background: var(--navy);
    box-shadow: 0 25px 60px rgba(7,27,58,.20);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.live-dot {
    color: #22c55e;
}

.big-stat {
    margin-top: 52px;
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
}

.stats-card > p {
    margin: 8px 0 42px;
    color: #94a3b8;
    font-size: 12px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

.stats-row strong,
.stats-row span {
    display: block;
}

.stats-row strong {
    font-size: 24px;
}

.stats-row span {
    color: #94a3b8;
    font-size: 10px;
}


/* =========================
   INDUSTRIES
========================= */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    transition: .2s;
}

.industry-card:hover {
    border-color: #bfd3ef;
    transform: translateY(-2px);
}

.industry-card span {
    font-size: 23px;
}

.industry-card strong {
    color: var(--navy);
    font-size: 13px;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 80px 0;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--navy)
        );
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-label {
    color: #bfdbfe;
}

.cta-section h2 {
    max-width: 650px;
    margin-bottom: 13px;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.cta-section p {
    max-width: 600px;
    color: #cbd5e1;
    font-size: 14px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.cta-contact {
    color: white;
    font-size: 12px;
    font-weight: 700;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    margin-top: 0;
    color: #d0d5dd;
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding: 70px 0;
}

.footer-logo {
    margin-bottom: 15px;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--orange);
}

.footer-grid h4 {
    margin-bottom: 17px;
    color: white;
    font-size: 13px;
}

.footer-grid p,
.footer-grid a {
    color: #98a2b3;
    font-size: 12px;
}

.footer-grid > div > a {
    display: block;
    margin-bottom: 10px;
}

.footer-grid a:hover {
    color: white;
}

.footer-quote {
    color: var(--orange) !important;
    font-weight: 700;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #98a2b3;
    font-size: 11px;
}


/* =========================
   FLASH
========================= */

.flash-container {
    width: min(900px, 92%);
    margin: 20px auto;
}

.flash {
    padding: 14px 17px;
    border: 1px solid #abefc6;
    border-radius: 8px;
    color: var(--green);
    background: #ecfdf3;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-visual {
        width: min(650px, 100%);
        margin: auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-actions {
        align-items: flex-start;
        flex-direction: row;
    }
}


@media (max-width: 600px) {

    .nav-container {
        min-height: 68px;
    }

    .nav-actions .btn {
        padding: 10px 13px;
        font-size: 11px;
    }

    .hero {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.7px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-trust {
        gap: 20px;
    }

    .hero-photo {
        min-height: 390px;
    }

    .floating-card-top {
        top: 18px;
        left: 8px;
    }

    .floating-card-bottom {
        right: 8px;
        bottom: 20px;
    }

    .section,
    .why-section {
        padding: 70px 0;
    }

    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .cta-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* =========================
   INNER PAGES
========================= */

.page-hero {
    padding: 85px 0;
    color: white;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37,99,235,.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-2)
        );
}

.page-hero h1 {
    max-width: 800px;
    margin: 10px 0 17px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.page-hero p {
    max-width: 680px;
    color: #cbd5e1;
    font-size: 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.about-grid h2 {
    margin: 10px 0 20px;
    color: var(--navy);
    font-size: 40px;
    line-height: 1.15;
}

.about-grid p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.about-card {
    padding: 45px;
    border-radius: 20px;
    background: var(--light);
    border: 1px solid var(--border);
}

.about-card-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: var(--blue-light);
    font-size: 30px;
}

.about-card h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 22px;
}

.about-card p {
    margin: 0;
}

.industry-large-card {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: white;
    transition: .25s;
}

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

.industry-large-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: var(--blue-light);
    font-size: 27px;
}

.industry-large-card h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 18px;
}

.industry-large-card p {
    color: var(--muted);
    font-size: 12px;
}

.form-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 70px;
    align-items: start;
}

.form-info h2 {
    margin: 10px 0 17px;
    color: var(--navy);
    font-size: 38px;
    line-height: 1.15;
}

.form-info > p {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: 14px;
}

.form-benefit {
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.form-benefit strong,
.form-benefit span {
    display: block;
}

.form-benefit strong {
    color: var(--navy);
    font-size: 13px;
}

.form-benefit span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.contact-form {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    box-shadow: 0 15px 40px rgba(7,27,58,.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    outline: none;
    color: var(--text);
    background: white;
    font-size: 12px;
    transition: .2s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11,94,215,.08);
}

.contact-detail {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 17px 0;
    border-top: 1px solid var(--border);
}

.contact-detail > div:first-child {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    background: var(--blue-light);
}

.contact-detail strong,
.contact-detail span {
    display: block;
}

.contact-detail strong {
    color: var(--navy);
    font-size: 12px;
}

.contact-detail span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}


@media (max-width: 800px) {

    .about-grid,
    .form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-hero {
        padding: 65px 0;
    }

    .page-hero h1 {
        font-size: 40px;
    }
}


@media (max-width: 600px) {

    .about-grid h2,
    .form-info h2 {
        font-size: 31px;
    }

    .contact-form,
    .about-card,
    .industry-large-card {
        padding: 25px;
    }
}


/* =========================================
   GLOBAL NAVIGATION
========================================= */

:root {
    --navy-2: #0b2f63;
    --blue-light: #eaf2ff;
    --shadow: 0 12px 35px rgba(7, 27, 58, 0.10);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--blue);
    color: white;

    font-size: 22px;
    font-weight: 800;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    color: var(--navy);
    font-size: 20px;
    letter-spacing: -0.5px;
}

.logo-text span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}


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

.main-nav a {
    position: relative;

    color: #475467;

    font-size: 12px;
    font-weight: 600;

    transition: .2s;
}

.main-nav a:hover {
    color: var(--blue);
}

.main-nav a.active {
    color: var(--blue);
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -10px;

    height: 2px;

    border-radius: 5px;

    background: var(--blue);
}


.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;

    padding: 11px 18px;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.btn-primary {
    background: var(--blue);
    color: white;
}

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

.btn-large {
    padding: 14px 23px;
    font-size: 13px;
}


.flash-container {
    position: fixed;

    top: 90px;
    right: 25px;

    z-index: 2000;

    width: min(390px, calc(100% - 30px));
}

.flash {
    margin-bottom: 10px;

    padding: 14px 17px;

    border-radius: 10px;

    background: white;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    font-size: 12px;

    transition: opacity .4s;
}

.flash.success {
    border-left: 4px solid var(--success);
}

.flash.error,
.flash.danger {
    border-left: 4px solid #dc3545;
}

.flash.warning {
    border-left: 4px solid #ffc107;
}


.site-footer {
    padding: 65px 0 25px;

    background: #06162f;

    color: #cbd5e1;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 45px;
}

.footer-logo .logo-text strong {
    color: white;
}

.footer-logo .logo-text span {
    color: #94a3b8;
}

.footer-brand p {
    max-width: 320px;

    margin-top: 18px;

    color: #94a3b8;

    font-size: 12px;
    line-height: 1.8;
}

.footer-brand .footer-location {
    margin-top: 12px;

    color: #cbd5e1;

    font-size: 11px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 7px;

    color: white;

    font-size: 12px;
}

.footer-column a,
.footer-column span {
    color: #94a3b8;

    font-size: 11px;

    transition: .2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 50px;
    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.10);

    color: #64748b;

    font-size: 10px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: white;
}


.floating-contact {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--blue);
    color: white;

    font-size: 20px;

    box-shadow: 0 10px 30px rgba(11,94,215,.30);

    z-index: 900;

    transition: .2s;
}

.floating-contact:hover {
    transform: translateY(-3px);
}


@media (max-width: 900px) {

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .nav-container {
        height: auto;
        min-height: 72px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .main-nav {
        order: 3;

        width: 100%;

        overflow-x: auto;

        padding: 5px 0 8px;

        gap: 20px;
    }

    .main-nav a {
        white-space: nowrap;
    }

    .main-nav a.active::after {
        bottom: -5px;
    }

    .nav-actions .btn {
        padding: 10px 13px;
        font-size: 11px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================
   GLOBAL NAVIGATION
========================================= */

:root {
    --navy-2: #0b2f63;
    --blue-light: #eaf2ff;
    --shadow: 0 12px 35px rgba(7, 27, 58, 0.10);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--blue);
    color: white;

    font-size: 22px;
    font-weight: 800;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    color: var(--navy);
    font-size: 20px;
    letter-spacing: -0.5px;
}

.logo-text span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}


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

.main-nav a {
    position: relative;

    color: #475467;

    font-size: 12px;
    font-weight: 600;

    transition: .2s;
}

.main-nav a:hover {
    color: var(--blue);
}

.main-nav a.active {
    color: var(--blue);
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -10px;

    height: 2px;

    border-radius: 5px;

    background: var(--blue);
}


.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;

    padding: 11px 18px;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.btn-primary {
    background: var(--blue);
    color: white;
}

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

.btn-large {
    padding: 14px 23px;
    font-size: 13px;
}


.flash-container {
    position: fixed;

    top: 90px;
    right: 25px;

    z-index: 2000;

    width: min(390px, calc(100% - 30px));
}

.flash {
    margin-bottom: 10px;

    padding: 14px 17px;

    border-radius: 10px;

    background: white;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    font-size: 12px;

    transition: opacity .4s;
}

.flash.success {
    border-left: 4px solid var(--success);
}

.flash.error,
.flash.danger {
    border-left: 4px solid #dc3545;
}

.flash.warning {
    border-left: 4px solid #ffc107;
}


.site-footer {
    padding: 65px 0 25px;

    background: #06162f;

    color: #cbd5e1;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 45px;
}

.footer-logo .logo-text strong {
    color: white;
}

.footer-logo .logo-text span {
    color: #94a3b8;
}

.footer-brand p {
    max-width: 320px;

    margin-top: 18px;

    color: #94a3b8;

    font-size: 12px;
    line-height: 1.8;
}

.footer-brand .footer-location {
    margin-top: 12px;

    color: #cbd5e1;

    font-size: 11px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 7px;

    color: white;

    font-size: 12px;
}

.footer-column a,
.footer-column span {
    color: #94a3b8;

    font-size: 11px;

    transition: .2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 50px;
    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.10);

    color: #64748b;

    font-size: 10px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: white;
}


.floating-contact {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--blue);
    color: white;

    font-size: 20px;

    box-shadow: 0 10px 30px rgba(11,94,215,.30);

    z-index: 900;

    transition: .2s;
}

.floating-contact:hover {
    transform: translateY(-3px);
}


@media (max-width: 900px) {

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .nav-container {
        height: auto;
        min-height: 72px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .main-nav {
        order: 3;

        width: 100%;

        overflow-x: auto;

        padding: 5px 0 8px;

        gap: 20px;
    }

    .main-nav a {
        white-space: nowrap;
    }

    .main-nav a.active::after {
        bottom: -5px;
    }

    .nav-actions .btn {
        padding: 10px 13px;
        font-size: 11px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================
   PREMIUM HOME PAGE
========================================= */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-description {
    max-width: 590px;

    margin-bottom: 30px;

    color: #cbd5e1;

    font-size: 16px;
    line-height: 1.8;
}

.hero h1 strong {
    display: block;
    color: #60a5fa;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 45px;
}

.hero-secondary-btn {
    color: white;

    font-size: 12px;
    font-weight: 700;

    border-bottom: 1px solid rgba(255,255,255,.35);

    padding-bottom: 3px;
}

.hero-trust {
    display: flex;
    gap: 38px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: white;
    font-size: 23px;
}

.trust-item span {
    color: #94a3b8;
    font-size: 10px;
}

.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;

    min-height: 475px;

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(37,99,235,.9),
            rgba(7,27,58,.96)
        );

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 30px 70px rgba(0,0,0,.25);
}

.hero-image-card::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background: rgba(96,165,250,.20);
}

.hero-image-card::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -100px;
    left: -70px;

    border-radius: 50%;

    background: rgba(249,115,22,.16);
}

.hero-visual-content {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 35px;
}

.visual-status {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    width: fit-content;

    padding: 8px 12px;

    border-radius: 20px;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.12);

    color: #dbeafe;

    font-size: 9px;
    font-weight: 700;
}

.visual-status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22c55e;
}

.visual-title {
    margin-top: auto;
    margin-bottom: 35px;

    color: white;

    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;

    letter-spacing: -1px;
}

.visual-bottom {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 10px;
}

.visual-bottom > div {
    padding: 13px;

    border-radius: 10px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.10);
}

.visual-bottom strong,
.visual-bottom span {
    display: block;
}

.visual-bottom strong {
    color: white;
    font-size: 11px;
}

.visual-bottom span {
    margin-top: 2px;

    color: #94a3b8;

    font-size: 8px;
}


.trust-bar {
    padding: 22px 0;

    background: #f8fafc;

    border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.trust-bar-inner > div:first-child {
    display: flex;
    flex-direction: column;
}

.trust-bar-inner strong {
    color: var(--navy);
    font-size: 10px;
}

.trust-bar-inner > div:first-child span {
    color: var(--muted);
    font-size: 10px;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 20px;

    color: #475467;

    font-size: 10px;
    font-weight: 600;
}


.section-heading-row {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;
}

.section-heading-row h2 {
    max-width: 650px;

    margin-top: 9px;

    color: var(--navy);

    font-size: 39px;
    line-height: 1.15;

    letter-spacing: -1.5px;
}

.text-link {
    color: var(--blue);

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;
}

.service-card {
    position: relative;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: white;

    transition: .25s;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: #c7d7f7;

    box-shadow: var(--shadow);
}

.service-card h3 {
    margin: 20px 0 9px;

    color: var(--navy);

    font-size: 17px;
}

.service-card p {
    min-height: 65px;

    margin-bottom: 20px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.service-card a {
    color: var(--blue);

    font-size: 10px;
    font-weight: 700;
}

.service-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--blue-light);

    font-size: 22px;
}


.home-why {
    padding: 100px 0;

    background: #f8fafc;
}

.why-grid {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 80px;
}

.why-grid h2 {
    max-width: 650px;

    margin: 10px 0 18px;

    color: var(--navy);

    font-size: 41px;
    line-height: 1.13;

    letter-spacing: -1.5px;
}

.why-description {
    max-width: 590px;

    margin-bottom: 35px;

    color: var(--muted);

    font-size: 13px;
}

.why-list {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.why-item {
    display: flex;

    gap: 14px;
}

.why-check {
    width: 28px;
    height: 28px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #dcfce7;

    color: #15803d;

    font-size: 12px;
    font-weight: 800;
}

.why-item strong,
.why-item span {
    display: block;
}

.why-item strong {
    color: var(--navy);

    font-size: 12px;
}

.why-item span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;
}


.why-stat-card {
    min-height: 430px;

    padding: 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--navy-2)
        );

    color: white;

    box-shadow: 0 25px 55px rgba(7,27,58,.18);
}

.stat-card-label {
    color: #60a5fa;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.big-stat {
    margin-top: 25px;

    color: white;

    font-size: 90px;
    line-height: .9;
    font-weight: 800;

    letter-spacing: -6px;
}

.why-stat-card h3 {
    margin-top: 15px;

    font-size: 22px;
}

.why-stat-card > p {
    max-width: 400px;

    margin-top: 9px;

    color: #94a3b8;

    font-size: 11px;
    line-height: 1.7;
}

.stat-divider {
    height: 1px;

    margin: 30px 0 20px;

    background: rgba(255,255,255,.12);
}

.stat-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.stat-mini-grid div {
    display: flex;
    flex-direction: column;
}

.stat-mini-grid strong {
    color: white;
    font-size: 19px;
}

.stat-mini-grid span {
    color: #94a3b8;
    font-size: 9px;
}


.industry-home-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 13px;
}

.industry-home-card {
    display: grid;

    grid-template-columns: auto 1fr;

    column-gap: 13px;

    align-items: center;

    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: white;

    transition: .2s;
}

.industry-home-card:hover {
    border-color: #bfd2f5;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(7,27,58,.07);
}

.industry-home-card > span {
    grid-row: span 2;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--blue-light);

    font-size: 18px;
}

.industry-home-card strong {
    color: var(--navy);

    font-size: 11px;
}

.industry-home-card small {
    margin-top: 2px;

    color: var(--muted);

    font-size: 8px;
}


.languages-section {
    padding: 75px 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(37,99,235,.22),
            transparent 30%
        ),
        var(--navy);

    color: white;
}

.languages-container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.languages-section h2 {
    max-width: 600px;

    margin: 10px 0 13px;

    font-size: 37px;
    line-height: 1.15;
}

.languages-section p {
    max-width: 540px;

    color: #94a3b8;

    font-size: 12px;
}

.light-label {
    color: #60a5fa;
}

.language-cards {
    display: flex;

    gap: 12px;
}

.language-cards > div {
    min-width: 100px;

    padding: 20px 15px;

    text-align: center;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;

    background: rgba(255,255,255,.05);
}

.language-cards strong,
.language-cards span {
    display: block;
}

.language-cards strong {
    color: white;

    font-size: 22px;
}

.language-cards span {
    margin-top: 4px;

    color: #94a3b8;

    font-size: 9px;
}


.home-cta {
    padding: 80px 0;
}

.cta-container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;
}

.cta-container h2 {
    max-width: 700px;

    margin: 10px 0 12px;

    color: white;

    font-size: 38px;
    line-height: 1.15;
}

.cta-container p {
    max-width: 600px;

    color: #94a3b8;

    font-size: 12px;
}

.cta-label {
    color: #60a5fa;
}

.cta-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-shrink: 0;
}

.cta-outline-btn {
    padding: 13px 20px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;

    color: white;

    font-size: 11px;
    font-weight: 700;
}

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


@media (max-width: 900px) {

    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .why-grid {
        gap: 45px;
    }

    .industry-home-grid {
        grid-template-columns: 1fr 1fr;
    }

    .languages-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 650px) {

    .hero {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .hero-trust {
        gap: 22px;
    }

    .hero-image-card {
        min-height: 390px;
    }

    .visual-title {
        font-size: 27px;
    }

    .visual-bottom {
        grid-template-columns: 1fr;
    }

    .visual-bottom > div {
        padding: 9px;
    }

    .trust-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-points {
        justify-content: flex-start;
    }

    .section-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-heading-row h2,
    .why-grid h2 {
        font-size: 32px;
    }

    .industry-home-grid {
        grid-template-columns: 1fr;
    }

    .languages-section h2 {
        font-size: 31px;
    }

    .language-cards {
        width: 100%;
    }

    .language-cards > div {
        flex: 1;
        min-width: 0;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-container h2 {
        font-size: 31px;
    }

    .cta-actions {
        flex-wrap: wrap;
    }
}

/* =========================================
   INNER PAGES
========================================= */

.page-hero {
    padding: 85px 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37,99,235,.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071b3a,
            #0b2f63
        );

    color: white;
}

.page-label {
    color: #60a5fa;
}

.page-hero h1 {
    max-width: 850px;

    margin: 12px 0 20px;

    font-size: clamp(40px,5vw,62px);
    line-height: 1.08;

    letter-spacing: -2px;
}

.page-hero h1 strong {
    color: #60a5fa;
}

.page-hero p {
    max-width: 650px;

    color: #cbd5e1;

    font-size: 14px;
    line-height: 1.8;
}

.section {
    padding: 85px 0;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h2 {
    max-width: 700px;

    margin-top: 10px;

    color: var(--navy);

    font-size: 39px;
    line-height: 1.15;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: center;
}

.about-grid h2 {
    margin: 10px 0 20px;

    color: var(--navy);

    font-size: 39px;
    line-height: 1.15;
}

.about-grid p {
    max-width: 620px;

    margin-bottom: 15px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}

.about-highlight {
    padding: 45px;

    border-radius: 24px;

    background: var(--navy);

    color: white;

    box-shadow: var(--shadow);
}

.about-highlight span {
    color: #60a5fa;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-highlight strong {
    display: block;

    margin: 18px 0 10px;

    font-size: 29px;
}

.about-highlight p {
    color: #94a3b8;
}

.light-section {
    background: #f8fafc;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.value-card {
    padding: 30px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 15px;
}

.value-card h3 {
    margin: 20px 0 8px;

    color: var(--navy);
}

.value-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.service-detail-card {
    padding: 35px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: white;

    transition: .2s;
}

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

.service-number {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;
}

.service-detail-card h2 {
    margin: 12px 0;

    color: var(--navy);

    font-size: 21px;
}

.service-detail-card p {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.service-detail-card ul {
    margin-top: 20px;
    padding-left: 18px;

    color: #475467;

    font-size: 10px;
    line-height: 2;
}

.industry-detail-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.industry-detail-card {
    padding: 32px;

    border: 1px solid var(--border);
    border-radius: 17px;

    background: white;

    transition: .2s;
}

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

.industry-detail-card > span {
    display: grid;
    place-items: center;

    width: 55px;
    height: 55px;

    margin-bottom: 20px;

    border-radius: 14px;

    background: var(--blue-light);

    font-size: 24px;
}

.industry-detail-card h2 {
    margin-bottom: 8px;

    color: var(--navy);

    font-size: 18px;
}

.industry-detail-card p {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: start;
}

.careers-grid h2 {
    margin: 10px 0 18px;

    color: var(--navy);

    font-size: 38px;
    line-height: 1.15;
}

.careers-grid > div:first-child > p {
    max-width: 580px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}

.career-points {
    margin-top: 35px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-points div {
    display: flex;
    flex-direction: column;

    padding-left: 18px;

    border-left: 3px solid var(--blue);
}

.career-points strong {
    color: var(--navy);
    font-size: 12px;
}

.career-points span {
    color: var(--muted);
    font-size: 10px;
}

.career-apply-card {
    padding: 35px;

    border-radius: 20px;

    background: #f8fafc;

    border: 1px solid var(--border);
}

.career-apply-card h2 {
    font-size: 27px;
}

.career-apply-card > p {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;

    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;

    margin-bottom: 6px;

    color: var(--navy);

    font-size: 10px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 12px 13px;

    border: 1px solid #dbe2ea;
    border-radius: 8px;

    background: white;

    color: var(--text);

    font-family: inherit;
    font-size: 11px;

    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);

    box-shadow: 0 0 0 3px rgba(11,94,215,.08);
}

.cta-section {
    padding: 75px 0;

    background: var(--navy);
}


@media (max-width: 850px) {

    .about-grid,
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-values,
    .industry-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 39px;
    }

    .section {
        padding: 60px 0;
    }

    .about-values,
    .industry-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-grid h2,
    .careers-grid h2,
    .section-heading h2 {
        font-size: 31px;
    }
}


/* =========================================
   ADMIN DASHBOARD
========================================= */

.admin-body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(11,94,215,.12),
            transparent 35%
        ),
        #f5f8fc;

    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-wrapper {
    width: min(440px, 92%);
}

.admin-login-card {
    background: white;

    padding: 42px;

    border: 1px solid var(--border);
    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(7,27,58,.12);
}

.admin-logo {
    color: var(--navy);

    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;

    margin-bottom: 25px;
}

.admin-logo span {
    color: var(--blue);
}

.admin-login-label {
    color: var(--blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 8px;
}

.admin-login-card h1 {
    color: var(--navy);

    font-size: 30px;

    margin-bottom: 8px;
}

.admin-subtitle {
    color: var(--muted);

    font-size: 11px;

    margin-bottom: 25px;
}

.admin-login-button {
    width: 100%;
}

.admin-alert {
    padding: 11px 13px;

    margin-bottom: 18px;

    border-radius: 8px;

    font-size: 11px;
}

.admin-alert.error {
    background: #fef2f2;
    color: #b42318;
}

.admin-alert.success {
    background: #ecfdf3;
    color: #067647;
}

.admin-dashboard-body {
    min-height: 100vh;

    background: #f5f8fc;
}

.admin-header {
    background: white;

    border-bottom: 1px solid var(--border);
}

.admin-header-inner {
    width: min(1250px, 92%);

    height: 75px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-brand {
    color: var(--navy);

    font-size: 24px;
    font-weight: 900;
}

.admin-brand span {
    color: var(--blue);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 20px;

    color: var(--muted);

    font-size: 11px;
}

.admin-logout {
    padding: 9px 14px;

    border-radius: 7px;

    background: #fef2f2;

    color: #b42318;

    font-weight: 700;
}

.admin-main {
    width: min(1250px, 92%);

    margin: 50px auto;
}

.admin-page-heading {
    margin-bottom: 35px;
}

.admin-page-heading h1 {
    color: var(--navy);

    font-size: 40px;

    margin: 8px 0;
}

.admin-page-heading p {
    color: var(--muted);

    font-size: 12px;
}

.admin-stat-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(210px, 1fr));

    gap: 16px;

    margin-bottom: 30px;
}

.admin-stat-card {
    background: white;

    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 14px;

    transition: .2s;
}

.admin-stat-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(7,27,58,.08);
}

.admin-stat-number {
    color: var(--blue);

    font-size: 34px;
    font-weight: 800;
}

.admin-stat-name {
    color: var(--navy);

    font-size: 12px;
    font-weight: 700;

    margin-top: 5px;
}

.admin-stat-link {
    color: var(--muted);

    font-size: 9px;

    margin-top: 15px;
}

.admin-panel {
    background: white;

    border: 1px solid var(--border);
    border-radius: 16px;

    overflow: hidden;
}

.admin-panel-header {
    padding: 25px;

    border-bottom: 1px solid var(--border);
}

.admin-panel-header h2 {
    color: var(--navy);

    font-size: 20px;
}

.admin-panel-header p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 5px;
}

.admin-management-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    padding: 20px;

    gap: 12px;
}

.admin-management-item {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 10px;
}

.admin-management-item strong {
    color: var(--navy);

    font-size: 11px;
}

.admin-management-item span {
    color: var(--muted);

    font-size: 9px;
}

.admin-back {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 700;
}

.admin-table-panel {
    overflow: hidden;
}

.admin-table-wrapper {
    width: 100%;

    overflow-x: auto;
}

.admin-data-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 700px;
}

.admin-data-table th {
    padding: 14px;

    text-align: left;

    background: #f8fafc;

    color: var(--navy);

    border-bottom: 1px solid var(--border);

    font-size: 9px;
    font-weight: 800;
}

.admin-data-table td {
    padding: 14px;

    color: #475467;

    border-bottom: 1px solid #eef2f6;

    font-size: 9px;

    max-width: 300px;
}

.admin-data-table tr:hover td {
    background: #fafcff;
}

.admin-empty {
    padding: 70px 30px;

    text-align: center;
}

.admin-empty div {
    font-size: 40px;

    margin-bottom: 15px;
}

.admin-empty h2 {
    color: var(--navy);

    font-size: 20px;
}

.admin-empty p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 5px;
}


@media (max-width: 600px) {

    .admin-login-card {
        padding: 28px;
    }

    .admin-user span {
        display: none;
    }

    .admin-page-heading h1 {
        font-size: 32px;
    }
}


/* =========================================
   QUOTE REQUESTS
========================================= */

.quote-toolbar {
    padding: 18px;
    margin-bottom: 20px;
}

.quote-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.quote-search-form input,
.quote-search-form select {
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 13px;
    font-family: inherit;
    font-size: 11px;
    background: white;
}

.quote-search-form input {
    min-width: 280px;
    flex: 1;
}

.quote-search-form select {
    min-width: 150px;
}

.quote-clear {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    padding: 10px;
}

.quote-status-select {
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 7px 9px;
    font-size: 9px;
    background: white;
}

.quote-delete {
    border: 0;
    background: #fef2f2;
    color: #b42318;
    border-radius: 7px;
    padding: 8px 10px;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.quote-delete:hover {
    background: #fee4e2;
}

.quote-table td strong {
    color: var(--navy);
}

@media (max-width: 700px) {

    .quote-search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .quote-search-form input,
    .quote-search-form select {
        width: 100%;
        min-width: 0;
    }

}


.contact-message-cell {
    max-width: 350px !important;
    white-space: normal;
    word-break: break-word;
    line-height: 1.5;
}


/* KAY LLC official logo */
.site-header .kay-logo {
    display: block;
    width: 150px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.site-footer .kay-logo {
    display: block;
    width: 150px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-header .kay-logo {
        width: 125px;
        max-height: 50px;
    }

    .site-footer .kay-logo {
        width: 135px;
        max-height: 52px;
    }
}


/* FIX OFFICIAL KAY LOGO SIZE */
.site-header a.logo img.kay-logo {
    width: 150px !important;
    height: 55px !important;
    max-width: 150px !important;
    max-height: 55px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: contain !important;
    display: block !important;
}

.site-footer a.logo img.kay-logo {
    width: 160px !important;
    height: 65px !important;
    max-width: 160px !important;
    max-height: 65px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: contain !important;
    display: block !important;
}

.site-header a.logo {
    width: 150px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

.site-footer a.logo {
    width: 160px !important;
    height: 70px !important;
    display: inline-flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .site-header a.logo img.kay-logo {
        width: 120px !important;
        height: 48px !important;
        max-width: 120px !important;
        max-height: 48px !important;
    }

    .site-header a.logo {
        width: 120px !important;
        height: 52px !important;
    }
}


/* =========================================================
   KAY LLC — PREMIUM CORPORATE HOMEPAGE
   ========================================================= */

:root {
    --kay-navy: #071a33;
    --kay-blue: #0b63ce;
    --kay-blue-dark: #084a9c;
    --kay-light: #f4f7fb;
    --kay-border: #dfe7f1;
    --kay-text: #142235;
    --kay-muted: #64748b;
}

/* ---------- HERO ---------- */

.hero {
    position: relative;
    min-height: 690px;
    padding: 105px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(11,99,206,.16), transparent 32%),
        linear-gradient(135deg, #f8fbff 0%, #eef5fc 48%, #ffffff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -180px;
    top: -180px;
    background: rgba(11,99,206,.055);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 75px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(11,99,206,.18);
    border-radius: 50px;
    background: rgba(255,255,255,.78);
    color: var(--kay-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    box-shadow: 0 8px 25px rgba(7,26,51,.06);
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #18a558;
    box-shadow: 0 0 0 5px rgba(24,165,88,.12);
}

.hero h1 {
    max-width: 720px;
    margin: 0 0 25px;
    color: var(--kay-navy);
    font-size: clamp(48px, 5.2vw, 78px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

.hero h1 strong {
    display: block;
    color: var(--kay-blue);
}

.hero-description {
    max-width: 620px;
    margin-bottom: 34px;
    color: #52647a;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    min-height: 54px;
    padding: 0 25px;
    font-size: 15px;
}

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid var(--kay-border);
    border-radius: 8px;
    background: #fff;
    color: var(--kay-navy);
    font-weight: 700;
    transition: .25s ease;
}

.hero-secondary-btn:hover {
    border-color: var(--kay-blue);
    color: var(--kay-blue);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 0;
    margin-top: 52px;
    max-width: 570px;
    border-top: 1px solid var(--kay-border);
    padding-top: 25px;
}

.trust-item {
    flex: 1;
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid var(--kay-border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;
    color: var(--kay-navy);
    font-size: 25px;
    font-weight: 800;
}

.trust-item span {
    display: block;
    margin-top: 5px;
    color: var(--kay-muted);
    font-size: 12px;
}

/* ---------- HERO VISUAL ---------- */

.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;
    min-height: 505px;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(7,26,51,.96), rgba(7,57,112,.91)),
        #071a33;
    box-shadow:
        0 35px 80px rgba(7,26,51,.20),
        0 8px 25px rgba(7,26,51,.10);
}

.hero-image-card::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    right: -130px;
    top: -100px;
}

.hero-image-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    left: -120px;
    bottom: -100px;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 20%, rgba(11,99,206,.20)),
        radial-gradient(circle at 70% 35%, rgba(39,143,255,.25), transparent 30%);
}

.hero-visual-content {
    position: relative;
    z-index: 3;
    min-height: 505px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.visual-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.82);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.visual-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35d07f;
    box-shadow: 0 0 12px rgba(53,208,127,.8);
}

.visual-title {
    max-width: 500px;
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.04em;
}

.visual-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.visual-bottom > div {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.065);
    backdrop-filter: blur(10px);
}

.visual-bottom strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.visual-bottom span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
}

/* ---------- TRUST BAR ---------- */

.trust-bar {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    background: var(--kay-navy);
    color: #fff;
}

.trust-bar-inner {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.trust-bar-inner > div:first-child strong {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
}

.trust-bar-inner > div:first-child span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
}

.trust-points {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-points span {
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 600;
}

/* ---------- SECTION HEADINGS ---------- */

.section {
    padding: 105px 0;
}

.section-heading h2,
.section-heading-row h2,
.home-why h2 {
    color: var(--kay-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.045em;
    font-weight: 800;
}

.section-label {
    margin-bottom: 13px;
    color: var(--kay-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

/* ---------- SERVICES ---------- */

.home-services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    min-height: 315px;
    padding: 30px;
    border: 1px solid var(--kay-border);
    border-radius: 14px;
    background: #fff;
    transition: .3s ease;
}

.service-card:hover {
    border-color: rgba(11,99,206,.35);
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(7,26,51,.10);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    border-radius: 12px;
    background: #edf5ff;
    color: var(--kay-blue);
    font-size: 22px;
}

.service-card h3 {
    color: var(--kay-navy);
    font-size: 19px;
    margin-bottom: 13px;
}

.service-card p {
    color: var(--kay-muted);
    line-height: 1.7;
    font-size: 14px;
}

.service-card a {
    position: absolute;
    bottom: 27px;
    color: var(--kay-blue);
    font-size: 13px;
    font-weight: 800;
}

/* ---------- WHY KAY ---------- */

.home-why {
    padding: 110px 0;
    background: var(--kay-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

.why-description {
    max-width: 620px;
    margin: 24px 0 35px;
    color: var(--kay-muted);
    line-height: 1.8;
    font-size: 16px;
}

.why-list {
    display: grid;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-check {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5f2ff;
    color: var(--kay-blue);
    font-weight: 800;
}

.why-item strong {
    display: block;
    color: var(--kay-navy);
    margin-bottom: 5px;
}

.why-item span {
    color: var(--kay-muted);
    font-size: 13px;
    line-height: 1.6;
}

.why-stat-card {
    position: relative;
    min-height: 440px;
    padding: 45px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--kay-navy);
    box-shadow: 0 30px 65px rgba(7,26,51,.18);
}

.why-stat-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    right: -140px;
    bottom: -140px;
}

.stat-card-label {
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.big-stat {
    margin-top: 65px;
    color: #fff;
    font-size: 90px;
    line-height: .8;
    font-weight: 800;
    letter-spacing: -.08em;
}

.why-stat-card h3 {
    margin-top: 30px;
    color: #fff;
    font-size: 25px;
}

.why-stat-card p {
    max-width: 370px;
    color: rgba(255,255,255,.60);
    line-height: 1.7;
    font-size: 14px;
}

.stat-divider {
    height: 1px;
    margin: 30px 0;
    background: rgba(255,255,255,.12);
}

.stat-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-mini-grid strong {
    display: block;
    color: #fff;
    font-size: 25px;
}

.stat-mini-grid span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.5);
    font-size: 11px;
}

/* ---------- INDUSTRIES ---------- */

.industry-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 45px;
}

.industry-home-card {
    min-height: 175px;
    padding: 28px;
    border: 1px solid var(--kay-border);
    border-radius: 13px;
    background: #fff;
    transition: .25s ease;
}

.industry-home-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11,99,206,.35);
    box-shadow: 0 18px 40px rgba(7,26,51,.08);
}

.industry-home-card span {
    display: block;
    margin-bottom: 17px;
    font-size: 28px;
}

.industry-home-card strong {
    display: block;
    color: var(--kay-navy);
    font-size: 16px;
}

.industry-home-card small {
    display: block;
    margin-top: 6px;
    color: var(--kay-muted);
    font-size: 12px;
}

/* ---------- LANGUAGES ---------- */

.languages-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 90% 50%, rgba(11,99,206,.25), transparent 30%),
        var(--kay-navy);
}

.languages-container {
    display: grid;
    grid-template-columns: 1fr .7fr;
    align-items: center;
    gap: 80px;
}

.light-label {
    color: #66aaff;
}

.languages-section h2 {
    max-width: 650px;
    color: #fff;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.languages-section p {
    max-width: 580px;
    color: rgba(255,255,255,.62);
    line-height: 1.8;
}

.language-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.language-cards > div {
    padding: 25px 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.05);
}

.language-cards strong {
    display: block;
    color: #fff;
    font-size: 25px;
}

.language-cards span {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
}

/* ---------- CTA ---------- */

.home-cta {
    padding: 95px 0;
    background: #f5f8fc;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px 60px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--kay-border);
    box-shadow: 0 25px 60px rgba(7,26,51,.07);
}

.cta-container h2 {
    max-width: 680px;
    color: var(--kay-navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.cta-container p {
    max-width: 570px;
    color: var(--kay-muted);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cta-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 23px;
    border: 1px solid var(--kay-border);
    border-radius: 8px;
    color: var(--kay-navy);
    font-weight: 700;
}

/* ---------- MOBILE ---------- */

@media (max-width: 1050px) {
    .hero-grid,
    .why-grid,
    .languages-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 75px;
    }

    .hero-visual {
        max-width: 720px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 20px;
    }

    .trust-item {
        min-width: 28%;
        margin-right: 0;
        padding-right: 10px;
    }

    .hero-image-card,
    .hero-visual-content {
        min-height: 430px;
    }

    .hero-visual-content {
        padding: 28px;
    }

    .visual-title {
        font-size: 34px;
    }

    .visual-bottom {
        grid-template-columns: 1fr;
    }

    .visual-bottom > div {
        padding: 12px 15px;
    }

    .trust-bar-inner {
        padding: 28px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-points {
        gap: 12px;
    }

    .section,
    .home-why {
        padding: 75px 0;
    }

    .services-grid,
    .industry-home-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 285px;
    }

    .why-stat-card {
        min-height: 390px;
        padding: 32px;
    }

    .big-stat {
        font-size: 70px;
        margin-top: 45px;
    }

    .languages-container {
        gap: 40px;
    }

    .language-cards {
        width: 100%;
    }

    .cta-container {
        padding: 35px 25px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions a {
        width: 100%;
    }
}



/* =========================================================
   KAY LLC — PREMIUM CORPORATE HOMEPAGE
   ========================================================= */

.kay-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    color: #fff;
    background:
        radial-gradient(circle at 72% 18%, rgba(30,105,210,.38), transparent 30%),
        linear-gradient(120deg, #06152f 0%, #0b2f63 62%, #071b3a 100%);
}

.kay-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .18;
    background:
        linear-gradient(90deg, transparent 49%, rgba(255,255,255,.08) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255,255,255,.05) 50%, transparent 51%);
    background-size: 110px 110px;
}

.kay-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.kay-hero-copy {
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    color: #b9d5ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 0 6px rgba(249,115,22,.12);
}

.kay-hero h1 {
    max-width: 720px;
    margin: 0 0 27px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .99;
    letter-spacing: -4px;
    font-weight: 800;
}

.kay-hero h1 em {
    display: block;
    color: #68a8ff;
    font-style: normal;
}

.kay-hero-copy > p {
    max-width: 610px;
    margin-bottom: 34px;
    color: #c6d4e8;
    font-size: 17px;
    line-height: 1.8;
}

.kay-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.kay-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 23px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.kay-btn span {
    font-size: 18px;
}

.kay-btn-primary {
    color: #fff;
    background: #f97316;
}

.kay-btn-primary:hover,
.kay-btn-orange:hover {
    transform: translateY(-3px);
    background: #ea580c;
}

.kay-btn-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.06);
}

.kay-btn-light:hover {
    background: #fff;
    color: #071b3a;
}

.kay-hero-meta {
    display: flex;
    gap: 0;
    margin-top: 55px;
}

.kay-hero-meta > div {
    min-width: 145px;
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.kay-hero-meta > div:last-child {
    border-right: 0;
}

.kay-hero-meta strong,
.kay-hero-meta span {
    display: block;
}

.kay-hero-meta strong {
    font-size: 22px;
}

.kay-hero-meta span {
    margin-top: 3px;
    color: #91a7c4;
    font-size: 10px;
}


/* HERO VISUAL */

.kay-hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    min-height: 545px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    background:
        linear-gradient(145deg, rgba(8,30,64,.28), rgba(4,16,35,.92)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=85")
        center / cover;
    box-shadow: 0 35px 90px rgba(0,0,0,.34);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4,18,39,.05) 20%, rgba(4,18,39,.82) 100%);
}

.hero-image-content {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 105px;
}

.hero-image-small {
    margin-bottom: 15px;
    color: #f97316;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-image-content h2 {
    max-width: 520px;
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(31px, 4vw, 50px);
    line-height: 1.03;
    letter-spacing: -2px;
}

.hero-image-content p {
    max-width: 390px;
    color: #c7d4e6;
    font-size: 14px;
}

.hero-floating-card {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(5,20,43,.84);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.hero-floating-top {
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    color: #e7f0ff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

.hero-floating-bottom {
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 17px 18px;
}

.hero-floating-bottom div {
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.hero-floating-bottom div:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-floating-bottom strong,
.hero-floating-bottom span {
    display: block;
}

.hero-floating-bottom strong {
    color: #fff;
    font-size: 12px;
}

.hero-floating-bottom span {
    margin-top: 2px;
    color: #9db1cc;
    font-size: 9px;
}


/* TRUST */

.kay-trust-strip {
    border-bottom: 1px solid #e8edf4;
    background: #fff;
}

.kay-trust-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.kay-trust-inner > span {
    color: #8a96a8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.kay-trust-inner > div {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}

.kay-trust-inner strong {
    color: #334155;
    font-size: 11px;
}


/* SHARED */

.kay-section-label {
    margin-bottom: 14px;
    color: #f97316;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.kay-section-label.light {
    color: #75adff;
}

.kay-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.kay-section-head h2,
.kay-intro h2,
.kay-why-copy h2,
.kay-language h2,
.kay-careers h2,
.kay-final-cta h2 {
    color: #071b3a;
    font-size: clamp(35px, 4vw, 53px);
    line-height: 1.05;
    letter-spacing: -2.4px;
}

.kay-text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    white-space: nowrap;
    color: #071b3a;
    font-size: 12px;
    font-weight: 800;
    border-bottom: 1px solid #071b3a;
    padding-bottom: 5px;
}

.kay-text-link span {
    font-size: 17px;
    transition: .2s;
}

.kay-text-link:hover span,
.kay-dark-link:hover span {
    transform: translateX(4px);
}


/* INTRO */

.kay-intro {
    padding: 120px 0 115px;
    background: #fff;
}

.kay-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: end;
}

.kay-intro h2 {
    max-width: 780px;
}

.kay-intro h2 span {
    color: #0b5ed7;
}

.kay-intro-grid p {
    margin-bottom: 28px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.9;
}


/* SERVICES */

.kay-services {
    padding: 115px 0;
    background: #f5f7fa;
}

.kay-section-head h2 {
    max-width: 680px;
}

.kay-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #dce3ec;
    border: 1px solid #dce3ec;
}

.kay-service-card {
    position: relative;
    min-height: 345px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 38px;
    overflow: hidden;
    background: #fff;
    transition: .3s ease;
}

.kay-service-card:hover {
    background: #071b3a;
    color: #fff;
    transform: translateY(-4px);
    z-index: 2;
}

.kay-service-card:hover h3,
.kay-service-card:hover p,
.kay-service-card:hover .service-content span {
    color: #fff;
}

.service-number {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.service-arrow {
    position: absolute;
    top: 35px;
    right: 38px;
    font-size: 23px;
}

.service-icon-big {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border: 1px solid #d8e0ea;
    color: #0b5ed7;
    font-size: 23px;
}

.kay-service-card:hover .service-icon-big {
    border-color: rgba(255,255,255,.2);
    color: #f97316;
}

.service-content h3 {
    margin-bottom: 11px;
    color: #071b3a;
    font-size: 25px;
    letter-spacing: -.8px;
}

.service-content p {
    max-width: 430px;
    margin-bottom: 22px;
    color: #68768a;
    font-size: 13px;
    line-height: 1.75;
}

.service-content span {
    color: #0b5ed7;
    font-size: 11px;
    font-weight: 800;
}


/* WHY */

.kay-why {
    padding: 125px 0;
    background: #fff;
}

.kay-why-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 100px;
    align-items: center;
}

.kay-why-visual {
    position: relative;
    min-height: 540px;
}

.why-panel-main {
    position: absolute;
    inset: 0 65px 0 0;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(7,27,58,.12), rgba(7,27,58,.94)),
        url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1000&q=85")
        center / cover;
}

.why-panel-top {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.why-panel-center {
    position: absolute;
    left: 35px;
    bottom: 35px;
}

.why-panel-center strong,
.why-panel-center span {
    display: block;
    color: #fff;
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.why-panel-center strong {
    color: #f97316;
}

.why-stat-card {
    position: absolute;
    right: 0;
    bottom: 45px;
    width: 175px;
    padding: 28px 24px;
    background: #f97316;
    color: #fff;
    box-shadow: 0 20px 50px rgba(249,115,22,.22);
}

.why-stat-card strong,
.why-stat-card span {
    display: block;
}

.why-stat-card strong {
    font-size: 40px;
    line-height: 1;
}

.why-stat-card span {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
}

.kay-why-copy h2 {
    margin-bottom: 23px;
}

.kay-why-copy h2 span {
    display: block;
    color: #0b5ed7;
}

.kay-why-copy > p {
    max-width: 620px;
    margin-bottom: 38px;
    color: #667085;
    font-size: 14px;
    line-height: 1.85;
}

.kay-feature-list {
    margin-bottom: 34px;
    border-top: 1px solid #e5eaf1;
}

.kay-feature {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #e5eaf1;
}

.feature-index {
    color: #f97316;
    font-size: 11px;
    font-weight: 900;
}

.kay-feature strong {
    display: block;
    margin-bottom: 4px;
    color: #071b3a;
    font-size: 14px;
}

.kay-feature p {
    margin: 0;
    color: #778397;
    font-size: 12px;
    line-height: 1.65;
}

.kay-dark-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #071b3a;
    font-size: 12px;
    font-weight: 800;
    border-bottom: 1px solid #071b3a;
    padding-bottom: 6px;
}

.kay-dark-link span {
    font-size: 17px;
    transition: .2s;
}


/* INDUSTRIES */

.kay-industries {
    padding: 115px 0;
    background: #f5f7fa;
}

.kay-head-description {
    max-width: 390px;
    margin-bottom: 4px;
    color: #6b7789;
    font-size: 13px;
    line-height: 1.8;
}

.kay-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.kay-industry-card {
    position: relative;
    min-height: 285px;
    display: flex;
    align-items: flex-end;
    padding: 27px;
    overflow: hidden;
    color: #fff;
    background-color: #0b2f63;
    background-position: center;
    background-size: cover;
    transition: .3s;
}

.kay-industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,27,58,.05), rgba(7,27,58,.92));
}

.kay-industry-card > div,
.kay-industry-card > b {
    position: relative;
    z-index: 2;
}

.kay-industry-card > div {
    display: flex;
    flex-direction: column;
}

.kay-industry-card small {
    margin-bottom: 8px;
    color: #8dbaff;
    font-size: 9px;
    font-weight: 900;
}

.kay-industry-card h3 {
    margin-bottom: 5px;
    font-size: 24px;
    letter-spacing: -.7px;
}

.kay-industry-card span {
    color: #c4d2e5;
    font-size: 10px;
}

.kay-industry-card b {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 22px;
    font-weight: 400;
}

.kay-industry-card:hover {
    transform: translateY(-5px);
}

.industry-health {
    background-image: url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=800&q=80");
}

.industry-transport {
    background-image: url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=800&q=80");
}

.industry-commerce {
    background-image: url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=800&q=80");
}

.industry-finance {
    background-image: url("https://images.unsplash.com/photo-1559526324-593bc073d938?auto=format&fit=crop&w=800&q=80");
}

.industry-logistics {
    background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=800&q=80");
}

.industry-telecom {
    background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=800&q=80");
}


/* LANGUAGE */

.kay-language {
    padding: 110px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 30%, rgba(36,100,210,.28), transparent 30%),
        #071b3a;
}

.kay-language-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.kay-language h2 {
    color: #fff;
}

.kay-language h2 span {
    display: block;
    color: #67a7ff;
}

.kay-language p {
    max-width: 530px;
    margin-top: 23px;
    color: #aabbd0;
    font-size: 14px;
    line-height: 1.8;
}

.kay-language-stack {
    border-top: 1px solid rgba(255,255,255,.15);
}

.language-row {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    min-height: 86px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.language-row strong {
    color: #f97316;
    font-size: 17px;
}

.language-row span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.language-row b {
    color: #91a5bf;
    font-size: 9px;
    font-weight: 600;
}


/* CAREERS */

.kay-careers {
    padding: 120px 0;
    background: #fff;
}

.kay-careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.kay-careers h2 {
    max-width: 650px;
}

.kay-careers p {
    max-width: 560px;
    margin: 23px 0 30px;
    color: #667085;
    font-size: 14px;
    line-height: 1.85;
}

.career-highlight {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(7,27,58,.18), rgba(7,27,58,.94)),
        url("https://images.unsplash.com/photo-1521791055366-0d553872125f?auto=format&fit=crop&w=1000&q=85")
        center / cover;
}

.career-highlight > span {
    margin-bottom: auto;
    color: #a9c9f5;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.career-highlight strong {
    max-width: 390px;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -2px;
}

.career-line {
    width: 55px;
    height: 3px;
    margin: 25px 0 15px;
    background: #f97316;
}

.career-highlight small {
    color: #c1d0e2;
    font-size: 10px;
}


/* FINAL CTA */

.kay-final-cta {
    padding: 100px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 40%, rgba(38,103,210,.28), transparent 30%),
        #0a2854;
}

.kay-final-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    align-items: center;
}

.kay-final-cta h2 {
    max-width: 800px;
    color: #fff;
}

.kay-final-cta p {
    max-width: 610px;
    margin-top: 20px;
    color: #aec0d7;
    font-size: 14px;
    line-height: 1.8;
}

.kay-final-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 190px;
}

.kay-btn-orange {
    color: #fff;
    background: #f97316;
}

.kay-btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}

.kay-btn-outline-light:hover {
    background: #fff;
    color: #071b3a;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .kay-hero-inner,
    .kay-intro-grid,
    .kay-why-grid,
    .kay-language-grid,
    .kay-careers-grid {
        grid-template-columns: 1fr;
    }

    .kay-hero-inner {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .kay-hero-visual {
        max-width: 700px;
    }

    .kay-intro-grid,
    .kay-why-grid,
    .kay-language-grid,
    .kay-careers-grid {
        gap: 55px;
    }

    .kay-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kay-final-inner {
        grid-template-columns: 1fr;
    }

    .kay-final-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

}

@media (max-width: 700px) {

    .kay-hero {
        min-height: auto;
    }

    .kay-hero-inner {
        min-height: auto;
        gap: 50px;
    }

    .kay-hero h1 {
        font-size: clamp(43px, 13vw, 61px);
        letter-spacing: -3px;
    }

    .kay-hero-copy > p {
        font-size: 15px;
    }

    .kay-hero-meta {
        gap: 0;
        margin-top: 40px;
    }

    .kay-hero-meta > div {
        min-width: 0;
        flex: 1;
        padding-right: 12px;
        margin-right: 12px;
    }

    .kay-hero-meta strong {
        font-size: 18px;
    }

    .hero-image-frame {
        min-height: 470px;
    }

    .hero-image-content {
        left: 25px;
        right: 25px;
        bottom: 105px;
    }

    .hero-floating-top {
        top: 16px;
        right: 16px;
    }

    .hero-floating-bottom {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .kay-trust-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 27px 0;
    }

    .kay-trust-inner > div {
        gap: 16px;
    }

    .kay-intro,
    .kay-services,
    .kay-why,
    .kay-industries,
    .kay-language,
    .kay-careers {
        padding: 80px 0;
    }

    .kay-section-head {
        display: block;
        margin-bottom: 35px;
    }

    .kay-section-head .kay-text-link {
        margin-top: 20px;
    }

    .kay-service-grid {
        grid-template-columns: 1fr;
    }

    .kay-service-card {
        min-height: 320px;
    }

    .kay-why-visual {
        min-height: 430px;
    }

    .why-panel-main {
        right: 35px;
    }

    .why-stat-card {
        width: 145px;
        padding: 22px 18px;
    }

    .kay-industry-grid {
        grid-template-columns: 1fr;
    }

    .kay-industry-card {
        min-height: 260px;
    }

    .language-row {
        grid-template-columns: 45px 1fr;
    }

    .language-row b {
        display: none;
    }

    .career-highlight {
        min-height: 350px;
    }

    .career-highlight strong {
        font-size: 40px;
    }

    .kay-final-cta {
        padding: 75px 0;
    }

    .kay-final-actions {
        flex-direction: column;
    }

    .kay-btn {
        width: 100%;
    }

}

