:root {
    --indigo: #2e1a6e;
    --violet: #5c3db5;
    --teal: #1cc8e0;
    --rose: #d155b0;
    --dark: #0c0a17;
    --card-bg: #f4fcff;
    --white: #fff;
    --muted: #64588a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #1a1230;
    background: #fff;
    overflow-x: hidden;
}

/* ── NAVBAR ─────────────────── */
.navbar-brand img {
    width: 240px;
}

.navbar {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(46, 26, 110, .07);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(46, 26, 110, .05);
}

.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .02em;
}

.brand-sub {
    font-size: .68rem;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    display: block;
    margin-top: -4px;
}

.navbar-nav .nav-link {
    color: #2a1a55;
    font-weight: 500;
    font-size: .9rem;
    padding: 6px 14px !important;
    transition: color .2s;
}

.navbar-nav .nav-link:hover {
    color: var(--violet);
}

.btn-cta {
    background: linear-gradient(88deg, #247aba, #3438a3, #672a96, #af497b, #8c24a5);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 24px !important;
    font-weight: 600;
    font-size: .88rem;
}

.btn-cta:hover {
    opacity: .9;
}

/* ── HERO ─────────────────── */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #0c0a17 0%, #180d3a 50%, #071828 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(92, 61, 181, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 61, 181, .06) 1px, transparent 1px);
    background-size: 56px 56px;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 55% at 75% 40%, rgba(92, 61, 181, .3), transparent 70%),
        radial-gradient(ellipse 35% 40% at 20% 70%, rgba(28, 200, 224, .18), transparent 65%),
        radial-gradient(ellipse 25% 30% at 55% 80%, rgba(209, 85, 176, .15), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(28, 200, 224, .12);
    border: 1px solid rgba(28, 200, 224, .35);
    color: var(--teal);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero h1 span {
    background: linear-gradient(88deg, #247aba, #3438a3, #672a96, #af497b, #8c24a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 15px;
}

.hero-tag {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .8);
    font-size: .78rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
}

.btn-hero {
    background: linear-gradient(88deg, #247aba, #3438a3, #672a96, #af497b, #8c24a5);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 38px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 8px 32px rgba(92, 61, 181, .4);
    text-decoration: none;
    display: inline-block;
    transition: transform .2s, box-shadow .2s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(92, 61, 181, .55);
    color: #fff;
}

.btn-hero-outline {
    border: 1px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .85);
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background .2s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

/* floating stat cards */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stat-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(12px);
    animation: statFloat 5s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 1s;
}

.stat-card:nth-child(3) {
    animation-delay: .5s;
}

.stat-card:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes statFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.stat-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

.stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 4px;
}

/* ── SECTIONS ─────────────── */
section {
    padding: 70px 0;
}

.eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 10px;
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.sec-title span {
    background: linear-gradient(88deg, #247aba, #3438a3, #672a96, #af497b, #8c24a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sec-lead {
    font-size: 1.03rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 580px;
}

/* ── ABOUT ─────────────────── */
.about-sec {
    background: var(--card-bg);
}

.about-card {
    background: #fff;
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 4px 32px rgba(46, 26, 110, .07);
    height: 100%;
    border: 1px solid rgba(46, 26, 110, .06);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

/* ── SOCIAL COMMERCE ────────── */
.sc-card {
    padding: 32px 22px;
    border-radius: 20px;
    border: 1px solid rgba(46, 26, 110, .1);
    text-align: center;
    background: #fff;
    transition: transform .3s, box-shadow .3s;
}

.sc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(46, 26, 110, .1);
}

.sc-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}

.sc-card h5 {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 9px;
    color: var(--indigo);
}

.sc-card p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── PRODUCTS ───────────────── */
.products-sec {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.products-sec::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 61, 181, .22), transparent 70%);
}

.products-sec::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 200, 224, .15), transparent 70%);
}

.products-sec .sec-title,
.products-sec .eyebrow {
    color: #fff;
}

.products-sec .sec-lead {
    color: rgba(255, 255, 255, .6);
}

.prod-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 60px;
    padding: 13px 22px;
    color: #fff;
    font-size: .88rem;
    font-weight: 500;
    margin: 5px;
    backdrop-filter: blur(6px);
    transition: all .25s;
}

.prod-pill:hover {
    background: rgba(92, 61, 181, .28);
    border-color: rgba(92, 61, 181, .5);
}

.prod-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--rose));
}

/* ── MODEL ───────────────────── */
.model-sec {
    background: var(--card-bg);
}

.step-card {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 26px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(46, 26, 110, .07);
    transition: box-shadow .3s;
}

.step-card:hover {
    box-shadow: 0 10px 40px rgba(46, 26, 110, .1);
}

.step-num {
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-text h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1230;
}

.step-text p {
    font-size: .88rem;
    color: var(--muted);
    margin: 0;
}

/* ── DISCIPLINE ──────────────── */
.disc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid #000;
    font-weight: 500;
    border-radius: 16px;
    font-size: .93rem;
    box-shadow: 5px 5px 0px #2977c2;
}

.disc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    flex-shrink: 0;
}

/* ── TECH ────────────────────── */
.tech-sec {
    background: #fff;
}

.tech-card {
    padding: 28px 20px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid rgba(46, 26, 110, .08);
    text-align: center;
    transition: transform .3s;
}

.tech-card:hover {
    transform: translateY(-4px);
}

.tech-card .t-icon {
    font-size: 1.9rem;
    margin-bottom: 10px;
    display: block;
}

.tech-card h6 {
    font-weight: 700;
    font-size: 18px;
    color: var(--indigo);
    margin: 0;
}

/* ── GOVERNANCE ──────────────── */
.gov-sec {
    background: var(--card-bg);
}

.gov-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(46, 26, 110, .07);
}

.gov-item:last-child {
    border: none;
}

.gov-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8rem;
    flex-shrink: 0;
}

/* ── VISION / MISSION ──────── */
.vision-sec {
    background: linear-gradient(135deg, var(--indigo) 0%, #1a0d3d 55%, #091a30 100%);
    position: relative;
    overflow: hidden;
}

.vision-sec::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(28, 200, 224, .12), transparent);
}

.vcard {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 40px 34px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    height: 100%;
}

.vcard .v-label {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 12px;
}

.vcard h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
}

.vcard p,
.vcard li {
    color: rgba(255, 255, 255, .7);
    font-size: .93rem;
    line-height: 1.8;
}

.vcard ul {
    list-style: none;
    padding: 0;
}

.vcard ul li {
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vcard ul li::before {
    content: '→';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── WHY US ──────────────────── */
.why-sec {
    background: #fff;
}

.why-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    font-weight: 500;
    border-radius: 16px;
    font-size: .93rem;
    box-shadow: 5px 5px 0px #2977c2;
    transition: transform .2s, box-shadow .2s;
}

.why-check {
    color: var(--violet);
    font-size: 1.1rem;
}

/* ── CORPORATE ───────────────── */
.corp-sec {
    /* background: linear-gradient(135deg, #f7f5ff, #eef6ff); */
    border-top: 1px solid rgba(46, 26, 110, .07);
}

.corp-table td {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(46, 26, 110, .07);
    font-size: .9rem;
}

.corp-table td:first-child {
    font-weight: 700;
    color: var(--indigo);
    width: 42%;
}

/* ── FOOTER ──────────────────── */
footer {
    background: var(--card-bg);
    padding: 38px 0;
}

.footer-logo {
    width: 250px;
    padding: 10px;
    background-color: #fff;
    border-radius: 12px;
    mix-blend-mode: multiply;
}

footer .part_head {
    padding: 10px;
    border-radius: 12px;
    background-color: #2977c2;
    color: #fff;
    display: inline-block;
}

footer p {
    color: rgb(29, 29, 29);
    font-size: 16px;
    margin: 0;
}

footer .f-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 6px;
}

.footer-links {
    color: #2977c2;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

.app_logo img {
    width: 150px;
}

.social_logo img {
    width: 30px;
}

.top-bar {
    background-color: #2977c2;
    color: #fff;
    padding: 5px 10px;
}

/* ── ANIMATIONS ──────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .7s ease both;
}

.fade-up-2 {
    animation: fadeUp .7s .15s ease both;
}

.fade-up-3 {
    animation: fadeUp .7s .3s ease both;
}

.fade-up-4 {
    animation: fadeUp .7s .45s ease both;
}

@media(max-width:768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-stats {
        margin-top: 40px;
    }

    .top-bar p{
        font-size: 12px;
    }
}

/* ── HERO BANNER ── */
.page-hero {
    background: linear-gradient(135deg, #0c0a17 0%, #180d3a 55%, #071828 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(92, 61, 181, .3), transparent 70%),
        radial-gradient(ellipse 35% 40% at 15% 70%, rgba(28, 200, 224, .15), transparent 65%);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(92, 61, 181, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 61, 181, .06) 1px, transparent 1px);
    background-size: 56px 56px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero .eyebrow {
    display: inline-block;
    background: rgba(28, 200, 224, .12);
    border: 1px solid rgba(28, 200, 224, .35);
    color: var(--teal);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero h1 span {
    background: linear-gradient(135deg, var(--teal), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    line-height: 1.7;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 7px 18px;
    transition: all .2s;
    margin-bottom: 28px;
}

.back-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
}

/* ── TOC ── */
.toc-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 28px 30px;
    border: 1px solid rgba(46, 26, 110, .09);
    position: sticky;
    top: 88px;
}

.toc-card h6 {
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 16px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 6px;
}

.toc-list a {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 8px;
    transition: all .2s;
}

.toc-list a:hover,
.toc-list a.active {
    background: rgba(92, 61, 181, .1);
    color: var(--violet);
}

.toc-num {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── CONTENT ── */
.content-area {
    padding: 56px 0 80px;
}

.clause {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 26, 110, .08);
    box-shadow: 0 2px 20px rgba(46, 26, 110, .04);
    transition: box-shadow .3s;
}

.clause:hover {
    box-shadow: 0 8px 36px rgba(46, 26, 110, .09);
}

.clause-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.clause-num {
    min-width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    flex-shrink: 0;
}

.clause-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--indigo);
    line-height: 1.2;
}

.clause-body {
    font-size: .93rem;
    color: #3a2f5a;
    line-height: 1.85;
}

.clause-body p {
    margin-bottom: 10px;
}

.clause-body p:last-child {
    margin-bottom: 0;
}

.clause-body ul {
    padding-left: 18px;
    margin: 8px 0 0;
}

.clause-body ul li {
    margin-bottom: 6px;
    color: #3a2f5a;
}

.clause-body .highlight-box {
    background: var(--card-bg);
    border-left: 3px solid var(--violet);
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    margin: 12px 0;
    font-size: .9rem;
    color: var(--indigo);
    font-weight: 500;
}

.contact-box {
    background: linear-gradient(135deg, var(--violet), var(--teal));
    border-radius: 16px;
    padding: 20px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.contact-box .c-icon {
    font-size: 1.5rem;
}

.contact-box a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.contact-box a:hover {
    color: rgba(255, 255, 255, .8);
}

/* ── AGREEMENT BANNER ── */
.agree-banner {
    background: linear-gradient(135deg, #0c0a17, #180d3a);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(92, 61, 181, .3);
    position: relative;
    overflow: hidden;
    margin-top: 12px;
}

.agree-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(92, 61, 181, .2), transparent 70%);
}

.agree-banner h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.agree-banner p {
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}