:root {
    --blue: #3b82f6;
    --blue-dark: #2563eb;
    --blue-glow: rgba(59, 130, 246, .18);
    --primary: #d4af37;
    --primary-dark: #c4a02e;
    --dark: #0b1a33;
    --text: #334155;
    --text-light: #5b6b8c;
    --border: #e2e8f0;
    --white: #ffffff;
    --fd-dark: #080d18;
    --fd-dark-2: #0d1525;
    --fd-dark-3: #111c30;
    --fd-border: rgba(255, 255, 255, .07);
    --fd-text-muted: #5a6b85;
    --fd-text-light: #c8d0dc;
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --shadow-lg: 0 12px 48px rgba(59, 130, 246, .15);
    --tr: .22s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ── DESKTOP HEADER ── */
.desktop-header {
    display: none !important;
    position: sticky;
    top: 0;
    z-index: 200;
}

.mobile-header {
    display: block !important;
}

@media (min-width: 992px) {
    .desktop-header {
        display: block !important;
    }

    .mobile-header {
        display: none !important;
    }
}

.topbar-f {
    background: #0f1e35;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    justify-content: space-between;
    border-bottom: 1px solid var(--fd-border);
}

.topbar-f-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-f-left span {
    font-size: 11px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-f-left span i {
    color: var(--blue);
    font-size: 10px;
}

.topbar-f-right {
    display: flex;
    gap: 5px;
    align-items: center;
}

.topbar-f-right a {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 10px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.topbar-f-right a:hover {
    background: var(--blue);
    color: #fff;
}

.navbar-f {
    background: var(--fd-dark-2);
    border-bottom: 2px solid var(--blue);
    display: flex;
    align-items: stretch;
    height: 68px;
    transition: box-shadow .3s;
}

.navbar-f.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, .3);
}

.navbar-f-brand {
    background: var(--blue);
    min-width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 28px;
    flex-shrink: 0;
    text-decoration: none;
    transition: background .2s;
}

.navbar-f-brand:hover {
    background: var(--blue-dark);
}

.navbar-f-brand-name {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.4px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.navbar-f-brand-sub {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-top: 3px;
    text-align: center;
}

.navbar-f-links {
    flex: 1;
    display: flex;
    align-items: stretch;
    list-style: none;
    padding: 0 10px;
    margin: 0;
}

.navbar-f-links>li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.navbar-f-links>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    padding: 0 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s;
}

.navbar-f-links>li>a i {
    font-size: 8px;
    transition: transform .2s;
    opacity: .5;
}

.navbar-f-links>li:hover>a {
    color: #fff;
}

.navbar-f-links>li:hover>a i {
    transform: rotate(180deg);
}

.nav-f-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: var(--fd-dark-2);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .3);
    min-width: 210px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    pointer-events: none;
    list-style: none;
    border: 1px solid var(--fd-border);
    z-index: 300;
    text-transform: uppercase;
}

.navbar-f-links>li:hover .nav-f-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.nav-f-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--fd-text-muted);
    text-decoration: none;
    transition: color .15s, background .15s, padding-left .15s;
}

.nav-f-dropdown li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0;
    transition: opacity .15s;
    flex-shrink: 0;
}

.nav-f-dropdown li a:hover {
    color: #fff;
    background: rgba(59, 130, 246, .08);
    padding-left: 22px;
}

.nav-f-dropdown li a:hover::before {
    opacity: 1;
}

.navbar-f-right {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    border-left: 1px solid var(--fd-border);
    flex-shrink: 0;
}

.navbar-f-phone {
    text-align: right;
}

.navbar-f-phone strong {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.1;
    letter-spacing: -.3px;
}

.navbar-f-phone span {
    font-size: 10px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.btn-f-quote {
    background: var(--blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}

.btn-f-quote:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    color: #fff;
}

/* ── MOBILE HEADER ── */
.topbar {
    background: var(--dark);
    color: #94a3b8;
    font-size: .78rem;
    padding: 7px 0;
}

.topbar a {
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s;
}

.topbar a:hover {
    color: #fff;
}

.topbar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    margin-left: 5px;
    transition: background .2s;
}

.topbar .social-links a:hover {
    background: var(--primary);
    color: #0b1a33;
}

.navbar-main {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 72px;
    transition: box-shadow .3s;
}

.navbar-main.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, .12);
}

.navbar-brand span {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.5px;
}

.navbar-brand span em {
    color: var(--blue);
    font-style: normal;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s, width .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 26, 51, .5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 90vw);
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: var(--dark);
    flex-shrink: 0;
}

.mobile-menu-header span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
}

.mobile-menu-header span em {
    color: var(--blue);
    font-style: normal;
}

.mobile-close {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.mobile-close:hover {
    background: rgba(59, 130, 246, .3);
}

.mobile-menu-body {
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
    background: var(--white);
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    font-weight: 600;
    font-size: .93rem;
    color: var(--dark);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    transition: color .15s, background .15s;
}

.mobile-nav-link:hover {
    color: var(--blue);
    background: rgba(59, 130, 246, .04);
}

.mobile-nav-link .chevron {
    font-size: .7rem;
    transition: transform .25s;
}

.mobile-nav-link.expanded .chevron {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background: #f8faff;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu a {
    display: block;
    padding: 10px 36px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color .15s;
}

.mobile-submenu a:hover {
    color: var(--blue);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.mobile-contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: .84rem;
    color: var(--text-light);
}

.mobile-contact-info i {
    color: var(--blue);
    width: 16px;
}

.mobile-contact-info strong {
    color: var(--dark);
}

/* ── SHARED ── */
.bd-wrap {
    width: 100%;
    padding: 0 40px;
}

section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.7;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

.text-primary-color {
    color: var(--primary);
}

/* ── HERO ── */
.hero {
    min-height: 88vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(35, 59, 162, 0.553) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(59, 130, 246, .07) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, .15);
    border: 1px solid rgba(59, 130, 246, .3);
    color: #bfdbfe;
    border-radius: 100px;
    padding: 5px 14px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--blue);
}

.hero h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-desc {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, .35);
}

.btn-primary-custom:hover {
    background: var(--blue-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, .45);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat-num {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat-num span {
    color: var(--blue);
}

.hero-stat-label {
    font-size: .8rem;
    color: #64748b;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 380px;
    width: 100%;
}

.hero-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 20px 18px;
    backdrop-filter: blur(8px);
    transition: transform .3s, border-color .3s;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-card:nth-child(2) {
    animation-delay: 1s;
}

.hero-card:nth-child(3) {
    animation-delay: .5s;
}

.hero-card:nth-child(4) {
    animation-delay: 1.5s;
}

.hero-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(59, 130, 246, .4);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-6px) }
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, .15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.hero-card-icon i {
    color: var(--blue);
    font-size: 1.1rem;
}

.hero-card h4 {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.hero-card p {
    font-size: .75rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ── CTA BAR ── */
.cta-bar {
    background: var(--blue);
    padding: 24px 0;
}

.cta-bar h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.cta-bar p {
    color: rgba(255, 255, 255, .8);
    margin: 0;
    font-size: .88rem;
}

.btn-cta-white {
    background: #fff;
    color: var(--blue);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s, box-shadow .2s;
}

.btn-cta-white:hover {
    color: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
}

/* ── SERVICES ── */
.services-section {
    background: #f8faff;
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s;
}

.service-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, .08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background .25s;
}

.service-card:hover .service-icon {
    background: var(--blue);
}

.service-icon i {
    font-size: 1.4rem;
    color: var(--blue);
    transition: color .25s;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.service-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0;
    transition: opacity .2s;
    text-decoration: none;
}

.service-card:hover .service-tag {
    opacity: 1;
}

/* ── WHY CHOOSE US ── */
.why-section {
    background: var(--white);
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    height: 100%;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.why-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(59, 130, 246, .1);
    transform: translateY(-3px);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(59, 130, 246, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.why-card:hover .why-icon {
    background: var(--blue);
}

.why-icon i {
    font-size: 1.2rem;
    color: var(--blue);
    transition: color .2s;
}

.why-card:hover .why-icon i {
    color: #fff;
}

.why-card h4 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.why-card p {
    font-size: .83rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* ── HOW IT WORKS ── */
.how-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.how-section .section-title {
    color: #fff;
}

.how-section .section-label {
    color: var(--blue);
}

.how-section .section-sub {
    color: #64748b;
}

.how-step {
    position: relative;
    text-align: center;
    padding: 32px 20px;
}

.how-step-num {
    width: 64px;
    height: 64px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
}

.how-step-num::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 1px;
    background: rgba(59, 130, 246, .3);
    display: none;
}

.how-step h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.how-step p {
    font-size: .84rem;
    color: #64748b;
    line-height: 1.65;
}

.how-connector {
    display: none;
}

@media (min-width: 768px) {
    .how-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 32px;
    }

    .how-connector i {
        color: rgba(242, 243, 245, 0.878);
        font-size: 1.2rem;
    }
}

/* ── STATS ── */
.stats-section {
    background: var(--blue);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-num span {
    color: rgba(255, 255, 255, .7);
}

.stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .2);
    margin: auto;
}

/* ── BRANDS ── */
.brands-section {
    background: #f8faff;
    padding: 60px 0;
}

.brands-section .section-title {
    color: var(--dark);
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    height: 70px;
}

.brand-logo:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(59, 130, 246, .1);
}

.brand-logo span {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: .02em;
    transition: color .2s;
}

.brand-logo:hover span {
    color: var(--blue);
}

.brand-logo i {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-right: 8px;
    transition: color .2s;
}

.brand-logo:hover i {
    color: var(--blue);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--white);
}

.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    position: relative;
}

.testi-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 40px rgba(59, 130, 246, .1);
    transform: translateY(-3px);
}

.testi-quote {
    font-size: 2rem;
    color: var(--blue);
    opacity: .3;
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.testi-text {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-stars {
    color: #f59e0b;
    font-size: .8rem;
    margin-bottom: 14px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(59, 130, 246, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    color: var(--blue);
    flex-shrink: 0;
}

.testi-name {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
}

.testi-role {
    font-size: .75rem;
    color: var(--text-light);
}

/* ── SERVICE AREAS ── */
.areas-section {
    background: #f8faff;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all .2s;
    margin: 4px;
}

.area-tag:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(59, 130, 246, .05);
    transform: translateY(-2px);
}

.area-tag i {
    font-size: .65rem;
    color: var(--blue);
}

/* ── FAQ ── */
.faq-section {
    background: var(--white);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item.active {
    border-color: var(--blue);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    transition: color .2s;
    user-select: none;
}

.faq-question:hover {
    color: var(--blue);
}

.faq-item.active .faq-question {
    color: var(--blue);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(59, 130, 246, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .3s;
}

.faq-icon i {
    font-size: .7rem;
    color: var(--blue);
    transition: transform .3s;
}

.faq-item.active .faq-icon {
    background: var(--blue);
}

.faq-item.active .faq-icon i {
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 22px 18px;
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ── BOTTOM CTA ── */
.bottom-cta {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(59, 130, 246, .15) 0%, transparent 70%);
}

.bottom-cta h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.bottom-cta h2 span {
    color: var(--blue);
}

.bottom-cta p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, .4);
}

.btn-cta-blue:hover {
    background: var(--blue-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.cta-contact-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    text-decoration: none;
}

.cta-contact-item:last-child {
    margin-bottom: 0;
}

.cta-ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, .15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-ci-icon i {
    color: var(--blue);
    font-size: .9rem;
}

.cta-ci-label {
    font-size: .7rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.cta-ci-value {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-head);
}

/* ── FOOTER ── */
.bd-footer {
    background: var(--fd-dark);
    position: relative;
    overflow: hidden;
}

.bd-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--blue) 30%, var(--blue) 70%, transparent 100%);
}

.bd-footer-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bd-footer-orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -150px;
    background: radial-gradient(circle, rgba(59, 130, 246, .07) 0%, transparent 65%);
}

.bd-footer-orb-2 {
    width: 400px;
    height: 400px;
    bottom: 60px;
    right: -80px;
    background: radial-gradient(circle, rgba(59, 130, 246, .05) 0%, transparent 65%);
}

.bd-footer-body {
    padding: 60px 40px 10px;
    position: relative;
    z-index: 2;
}

.bd-contact-panel {
    background: var(--fd-dark-3);
    border: 1px solid var(--fd-border);
    border-radius: 16px;
    overflow: hidden;
}

.bd-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--fd-border);
    background: linear-gradient(135deg, rgba(59, 130, 246, .08) 0%, transparent 100%);
}

.bd-panel-icon {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(59, 130, 246, .3);
}

.bd-panel-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.bd-panel-name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 3px;
    line-height: 1.2;
}

.bd-panel-name em {
    color: var(--blue);
    font-style: normal;
}

.bd-panel-location {
    font-size: .72rem;
    color: var(--fd-text-muted);
}

.bd-panel-location i {
    color: var(--blue);
    font-size: .65rem;
}

.bd-contact-desc {
    font-size: .8rem;
    color: var(--fd-text-muted);
    line-height: 1.7;
    padding: 14px 20px;
    border-bottom: 1px solid var(--fd-border);
    margin: 0;
}

.bd-contact-list {
    padding: 8px 0;
}

.bd-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    text-decoration: none;
    transition: background var(--tr);
    border-bottom: 1px solid var(--fd-border);
}

.bd-contact-item:last-child {
    border-bottom: none;
}

.bd-contact-item:not(.no-hover):hover {
    background: rgba(255, 255, 255, .03);
}

.bd-ci-icon {
    width: 34px;
    height: 34px;
    background: var(--blue-glow);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bd-ci-icon i {
    color: var(--blue);
    font-size: .75rem;
}

.bd-ci-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.bd-ci-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--fd-text-muted);
    margin-bottom: 1px;
}

.bd-ci-value {
    font-size: .8rem;
    color: var(--fd-text-light);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bd-ci-arrow {
    color: var(--fd-text-muted);
    font-size: .65rem;
    opacity: 0;
    transition: opacity var(--tr), transform var(--tr);
}

.bd-contact-item:hover .bd-ci-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.bd-hours-card {
    padding: 14px 20px;
    background: rgba(0, 0, 0, .15);
    border-top: 1px solid var(--fd-border);
    border-bottom: 1px solid var(--fd-border);
}

.bd-hours-head {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}

.bd-hours-head i {
    color: var(--blue);
    font-size: .75rem;
}

.bd-hours-head span:first-of-type {
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    flex: 1;
}

.bd-live-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1) }
    50% { opacity: .6; transform: scale(1.3) }
}

.bd-live-text {
    font-size: .65rem;
    color: #4ade80;
    font-weight: 600;
}

.bd-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    font-size: .76rem;
}

.bd-hour-row:last-child {
    border-bottom: none;
}

.bd-hour-row .day {
    color: var(--fd-text-muted);
}

.bd-hour-row .time {
    font-weight: 600;
    color: var(--fd-text-light);
    background: rgba(59, 130, 246, .08);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .7rem;
}

.bd-hour-row .time.closed {
    background: rgba(239, 68, 68, .1);
    color: #f87171;
}

.bd-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    flex-wrap: wrap;
}

.bd-social-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fd-text-muted);
    white-space: nowrap;
}

.bd-social {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 0;
}

.bd-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--fd-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fd-text-muted);
    font-size: .75rem;
    text-decoration: none;
    transition: all var(--tr);
}

.bd-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}

.bd-widget-title {
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 14px;
    position: relative;
}

.bd-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.bd-widget-links {
    display: block;
}

.bd-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bd-links li {
    margin-bottom: 1px;
}

.bd-links li a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .82rem;
    color: var(--fd-text-muted);
    text-decoration: none;
    padding: 2px 0;
    transition: color var(--tr), gap var(--tr);
}

.bd-links li a::before {
    content: '»';
    font-size: .75rem;
    color: var(--blue);
    opacity: .7;
}

.bd-links li a:hover {
    color: #fff;
    gap: 13px;
}

.bd-links li a:hover::before {
    opacity: 1;
}

.bd-areas-row {
    margin-top: 0;
    padding: 28px 0 48px;
}

.bd-areas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.bd-areas-title {
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    flex: 1;
    position: relative;
    padding-bottom: 10px;
}

.bd-areas-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.bd-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px 12px;
}

.bd-area-grid a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    color: var(--fd-text-muted);
    text-decoration: none;
    padding: 4px 0;
    transition: color var(--tr), gap var(--tr);
}

.bd-area-grid a::before {
    content: '»';
    font-size: .75rem;
    color: var(--blue);
    opacity: .7;
}

.bd-area-grid a:hover {
    color: #fff;
    gap: 10px;
}

.bd-areas-links {
    display: block;
}

.bd-bottom {
    border-top: 1px solid var(--fd-border);
    padding: 16px 40px;
    background: rgba(0, 0, 0, .2);
    position: relative;
    z-index: 2;
}

.bd-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.bd-bottom-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bd-bottom-name {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .04em;
}

.bd-bottom-name em {
    color: var(--blue);
    font-style: normal;
}

.bd-bottom-copy {
    font-size: .72rem;
    color: var(--fd-text-muted);
}

.bd-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.bd-bottom-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fd-text-muted);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all var(--tr);
}

.bd-bottom-links a i {
    font-size: .65rem;
    color: var(--blue);
}

.bd-bottom-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.bd-powered {
    border-top: 1px solid rgba(255, 255, 255, .03);
    padding: 10px 40px;
    position: relative;
    z-index: 2;
}

.bd-powered-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bd-powered-label {
    font-size: .68rem;
    color: var(--fd-text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
}

.bd-powered-brand {
    font-size: .68rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: color var(--tr);
}

.bd-powered-brand:hover {
    color: #fff;
}

.bd-msb {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--fd-dark-2);
    border-top: 1px solid var(--fd-border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .25);
}

.bd-msb a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .86rem;
    text-decoration: none;
    transition: filter var(--tr);
}

.bd-msb a:hover {
    filter: brightness(1.1);
}

.msb-call {
    background: var(--blue);
    color: #fff;
}

.msb-wa {
    background: #25D366;
    color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 767.98px) {
    .bd-wrap {
        padding: 0 20px;
    }

    section {
        padding: 56px 0;
    }

    .hero {
        min-height: auto;
        padding: 72px 0;
    }

    .hero-visual {
        margin-top: 48px;
    }

    .hero-stats {
        gap: 20px;
    }

    .bd-footer-body {
        padding: 36px 20px 0;
    }

    .bd-contact-panel {
        max-width: 100%;
    }

    .bd-areas-row {
        margin-top: 24px;
        padding-bottom: 32px;
    }

    .bd-area-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bd-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .bd-bottom-links {
        justify-content: center;
        row-gap: 4px;
        display: grid;
        grid-template-columns: repeat(3, auto);
        place-items: center;
        gap: 4px;
    }

    .bd-msb {
        display: flex;
    }

    body {
        padding-bottom: 56px;
    }

    .stat-divider {
        display: none;
    }

    .stats-section .col-md-2 {
        display: none;
    }

    .bottom-cta {
        padding: 56px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-card-grid {
        max-width: 100%;
    }

    .bd-footer-body {
        padding: 28px 16px 0;
    }

    .bd-right-services .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .bd-widget {
        border-bottom: 1px solid var(--fd-border);
        padding-bottom: 2px;
    }

    .bd-widget-title {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
        margin-bottom: 0;
        user-select: none;
    }

    .bd-widget-title::after {
        display: none;
    }

    .bd-widget-title .bd-chev {
        font-size: .65rem;
        color: var(--fd-text-muted);
        transition: transform var(--tr);
    }

    .bd-widget-title.open .bd-chev {
        transform: rotate(180deg);
    }

    .bd-widget-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .bd-widget-links.open {
        max-height: 300px;
    }

    .bd-areas-row {
        margin-top: 0;
        padding: 10px 0 24px;
    }

    .bd-areas-header {
        cursor: pointer;
        user-select: none;
        border-bottom: 1px solid var(--fd-border);
        padding-bottom: 10px;
    }

    .bd-areas-header .bd-chev {
        display: block;
        font-size: .65rem;
        color: var(--fd-text-muted);
        transition: transform var(--tr);
        flex-shrink: 0;
    }

    .bd-areas-title::after {
        display: none;
    }

    .bd-areas-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .bd-areas-links.open {
        max-height: 1000px;
    }

    .bd-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 576px) {
    .bd-chev {
        display: none;
    }

    .bd-widget-links {
        display: block !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .bd-areas-links {
        display: block !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 440px) {
    .bd-area-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ════════ PAGE-SPECIFIC (Attendance/Computer Repair Service) ════════ */

/* Accessibility: visible keyboard focus */
a:focus-visible,
button:focus-visible,
.area-tag:focus-visible,
.service-tag:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Active nav item */
.nav-f-dropdown li a.nav-active,
.mobile-submenu a.nav-active {
    color: var(--blue) !important;
    font-weight: 700;
}

.nav-f-dropdown li a.nav-active::before {
    opacity: 1;
}

/* ── Breadcrumb ── */
.crumb-bar {
    background: var(--fd-dark);
    border-bottom: 1px solid var(--fd-border);
}

.crumb-bar nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: .82rem;
}

.crumb-bar a {
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s;
}

.crumb-bar a:hover {
    color: #fff;
}

.crumb-bar .sep {
    color: #475569;
    font-size: .7rem;
}

.crumb-bar .current {
    color: var(--blue);
    font-weight: 600;
}

/* ── Hero badge chips (service) ── */
.svc-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.svc-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 7px 13px;
    border-radius: 100px;
}

.svc-trust span i {
    color: var(--blue);
}

/* ── Hero enquiry form ── */
.hero-form {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 26px 26px 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    max-width: 440px;
    width: 100%;
    margin-left: auto;
}

.hero-form-head {
    margin-bottom: 18px;
}

.hero-form-head h2 {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.4px;
    margin-bottom: 6px;
}

.hero-form-head p {
    font-size: .88rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.hf-field {
    margin-bottom: 13px;
}

.hf-field label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 6px;
    letter-spacing: .01em;
}

.hf-field label span {
    color: #64748b;
    font-weight: 400;
}

.hf-field input,
.hf-field select,
.hf-field textarea {
    width: 100%;
    background: rgba(8, 13, 24, .55);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 11px 14px;
    color: #fff;
    font-family: var(--font-body);
    font-size: .92rem;
    transition: border-color .2s, box-shadow .2s, background .2s;
    -webkit-appearance: none;
    appearance: none;
}

.hf-field textarea {
    resize: vertical;
    min-height: 56px;
}

.hf-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.hf-field select option {
    background: var(--fd-dark-2);
    color: #fff;
}

.hf-field input::placeholder,
.hf-field textarea::placeholder {
    color: #5a6b85;
}

.hf-field input:focus,
.hf-field select:focus,
.hf-field textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(8, 13, 24, .8);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.hf-field input.invalid,
.hf-field select.invalid {
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, .18);
}

/* honeypot — visually hidden but reachable by bots */
.hf-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hf-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .98rem;
    cursor: pointer;
    margin-top: 4px;
    box-shadow: 0 6px 24px rgba(59, 130, 246, .4);
    transition: background .2s, transform .15s, box-shadow .2s;
}

.hf-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(59, 130, 246, .5);
}

.hf-submit i {
    font-size: 1.15rem;
}

.hf-note {
    font-size: .76rem;
    color: #64748b;
    text-align: center;
    margin: 12px 0 0;
}

.hf-note i {
    color: #475569;
    margin-right: 3px;
}

.hf-note.ok {
    color: #34d399;
}

.hf-note.ok i {
    color: #34d399;
}

.hf-note.err {
    color: #f87171;
}

.hf-note.err i {
    color: #f87171;
}

.hf-alt {
    font-size: .82rem;
    color: #94a3b8;
    text-align: center;
    margin: 8px 0 0;
}

.hf-alt a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.hf-alt a:hover {
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .hero-form {
        padding: 22px 18px 18px;
        margin-left: 0;
    }
}

/* two fields side-by-side inside the hero form */
.hf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
}

@media (max-width: 419px) {
    .hf-grid {
        grid-template-columns: 1fr;
    }
}

.bd-required {
    color: #f87171;
}

/* live character counter */
.bd-char-count {
    margin-top: 6px;
    text-align: right;
    font-size: .72rem;
    font-weight: 600;
    color: #5a6b85;
}

.bd-char-count.limit-near {
    color: #fbbf24;
}

.bd-char-count.limit-full {
    color: #f87171;
}

/* "I am not a robot" check */
.bd-human-check {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(8, 13, 24, .5);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: .86rem;
    font-weight: 600;
    color: #cbd5e1;
    cursor: pointer;
    transition: border-color .2s;
}

.bd-human-check:hover {
    border-color: rgba(59, 130, 246, .5);
}

.bd-human-input {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--blue);
}

.bd-human-check span {
    user-select: none;
}

/* ── Success modal ── */
.bd-success-modal .modal-content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, .3);
}

.bd-success-top {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    padding: 34px 28px 26px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bd-success-top::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    right: -70px;
    top: -70px;
}

.bd-check-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    position: relative;
    z-index: 2;
    animation: bdPop .45s ease;
}

.bd-check-circle svg {
    width: 42px;
    height: 42px;
}

.bd-success-top h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 6px;
    position: relative;
    z-index: 2;
}

.bd-success-top p {
    margin: 0;
    opacity: .9;
    font-size: .9rem;
    position: relative;
    z-index: 2;
}

.bd-success-body {
    padding: 28px;
    text-align: center;
    background: #fff;
}

.bd-success-body h4 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.bd-success-body p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.bd-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bd-success-actions .btn {
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 700;
    font-size: .9rem;
}

/* ── Error toast ── */
.bd-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .22);
    border-left: 5px solid #dc2626;
    display: none;
}

.bd-toast.show {
    display: block;
    animation: bdSlide .25s ease;
}

.bd-toast strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: .9rem;
}

.bd-toast span {
    color: var(--text-light);
    font-size: .84rem;
    line-height: 1.5;
}

@keyframes bdPop {
    0% { transform: scale(.65); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes bdSlide {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 575px) {
    .bd-toast {
        left: 16px;
        right: 16px;
        top: 16px;
        min-width: auto;
    }
}

/* ── Overview band with media ── */
.svc-overview {
    background: var(--white);
}

.svc-lead {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 18px;
}

.svc-lead strong {
    color: var(--dark);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .94rem;
    color: var(--text);
    line-height: 1.5;
}

.check-list li i {
    color: var(--blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.svc-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.svc-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.svc-media-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(11, 26, 51, .82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 12px 16px;
}

.svc-media-badge .ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.svc-media-badge b {
    display: block;
    color: #fff;
    font-family: var(--font-head);
    font-size: .95rem;
    line-height: 1.1;
}

.svc-media-badge small {
    color: #94a3b8;
    font-size: .74rem;
}

/* ── Pricing ── */
.price-section {
    background: #f8fafc;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, .4);
}

.price-card .pc-ic {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--blue-glow);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.price-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.price-card .pc-amt {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--blue);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.price-card .pc-amt small {
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-light);
}

.price-card p {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.price-note {
    margin-top: 22px;
    font-size: .84rem;
    color: var(--text-light);
    text-align: center;
}

.price-note i {
    color: var(--blue);
}

@media (max-width: 575.98px) {
    .check-list {
        grid-template-columns: 1fr;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* No-JS fallback: never hide content if reveal observer doesn't run */
.no-js .reveal {
    opacity: 1 !important;
    transform: none !important;
}

@media (min-width: 992px) {
    .faq-intro {
        position: sticky;
        top: 96px;
    }
}

/* FAQ support card — fills the left column and drives calls */
.faq-help {
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #122c50 0%, #0a1730 100%);
    border: 1px solid rgba(59, 130, 246, .28);
    border-radius: 18px;
    padding: 30px 28px;
    box-shadow: 0 22px 50px rgba(11, 26, 51, .16);
}

.faq-help::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(59, 130, 246, .38), transparent 70%);
    pointer-events: none;
}

.faq-help-icon {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, .45);
}

.faq-help h3 {
    position: relative;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.faq-help>p {
    position: relative;
    font-size: .9rem;
    color: #9fb3cf;
    line-height: 1.65;
    margin-bottom: 22px;
}

.faq-help-btns {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fhb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: transform .15s, box-shadow .2s, background .2s;
}

.fhb i {
    font-size: 1.05rem;
}

.fhb-solid {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 22px rgba(59, 130, 246, .4);
}

.fhb-solid:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, .5);
}

.fhb-wa {
    background: #25d366;
    color: #062e15;
}

.fhb-wa:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .4);
}

.faq-help-meta {
    position: relative;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.faq-help-meta span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .82rem;
    color: #94a3b8;
}

.faq-help-meta i {
    color: var(--blue);
    width: 14px;
    text-align: center;
}
.how-section{
    position: relative;
    padding: 100px 0;
    background:
        linear-gradient(rgba(10,18,35,.30), rgba(10,18,35,.30)),
        url("../../images/my-bg.webp") center center / cover no-repeat;
    overflow: hidden;
}
/* ── CCTV package cards (Not in External CSS) ── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.pkg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 26px;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pkg-card.popular {
    border-color: var(--blue);
    box-shadow: 0 22px 55px rgba(59, 130, 246, .2);
}

.pkg-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(59, 130, 246, .4);
}

.pkg-name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.pkg-price {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
}

.pkg-price small {
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-light);
}

.pkg-sub {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pkg-feat {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.pkg-feat li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--text);
    line-height: 1.5;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

.pkg-feat li:last-child {
    border-bottom: 0;
}

.pkg-feat li i {
    color: var(--blue);
    margin-top: 3px;
    font-size: .8rem;
    flex-shrink: 0;
}

.pkg-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 13px 18px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    color: var(--blue);
    background: var(--blue-glow);
    border: 1px solid rgba(59, 130, 246, .3);
    transition: background .2s, color .2s, transform .15s;
}

.pkg-btn:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}

.pkg-btn-solid {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 8px 22px rgba(59, 130, 246, .35);
}

.pkg-btn-solid:hover {
    background: var(--blue-dark);
}


/* ── PRICING-PAGE LAYOUT (Not in External CSS) ── */
.hero-pricing {
    min-height: auto;
    padding: 72px 0 60px;
}

.hero-pricing-inner {
    max-width: 780px;
    margin: 0 auto;
}

.hero-pricing h1 {
    margin-bottom: 16px;
}

.hero-pricing .hero-desc {
    margin-left: auto;
    margin-right: auto;
}

.price-highlight {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 4px 0 24px;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(59, 130, 246, .14);
    border: 1px solid rgba(59, 130, 246, .32);
    color: #cbd5e1;
    font-size: .92rem;
}

.price-highlight b {
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.12rem;
}

.pr-white {
    background: var(--white);
}

/* Comparison Table Layout */
.cmp-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.cmp {
    width: 100%;
    min-width: 660px;
    border-collapse: collapse;
    background: var(--white);
}

.cmp th,
.cmp td {
    padding: 15px 18px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
}

.cmp thead th {
    background: var(--dark);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    position: relative;
}

.cmp thead th.is-popular {
    background: var(--blue);
}

.cmp thead th small {
    display: block;
    font-weight: 500;
    font-size: .72rem;
    opacity: .8;
    margin-top: 2px;
}

.cmp tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    background: #f8fafc;
    white-space: nowrap;
}

.cmp .yes {
    color: var(--blue);
}

.cmp .no {
    color: #cbd5e1;
}

.cmp .cmp-price td {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--blue);
    font-size: 1.1rem;
}

.cmp tbody tr:last-child td,
.cmp tbody tr:last-child th {
    border-bottom: 0;
}

.cmp .cmp-cta a {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 9px;
    background: var(--blue);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    transition: background .2s;
}

.cmp .cmp-cta a:hover {
    background: var(--blue-dark);
}

/* Price List Table Layout */
.plist-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
}

.plist {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
}

.plist th,
.plist td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    text-align: left;
    color: var(--text);
}

.plist thead th {
    background: #f1f5f9;
    color: var(--dark);
    font-family: var(--font-head);
    font-weight: 700;
}

.plist thead th:last-child,
.plist td.price {
    text-align: right;
}

.plist td.item {
    font-weight: 600;
    color: var(--dark);
}

.plist td.price {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
}

.plist tbody tr:last-child td {
    border-bottom: 0;
}

.plist tbody tr:hover {
    background: #f8fafc;
}

/* What's Included Strip Layout */
.incl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
}

.incl-item {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
}

.incl-item i {
    color: var(--blue);
    font-size: 1.15rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.incl-item span {
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

/* Quote Section Style */
.quote-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.quote-section .hero-grid {
    position: absolute;
    inset: 0;
}

.quote-lead .section-label {
    color: var(--blue);
}

.quote-lead h2 {
    color: #fff;
}

.quote-lead p {
    color: #94a3b8;
}

.quote-points {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.quote-points li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #cbd5e1;
    font-size: .94rem;
    margin-bottom: 13px;
}

.quote-points li i {
    color: var(--blue);
}

.price-note-sm {
    font-size: .8rem;
    color: var(--text-light);
    margin-top: 18px;
}


/* ── MODIFIED/UPDATED PROPERTIES (Not matching in External) ── */
@media (min-width: 768px) {
    .how-connector {
        /* This height property inside media query is missing/different in external CSS */
        height: 128px;
    }
}
/* ==========================================================================
   ── COMPANY / INFO PAGES SPECIFIC CSS (Not in External CSS) ──
   ========================================================================== */

.desktop-header a.nav-active,
.mobile-nav a.nav-active {
    color: var(--blue) !important;
    font-weight: 700;
}

.page-hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 66px 0 60px;
    text-align: center;
}

.page-hero .hero-bg,
.page-hero .hero-grid { 
    position: absolute; 
    inset: 0; 
}

.page-hero-inner { 
    position: relative; 
    z-index: 2; 
    max-width: 780px; 
    margin: 0 auto; 
}

.page-hero h1 {
    font-family: var(--font-head); 
    font-weight: 800; 
    color: #fff;
    font-size: clamp(28px, 4vw, 44px); 
    letter-spacing: -.02em;
    line-height: 1.12; 
    margin: 12px 0 14px;
}

.page-hero h1 span { 
    color: var(--blue); 
}

.page-hero p { 
    color: #94a3b8; 
    font-size: 1rem; 
    line-height: 1.75; 
    max-width: 640px; 
    margin: 0 auto; 
}

/* Stat Band / Cards Layout */
.stat-band { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 22px; 
}

.stat-card { 
    text-align: center; 
    padding: 26px 16px; 
    background: var(--white); 
    border: 1px solid var(--border);
    border-radius: var(--radius); 
}

.stat-card b { 
    display: block; 
    font-family: var(--font-head); 
    font-weight: 800; 
    font-size: 2rem; 
    color: var(--blue); 
}

.stat-card span { 
    display: block; 
    font-size: .85rem; 
    color: var(--text-light); 
    margin-top: 4px; 
}

/* Our Team Member Cards */
.team-card { 
    background: var(--white); 
    border: 1px solid var(--border); 
    border-radius: var(--radius);
    padding: 30px 24px; 
    text-align: center; 
    transition: transform var(--tr), box-shadow var(--tr); 
}

.team-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-lg); 
}

.team-avatar { 
    width: 84px; 
    height: 84px; 
    border-radius: 50%; 
    margin: 0 auto 16px; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    font-family: var(--font-head); 
    font-weight: 800;
    font-size: 1.5rem; 
    color: #fff; 
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 10px 26px rgba(59,130,246,.35); 
}

.team-name { 
    font-family: var(--font-head); 
    font-weight: 700; 
    color: var(--dark); 
    font-size: 1.05rem; 
}

.team-role { 
    color: var(--blue); 
    font-size: .84rem; 
    font-weight: 600; 
    margin-top: 3px; 
}

.team-bio { 
    color: var(--text-light); 
    font-size: .85rem; 
    line-height: 1.6; 
    margin-top: 12px; 
}

/* Job / Career Role Cards */
.role-card { 
    background: var(--white); 
    border: 1px solid var(--border); 
    border-radius: var(--radius);
    padding: 26px; 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: space-between; 
    gap: 16px;
    transition: border-color var(--tr), box-shadow var(--tr); 
}

.role-card:hover { 
    border-color: rgba(59,130,246,.4); 
    box-shadow: var(--shadow); 
}

.role-card h3 { 
    font-family: var(--font-head); 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: var(--dark); 
    margin: 0 0 6px; 
}

.role-card .role-meta { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
}

.role-card .role-meta span { 
    font-size: .78rem; 
    background: var(--blue-glow); 
    color: var(--blue);
    padding: 5px 12px; 
    border-radius: 100px; 
    font-weight: 600; 
}

.role-card .role-apply { 
    background: var(--blue); 
    color: #fff; 
    text-decoration: none; 
    padding: 11px 20px;
    border-radius: 10px; 
    font-family: var(--font-head); 
    font-weight: 700; 
    font-size: .88rem; 
    white-space: nowrap;
    transition: background .2s; 
}

.role-card .role-apply:hover { 
    background: var(--blue-dark); 
}

/* Contact Rows & Map Embedding Layouts */
.contact-row { 
    display: flex; 
    align-items: flex-start; 
    gap: 14px; 
    margin-bottom: 22px; 
}

.contact-row .ic { 
    width: 48px; 
    height: 48px; 
    border-radius: 12px; 
    background: var(--blue-glow); 
    color: var(--blue);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.15rem; 
    flex-shrink: 0; 
}

.contact-row b { 
    display: block; 
    font-family: var(--font-head); 
    color: var(--dark); 
    font-size: .95rem; 
    margin-bottom: 3px; 
}

.contact-row a, 
.contact-row p { 
    color: var(--text-light); 
    font-size: .9rem; 
    text-decoration: none; 
    margin: 0; 
    line-height: 1.6; 
}

.contact-row a:hover { 
    color: var(--blue); 
}

.map-embed { 
    border-radius: var(--radius); 
    overflow: hidden; 
    border: 1px solid var(--border); 
    box-shadow: var(--shadow); 
}

.map-embed iframe { 
    display: block; 
    width: 100%; 
    height: 360px; 
    border: 0; 
}

/* Legal Pages (Terms / Privacy Policy) Layout */
.legal { 
    max-width: 870px; 
    margin: 0 auto; 
}

.legal .legal-meta { 
    color: var(--text-light); 
    font-size: .85rem; 
    margin-bottom: 30px; 
}

.legal h2 { 
    font-family: var(--font-head); 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--dark); 
    margin: 34px 0 12px; 
}

.legal h2:first-of-type { 
    margin-top: 0; 
}

.legal p { 
    color: var(--text); 
    font-size: .95rem; 
    line-height: 1.85; 
    margin: 0 0 14px; 
}

.legal ul { 
    padding-left: 20px; 
    margin: 0 0 16px; 
}

.legal li { 
    color: var(--text); 
    font-size: .95rem; 
    line-height: 1.8; 
    margin-bottom: 8px; 
}

.legal a { 
    color: var(--blue); 
}