﻿
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --gray-300: #c8cedb;
    --navy: #0d1b3e;
    --navy-mid: #152454;
    --blue: #1a56db;
    --blue-light: #3b82f6;
    --orange: #f97316;
    --orange-light: #fb923c;
    --cream: #f8f9fe;
    --white: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: rgba(26,86,219,0.12);
    --navy-950: #06101e;
    --navy-900: #0a1628;
    --navy-800: #0d2247;
    --navy-700: #102d5e;
    --navy-600: #163a7a;
    --orange-500: #e07b2a;
    --orange-400: #f0954a;
    --orange-300: #f5b27a;
    --blue-500: #1e6bbf;
    --blue-400: #378add;
    --blue-100: #e6f1fb;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f0f2f6;
    --gray-200: #e2e6ee;
    --gray-400: #9aa3b5;
    --gray-600: #5a6478;
    --gray-800: #2c3347;
    --gray-700: #404859;
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08), 0 1px 2px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.10), 0 2px 6px rgba(10, 22, 40, 0.06);
    --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.15), 0 4px 12px rgba(10, 22, 40, 0.08);
    --r-xl: 28px;
    --ink: #0e0f14;
    --amber: #d4820a;
    --amber-light: #fdf3e0;
    --text-2: #5a5c6e;
    --text-3: #9396a8;
    --ink-soft: #1c1e2a;
    --white: #ffffff;
    --surface-2: #ebe9e4;
    --amber-mid: #f5c842;
    --r-sm: 8px;
    --surface: #f4f3f0;
    --r-md: 14px;
    --r-lg: 20px;
    --blue-100: #e6f1fb;
    --blue-500: #1e6bbf;
    --blue-700: #1458a0;
}

body {
    font-family: "Outfit", sans-serif;
}

h1, h2, h3, h4, h5, h6, p, span, div, button, li, a {
    font-family: "Outfit", sans-serif !important;
}




/*==== Common css ====*/

section {
    padding: 96px 0;
}

.container {
    max-width: 1320px !important;
}

a:hover {
    text-decoration: none
}

a {
    text-decoration: none
}

.topbar-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a56db, #f97316);
    border-radius: 2px;
}

.topbar-nav a.active {
    color: #1a56db !important;
    font-weight: 600;
}

.topbar-nav a:hover {
    color: #1a56db;
}

.topbar-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    padding: 6px 4px;
    position: relative;
    transition: color 0.2s;
}


/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease,transform .7s ease
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0)
    }

/* glow behind mosaic */
.mosaic-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(26,86,219,.3),transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    filter: blur(48px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,100% {
        opacity: .7;
        transform: translate(-50%,-50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1.1)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/*===== Contact Us Section ======*/

.contact {
    background: var(--white);
}


.section-tag {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--navy);
    line-height: 1.15;
}

    .section-title span {
        background: linear-gradient(90deg,var(--blue),var(--orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 56px;
    align-items: start;
}

.contact-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    transition: box-shadow .2s;
}

.contact-item-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.contact-item-val {
    font-size: .9rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-cta {
    background: linear-gradient(145deg,var(--navy),var(--navy-mid));
    border-radius: 24px;
    padding: 48px 40px;
    color: #fff;
}

    .contact-cta h3 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 14px;
        letter-spacing: -.03em;
    }

    .contact-cta p {
        font-size: .92rem;
        line-height: 1.7;
        color: rgba(255,255,255,.7);
        margin-bottom: 0;
    }

/*==== SMS ====*/

.sms {
    background: var(--cream);
}

.sms-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg,var(--blue),var(--orange));
    border-radius: 5px 0 0 5px;
}

.sms-box li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
    font-size: 1rem;
}

.sms-box li {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.65;
    padding-left: 20px;
    position: relative;
}

.sms-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sms-box strong {
    color: var(--navy);
    font-weight: 600;
}

.sms-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    max-width: 860px;
}

/*==== FEATURE ====*/

.features {
    background: var(--white);
}



.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(26,86,219,.03),rgba(249,115,22,.03));
    opacity: 0;
    transition: opacity .3s;
}

.feature-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s,box-shadow .3s,border-color .3s;
    background: var(--white);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg,rgba(26,86,219,.1),rgba(249,115,22,.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border: 1px solid rgba(26,86,219,.12);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -.02em;
}

.feature-card p {
    font-size: .875rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.features-header {
    margin-bottom: 56px;
}

.feature-card.featured {
    background: linear-gradient(145deg,var(--navy),var(--navy-mid));
    border-color: transparent;
    box-shadow: 0 24px 60px rgba(13,27,62,.2);
}

    .feature-card.featured .feature-icon {
        background: rgba(249,115,22,.2);
        border-color: rgba(249,115,22,.25);
    }

    .feature-card.featured h3 {
        color: #fff;
    }

    .feature-card.featured p {
        color: rgba(255,255,255,.65);
    }

    .feature-card.featured:hover {
        transform: translateY(-6px);
        box-shadow: 0 32px 80px rgba(13,27,62,.35);
    }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13,27,62,.1);
    border-color: rgba(26,86,219,.25);
}

/*==== ABOUT ====*/

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.about-image-wrap {
    position: relative;
}

.about-bg-shape {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(26,86,219,.1),transparent 70%);
    top: -40px;
    left: -40px;
}

.about-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg,var(--navy) 0%,var(--navy-mid) 100%);
    border-radius: 24px;
    padding: 48px 40px;
    color: white;
    box-shadow: 0 24px 60px rgba(13,27,62,.25);
}

    .about-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -.03em;
    }

    .about-card p {
        font-size: .92rem;
        line-height: 1.75;
        color: rgba(255,255,255,.75);
    }

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .76rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
}

.about-text-block p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-top: 16px;
}

/*==== HERO ====*/

.hero {
    /*    min-height: 100vh;*/
    background: linear-gradient(135deg,var(--navy) 0%,#0f2356 50%,#1a3a6e 100%);
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.06) 1px,transparent 1px);
        background-size: 32px 32px;
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 65% at 15% 50%,rgba(26,86,219,.25) 0%,transparent 70%), radial-gradient(ellipse 40% 50% at 85% 70%,rgba(249,115,22,.14) 0%,transparent 65%);
        pointer-events: none;
    }

.hero-badge::before {
    content: '●';
    font-size: .45rem;
    animation: pulse 2s infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,.15);
    border: 1px solid rgba(249,115,22,.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--orange-light);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 24px;
    animation: fadeUp .8s .2s both;
}

.hero h1 {
    font-size: clamp(2.4rem,4vw,3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -.04em;
    margin-bottom: 20px;
    animation: fadeUp .8s .35s both;
}

    .hero h1 span {
        background: linear-gradient(90deg,var(--orange-light),#fbbf24);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,.68);
    max-width: 440px;
    margin-bottom: 36px;
    animation: fadeUp .8s .5s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .8s .65s both;
}

.btn-primary {
    background: linear-gradient(135deg,var(--orange),#e8650a);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249,115,22,.4);
    transition: transform .2s,box-shadow .2s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: -.01em;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(249,115,22,.5);
    }

.btn-outline {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.25);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: -.01em;
    backdrop-filter: blur(8px);
}

    .btn-outline:hover {
        border-color: rgba(255,255,255,.6);
        background: rgba(255,255,255,.14);
        color: #fff;
    }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp .9s .45s both;
}

.hero-mosaic {
    position: relative;
    width: 100%;
    max-width: 620px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}

.mosaic-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(26,86,219,.3),transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    filter: blur(48px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

.mosaic-tall {
    grid-row: span 2;
    height: 400px;
}

.mosaic-img {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

    .mosaic-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

.mosaic-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: .7rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02em;
}

.mosaic-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 50%,rgba(13,27,62,.5) 100%);
    border-radius: 18px;
}

.mosaic-sm {
    height: 193px;
}

/*=== NAVBAR ====*/

.nav-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26,86,219,0.1);
    animation: slideDown .6s ease forwards;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

    .nav-links a {
        font-size: .875rem;
        font-weight: 500;
        color: var(--text-muted);
        text-decoration: none;
        transition: color .2s;
        font-family: "Outfit", sans-serif !important;
    }

.nav-cta {
    background: #0d1b3e;
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(26,86,219,.3);
    transition: transform .2s,box-shadow .2s;
    margin-left: 12px;
    text-decoration: none;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(26,86,219,.4);
        color: #fff;
    }

a {
    text-decoration: none;
}


/* ===== Contact page ===== */

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.d1 {
    animation-delay: 0.05s;
}

.fade-up {
    animation: fadeUp 0.55s ease both;
}

.about-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 10px;
}

    .hero h1 span {
        font-style: normal;
        background: linear-gradient(90deg, var(--orange-300), var(--orange-500));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.62);
    max-width: 560px;
    line-height: 1.7;
}

/*.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}*/

.contact-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

.icon-orange {
    background: #fff3e6;
    color: var(--orange-500);
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}

.card-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.card-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.5;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange-400), var(--orange-500));
    border-radius: 4px 0 0 4px;
}

.icon-blue {
    background: var(--blue-100);
    color: var(--blue-500);
}

.icon-navy {
    background: #e8eaf4;
    color: var(--navy-700);
}

.card-value a {
    color: var(--blue-500);
    text-decoration: none;
}

.biz-row {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2.5rem;
}

    .biz-row .card-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

.services-block {
    margin-bottom: 3rem;
}

.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-800);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.section-sub {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-chip {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    cursor: default;
}

    .service-chip svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        color: var(--orange-500);
    }

    .service-chip:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
        border-color: var(--orange-300);
    }

.sms-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(55,138,221,0.2) 0%, transparent 65%), radial-gradient(ellipse 35% 60% at 10% 80%, rgba(224,123,42,0.15) 0%, transparent 55%);
    pointer-events: none;
}

.sms-block {
    background: var(--navy-900);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.sms-inner {
    position: relative;
}

.sms-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.sms-icon {
    width: 48px;
    height: 48px;
    background: rgba(55,138,221,0.15);
    border: 1px solid rgba(55,138,221,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sms-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

.sms-icon svg {
    width: 24px;
    height: 24px;
    color: var(--blue-400);
}

.sms-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.75rem;
    padding-left: 62px;
}

.sms-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sms-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    backdrop-filter: blur(4px);
}

.sms-cmd {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-400);
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.sms-action {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.sms-note {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.25rem;
}

/*=== ABOUT US ==== */

.section-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.who-text p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.section-label h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-800);
    letter-spacing: -0.015em;
    margin-bottom: 0px;
}

.who-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-pill {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.si-orange {
    background: #fff3e6;
    color: var(--orange-500);
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    display: block;
    margin-bottom: 2px;
}

.stat-text span {
    font-size: 13px;
    color: var(--gray-600);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
}



.feature-card h3 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 7px;
    letter-spacing: -0.005em;
}

.feature-card p {
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.65;
}

.fi-1 {
    background: #fff3e6;
    color: var(--orange-500);
}

.feature-icon svg {
    width: 19px;
    height: 19px;
}

.section-label-bar {
    width: 4px;
    height: 26px;
    background: linear-gradient(180deg, var(--orange-400), var(--orange-500));
    border-radius: 4px;
    flex-shrink: 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--gray-300);
}

    .feature-card:hover::before {
        opacity: 1;
    }

.commitment-body p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.commitment-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-chip {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .highlight-chip::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange-500), var(--blue-400));
    }

    .highlight-chip svg {
        width: 26px;
        height: 26px;
        color: var(--orange-400);
        margin-bottom: 8px;
    }

    .highlight-chip strong {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: 0.02em;
    }

.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-contact-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-ci-navy {
    background: #e8eaf4;
    color: var(--navy-700);
}

.about-ci-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.about-ci-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.55;
}

.about-ci-icon svg {
    width: 17px;
    height: 17px;
}

.about-ci-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.about-ci-orange {
    background: #fff3e6;
    color: var(--orange-500);
}

.about-ci-value a {
    color: var(--blue-500);
    text-decoration: none;
}

.about-ci-blue {
    background: var(--blue-100);
    color: var(--blue-500);
}

.about-ci-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.fi-2 {
    background: var(--blue-100);
    color: var(--blue-500);
}

.fi-3 {
    background: #e8eaf4;
    color: var(--navy-700);
}

.fi-4 {
    background: #e8f5e9;
    color: #2e7d32;
}

.fi-5 {
    background: #fce4ec;
    color: #c2185b;
}

.fi-6 {
    background: #ede7f6;
    color: #5e35b1;
}

footer {
    background: var(--navy);
    padding: 24px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: absolute;
    bottom: -67px;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
    font-weight: 500;
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    margin-left: 10px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

/*==== Term & Condition ====*/

.hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.hero-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-400);
}

.hero-meta span {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

.toc {
    position: sticky;
    top: 84px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.page-wrap {
    padding-top: 48px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}

.toc-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.toc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 0;
}

    .toc ul li a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: var(--gray-600);
        text-decoration: none;
        padding: 7px 10px;
        border-radius: 8px;
        transition: background 0.18s, color 0.18s;
        line-height: 1.4;
    }

        .toc ul li a .toc-num {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            background: var(--gray-100);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: var(--gray-400);
        }

.term-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.intro-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    position: relative;
}

.intro-box {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
}

    .intro-box::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(55,138,221,0.2) 0%, transparent 70%);
        pointer-events: none;
    }

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.section-num {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    color: var(--white);
}

.sn-orange {
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
}

.section-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-800);
    letter-spacing: -0.01em;
    margin-bottom: 0
}

.section-card p:last-child {
    margin-bottom: 0;
}

.sn-blue {
    background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
}

.term-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 1rem 0;
    padding-left: 0
}

    .term-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14.5px;
        color: var(--gray-700);
        line-height: 1.6;
    }

        .term-list li::before {
            content: '';
            flex-shrink: 0;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--orange-500);
            margin-top: 8px;
        }

.sms-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1rem 0;
}

.sms-chip {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray-700);
}

    .sms-chip svg {
        width: 16px;
        height: 16px;
        color: var(--blue-500);
        flex-shrink: 0;
    }

.sn-green {
    background: linear-gradient(135deg, #43a047, #2e7d32);
}

.sn-navy {
    background: linear-gradient(135deg, #2651a0, var(--navy-700));
}

.sn-teal {
    background: linear-gradient(135deg, #0097a7, #00695c);
}

.sn-purple {
    background: linear-gradient(135deg, #7e57c2, #4a148c);
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.term-contact-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.ack-banner {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--orange-500);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

    .ack-banner svg {
        width: 20px;
        height: 20px;
        color: var(--orange-500);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .ack-banner p {
        font-size: 13.5px;
        color: var(--gray-600);
        line-height: 1.7;
        margin: 0;
    }

/*===== Profile page =====*/

.Profile-section {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.left-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    animation: slideIn 0.5s ease both;
}

.profile-card-top {
    height: 80px;
    background: linear-gradient(135deg,var(--navy) 0%,#0f2356 50%,#1a3a6e 100%);
    position: relative;
}

    .profile-card-top::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--amber), var(--amber-mid), transparent);
    }

    .profile-card-top::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 18px 18px;
    }

.profile-avatar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem 1.5rem;
    margin-top: -36px;
    position: relative;
    z-index: 1;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--white);
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    overflow: hidden;
}

    .profile-avatar svg {
        width: 24px;
        height: 24px;
        color: var(--text-3);
    }

.profile-avatar-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-3);
    text-align: center;
    line-height: 1.2;
}

.btn-upload-sm {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: var(--ink);
    border: none;
    border-radius: 7px;
    padding: 6px 20px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
}

.profile-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 10px;
    letter-spacing: -0.01em;
}

.profile-role {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.role-badge {
    background: var(--amber-light);
    color: var(--amber);
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 100px;
    border: 1px solid #f5c84260;
}

.quick-info {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--surface-2);
    padding-top: 1.25rem;
}

.qi-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-2);
}

    .qi-row svg {
        width: 15px;
        height: 15px;
        color: var(--text-3);
        flex-shrink: 0;
    }

.right-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    animation: riseUp 0.55s ease both;
}

.block-header {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.block-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bi-amber {
    background: var(--amber-light);
}

    .bi-amber svg {
        width: 18px;
        height: 18px;
        color: var(--amber);
    }

.block-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.block-subtitle {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 1px;
}

.block-body {
    padding: 1.75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
}

.fg-1 {
    grid-column: span 1;
}

.field-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 3px;
}

.field-input, .field-select {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    width: 100%;
    appearance: none;
}

.field {
    display: flex;
    flex-direction: column;
}

.bi-blue {
    background: #eff3ff;
}

    .bi-blue svg {
        width: 18px;
        height: 18px;
        color: var(--blue);
    }

.btn-ghost {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    background: var(--white);
    border: 1.5px solid #d4d0c8;
    border-radius: var(--r-sm);
    padding: 7px 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    text-decoration: none;
}

    .btn-ghost svg {
        width: 14px;
        height: 14px;
    }

.sms-radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/*.sms-radio.r-none {
    border-color: var(--amber);
    background: var(--amber-light);
}*/

.sms-radio {
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    position: relative;
}

.r-none .radio-pip {
    border-color: var(--amber);
}

.radio-pip {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.r-none .radio-pip::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
}*/

.radio-content .rl {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
}

.radio-content .rd {
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.45;
}

.sms-radio:hover {
    border-color: var(--text-3);
}

.sms-radio.r-out {
    border-color: var(--blue);
    background: #eff3ff;
}

.sms-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.sms-left-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.25rem;
    display: flex;
    gap: 12px;
}

.sms-alert-icon {
    width: 30px;
    height: 30px;
    background: var(--amber-light);
    border: 1px solid #f5c84250;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

    .sms-alert-icon svg {
        width: 15px;
        height: 15px;
        color: var(--amber);
    }

.sms-left-text {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.75;
}

    .sms-left-text p {
        margin-bottom: 8px;
    }

.txt-amber {
    color: var(--amber);
    font-weight: 700;
}

.txt-blue {
    color: var(--blue);
    font-weight: 700;
}

.sms-right-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sms-pill {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 14px;
}

.pb-red {
    background: var(--red);
}


.pill-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--white);
    flex-shrink: 0;
}

.pill-text {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
    padding-top: 2px;
}

.pb-blue {
    background: var(--blue);
}

.pb-green {
    background: var(--green);
}

.sms-footer {
    border-top: 1px solid var(--surface-2);
    padding: 12px 1.75rem;
    background: var(--surface);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-2);
}

    .sms-footer svg {
        width: 15px;
        height: 15px;
        color: var(--text-3);
    }

    .sms-footer strong {
        color: #dc2626;
        font-weight: 700;
    }

.SaveLogin {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
}

p.SaveLogin a {
    font-weight: 700;
    color: #d4820a;
}

.sms-radio.r-none.active {
    border-color: var(--amber);
    background: var(--amber-light);
}

.sms-radio.active .radio-pip::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #d4820a;
    border-radius: 50%;
    position: absolute;
    inset: 0;
    margin: auto;
}

.sms-radio.r-out.active {
    border-color: var(--red);
    background: #fef2f2;
}

    .sms-radio.r-out.active .radio-pip::after {
        background: var(--red);
    }

.sms-banner {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.banner-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ib-blue {
    background: var(--blue-100);
}

.banner-icon-box svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
}

.ib-blue svg {
    color: var(--blue-500);
    stroke: var(--blue-500);
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.banner-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0
}

    .banner-text a {
        color: var(--blue-500);
        font-weight: 600;
        text-decoration: none;
    }

.btn-banner-login {
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    border: none;
    border-radius: 9px;
    padding: 10px 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}

    .btn-banner-login svg {
        width: 16px;
        height: 16px;
    }

    .btn-banner-login:hover {
        opacity: 0.9;
        transform: translateY(-1px);
        color: #fff
    }

.profile-avatar img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}
