:root {
    --navy: #0e2f5a;
    --navy-2: #1a4a8a;
    --navy-dark: #081e3d;
    --blue: #1e6ac8;
    --blue-h: #1558a8;
    --blue-light: #e8f0fb;
    --green: #10b981;
    --text: #1a202c;
    --muted: #64748b;
    --bg: #f0f4f8;
    --white: #fff;
    --border: #dde5ef;
    --shadow: 0 2px 12px rgba(0, 0, 0, .07);
    --r: 10px;
    --r-sm: 6px;
    --tr: .2s ease
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--navy-2);
    border-radius: 99px
}

.container {
    width: min(1180px, 94%);
    margin: 0 auto
}

/* TICKER */
.ticker {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .85);
    font-size: 12.5px;
    padding: 7px 0;
    text-align: center
}

.ticker-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.t-sep {
    opacity: .3;
    margin: 0 2px
}

.ticker strong {
    color: #5eead4
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: blink 1.8s ease infinite;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* NAV */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none
}

.nav-links>li {
    position: relative
}

.nl-a,
.ndrop {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    padding: 7px 11px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background var(--tr), color var(--tr);
    cursor: pointer
}

.nl-a:hover,
.ndrop:hover,
.nl-a.active {
    background: var(--blue-light);
    color: var(--blue)
}

.nl-a.active {
    font-weight: 600;
    position: relative
}

.nl-a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--blue);
    border-radius: 99px
}

.ndrop svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform var(--tr)
}

.nav-links>li:hover>.ndrop svg {
    transform: rotate(180deg)
}

.nav-dd {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 6px;
    min-width: 235px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .09);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--tr);
    z-index: 300
}

.nav-links>li:hover>.nav-dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.nav-dd a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    transition: all var(--tr)
}

.nav-dd a:hover {
    background: var(--blue-light);
    color: var(--blue)
}

.ddi {
    font-size: 14px;
    width: 20px;
    text-align: center
}

.btn-demo {
    padding: 8px 16px;
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: background var(--tr), transform var(--tr);
    white-space: nowrap
}

.btn-demo:hover {
    background: var(--navy-2)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 99px
}

.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 62px;
    background: var(--white);
    z-index: 199;
    overflow-y: auto;
    padding: 20px;
    flex-direction: column;
    gap: 4px
}

.mob-menu.open {
    display: flex
}

.mob-menu a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text)
}

.mob-menu a:hover {
    background: var(--blue-light);
    color: var(--blue)
}

.mm-sep {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 14px 16px 4px;
    font-weight: 700
}

@media(max-width:860px) {

    .nav-links,
    .btn-demo {
        display: none
    }

    .hamburger {
        display: flex
    }
}

/* PAGE HEADER */
.page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(105deg, #081e3d 0%, #14387a 100%);
    padding: 50px 0 42px;
    text-align: center;
    color: #fff
}

.page-header.left-align {
    text-align: left
}

.ph-mesh {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    opacity: .18
}

.page-header h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1
}

.page-header p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .72);
    max-width: 58ch;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.6
}

.page-header.left-align p {
    margin: 0
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: var(--r-sm);
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: background var(--tr), transform var(--tr)
}

.btn-primary:hover {
    background: var(--blue-h);
    transform: translateY(-1px)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: var(--r-sm);
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid var(--navy);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--tr)
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff
}

.btn-read {
    display: block;
    width: 100%;
    padding: 11px;
    background: var(--navy);
    color: #fff;
    text-align: center;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 14px;
    transition: background var(--tr);
    border: 0;
    cursor: pointer;
    font-family: inherit
}

.btn-read:hover {
    background: var(--navy-2)
}

/* SECTIONS */
section {
    padding: 60px 0
}

.bg-white {
    background: var(--white)
}

.bg-alt {
    background: var(--bg)
}

.sec-eye {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px
}

.sec-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.2
}

.sec-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 58ch
}

.sec-header.center {
    text-align: center
}

.sec-header.center .sec-sub {
    margin: 0 auto
}

/* CARDS */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .11)
}

/* CATEGORY TAGS */
.tag-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--muted)
}

.tag-pill.traffic {
    background: #eff8ff;
    border-color: #b2ddff;
    color: #1849a9
}

.tag-pill.parking {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d
}

.tag-pill.ai,
.tag-pill.enforcement {
    background: #fff7ed;
    border-color: #fde68a;
    color: #b45309
}

.tag-pill.iot {
    background: #f5f3ff;
    border-color: #ddd6fe;
    color: #5b21b6
}

.tag-pill.planning {
    background: #fef9c3;
    border-color: #fde047;
    color: #713f12
}

.tag-pill.analytics {
    background: #f0f9ff;
    border-color: #bae6fd;
    color: #0369a1
}

.tag-pill.all {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff
}

/* FILTER PILLS */
.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    justify-content: center
}

.fp {
    padding: 7px 18px;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all var(--tr)
}

.fp:hover,
.fp.active~.fp {
    border-color: var(--blue);
    color: var(--blue)
}

.fp.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff
}

/* FEATURE TILES */
.tiles-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

@media(max-width:660px) {
    .tiles-3 {
        grid-template-columns: 1fr
    }
}

.tile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    text-align: center;
    transition: border-color var(--tr), box-shadow var(--tr)
}

.tile:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(30, 106, 200, .1)
}

.tile-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    background: var(--blue-light);
    font-size: 26px
}

.tile h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px
}

.tile p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65
}

/* PROCESS STEPS */
.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap
}

.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 0 12px;
    position: relative
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 26px;
    font-size: 22px;
    color: var(--blue);
    font-weight: 300;
    line-height: 1
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--blue-light);
    border: 2px solid #c3d8f5;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    font-size: 24px
}

.step-num {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 4px
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3
}

@media(max-width:600px) {
    .step:not(:last-child)::after {
        display: none
    }
}

/* CASE STUDY CARDS */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

@media(max-width:640px) {
    .cs-grid {
        grid-template-columns: 1fr
    }
}

.cs-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

.cs-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .1)
}

.cs-body {
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start
}

@media(max-width:500px) {
    .cs-body {
        grid-template-columns: 1fr
    }
}

.cs-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--bg)
}

.cs-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35
}

.cs-text {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 5px;
    line-height: 1.55
}

.cs-text strong {
    color: var(--text);
    font-weight: 600
}

.cs-footer {
    padding: 0 18px 18px
}

/* ARTICLE CARDS */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 24px;
    align-items: start
}

@media(max-width:840px) {
    .blog-layout {
        grid-template-columns: 1fr
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

@media(max-width:760px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:500px) {
    .blog-grid {
        grid-template-columns: 1fr
    }
}

.art-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

.art-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1)
}

.art-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: var(--bg)
}

.art-body {
    padding: 14px
}

.art-title {
    font-size: 15px;
    font-weight: 700;
    margin: 6px 0 5px;
    color: var(--text);
    line-height: 1.35
}

.art-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

/* FEAT ARTICLE */
.feat-article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 28px;
    position: relative
}

.feat-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--bg)
}

.feat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0%, transparent 100%);
    padding: 28px 24px;
    color: #fff
}

.feat-overlay h2 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    margin-bottom: 6px
}

.feat-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 14px
}

/* SIDEBAR */
.sidebar-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    margin-bottom: 16px
}

.sidebar-box h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px
}

.sidebar-box p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px
}

.s-input {
    width: 100%;
    padding: 9px 12px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color var(--tr)
}

.s-input:focus {
    border-color: var(--blue)
}

/* TEAM CARDS */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

@media(max-width:660px) {
    .team-grid {
        grid-template-columns: 1fr
    }
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color var(--tr)
}

.team-card:hover {
    border-color: var(--blue)
}

.team-ph {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    display: grid;
    place-items: center;
    font-size: 24px;
    flex-shrink: 0;
    color: #fff
}

.team-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px
}

.team-role {
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 5px
}

.team-bio {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6
}

/* TESTIMONIALS */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

@media(max-width:660px) {
    .testi-grid {
        grid-template-columns: 1fr
    }
}

.testi {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px
}

.testi q {
    font-size: 13.5px;
    color: var(--text);
    font-style: italic;
    display: block;
    margin-bottom: 12px;
    line-height: 1.65
}

.testi cite {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted)
}

/* STAT CELLS */
.stats-bar-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r)
}

.stat-cell {
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid var(--border)
}

.stat-cell:last-child {
    border-right: none
}

.stat-val {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px
}

@media(max-width:580px) {
    .stats-bar-2 {
        grid-template-columns: 1fr 1fr
    }

    .stat-cell:nth-child(2) {
        border-right: none
    }

    .stat-cell:nth-child(1),
    .stat-cell:nth-child(2) {
        border-bottom: 1px solid var(--border)
    }
}

/* HERO (homepage) */
.site-hero {
    background: linear-gradient(105deg, #081e3d 0%, #14387a 100%);
    padding: 64px 0;
    color: #fff;
    position: relative;
    overflow: hidden
}

.hero-mesh {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: .12;
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 1
}

@media(max-width:760px) {
    .hero-grid {
        grid-template-columns: 1fr
    }
}

.hero-title {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 16px
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 46ch
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-hero {
    padding: 12px 24px;
    background: var(--blue);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: background var(--tr)
}

.btn-hero:hover {
    background: var(--blue-h)
}

.btn-hero-g {
    padding: 11px 24px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--tr)
}

.btn-hero-g:hover {
    background: rgba(255, 255, 255, .2)
}

.hero-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .35)
}

.hero-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover
}

/* SERVICE CARDS (homepage) */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

@media(max-width:860px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:540px) {
    .svc-grid {
        grid-template-columns: 1fr
    }
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px;
    transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr)
}

.svc-card:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.sc-icon {
    font-size: 28px;
    margin-bottom: 12px
}

.sc-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px
}

.sc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px
}

.sc-lnk {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--tr)
}

.sc-lnk:hover {
    gap: 8px
}

/* SERVICE HERO IMAGE */
.svc-hero-img-wrap {
    padding: 28px 0;
    background: var(--bg)
}

.svc-hero-img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--r);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
    display: block;
    height: 340px;
    object-fit: cover
}

/* TECH STACK */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px
}

.tech-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--blue-light);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 18px
}

.tech-item h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px
}

.tech-item p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5
}

/* DEMO BOX */
.demo-box {
    background: var(--navy-2);
    border-radius: var(--r);
    padding: 28px;
    text-align: center;
    color: #fff
}

.demo-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px
}

.btn-demo-w {
    display: inline-block;
    padding: 11px 26px;
    background: var(--white);
    color: var(--navy);
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: background var(--tr)
}

.btn-demo-w:hover {
    background: #e8edf5
}

/* SPEC TABLE */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden
}

.spec-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px
}

.spec-table td:first-child {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--muted);
    background: var(--bg);
    width: 36%
}

.spec-table tr:last-child td {
    border-bottom: none
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(90deg, var(--navy), var(--navy-2));
    border-radius: var(--r);
    padding: 44px 36px;
    text-align: center;
    color: #fff
}

.cta-box h2 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    margin-bottom: 8px
}

.cta-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 22px
}

/* MISSION HERO (about) */
.mission-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0b1a35
}

.mission-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4
}

.mission-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 52ch;
    padding: 60px 0
}

.mission-content h1 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px
}

.mission-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7
}

/* FOOTER */
footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 0
}

.foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted)
}

.foot-links {
    display: flex;
    gap: 18px
}

.foot-links a:hover {
    color: var(--text)
}

/* PROGRESS */
#pb {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 999;
    background: var(--blue);
    transition: width .1s linear;
    width: 0
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease
}

.reveal.shown {
    opacity: 1;
    transform: translateY(0)
}

/* 2-COL */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

@media(max-width:740px) {
    .two-col {
        grid-template-columns: 1fr
    }
}

/* SECTION IMAGE */
.sec-img-full {
    width: 100%;
    border-radius: var(--r);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
    object-fit: cover;
    margin: 28px 0
}

/* NAV MESH CANVAS */
canvas.mesh-canvas {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    opacity: .2
}/* WHATSAPP WIDGET */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
}
