    :root {
        --gold: #C9952A;
        --gold-light: #E8B84B;
        --gold-pale: #F5E6C3;
        --navy: #0B1120;
        --navy-mid: #131D33;
        --navy-soft: #1C2B4A;
        --crimson: #9B2335;
        --crimson-light: #C13245;
        --cream: #FAF6EE;
        --text-light: #E8DFD0;
        --text-muted: #8A9BB8;
        --border: rgba(201, 149, 42, 0.25);
    }

    .abus-gold-line {
        display: inline-block;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), transparent);
        margin-bottom: 1rem;
    }

    .abus-gold-line.center {
        display: block;
        margin: 0 auto 1rem;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    /* ─── NAV ─── */
    .navbar-chutkee {
        background: rgba(11, 17, 32, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar-brand-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--gold-light) !important;
        letter-spacing: -0.02em;
        text-decoration: none;
    }

    .navbar-brand-logo span {
        color: var(--crimson-light);
    }

    .nav-tagline {
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.85rem;
        color: var(--text-muted);
        letter-spacing: 0.08em;
    }

    .nav-link-custom {
        color: var(--text-muted) !important;
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: color 0.3s;
        text-decoration: none;
        padding: 0.5rem 1rem;
    }

    .nav-link-custom:hover {
        color: var(--gold-light) !important;
    }

    /* ─── HERO ─── */
    .abus-hero {
        min-height: 100vh;
        background:
            radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 149, 42, 0.12) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 20% 70%, rgba(155, 35, 53, 0.10) 0%, transparent 55%),
            linear-gradient(160deg, #0B1120 0%, #0F1928 50%, #0B1120 100%);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .abus-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(to top, var(--navy), transparent);
    }

    .abus-hero-mandala {
        position: absolute;
        right: -5%;
        top: 50%;
        transform: translateY(-50%);
        width: 600px;
        height: 600px;
        opacity: 0.04;
        background: radial-gradient(circle, transparent 20%, var(--gold) 21%, var(--gold) 22%, transparent 23%),
            radial-gradient(circle, transparent 35%, var(--gold) 36%, var(--gold) 37%, transparent 38%),
            radial-gradient(circle, transparent 48%, var(--gold) 49%, var(--gold) 50%, transparent 51%),
            radial-gradient(circle, transparent 62%, var(--gold) 63%, var(--gold) 64%, transparent 65%);
        border-radius: 50%;
        animation: slowSpin 60s linear infinite;
    }

    @keyframes slowSpin {
        to {
            transform: translateY(-50%) rotate(360deg);
        }
    }

    .abus-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(201, 149, 42, 0.12);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 0.4rem 1.2rem;
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gold-light);
        margin-bottom: 2rem;
        animation: fadeUp 0.8s ease both;
    }

    .abus-hero-title {
        font-size: clamp(3rem, 7vw, 6rem);
        font-weight: 900;
        line-height: 1.0;
        color: #fff;
        animation: fadeUp 0.9s ease 0.1s both;
    }

    .abus-hero-title .abus-accent {
        color: var(--gold-light);
    }

    .abus-hero-title .abus-dot {
        color: var(--crimson-light);
    }

    .abus-hero-tagline-hindi {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.4rem, 3vw, 2.2rem);
        font-style: italic;
        font-weight: 400;
        color: var(--gold-pale);
        margin: 1rem 0 0.5rem;
        animation: fadeUp 1s ease 0.2s both;
    }

    .abus-hero-sub {
        font-size: 1.05rem;
        color: var(--text-muted);
        max-width: 560px;
        line-height: 1.8;
        animation: fadeUp 1s ease 0.3s both;
    }

    .abus-hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--navy) !important;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        padding: 1rem 2.2rem;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s;
        animation: fadeUp 1s ease 0.4s both;
        box-shadow: 0 8px 30px rgba(201, 149, 42, 0.3);
    }

    .abus-hero-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(201, 149, 42, 0.45);
    }

    .abus-hero-stats {
        display: flex;
        gap: 3rem;
        margin-top: 3rem;
        animation: fadeUp 1s ease 0.5s both;
    }

    .abus-hero-stat-num {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 900;
        color: var(--gold-light);
    }

    .abus-hero-stat-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ─── SECTION BASE ─── */
    .abs-padding {
        padding: 100px 0;
    }

    .abus-section-label {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 0.75rem;
    }

    .abus-section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
    }

    .abus-section-title .abus-gold {
        color: var(--gold-light);
    }

    .abus-section-desc {
        font-size: 1rem;
        color: var(--text-muted);
        line-height: 1.9;
        max-width: 600px;
    }

    /* ─── ABOUT ─── */
    .abus-about-section {
        background: var(--navy-mid);
    }

    .abus-about-card {
        background: linear-gradient(135deg, rgba(201, 149, 42, 0.08), rgba(155, 35, 53, 0.06));
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
    }

    .abus-about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .abus-cin-tag {
        display: inline-block;
        background: rgba(201, 149, 42, 0.1);
        border: 1px solid var(--border);
        border-radius: 4px;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        color: var(--gold-light);
        font-family: 'DM Sans', sans-serif;
    }

    /* ─── TAGLINE SECTION ─── */
    .abus-tagline-section {
        background: linear-gradient(135deg, var(--crimson) 0%, #6B1522 100%);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .abus-tagline-section::before {
        content: '✦';
        position: absolute;
        font-size: 20rem;
        color: rgba(255, 255, 255, 0.03);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .abus-tagline-big {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.5rem, 6vw, 5rem);
        font-weight: 600;
        font-style: italic;
        color: #fff;
        letter-spacing: 0.02em;
    }

    /* ─── LEGAL ─── */
    .abus-legal-section {
        background: var(--navy);
    }

    .abus-legal-table {
        background: var(--navy-soft);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
    }

    .abus-legal-row {
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .abus-legal-row:last-child {
        border-bottom: none;
    }

    .abus-legal-key {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--gold);
        min-width: 160px;
        font-weight: 600;
    }

    .abus-legal-val {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    /* ─── FOUNDER ─── */
    .abus-founder-section {
        background: var(--navy-mid);
    }

    .abus-founder-card {
        background: var(--navy-soft);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 3rem;
        position: relative;
    }

    .abus-founder-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--crimson));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: #fff;
        font-weight: 900;
        margin-bottom: 1.5rem;
        box-shadow: 0 0 0 4px rgba(201, 149, 42, 0.2);
    }

    .abus-founder-name {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
    }

    .abus-founder-title-tag {
        display: inline-block;
        background: rgba(201, 149, 42, 0.12);
        border: 1px solid var(--border);
        color: var(--gold-light);
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        padding: 0.3rem 1rem;
        border-radius: 100px;
        margin-bottom: 1.5rem;
    }

    /* ─── VISION MISSION ─── */
    .abus-vm-section {
        background: var(--navy);
    }

    .abus-vm-card {
        background: var(--navy-soft);
        border-radius: 16px;
        padding: 3rem;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .abus-vm-card.abus-vision {
        border-top: 3px solid var(--gold);
    }

    .abus-vm-card.abus-mission {
        border-top: 3px solid var(--crimson-light);
    }

    .abus-vm-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .abus-vm-list {
        list-style: none;
        padding: 0;
    }

    .abus-vm-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        font-size: 0.95rem;
        color: var(--text-light);
    }

    .abus-vm-list li::before {
        content: '◆';
        color: var(--gold);
        font-size: 0.6rem;
        margin-top: 0.35rem;
        flex-shrink: 0;
    }

    /* ─── WHY CHUTKEE ─── */
    .abus-why-section {
        background: var(--navy-mid);
    }

    .abus-why-card {
        background: var(--navy);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
    }

    .abus-why-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .abus-why-card:hover {
        border-color: var(--border);
        transform: translateY(-6px);
    }

    .abus-why-card:hover::after {
        transform: scaleX(1);
    }

    .abus-why-num {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 900;
        color: rgba(201, 149, 42, 0.15);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .abus-why-title {
        font-size: 1.05rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.7rem;
    }

    .abus-why-desc {
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* ─── SERVICES ─── */
    .abus-services-section {
        background: var(--navy);
    }

    .abus-service-category {
        margin-bottom: 4rem;
    }

    .abus-service-category-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gold-light);
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .abus-service-category-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, var(--border), transparent);
    }

    .abus-service-card {
        background: var(--navy-soft);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        padding: 1.5rem;
        height: 100%;
        transition: all 0.3s;
    }

    .abus-service-card:hover {
        border-color: var(--border);
        background: rgba(201, 149, 42, 0.05);
    }

    .abus-service-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .abus-service-icon.abus-gold {
        background: rgba(201, 149, 42, 0.15);
        color: var(--gold-light);
    }

    .abus-service-icon.abus-red {
        background: rgba(155, 35, 53, 0.15);
        color: var(--crimson-light);
    }

    .abus-service-icon.abus-blue {
        background: rgba(50, 100, 200, 0.15);
        color: #6B9FE4;
    }

    .abus-service-icon.abus-green {
        background: rgba(40, 160, 100, 0.15);
        color: #5BCB9A;
    }

    .abus-service-card h5 {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .abus-service-card p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    .abus-service-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .abus-service-tag {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 100px;
        padding: 0.2rem 0.7rem;
        font-size: 0.72rem;
        color: var(--text-muted);
    }

    /* ─── TECH SECTION ─── */
    .abus-tech-section {
        background: var(--navy-mid);
    }

    .abus-tech-feature {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        background: var(--navy);
        margin-bottom: 1rem;
        transition: border-color 0.3s;
    }

    .abus-tech-feature:hover {
        border-color: var(--border);
    }

    .abus-tech-feature-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        background: rgba(201, 149, 42, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1.1rem;
    }

    .abus-tech-feature h6 {
        color: #fff;
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .abus-tech-feature p {
        font-size: 0.83rem;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.6;
    }

    /* ─── BENEFITS ─── */
    .abus-benefits-section {
        background: var(--navy);
    }

    .abus-benefit-tabs {
        display: flex;
        gap: 1rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }

    .abus-benefit-tab {
        padding: 0.6rem 1.5rem;
        border-radius: 100px;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        border: 1px solid var(--border);
        transition: all 0.3s;
    }

    .abus-benefit-tab.active {
        background: var(--gold);
        color: var(--navy);
        border-color: var(--gold);
        font-weight: 700;
    }

    .abus-benefit-tab:not(.active) {
        color: var(--text-muted);
    }

    .abus-benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.25rem 1.5rem;
        background: var(--navy-soft);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 1rem;
    }

    .abus-benefit-check {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

    .abus-benefit-check.abus-gold-bg {
        background: rgba(201, 149, 42, 0.15);
        color: var(--gold);
    }

    .abus-benefit-check.abus-red-bg {
        background: rgba(155, 35, 53, 0.15);
        color: var(--crimson-light);
    }

    .abus-benefit-item h6 {
        color: #fff;
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .abus-benefit-item p {
        font-size: 0.83rem;
        color: var(--text-muted);
        margin: 0;
    }

    /* ─── EXPANSION ─── */
    .abus-expansion-section {
        background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
    }

    .abus-expansion-map {
        background: var(--navy);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .abus-expansion-map::before {
        content: '🇮🇳';
        position: absolute;
        font-size: 12rem;
        opacity: 0.04;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .abus-expansion-tier {
        display: inline-block;
        margin: 0.5rem;
        padding: 0.6rem 1.5rem;
        border-radius: 100px;
        font-size: 0.82rem;
        font-weight: 500;
    }

    .abus-tier-1 {
        background: rgba(201, 149, 42, 0.2);
        color: var(--gold-light);
        border: 1px solid rgba(201, 149, 42, 0.3);
    }

    .abus-tier-2 {
        background: rgba(155, 35, 53, 0.15);
        color: #E07080;
        border: 1px solid rgba(155, 35, 53, 0.3);
    }

    .abus-tier-3 {
        background: rgba(50, 100, 200, 0.12);
        color: #80AAEE;
        border: 1px solid rgba(50, 100, 200, 0.25);
    }

    /* ─── FUTURE ROADMAP ─── */
    .abus-roadmap-section {
        background: var(--navy);
    }

    .abus-roadmap-item {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        position: relative;
        padding-bottom: 2.5rem;
    }

    .abus-roadmap-item::before {
        content: '';
        position: absolute;
        left: 19px;
        top: 40px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--gold), transparent);
    }

    .abus-roadmap-item:last-child::before {
        display: none;
    }

    .abus-roadmap-dot {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        border-radius: 50%;
        background: var(--navy-soft);
        border: 2px solid var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1rem;
        z-index: 1;
    }

    .abus-roadmap-content h5 {
        color: #fff;
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .abus-roadmap-content p {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.6;
    }

    /* ─── PROMISE ─── */
    .abus-promise-section {
        background: var(--navy-mid);
        padding: 100px 0;
    }

    .abus-promise-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .abus-promise-item {
        text-align: center;
        padding: 2.5rem 1.5rem;
        background: var(--navy);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s;
    }

    .abus-promise-item:hover {
        border-color: var(--border);
        transform: translateY(-4px);
    }

    .abus-promise-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .abus-promise-item h5 {
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .abus-promise-item p {
        font-size: 0.82rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0;
    }

    /* ─── CONCLUSION ─── */
    .abus-conclusion-section {
        background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 50%, var(--navy) 100%);
        padding: 120px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .abus-conclusion-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 149, 42, 0.08), transparent);
    }

    .abus-conclusion-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 900;
        color: #fff;
        line-height: 1.2;
    }

    .abus-conclusion-tagline {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.5rem, 3.5vw, 2.8rem);
        color: var(--gold-light);
        font-style: italic;
        margin-top: 1rem;
    }

    /* ─── DIVIDER ─── */
    .abus-ornament-divider {
        text-align: center;
        color: var(--gold);
        font-size: 1.2rem;
        letter-spacing: 1rem;
        opacity: 0.4;
        margin: 2rem 0;
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.7s ease;
    }

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

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
        .abs-padding {
            padding: 70px 0;
        }

        .abus-hero-stats {
            gap: 1.5rem;
        }

        .abus-legal-row {
            flex-direction: column;
            gap: 0.3rem;
        }

        .abus-legal-key {
            min-width: auto;
        }
    }