﻿
:root {
    --ink:#101A2E;
    --ink-soft:#1B2740;
    --ink-softer:#22304D;
    --paper:#F5F6FA;
    --white:#FFFFFF;
    --teal:#0EA8A0;
    --teal-dark:#0A8781;
    --teal-tint:#E4F5F3;
    --violet:#5B4FE0;
    --violet-dark:#4A3FC7;
    --violet-tint:#ECEAFC;
    --coral:#FF5D3A;
    --coral-dark:#E64A29;
    --coral-tint:#FFEBE5;
    --amber:#FFB100;
    --amber-dark:#E6A000;
    --text:#3C4359;
    --muted:#7A8199;
    --line:#E4E7F0;
    --line-dark:#2A3654;
    --radius:16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    /* font-family:'Space Grotesk',sans-serif; */
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

-----------------

.no-js .owl-carousel, .owl-carousel.owl-loaded{
    display:inline-grid !important;
}
.services-section {
    background:#fff;
}
.services-section .services-container {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: -80px;
    z-index: 9;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* LEFT SIDE */
.services-section .services-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.services-section .services-left .desc {
    color: #555;
    margin-bottom: 10px;
}

.services-section .services-left .sub {
    margin-bottom: 10px;
}

.services-section .tag-btn {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

/* RIGHT SIDE */
.services-section .services-right {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 15px;
}

/* CARD */
.services-section .card {
    width: 135px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
    padding-block: 3rem !important;
}

.services-section .card:hover {
    transform: translateY(-5px);
}

/* COLORS */
.services-section .green { background: #3ecf5e; }
.services-section .teal { background: #3fc1b6; }
.services-section .lime { background: #9ac43c; }
.services-section .blue { background: #5aaed6; }
.services-section .orange { background: #f4a742; }

/* ICON */
.services-section .icon {
    width:auto;
    height:auto;
    font-size: 30px;
    margin-bottom: 8px;
}
.services-section .icon img{
    width:49px;
    height:43px;
}
----------

.mono {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12.5px;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding:0 15px;
}

section {
    padding: 100px 0;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-amber {
    background: var(--amber);
    color: var(--ink);
}

    .btn-amber:hover {
        background: var(--amber-dark);
    }

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

    .btn-primary:hover {
        background: var(--teal-dark);
    }

.btn-outline-dark {
    border: 1.5px solid #0ea8a0;
    color: #0ea8a0;
}

    .btn-outline-dark:hover {
        border-color: #0ea8a0;
        background: rgba(255,255,255,0.06);
    }

.btn-outline {
    border: 1.5px solid #0ea8a0;
    color: #0ea8a0;
}

    .btn-outline:hover {
        border-color: #0ea8a0;
    }

.btn-sm {
    padding: 10px 18px;
    font-size: 13.5px;
}

/* ============ Announcement bar ============ */
.announce {
    background: linear-gradient(to right, #0a2c2c, #006666);
    color: rgba(255,255,255,0.8);
    text-align: center;
    font-size: 13px;
    padding: 9px 20px;
}

    .announce a {
        color: var(--amber);
        font-weight: 600;
        margin-left: 6px;
    }

        .announce a:hover {
            text-decoration: underline;
        }

/* ============ Header / Mega menu ============ */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #0ea8a0;
    flex-shrink: 0;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-mark span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--white);
    }

.nav-main {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #2A3654;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: color .15s ease, background .15s ease;
}

    .nav-link:hover, .nav-item.open .nav-link {
        color: #2A3654;
        background: rgba(255,255,255,0.06);
    }

    .nav-link .chev {
        width: 14px;
        height: 14px;
        transition: transform .15s ease;
    }

.nav-item.open .nav-link .chev {
    transform: rotate(180deg);
}

.mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 680px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(16,26,46,0.22);
    padding: 28px;
    display: none;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    z-index: 50;
}

.nav-item.open .mega {
    display: grid;
}

.mega-col-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 10px 12px;
}

    .mega-col-title .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
    }

.mega[data-menu="services"] .mega-col:nth-child(1) .dot {
    background: var(--teal);
}

.mega[data-menu="services"] .mega-col:nth-child(2) .dot {
    background: var(--violet);
}

.mega[data-menu="services"] .mega-col:nth-child(3) .dot {
    background: var(--coral);
}

.mega-col-title span {
    color: var(--ink);
}

.mega-link {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13.8px;
    color: var(--text);
    transition: background .12s ease, color .12s ease;
}

    .mega-link:hover {
        background: var(--paper);
        color: var(--ink);
    }

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 300px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(16,26,46,0.22);
    padding: 12px;
    display: none;
    z-index: 50;
}

.nav-item.open .dropdown {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    transition: background .12s ease;
}

    .dropdown-link:hover {
        background: var(--paper);
    }

    .dropdown-link strong {
        display: block;
        font-size: 16px;
        color: var(--ink);
        margin-bottom: 3px;
    }

    .dropdown-link span {
        font-size: 14px;
        color: var(--muted);
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2A3654;
    font-size: 16px;
    font-weight: 600;
}

    .nav-phone .icon {
        width: 17px;
        height: 17px;
        color: var(--amber);
    }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

    .nav-toggle span {
        width: 22px;
        height: 2px;
        background: #1b2740;
        border-radius: 2px;
    }

/* ============ Hero ============ */
.hero {
    background: #fff;
    color: #2A3654;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    padding-bottom: 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    margin-bottom: 22px;
}

    .eyebrow::before {
        content: "";
        width: 18px;
        height: 2px;
        background: var(--teal);
    }

.hero h1 {
    font-size: 50px;
    color: #2A3654;
    margin-bottom: 22px;
}

    .hero h1 em {
        color: var(--teal);
        font-style: normal;
    }

.hero p.lead {
    font-size: 17px;
    color: #2A3654;
    max-width: 480px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.quicklinks {
    display: flex;
    justify-content:center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    /* border-top:1px solid #e6eafc;
    padding-top:26px; */
}

.quicklink {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #2a3654;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #2a3654;
    transition: border-color .15s ease, background .15s ease;
}
    /* .quicklink:hover{border-color:#1B2740;background:#1B2740;} */
    .quicklink .icon {
        width: 16px;
        height: 16px;
        color: #2a3654;
    }

/* Signal flow signature visual */
.flow-panel {
    background: #f5f6fa;
    border: 1px solid #ebedf6;
    border-radius: 20px;
    padding: 36px 28px 30px;
}

    .flow-panel .mono {
        color: #101a2e;
        margin-bottom: 26px;
        display: inline-block;
    }

.flow-track {
    position: relative;
    height: 2px;
    background: var(--line-dark);
    margin: 25px 8px 22px;
    z-index: -1;
}

    .flow-track::before, .flow-track::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 8px;
        height: 8px;
        margin-top: -4px;
        border-radius: 50%;
    }

    .flow-track::before {
        background: var(--teal);
        animation: travel 3.6s linear infinite;
    }

    .flow-track::after {
        background: var(--coral);
        animation: travel 3.6s linear infinite 1.8s;
    }

@keyframes travel {
    0% {
        left: 0;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.flow-nodes {
    display: flex;
    justify-content: space-between;
    margin-top: -46px;
    margin-bottom: 20px;
}

.flow-node {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .flow-node svg {
        width: 19px;
        height: 19px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.8;
    }

    .flow-node:nth-child(2) svg {
        stroke: var(--violet);
    }

    .flow-node:nth-child(3) svg {
        stroke: var(--coral);
    }

    .flow-node:nth-child(4) svg {
        stroke: var(--teal);
    }

.flow-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .flow-labels span {
        font-size: 11px;
        color: #2A3654;
        width: 44px;
        text-align: center;
    }

.flow-result {
    background: #fff;
    border: 1px solid var(--line-dark);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .flow-result strong {
        color: #2A3654;
        font-family: 'Space Grotesk',sans-serif;
        font-size: 15px;
    }

    .flow-result span {
        font-size: 12.5px;
        color: var(--teal);
        display: flex;
        align-items: center;
        gap: 6px;
    }

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

/* Trust band */
.band {
    background: #0ea8a0;
    border-block: 1px solid #0ea8a0;
    padding: 22px 0;
}

    .band .wrap {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 18px;
    }

    .band .item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13.5px;
        color: #fff;
        font-weight: 500;
    }

        .band .item .icon {
            width: 16px;
            height: 16px;
            color: #fff;
            flex-shrink: 0;
        }

/* ============ Section headers ============ */
.sec-head {
    /* max-width: 640px; */
    display:flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
}
.video-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:30px;
}
.video-row iframe{
    width:100%;
    height:300px;
    border-radius:4px;
}
    .sec-head .mono {
        color: var(--teal);
        margin-bottom: 14px;
        display: block;
        flex: 1;
        text-align: left;
        font-size: 20px;
    }

    .sec-head .mono font{
        font-size:48px;
        line-height:normal;
    }

    .sec-head h2 {
        font-size: 26px;
        text-align: left;
    }

    .sec-head p {
        color: var(--muted);
        font-size: 14px;
        margin-top: 20px;
        text-align: left;
    }

    .sec-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.row-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 56px;
}

    .row-between .sec-head {
        margin-bottom: 0;
    }

/* ============ About / intro ============ */
.about {
    background: #F5F6FA;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
}

    .about-visual .browser-bar {
        display: flex;
        gap: 6px;
        margin-bottom: 16px;
    }

        .about-visual .browser-bar span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--line);
        }

.about-copy .mono {
    color: var(--teal);
    display: block;
    margin-bottom: 14px;
}

.about-copy h2 {
    font-size: 36px;
    margin-bottom: 18px;
}

.about-copy p {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 16px;
}

    .about-copy p:last-of-type {
        margin-bottom: 26px;
    }

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

    .about-point .icon {
        width: 18px;
        height: 18px;
        color: var(--teal);
        flex-shrink: 0;
        margin-top: 1px;
    }

/* ============ Features (Engineered for Reach) ============ */
.features {
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(16,26,46,0.08);
        border-color: var(--line);
    }

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

    .feature-icon .icon {
        width: 22px;
        height: 22px;
        color: var(--white);
    }

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 9px;
}

.feature-card p {
    font-size: 16px;
    color: var(--muted);
}

/* ============ Capabilities grid (tiles) ============ */
.capabilities {
    background: var(--paper);
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.cap-tile {
    position: relative;
    border-radius: var(--radius);
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .15s ease, box-shadow .15s ease;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .cap-tile:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(16,26,46,0.1);
    }

    .cap-tile .cap-bg {
        position: absolute;
        inset: 0;
        opacity: 0.5;
    }

    .cap-tile .cap-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        position: relative;
        z-index: 2;
    }

        .cap-tile .cap-icon .icon {
            width: 21px;
            height: 21px;
            color: var(--white);
        }

    .cap-tile h3 {
        font-size: 18px;
        margin-bottom: 6px;
        position: relative;
        z-index: 2;
    }

    .cap-tile p {
        font-size: 16px;
        color: var(--muted);
        position: relative;
        z-index: 2;
    }

    .cap-tile[data-tone="teal"] {
        background: var(--teal-tint);
    }

        .cap-tile[data-tone="teal"] .cap-icon {
            background: var(--teal);
        }

    .cap-tile[data-tone="violet"] {
        background: var(--violet-tint);
    }

        .cap-tile[data-tone="violet"] .cap-icon {
            background: var(--violet);
        }

    .cap-tile[data-tone="coral"] {
        background: var(--coral-tint);
    }

        .cap-tile[data-tone="coral"] .cap-icon {
            background: var(--coral);
        }

/* ============ Services (with tabs) ============ */
.services {
    background: var(--white);
}

.cat-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cat-tab {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .15s ease;
    background: var(--white);
}

    .cat-tab .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--muted);
    }

    .cat-tab.active {
        border-color: var(--ink);
        color: var(--ink);
    }

    .cat-tab[data-cat="automation"].active .dot {
        background: var(--teal);
    }

    .cat-tab[data-cat="automation"].active {
        border-color: #0EA8A0;
    }

    .cat-tab[data-cat="build"].active {
        border-color: #5B4FE0;
    }

    .cat-tab[data-cat="growth"].active {
        border-color: #FF5D3A;
    }

    .cat-tab[data-cat="build"].active .dot {
        background: var(--violet);
    }

    .cat-tab[data-cat="growth"].active .dot {
        background: var(--coral);
    }

    .cat-tab[data-cat="all"].active .dot {
        background: var(--ink);
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.service-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    background: var(--white);
    transition: all 0.3s ease !important;
}

    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(16,26,46,0.08);
    }

.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

    .service-icon .icon {
        width: 20px;
        height: 20px;
        color: var(--white);
    }

.service-card[data-cat="automation"] .service-icon {
    background: var(--teal);
}

.service-card[data-cat="build"] .service-icon {
    background: var(--violet);
}

.service-card[data-cat="growth"] .service-icon {
    background: var(--coral);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 16px;
    color: var(--muted);
}

/* ============ Why us ============ */
.why {
    background: var(--paper);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.why-item {
    background: var(--white);
    padding: 34px 32px;
    display: flex;
    gap: 18px;
}

    .why-item .why-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        background: var(--paper);
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .why-item .why-icon .icon {
            width: 20px;
            height: 20px;
            color: var(--teal);
        }

    .why-item h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .why-item p {
        font-size: 16px;
        color: var(--muted);
    }

/* ============ Example flows (showcase) ============ */
.showcase {
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.showcase-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .showcase-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(16,26,46,0.1);
    }

.showcase-mock {
    padding: 18px;
    background: var(--ink);
}

    .showcase-mock .phone-frame {
        background: var(--ink-soft);
        border: 1px solid var(--line-dark);
        border-radius: 14px;
        padding: 14px;
        min-height: 200px;
    }

.mock-bubble {
    max-width: 82%;
    padding: 9px 13px;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.4;
}

    .mock-bubble.in {
        background: var(--ink-softer);
        color: rgba(255,255,255,0.85);
        border-bottom-left-radius: 3px;
    }

    .mock-bubble.out {
        background: var(--teal);
        color: var(--white);
        margin-left: auto;
        border-bottom-right-radius: 3px;
    }

.showcase-body {
    padding: 22px 24px 26px;
}

.showcase-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.showcase-card:nth-child(1) .showcase-tag {
    background: var(--teal-tint);
    color: var(--teal-dark);
}

.showcase-card:nth-child(2) .showcase-tag {
    background: var(--coral-tint);
    color: var(--coral-dark);
}

.showcase-card:nth-child(3) .showcase-tag {
    background: var(--violet-tint);
    color: var(--violet-dark);
}

.showcase-body h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
}

.showcase-body p {
    font-size: 16px;
    color: var(--muted);
}

/* ============ Process ============ */
.process {
    background: var(--paper);
    color: var(--white);
}

    .process .sec-head h2 {
        color: #101A2E;
    }

    .process .sec-head p {
        color: #101A2E;
    }

.process-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    position: relative;
}

.process-step {
    padding: 0 24px 0 0;
    position: relative;
}

    .process-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 17px;
        right: 0;
        width: 24px;
        height: 1px;
        background: var(--line-dark);
    }

    .process-step .step-num {
        font-family: 'Space Grotesk',sans-serif;
        font-size: 15px;
        color: var(--teal);
        border: 1px solid var(--line-dark);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
    }

    .process-step h3 {
        color: #101A2E;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .process-step p {
        font-size: 14px;
        color: #101A2E;
    }

/* ============ FAQ ============ */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 4px;
    width: 100%;
    text-align: left;
}

    .faq-q h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--ink);
        font-family: 'Inter',sans-serif;
    }

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

    .faq-toggle::before, .faq-toggle::after {
        content: "";
        position: absolute;
        background: var(--ink);
        border-radius: 2px;
        transition: transform .2s ease, opacity .2s ease;
    }

    .faq-toggle::before {
        width: 12px;
        height: 2px;
    }

    .faq-toggle::after {
        width: 2px;
        height: 12px;
    }

.faq-item.open .faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.open .faq-toggle {
    background: var(--teal);
}

    .faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after {
        background: var(--white);
    }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

    .faq-a p {
        padding: 0 4px 22px;
        font-size: 16px;
        color: var(--muted);
        max-width: 640px;
    }

/* ============ Articles ============ */
.articles {
    background: var(--paper);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .article-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(16,26,46,0.08);
    }

.article-thumb {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .article-thumb .icon {
        width: 34px;
        height: 34px;
        color: var(--white);
        position: relative;
        z-index: 2;
    }

    .article-thumb .pattern {
        position: absolute;
        inset: 0;
        opacity: .5;
    }

.article-body {
    padding: 22px 24px 26px;
}

    .article-body .mono {
        font-size: 11px;
        margin-bottom: 10px;
        display: block;
    }

    .article-body h3 {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 28px;
    }

    .article-body a.read {
        font-size: 14px;
        font-weight: 600;
        color: var(--teal);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

/* ============ Location ============ */
.location {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.location-copy .mono {
    color: var(--teal);
    display: block;
    margin-bottom: 14px;
}

.location-copy h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.location-copy p {
    color: var(--muted);
    margin-bottom: 24px;
    font-size: 16px;
}

.location-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

    .location-detail .icon {
        width: 19px;
        height: 19px;
        color: var(--teal);
        flex-shrink: 0;
        margin-top: 5px;
    }

    .location-detail strong {
        display: block;
        font-size: 16px;
        color: var(--ink);
        margin-bottom: 2px;
    }

    .location-detail span {
        font-size: 15px;
        color: var(--muted);
    }

.map-visual {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 0;
    aspect-ratio: 1/0.85;
    position: relative;
    overflow: hidden;
}

/* ============ CTA ============ */
.cta {
    background: var(--teal);
    color: var(--white);
    text-align: center;
}

    .cta h2 {
        color: var(--white);
        font-size: 36px;
        margin-bottom: 16px;
    }

    .cta p {
        color: rgba(255,255,255,0.85);
        margin-bottom: 32px;
        font-size: 16px;
    }

    .cta .btn-amber {
        color: var(--ink);
    }
/* ============ Footer ============ */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.55);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3,1fr);
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line-dark);
}

    .footer-grid h4 {
        color: var(--white);
        font-size: 16px;
        margin-bottom: 18px;
    }

    .footer-grid ul li {
        margin-bottom: 10px;
        font-size: 16px;
    }

        .footer-grid ul li a:hover {
            color: var(--white);
        }

.footer-brand p {
    font-size: 16px;
    max-width: 280px;
    margin-top: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease,transform .6s ease;
}

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

.stagger .reveal:nth-child(1) {
    transition-delay: 0s;
}

.stagger .reveal:nth-child(2) {
    transition-delay: .06s;
}

.stagger .reveal:nth-child(3) {
    transition-delay: .12s;
}

.stagger .reveal:nth-child(4) {
    transition-delay: .18s;
}

.stagger .reveal:nth-child(5) {
    transition-delay: .24s;
}

.stagger .reveal:nth-child(6) {
    transition-delay: .3s;
}

@media (prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .flow-track::before, .flow-track::after {
        animation: none;
        opacity: 1;
        left: 50%;
    }

    .pulse-dot {
        animation: none;
    }
}

/* Responsive */
@media screen and (max-width:960px) {

    .nav {
        padding: 15px;
    }

    .hero {
        padding-bottom: 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .cap-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .process-row {
        grid-template-columns: repeat(2,1fr);
        row-gap: 36px;
    }

    .process-step:nth-child(2)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-main {
        display: none;
    }
}

@media (max-width:720px) {
    .nav-toggle {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .hero h1 {
        font-size: 34px;
    }

    section {
        padding: 64px 0;
    }

    .feature-grid, .cap-grid, .service-grid {
        grid-template-columns: 1fr;
    }

    .process-row {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sec-head h2 {
        font-size: 26px;
    }

    .row-between {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile nav panel */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--ink);
    z-index: 300;
    padding: 20px 24px;
    overflow-y: auto;
}

    .mobile-nav.open {
        display: block;
    }

.mobile-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.mobile-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mobile-close .icon {
        color: var(--white);
        width: 18px;
        height: 18px;
    }

.mobile-group {
    margin-bottom: 8px;
}

.mobile-group-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 6px;
    color: var(--white);
    font-weight: 600;
    font-size: 15.5px;
    border-bottom: 1px solid var(--line-dark);
}

    .mobile-group-title .chev {
        width: 16px;
        height: 16px;
        color: rgba(255,255,255,0.5);
        transition: transform .2s ease;
    }

.mobile-group.open .mobile-group-title .chev {
    transform: rotate(180deg);
}

.mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

    .mobile-sub a {
        display: block;
        padding: 11px 10px;
        color: rgba(255,255,255,0.65);
        font-size: 14px;
    }

.mobile-nav-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
