/* ============================================================
   NAVIGO TECH SOLUTIONS — Main Stylesheet
   Single file. No conflicts. Built from scratch 2026-03-16.
   Stack: Bootstrap 5 + this file only.
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ── */
:root {
    --blue:       #1E90FF;
    --blue-dark:  #0066CC;
    --blue-deep:  #004fa3;
    --dark:       #0D1117;
    --text:       #111827;
    --body:       #374151;
    --muted:      #6B7280;
    --border:     #E5E7EB;
    --light:      #F9FAFB;
    --white:      #ffffff;
    --green:      #10B981;
    --yellow:     #F59E0B;
    --font-head:  'Montserrat', sans-serif;
    --font-body:  'Inter', sans-serif;
    --radius:     12px;
    --radius-lg:  20px;
    --shadow:     0 4px 24px rgba(0,0,0,.07);
    --shadow-blue:0 8px 32px rgba(30,144,255,.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--body);
    background: #fff;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--text);
    line-height: 1.2;
    margin-bottom: .5rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { line-height: 1.75; }

/* ── Section padding ── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-label {
    display: inline-block;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: .82rem;
}
.top-bar a {
    color: rgba(255,255,255,.65);
    transition: color .2s;
}
.top-bar a:hover { color: #fff; }
.top-bar .top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar .top-contacts { display: flex; gap: 20px; align-items: center; }
.top-bar .top-contacts i { color: var(--blue); margin-right: 5px; }
.top-bar .top-social { display: flex; gap: 14px; }
.top-bar .top-social a { color: rgba(255,255,255,.5); font-size: .85rem; }
.top-bar .top-social a:hover { color: var(--blue); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
}
.navbar-main.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.navbar-main .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}
.navbar-main .brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}
.navbar-main .brand-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.2;
}
.navbar-main .brand-name span { color: var(--text); font-weight: 600; font-size: .85rem; display: block; }
.navbar-main .nav-link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--body) !important;
    padding: 28px 14px !important;
    transition: color .2s;
    position: relative;
}
.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--blue);
    transform: translateX(-50%);
    transition: width .25s;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--blue) !important;
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    width: 100%;
}
.navbar-main .nav-cta {
    background: var(--blue);
    color: #fff !important;
    border-radius: 999px;
    padding: 10px 22px !important;
    font-size: .85rem;
    font-weight: 700;
    margin-left: 8px;
    transition: background .2s, transform .2s;
}
.navbar-main .nav-cta::after { display: none; }
.navbar-main .nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
/* Navbar Dropdown */
.navbar-main .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding: 6px;
    min-width: 190px;
    margin-top: 8px;
}
.navbar-main .dropdown-item {
    border-radius: 8px;
    padding: 9px 14px;
    font-size: .875rem;
    color: var(--gray-dark);
    font-weight: 500;
    transition: background .15s, color .15s;
}
.navbar-main .dropdown-item:hover,
.navbar-main .dropdown-item:focus { background: #EFF6FF; color: var(--blue); }
.navbar-main .dropdown-item.active { background: #EFF6FF; color: var(--blue); font-weight: 600; }
.navbar-main .dropdown-toggle::after { margin-left: 5px; vertical-align: 0.15em; }
@media (max-width: 991px) {
    .navbar-main .dropdown-menu { box-shadow: none; border: none; padding-left: 12px; margin-top: 0; }
}
.navbar-toggler {
    border: 1.5px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
}
.navbar-toggler:focus { box-shadow: none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 55%, var(--blue-deep) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero .hero-inner { position: relative; z-index: 1; }
.hero .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: .75rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: #b3e0ff; }
.hero .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.75;
}
.hero .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero .hero-proof {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero .proof-item { text-align: center; }
.hero .proof-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.75rem; font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero .proof-label {
    font-size: .72rem; color: rgba(255,255,255,.6);
    text-transform: uppercase; letter-spacing: .06em;
    margin-top: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-ng {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: #fff;
    font-family: var(--font-head);
    font-size: .9rem; font-weight: 700;
    padding: 14px 30px;
    border-radius: 999px;
    border: none; cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    text-decoration: none;
}
.btn-primary-ng:hover {
    background: var(--blue-dark); color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}
.btn-outline-ng {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    font-family: var(--font-head);
    font-size: .9rem; font-weight: 700;
    padding: 13px 30px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.4);
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
    text-decoration: none;
}
.btn-outline-ng:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-ng.dark {
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline-ng.dark:hover {
    background: var(--blue);
    color: #fff;
}

/* ============================================================
   CARDS
   ============================================================ */
.ng-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ng-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
    border-color: rgba(30,144,255,.3);
}
.ng-card .card-icon {
    width: 54px; height: 54px;
    background: #EBF4FF;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 1.35rem;
    margin-bottom: 20px;
    transition: background .25s, color .25s;
}
.ng-card:hover .card-icon { background: var(--blue); color: #fff; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    padding: 48px 0;
}
.stats-bar .stat-item { text-align: center; }
.stats-bar .stat-num {
    font-family: var(--font-head);
    font-size: 2.25rem; font-weight: 800;
    color: #fff; display: block; line-height: 1;
}
.stats-bar .stat-label {
    font-size: .82rem; color: rgba(255,255,255,.75);
    margin-top: 6px; line-height: 1.4;
}
.stats-bar .stat-divider {
    width: 1px; background: rgba(255,255,255,.2);
    align-self: stretch;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .section-label { display: block; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); max-width: 540px; margin: 0 auto; font-size: 1rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
    border-color: rgba(30,144,255,.3);
}
.service-card .s-icon {
    width: 56px; height: 56px;
    background: #EBF4FF; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 1.4rem;
    margin-bottom: 20px;
    transition: background .25s, color .25s;
}
.service-card:hover .s-icon { background: var(--blue); color: #fff; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--muted); margin-bottom: 18px; line-height: 1.65; }
.service-card .s-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.service-card .s-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: .85rem; color: var(--body);
}
.service-card .s-feature i { color: var(--blue); font-size: .8rem; }
.service-card .s-link {
    font-family: var(--font-head);
    font-size: .82rem; font-weight: 700;
    color: var(--blue);
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap .2s;
}
.service-card .s-link:hover { gap: 10px; }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.t-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.t-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-blue);
    border-color: rgba(30,144,255,.3);
}
.t-card .t-stars { color: var(--yellow); font-size: .9rem; letter-spacing: 2px; }
.t-card .t-quote {
    font-size: .93rem; line-height: 1.75; color: var(--body);
    font-style: italic; flex: 1;
}
.t-card .t-quote::before { content: '\201C'; }
.t-card .t-quote::after  { content: '\201D'; }
.t-card .t-reviewer {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.t-card .t-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-head);
    font-size: .9rem; font-weight: 700; flex-shrink: 0;
}
.t-card .t-name { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--text); }
.t-card .t-meta { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.t-card .t-tag {
    display: inline-block; font-size: .7rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px;
    background: #EBF4FF; color: var(--blue);
    margin-top: 4px;
}

/* ============================================================
   PROOF / CASE CARDS
   ============================================================ */
.proof-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color .25s, box-shadow .25s;
}
.proof-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(30,144,255,.1);
}
.proof-card .p-industry {
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--blue); margin-bottom: 10px;
    display: flex; align-items: center; gap: 6px;
}
.proof-card h4 { font-size: 1rem; margin-bottom: 14px; }
.proof-card .p-metrics { display: flex; flex-direction: column; gap: 8px; }
.proof-card .p-metric {
    display: flex; align-items: center; gap: 8px;
    font-size: .86rem; color: var(--body);
}
.proof-card .p-metric .up { color: var(--green); font-weight: 700; }
.proof-card .p-metric .val { font-weight: 700; color: var(--text); }
.proof-card .p-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 18px; font-size: .82rem; font-weight: 700;
    color: var(--blue); transition: gap .2s;
}
.proof-card .p-link:hover { gap: 10px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(30,144,255,.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section .cta-inner { position: relative; z-index: 1; }
.cta-section .section-label { color: rgba(255,255,255,.6); }
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 500px; margin: 0 auto 32px; }
.cta-section .cta-checks {
    margin-top: 20px; color: rgba(255,255,255,.4); font-size: .82rem;
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.cta-section .cta-checks i { color: var(--green); margin-right: 5px; }

/* Blue CTA variant */
.cta-section.blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.cta-section.blue::before { display: none; }
.cta-section.blue p { color: rgba(255,255,255,.8); }
.cta-section.blue .cta-checks { color: rgba(255,255,255,.7); }

/* ============================================================
   INDUSTRIES STRIP
   ============================================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 768px) { .industries-grid { grid-template-columns: repeat(2,1fr); } }
.industry-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: border-color .2s, background .2s;
}
.industry-item:hover { border-color: var(--blue); background: #EBF4FF; }
.industry-item .ind-icon { font-size: 1.5rem; margin-bottom: 8px; color: var(--blue); display: block; }
.industry-item span { font-size: .85rem; font-weight: 600; color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(160deg, #071524 0%, #0d2240 100%);
    padding: 60px 0 0;
    color: rgba(255,255,255,.6);
}
.footer h5 {
    font-family: var(--font-head);
    font-size: .95rem; font-weight: 700;
    color: #fff; margin-bottom: 20px;
}
.footer a { color: rgba(255,255,255,.55); transition: color .2s; font-size: .88rem; }
.footer a:hover { color: var(--blue); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer .footer-brand { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--blue); }
.footer .footer-tagline { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 4px; line-height: 1.5; }
.footer .footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer .footer-social a {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); font-size: .9rem;
    transition: background .2s, color .2s;
}
.footer .footer-social a:hover { background: var(--blue); color: #fff; }
.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    margin-top: 40px;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer .footer-bottom a { color: rgba(255,255,255,.4); }
.footer .footer-bottom a:hover { color: var(--blue); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 52px; height: 52px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    position: relative;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-blue);
}
.price-card.popular {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(30,144,255,.12);
}
.price-card .popular-badge {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--blue); color: #fff;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 999px;
}
.price-card .price-name {
    font-family: var(--font-head);
    font-size: .85rem; font-weight: 700;
    color: var(--muted); text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: 16px;
}
.price-card .price-amount {
    font-family: var(--font-head);
    font-size: 2.25rem; font-weight: 800;
    color: var(--text); line-height: 1;
}
.price-card .price-amount span { font-size: .9rem; color: var(--muted); font-weight: 500; }
.price-card .price-features {
    list-style: none; padding: 0; margin: 20px 0 28px;
    display: flex; flex-direction: column; gap: 10px;
}
.price-card .price-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .88rem; color: var(--body);
}
.price-card .price-features li i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.form-label { font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control, .form-select {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 12px 16px !important;
    font-size: .9rem !important;
    color: var(--text) !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.form-control:focus, .form-select:focus {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(30,144,255,.12) !important;
    outline: none !important;
}
.info-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 24px;
}
.info-item .info-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: #EBF4FF;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 1rem; flex-shrink: 0;
}
.info-item .info-label { font-size: .78rem; color: var(--muted); margin-bottom: 2px; }
.info-item .info-val { font-size: .92rem; font-weight: 600; color: var(--text); }
.info-item .info-val a { color: var(--text); }
.info-item .info-val a:hover { color: var(--blue); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 55%, var(--blue-deep) 100%);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}
.page-hero .page-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
    color: #fff; font-size: .72rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px;
    margin-bottom: 20px;
}
.page-hero h1 { color: #fff; }
.page-hero h1 span { color: #b3e0ff; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 580px; margin: 16px auto 0; font-size: 1.05rem; line-height: 1.7; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.ng-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; color: rgba(255,255,255,.5);
    margin-bottom: 20px; justify-content: center;
}
.ng-breadcrumb a { color: rgba(255,255,255,.5); }
.ng-breadcrumb a:hover { color: #fff; }
.ng-breadcrumb .sep { color: rgba(255,255,255,.25); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-blue { color: var(--blue) !important; }
.text-muted-ng { color: var(--muted) !important; }
.bg-light-ng { background: var(--light) !important; }
.fw-800 { font-weight: 800 !important; }
.rounded-pill-ng { border-radius: 999px !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .navbar-main .nav-link { padding: 12px 16px !important; }
    .navbar-main .nav-link::after { display: none; }
    .navbar-main .nav-cta { margin: 8px 16px 16px; display: inline-flex; }
    .top-bar .top-social { display: none; }
}
@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .hero { padding: 72px 0 60px; }
    .hero .hero-proof { gap: 20px; margin-top: 40px; }
    .stats-bar .stat-divider { display: none; }
    .footer .footer-bottom { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
    .hero .hero-btns { flex-direction: column; align-items: center; }
    .hero .hero-btns .btn-primary-ng,
    .hero .hero-btns .btn-outline-ng { width: 100%; justify-content: center; }
}
