:root {
    --red: #db2c1d;
    --red-dark: #8b0009;
    --red-light: #e8000f;
    --red-pale: #fff0f1;
    --red-border: rgba(192, 0, 12, 0.18);
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-100: #f4f4f4;
    --gray-200: #e8e8e8;
    --gray-500: #888;
    --gray-700: #444;
    --dark: #1a1a1a;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--dark);
}

/* NAVBAR */
.navbar-b4 {
    background: var(--white);
    padding: 0;
    box-shadow: 0 2px 12px rgba(192, 0, 12, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-b4 .logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-box {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--red);
    font-size: 16px;
}

.navbar-b4 .nav-link {
    color: #000 !important;
    font-size: 13px;
    font-weight: 500;
    padding: 22px 12px !important;
    border-bottom: 3px solid transparent;
    transition: all .2s;
}

.navbar-b4 .nav-link:hover,
.navbar-b4 .nav-link.active {
    color: var(--red) !important;
    border-bottom-color: #fff;
}

.navbar-b4 .navbar-toggler {
    border-color: #000;
}

.navbar-b4 .navbar-toggler-icon {
    filter: invert(1);
}

.btn-login {
    background: var(--red-dark) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    padding: 7px 18px !important;
    border: none !important;
}

.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

/* Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-login:hover {
    background: var(--red-pale) !important;
    color: var(--red-dark) !important;
}

.top-bar {
    background: var(--red-dark);
    padding: 5px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.top-bar a:hover {
    color: #fff;
}

/* HERO */
.hero {
    /* background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #e8000f 100%); */
    padding: 85px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.poster,
.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.bg-video {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bg-video.loaded {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--red), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.btn-white {
    background: #fff;
    color: var(--red);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all .2s;
    cursor: pointer;
}

.btn-white:hover {
    background: var(--red-pale);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all .2s;
    cursor: pointer;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2.5rem;
    padding-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    flex: 1;
    min-width: 90px;
}

.hero-stat-num {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}

.hero-stat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* TRACK CARD */
.track-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
}

.track-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
}

.track-card p {
    font-size: 13px;
    color: var(--gray-500);
}

.track-tabs {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 1rem;
}

.track-tab {
    flex: 1;
    text-align: center;
    padding: 7px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    color: var(--gray-500);
    font-weight: 500;
}

.track-tab.active {
    background: #fff;
    color: var(--red);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.track-input {
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    width: 100%;
    transition: border-color .2s;
}

.track-input:focus {
    border-color: var(--red);
}

.btn-red {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 20px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: background .2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-red:hover {
    background: var(--red-dark);
}

.btn-red-outline {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    border-radius: 8px;
    padding: 9px 20px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all .2s;
    cursor: pointer;
}

.btn-red-outline:hover {
    background: var(--red);
    color: #fff;
}

/* SERVICE STRIP */
.service-strip {
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}

.service-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 1.5rem;
    border-right: 1px solid var(--gray-200);
    cursor: pointer;
    transition: background .2s;
    flex: 1;
}

.service-pill:last-child {
    border-right: none;
}

.service-pill:hover {
    background: var(--red-pale);
}

.sp-icon {
    width: 42px;
    height: 42px;
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}

.sp-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.sp-sub {
    font-size: 11px;
    color: var(--gray-500);
}

/* SECTION COMMON */
.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.15;
    color: var(--dark);
}

/* FEATURE CARDS */
.feat-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all .25s;
    cursor: default;
    height: 100%;
}

.feat-card:hover {
    border-color: var(--red-border);
    box-shadow: 0 8px 30px rgba(192, 0, 12, 0.08);
    transform: translateY(-3px);
}

.feat-icon {
    width: 50px;
    height: 50px;
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22px;
    margin-bottom: 1rem;
}

.feat-card h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: .4rem;
}

.feat-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

/* SERVICE CARDS */
.svc-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    padding: 2rem;
    transition: all .25s;
    height: 100%;
}

.svc-card:hover {
    border-color: var(--red);
    box-shadow: 0 8px 30px rgba(192, 0, 12, 0.1);
}

.svc-icon {
    width: 56px;
    height: 56px;
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 26px;
    margin-bottom: 1.25rem;
}

.svc-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    background: var(--red-pale);
    color: var(--red);
    border: 1px solid var(--red-border);
    margin: 2px;
}

/* STEP */
.step-num {
    width: 56px;
    height: 56px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 1rem;
}

/* CLIENT GRID */
.client-cell {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    transition: background .2s;
    cursor: default;
}

.client-cell:hover {
    background: var(--red-pale);
}

.client-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
    transition: color .2s;
}

.client-cell:hover .client-name {
    color: var(--red);
}

/* NEWS CARD */
.news-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all .2s;
    cursor: pointer;
    height: 100%;
}

.news-card:hover {
    border-color: var(--red-border);
    box-shadow: 0 8px 24px rgba(192, 0, 12, 0.08);
}

.news-img {
    height: 130px;
    background: var(--red-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.news-body {
    padding: 1.25rem;
}

.news-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .4rem;
}

.news-card h6 {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: .5rem;
    color: var(--dark);
}

.news-card p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* JOB CARD */
.job-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all .2s;
}

.job-card:hover {
    border-color: var(--red-border);
    box-shadow: 0 4px 20px rgba(192, 0, 12, 0.08);
}

.job-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    background: var(--red-pale);
    color: var(--red);
    border: 1px solid var(--red-border);
}

.job-badge-blue {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.clients img {
    aspect-ratio: 4 / 2;
    width: 200px !important;
    object-fit: contain;
    object-position: center;
}

/* FORM */
.form-control-b4,
.form-select-b4 {
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color .2s;
    width: 100%;
    background: #fff;
}

.form-control-b4:focus,
.form-select-b4:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 0, 12, 0.08);
    outline: none;
}

.form-label-b4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 5px;
    display: block;
}

textarea.form-control-b4 {
    min-height: 110px;
    resize: vertical;
}

/* CONTACT ICON */
.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}

/* STAR */
.star {
    font-size: 28px;
    color: var(--gray-200);
    cursor: pointer;
    transition: all .15s;
}

.star.active,
.star:hover {
    color: var(--red);
    transform: scale(1.15);
}

/* MILESTONE */
.milestone {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.milestone:last-child {
    border-bottom: none;
}

.m-year {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    min-width: 42px;
    padding-top: 2px;
}

.m-text {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
}

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    padding: 3rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: .75rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 300;
    max-width: 520px;
}

.breadcrumb-b4 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.breadcrumb-b4 span {
    color: rgba(255, 255, 255, 0.9);
}

/* VALUE CARD */
.value-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 1.25rem;
    height: 100%;
}

.value-card h6 {
    font-weight: 700;
    font-size: 13px;
    color: var(--red);
    margin-bottom: .35rem;
}

.value-card p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* STAT BOX */
.stat-box {
    padding: 2.5rem;
    text-align: center;
    border-right: 1px solid var(--gray-200);
}

.stat-box:last-child {
    border-right: none;
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.stat-lbl {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: .4rem;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
}

/* LINK CARD */
.link-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    transition: all .2s;
    height: 100%;
    align-items: center;
    color: #000;
}

.link-card:hover {
    border-color: var(--red-border);
    background: var(--red-pale);
}

.lk-icon {
    width: 40px;
    height: 40px;
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
}

/* TOOL CARD */
.tool-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all .25s;
    height: 100%;
}

.tool-card:hover {
    border-color: var(--red);
    box-shadow: 0 8px 24px rgba(192, 0, 12, 0.09);
    transform: translateY(-2px);
}

/* COUNTRY BAR */
.country-bar {
    background: var(--red-dark);
    padding: 6px 0;
    overflow-x: auto;
}

.country-pill {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}

.country-pill:hover,
.country-pill.active {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: #fff;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo img {
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
}

.footer-logo span {
    color: var(--red);
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .5rem;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--red);
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: all .2s;
    margin-right: 6px;
    font-size: 14px;
}

.social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.25rem 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin: 0;
}

.footer-bottom a {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--red);
}

/* OPT PILL */
.opt-pill {
    padding: 6px 14px;
    border-radius: 100px;
    border: 1.5px solid var(--gray-200);
    font-size: 13px;
    cursor: pointer;
    transition: all .15s;
    background: #fff;
}

.opt-pill.sel {
    background: var(--red-pale);
    color: var(--red);
    border-color: var(--red-border);
}

@media(max-width:768px) {
    .service-pill {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .hero {
        padding: 20px 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 4rem);
    }

    .hero-stat {
        flex: 1;
        min-width: 50px;
    }

    .top-bar {
        font-size: 10px;
    }

    .clients img {
        width: 115px !important;
    }
}

.policy-section {
    padding: 60px 0;
}

.policy-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
}

.policy-title {
    font-size: 42px;
    font-weight: 700;
    color: #0d1b52;
    margin-bottom: 20px;
}

.policy-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.policy-item {
    margin-bottom: 32px;
}

.policy-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0d1b52;
    margin-bottom: 12px;
}

.policy-item p,
.policy-item li {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.policy-item ul {
    padding-left: 20px;
}

.highlight-box {
    background: #f1f5ff;
    border-left: 4px solid var(--red);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

@media(max-width:768px) {
    .policy-card {
        padding: 25px;
    }

    .policy-title {
        font-size: 30px;
    }

    .policy-item h4 {
        font-size: 20px;
    }
}