/* ─── BASE (from reference style.css) ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    overflow-x: hidden;
    background: linear-gradient(0deg, #fff6e7 0%, #e7e7ff 100%);
}

.container {
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1400px !important;
        font-size: 17px;
    }
}

p {
    color: #797c7f;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Urbanist', sans-serif;
}

@media (min-width: 768px) and (max-width: 964px) {

    h1,
    h2,
    h3 {
        font-size: 30px !important;
        line-height: 35px !important;
    }
}

@media (max-width: 575px) {

    h1,
    h2,
    h3 {
        font-size: 26px;
        line-height: 30px;
    }
}

/* Scrollbar */
*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #f2a221;
    border-radius: 4px;
    border: 3px solid transparent;
}

/* ─── SPACING ─── */
.spacing {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .spacing {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .spacing {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

@media (max-width: 576px) {
    .spacing {
        padding-top: 28px;
        padding-bottom: 28px;
    }
}

/* ─── COLORS & GRADIENTS ─── */
:root {
    --gold-1: #f2a221;
    --gold-2: #eb701f;
    --purple-1: #4342d9;
    --purple-2: #242373;
}

.login-button {
    background-color: transparent;
    border: 2px solid var(--gold-1);
    color: #000;
    padding: 10px 24px;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}

.login-button:hover {
    background: linear-gradient(90deg, #f2a221 0%, #eb701f 100%);
    color: #fff;
    border-color: transparent;
}

.contact-button {
    background: linear-gradient(90deg, #4342d9 0%, #242373 100%);
    padding: 10px 24px;
    border-radius: 8px;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: background 0.3s;
}

.contact-button:hover {
    background: linear-gradient(90deg, #242373 0%, #4342d9 100%);
    color: #fff;
}

@media (max-width: 991px) {

    .login-button,
    .contact-button {
        font-size: 14px;
        padding: 8px 20px;
    }
}

@media (max-width: 767px) {

    .login-button,
    .contact-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* ─── HERO ─── */
.hero-section {
    background: linear-gradient(135deg, #242373 0%, #4342d9 60%, #242373 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 130% at 50% 80%, rgba(235, 112, 31, 0.25) 0%, rgba(242, 162, 33, 0) 60%);
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(242, 162, 33, 0.18);
    border: 1px solid rgba(242, 162, 33, 0.4);
    color: #fde8c0;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-family: 'Urbanist', sans-serif;
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    background: var(--gold-1);
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero-section h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    font-family: 'Urbanist', sans-serif;
}

.hero-section h1 span {
    background: linear-gradient(90deg, #f2a221, #eb701f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: #d4d4f7;
    font-size: 1rem;
    line-height: 1.75;
    font-family: 'Kumbh Sans', sans-serif;
}

.hero-desc strong {
    color: #fff;
}

.stat-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 20px 22px;
    transition: all .25s;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.stat-box .num {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(180deg, #f2a221 0%, #eb701f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box .lbl {
    font-size: 0.78rem;
    color: #fff;
    margin-top: 3px;
    font-family: 'Kumbh Sans', sans-serif;
}

.btn-gold {
    background: linear-gradient(90deg, #f2a221 0%, #eb701f 100%);
    color: #fff;
    border: none;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: 9px;
    transition: all .25s;
}

.btn-gold:hover {
    background: linear-gradient(90deg, #eb701f 0%, #f2a221 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(235, 112, 31, .35);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .35);
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 26px;
    border-radius: 9px;
    transition: all .25s;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

/* ─── SECTION COMMON ─── */
.section-label {
    display: inline-block;
    background: linear-gradient(90deg, rgba(242, 162, 33, 0.15), rgba(235, 112, 31, 0.15));
    border: 1px solid rgba(242, 162, 33, 0.4);
    color: var(--gold-2);
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Urbanist', sans-serif;
}

.section-label.purple-tag {
    background: linear-gradient(90deg, rgba(67, 66, 217, 0.12), rgba(36, 35, 115, 0.12));
    border-color: rgba(67, 66, 217, 0.35);
    color: var(--purple-1);
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #1a1a2e;
    font-family: 'Urbanist', sans-serif;
    line-height: 1.2;
}

.section-sub {
    color: #797c7f;
    font-size: 0.95rem;
    font-family: 'Kumbh Sans', sans-serif;
}

/* ─── BG HELPERS (from reference) ─── */
.banner_below {
    background: radial-gradient(70% 130% at 50% 20%, rgba(235, 130, 31, 0.12) 0%, rgba(242, 162, 33, 0) 60%);
}

.inner_bg {
    background: radial-gradient(60% 130% at 50% 100%, rgba(235, 112, 31, 0.1) 0%, rgba(242, 162, 33, 0) 65%);
}

.our-client {
    background: radial-gradient(70% 100% at 50% 20%, rgba(67, 66, 217, 0.08) 0%, rgba(242, 162, 33, 0) 60%);
}

.about-us-sec {
    background: radial-gradient(50% 50% at 100% 0%, rgba(235, 112, 31, 0.1) 0%, rgba(242, 162, 33, 0) 100%);
}

.servie_gra {
    background: radial-gradient(50% 50% at 100% 100%, rgba(235, 112, 31, 0.1) 0%, rgba(242, 162, 33, 0) 100%);
}

.client_abroad {
    background: radial-gradient(50% 50% at 10% 100%, rgba(235, 112, 31, 0.1) 0%, rgba(242, 162, 33, 0) 100%);
}

.recognise {
    background: radial-gradient(50% 50% at 10% 0%, rgba(235, 112, 31, 0.1) 0%, rgba(242, 162, 33, 0) 100%);
}

.yel-bg {
    background: linear-gradient(180deg, #e7e7ff 0%, #fff6e7 100%);
}

.head-bg {
    background: linear-gradient(0deg, #e7e7ff 0%, #fff6e7 100%);
}

/* ─── REALTIME BOX ─── */
.realtime-box {
    background: linear-gradient(135deg, rgba(67, 66, 217, 0.06) 0%, rgba(242, 162, 33, 0.08) 100%);
    border: 1.5px solid rgba(67, 66, 217, 0.2);
    border-radius: 18px;
    padding: 28px;
}

.realtime-box .big-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.4;
}

.realtime-box .big-text span {
    background: linear-gradient(90deg, #f2a221, #eb701f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #334155;
    font-family: 'Kumbh Sans', sans-serif;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #4342d9, #242373);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.check-icon i {
    font-size: 0.65rem;
    color: #fff;
}

/* ─── WHO CARD ─── */
.who-card {
    background: #fff;
    border: 1.5px solid #e8e8f5;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .25s;
    box-shadow: 0 2px 12px rgba(67, 66, 217, 0.04);
}

.who-card:hover {
    box-shadow: 0 6px 24px rgba(67, 66, 217, 0.1);
    transform: translateY(-3px);
    border-color: rgba(67, 66, 217, 0.25);
}

.who-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(67, 66, 217, 0.1), rgba(242, 162, 33, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.who-card span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Urbanist', sans-serif;
}

/* ─── FLOW STEP ─── */
.flow-step {
    background: #fff;
    border: 1.5px solid #e8e8f5;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all .25s;
    height: 100%;
}

.flow-step:hover {
    box-shadow: 0 6px 22px rgba(67, 66, 217, 0.1);
    border-color: rgba(67, 66, 217, 0.3);
    transform: translateY(-2px);
}

.flow-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(180deg, #4342d9 0%, #242373 100%);
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-num.gold {
    background: linear-gradient(180deg, #f2a221 0%, #eb701f 100%);
}

.flow-step h6 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1a1a2e;
    font-family: 'Urbanist', sans-serif;
}

.flow-step p {
    font-size: 0.78rem;
    color: #797c7f;
    margin: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

.star-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(242, 162, 33, 0.2), rgba(235, 112, 31, 0.2));
    border: 1px solid rgba(242, 162, 33, 0.5);
    color: #92400e;
    border-radius: 20px;
    padding: 1px 8px;
    font-size: 0.68rem;
    font-weight: 700;
    margin-left: 5px;
    vertical-align: middle;
    font-family: 'Urbanist', sans-serif;
}

/* ─── ENGINE CARD ─── */
.engine-card {
    background: #fff;
    border: 1.5px solid #e8e8f5;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.engine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4342d9, #f2a221);
    opacity: 0;
    transition: opacity .25s;
}

.engine-card:hover {
    box-shadow: 0 10px 32px rgba(67, 66, 217, 0.12);
    transform: translateY(-4px);
    border-color: rgba(67, 66, 217, 0.2);
}

.engine-card:hover::before {
    opacity: 1;
}

.engine-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(67, 66, 217, 0.1), rgba(36, 35, 115, 0.1));
    border: 1px solid rgba(67, 66, 217, 0.25);
    color: var(--purple-1);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Urbanist', sans-serif;
}

.engine-badge.gold-badge {
    background: linear-gradient(90deg, rgba(242, 162, 33, 0.15), rgba(235, 112, 31, 0.15));
    border-color: rgba(242, 162, 33, 0.4);
    color: #92400e;
}

.engine-badge.red-badge {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
    color: #991b1b;
}

.engine-badge.green-badge {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.engine-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.engine-card h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
    font-family: 'Urbanist', sans-serif;
}

.engine-card>p {
    font-size: 0.82rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.cap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cap-list li {
    font-size: 0.8rem;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Kumbh Sans', sans-serif;
}

.cap-list li::before {
    content: '✓';
    color: var(--purple-1);
    font-weight: 900;
    flex-shrink: 0;
}

/* ─── COVERAGE PILL ─── */
.coverage-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid #e8e8f5;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a2e;
    transition: all .25s;
    font-family: 'Urbanist', sans-serif;
}

.coverage-pill:hover {
    border-color: rgba(67, 66, 217, 0.3);
    background: linear-gradient(135deg, rgba(67, 66, 217, 0.03), rgba(242, 162, 33, 0.03));
    box-shadow: 0 4px 16px rgba(67, 66, 217, 0.07);
}

.cov-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ─── HOW IT WORKS ─── */
.how-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.how-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(180deg, #4342d9 0%, #242373 100%);
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.how-num.gold {
    background: linear-gradient(180deg, #f2a221 0%, #eb701f 100%);
}

.how-step h6 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #1a1a2e;
    font-family: 'Urbanist', sans-serif;
}

.how-step p {
    font-size: 0.83rem;
    margin: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

.how-connector {
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, rgba(67, 66, 217, 0.3), rgba(242, 162, 33, 0.3));
    margin-left: 18px;
}

/* ─── IMPACT / DIFF ITEMS ─── */
.impact-item,
.diff-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid #e8e8f5;
    border-radius: 14px;
    padding: 20px;
    transition: all .25s;
    height: 100%;
}

.impact-item:hover {
    box-shadow: 0 6px 22px rgba(67, 66, 217, 0.08);
    border-color: rgba(67, 66, 217, 0.2);
}

.diff-item:hover {
    box-shadow: 0 6px 22px rgba(67, 66, 217, 0.08);
    border-color: rgba(242, 162, 33, 0.3);
}

.impact-icon,
.diff-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.impact-item h6,
.diff-item h6 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 3px;
    color: #1a1a2e;
    font-family: 'Urbanist', sans-serif;
}

.impact-item p,
.diff-item p {
    font-size: 0.8rem;
    margin: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

/* ─── INTEGRATION CARD ─── */
.int-card {
    background: #fff;
    border: 1.5px solid #e8e8f5;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .25s;
    height: 100%;
}

.int-card:hover {
    box-shadow: 0 8px 26px rgba(67, 66, 217, 0.1);
    transform: translateY(-4px);
    border-color: rgba(67, 66, 217, 0.25);
}

.int-card .int-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.int-card h6 {
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #1a1a2e;
    font-family: 'Urbanist', sans-serif;
}

.int-card p {
    font-size: 0.8rem;
    font-family: 'Kumbh Sans', sans-serif;
}

/* ─── INDUSTRY CARD ─── */
.industry-card {
    background: #fff;
    border: 1.5px solid #e8e8f5;
    border-radius: 14px;
    padding: 24px 20px;
    transition: all .25s;
    height: 100%;
}

.industry-card:hover {
    box-shadow: 0 6px 22px rgba(67, 66, 217, 0.1);
    transform: translateY(-3px);
    border-color: rgba(67, 66, 217, 0.25);
}

.industry-card .ind-icon {
    font-size: 1.7rem;
    margin-bottom: 10px;
    display: block;
}

.industry-card h6 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #1a1a2e;
    font-family: 'Urbanist', sans-serif;
}

.industry-card p {
    font-size: 0.82rem;
    font-family: 'Kumbh Sans', sans-serif;
}

/* ─── REPORT ITEM ─── */
.report-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: #fff;
    border: 1.5px solid #e8e8f5;
    border-radius: 11px;
    font-size: 0.87rem;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Urbanist', sans-serif;
    transition: all .2s;
}

.report-item:hover {
    border-color: rgba(67, 66, 217, 0.25);
}

.rep-dot {
    width: 9px;
    height: 9px;
    background: linear-gradient(180deg, #4342d9, #242373);
    border-radius: 50%;
    flex-shrink: 0;
}

.rep-dot.gold {
    background: linear-gradient(180deg, #f2a221, #eb701f);
}

/* ─── TABLE ─── */
.compare-table th {
    background: linear-gradient(90deg, #242373, #4342d9);
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 16px 20px;
}

.compare-table td {
    padding: 14px 20px;
    font-size: 0.87rem;
    vertical-align: middle;
    font-family: 'Kumbh Sans', sans-serif;
}

.compare-table .col-safemate {
    background: rgba(67, 66, 217, 0.04);
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Urbanist', sans-serif;
}

.compare-table .col-trad {
    color: #797c7f;
}

.compare-table tr:nth-child(even) td {
    background: #f9f9fc;
}

.compare-table tr:nth-child(even) .col-safemate {
    background: rgba(67, 66, 217, 0.06);
}

.badge-yes {
    background: #D1FAE5;
    color: #065F46;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Urbanist', sans-serif;
}

.badge-no {
    background: #FEE2E2;
    color: #991B1B;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Urbanist', sans-serif;
}

.badge-fast {
    background: linear-gradient(90deg, rgba(242, 162, 33, 0.2), rgba(235, 112, 31, 0.2));
    color: #92400E;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Urbanist', sans-serif;
}

/* ─── CTA ─── */
.cta-section {
    background: linear-gradient(135deg, #242373 0%, #4342d9 60%, #242373 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 130% at 50% 80%, rgba(235, 112, 31, 0.25) 0%, rgba(242, 162, 33, 0) 60%);
    pointer-events: none;
}

/* ─── FOOTER ─── */
.site-footer {
    background: linear-gradient(180deg, #242373 0%, #1a1a5e 100%);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 50% at 100% 0%, rgba(235, 112, 31, 0.15) 0%, rgba(242, 162, 33, 0) 100%);
    pointer-events: none;
}

/* ─── ANIMATE ─── */
.animate-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}
