* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --navy: #04091a;
    --navy2: #080f24;
    --navy3: #0d1730;
    --card: #111c35;
    --card2: #0f1a30;
    --line: rgba(255, 255, 255, 0.07);
    --line2: rgba(255, 255, 255, 0.12);
    --blue: #2563eb;
    --blue-h: #1d4ed8;
    --blue-soft: rgba(37, 99, 235, 0.12);
    --blue-glow: rgba(37, 99, 235, 0.25);
    --cyan: #38bdf8;
    --brand: #0377d9;
    --brand-light: #5aa7e6;
    --white: #ffffff;
    --t1: #f0f4ff;
    --t2: #8b9dc8;
    --t3: #4a5f8a;
    --r: 8px;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    font-family: "Inter", sans-serif;
    background: var(--navy);
    color: var(--t1);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── INFO BAR ── */
.infobar {
    background: var(--navy2);
    border-bottom: 1px solid var(--line);
}
.infobar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 38px;
}
.infobar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 0;
    overflow: hidden;
}
.infobar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--t2);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
a.infobar-item:hover {
    color: var(--t1);
}
.infobar-item svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: var(--brand-light);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.infobar-address {
    overflow: hidden;
    text-overflow: ellipsis;
}
.infobar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.infobar-soc {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.infobar-soc:hover {
    background: var(--brand);
}
.infobar-soc svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: var(--t1);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── NAV ── */
.topbar {
    background: rgba(4, 9, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s;
}
.topbar.scrolled {
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5);
}
.nav-wrap {
    display: flex;
    align-items: center;
    height: 78px;
    gap: 1.5rem;
}
.logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    flex: none;
    display: block;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-name {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.32rem;
    color: var(--white);
    letter-spacing: -0.4px;
}
.logo-name span {
    color: var(--brand-light);
}
.logo-tag {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.74rem;
    color: var(--t3);
    letter-spacing: 0.2px;
    margin-top: 2px;
}
.nav-items {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.1rem;
    align-items: center;
}
.nav-items > li > a,
.nav-items > li > span {
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--t2);
    text-decoration: none;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition:
        color 0.15s,
        background 0.15s;
    white-space: nowrap;
}
.nav-items > li > a:hover,
.nav-items > li > span:hover {
    color: var(--t1);
    background: rgba(255, 255, 255, 0.05);
}
.nav-items .drop-parent {
    position: relative;
}
.nav-items .drop-parent > span::after {
    content: "";
    border: solid var(--t3);
    border-width: 0 1.5px 1.5px 0;
    padding: 2.5px;
    transform: rotate(45deg);
    display: inline-block;
    margin-top: -2px;
    transition: transform 0.2s;
}
.nav-items .drop-parent.open > span::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}
.nav-items .drop-parent:hover > span::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}
.drop-panel {
    display: none;
    position: absolute;
    top: calc(100%+8px);
    left: 0;
    background: var(--card);
    border: 1px solid var(--line2);
    border-radius: 12px;
    min-width: 240px;
    padding: 0.6rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.drop-parent:hover .drop-panel,
.drop-parent:focus-within .drop-panel {
    display: block;
}
.drop-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.55rem 0.75rem;
    border-radius: 7px;
    font-size: 0.82rem;
    color: var(--t2);
    text-decoration: none;
    transition: all 0.15s;
}
.drop-panel a:hover {
    background: var(--blue-soft);
    color: var(--t1);
}
.drop-panel a .dp-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.drop-panel-wide {
    min-width: 340px;
    max-width: 380px;
}
.drop-panel-wide a {
    align-items: flex-start;
}
.drop-panel-wide a .dp-icon {
    margin-top: 0.1rem;
}
.dp-title {
    font-weight: 600;
    color: var(--t1);
}
.dp-desc {
    color: var(--t3);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 0.15rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.drop-panel a .dp-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.nav-end {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.n-login {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--t2);
    text-decoration: none;
    padding: 0.46rem 1rem;
    border: 1px solid var(--line2);
    border-radius: 6px;
    transition: all 0.15s;
}
.n-login:hover {
    color: var(--t1);
    border-color: var(--t3);
}
.n-cta {
    font-size: 0.93rem;
    font-weight: 600;
    color: #fff;
    background: var(--blue);
    text-decoration: none;
    padding: 0.48rem 1.2rem;
    border-radius: 6px;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.n-cta:hover {
    background: var(--blue-h);
    color: #fff;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: 1px solid var(--line2);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s;
}
.nav-toggle:hover {
    border-color: var(--brand-light, var(--cyan));
    background: rgba(255, 255, 255, 0.04);
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 1px;
    background: var(--t1);
    margin: 2.5px 0;
    transition: transform 0.2s, opacity 0.2s;
}
.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
    position: relative;
    padding: 7rem 0 6rem;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-bg::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.14) 0%,
        transparent 65%
    );
    top: -300px;
    right: -200px;
}
.hero-bg::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.07) 0%,
        transparent 60%
    );
    bottom: -200px;
    left: -150px;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(
        ellipse 80% 80% at 50% 50%,
        black 30%,
        transparent 100%
    );
}
.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.35);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.75rem;
}
.h-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 2s infinite;
}

/* ── HERO VISUAL ── */
.hero-visual {
    position: relative;
    padding: 1.5rem 0 1.5rem 2rem;
}
.hv-card {
    background: var(--card);
    border: 1px solid var(--line2);
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
}
.hv-main {
    position: relative;
    z-index: 2;
}
.hv-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}
.hv-notif {
    position: absolute;
    bottom: -1.25rem;
    left: -1.5rem;
    z-index: 3;
    min-width: 260px;
    animation: floatY 4s ease-in-out infinite;
}
.hv-stack {
    position: absolute;
    top: -1.25rem;
    right: -1.25rem;
    z-index: 3;
    min-width: 220px;
    animation: floatY 4s ease-in-out infinite 1.5s;
}
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}
@keyframes heroImgFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
.hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 1.5rem;
}
.hero h1 .hl {
    background: linear-gradient(135deg, #60a5fa, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--t2);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.25rem;
}
.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.7rem 1.5rem;
    border-radius: 7px;
    text-decoration: none;
    border: none;
    transition: background 0.15s;
    font-family: "Inter", sans-serif;
}
.btn-blue:hover {
    background: var(--blue-h);
    color: #fff;
}
.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--t2);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.7rem 1.5rem;
    border-radius: 7px;
    text-decoration: none;
    border: 1px solid var(--line2);
    transition: all 0.15s;
}
.btn-ghost-white:hover {
    color: var(--t1);
    border-color: var(--t3);
}
.hero-kpi {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 3.5rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--card2);
}
.kpi-item {
    flex: 1;
    min-width: 120px;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--line);
}
.kpi-item:last-child {
    border-right: none;
}
.kpi-n {
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.kpi-l {
    font-size: 0.75rem;
    color: var(--t3);
    margin-top: 5px;
    font-weight: 500;
}

/* ── TRUSTED ── */
.trusted-bar {
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
    background: var(--navy2);
}
.trusted-bar p {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 1.25rem;
}
.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}
.logo-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--t3);
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}
.logo-chip:hover {
    border-color: var(--line2);
    color: var(--t2);
}

/* ── SECTIONS ── */
section {
    padding: 5rem 0;
}
.s-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.8rem;
}
.s-tag::before {
    content: "";
    width: 16px;
    height: 1.5px;
    background: var(--cyan);
}
.s-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.7px;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.s-sub {
    font-size: 0.95rem;
    color: var(--t2);
    line-height: 1.8;
    max-width: 520px;
}
.s-sub a {
    color: var(--cyan);
    text-decoration: underline;
    text-decoration-color: rgba(56, 189, 248, 0.35);
    text-underline-offset: 3px;
}
.s-sub a:hover {
    color: var(--brand-light, var(--cyan));
}
.bg2 {
    background: var(--navy2);
}
.bg3 {
    background: var(--navy3);
}

/* ── SERVICES GRID ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 3rem;
}
.svc-cell {
    background: var(--card2);
    padding: 2rem 1.75rem;
    transition: background 0.2s;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}
.svc-cell:hover {
    background: var(--card);
}
.svc-cell::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(37, 99, 235, 0.4),
        transparent
    );
    opacity: 0;
    transition: opacity 0.2s;
}
.svc-cell:hover::after {
    opacity: 1;
}
.svc-ic {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--blue-soft);
    border: 1px solid rgba(37, 99, 235, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.svc-ic svg {
    width: 18px;
    height: 18px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.svc-cell h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: "Manrope", sans-serif;
}
.svc-cell p {
    font-size: 0.82rem;
    color: var(--t2);
    line-height: 1.7;
    margin: 0;
}
.svc-cell .arrow {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    opacity: 0;
    transition:
        opacity 0.2s,
        transform 0.2s;
    color: var(--cyan);
}
.svc-cell .arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.svc-cell:hover .arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* ── PACKAGES ── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}
.pkg-cell {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 2.25rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.pkg-cell:hover {
    border-color: var(--line2);
    transform: translateY(-4px);
}
.pkg-featured {
    background: var(--card);
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue), 0 24px 48px -24px var(--blue-glow);
}
.pkg-featured:hover {
    transform: translateY(-4px);
}
.pkg-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
}
.pkg-cell h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.4rem;
}
.pkg-desc {
    font-size: 0.82rem;
    color: var(--t2);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.pkg-desc p {
    margin: 0 0 0.6rem;
}
.pkg-desc p:last-child {
    margin-bottom: 0;
}
.pkg-desc ul,
.pkg-desc ol {
    margin: 0 0 0.6rem;
    padding-left: 1.1rem;
}
.pkg-desc a {
    color: var(--cyan);
}
.pkg-price {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 2.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.pkg-price span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--t3);
    margin-left: 4px;
}
.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0 0 2rem;
    padding: 0;
    flex: 1;
}
.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--t2);
    line-height: 1.5;
}
.pkg-more {
    color: var(--t3) !important;
    font-style: italic;
}
.pkg-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--t2);
    text-decoration: none;
    margin-bottom: 1.25rem;
}
.pkg-back:hover {
    color: var(--cyan);
}
.pkg-side {
    position: sticky;
    top: 96px;
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    background: var(--navy2);
    border: 1px solid var(--line2);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.pkg-side-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    color: var(--t2);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 0.65rem 1rem;
    border-radius: 7px;
    text-decoration: none;
    border: 1px solid var(--line2);
    transition: all 0.15s;
}
.pkg-side-alt:hover {
    color: var(--t1);
    border-color: var(--t3);
}
.pkg-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}
.pkg-cta {
    margin-top: auto;
    text-align: center;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
}
.pkg-cta:hover {
    background: var(--blue-h);
    color: #fff;
}

/* ── ABOUT PAGES (Company Profile / CEO Message / Gallery) ── */
.page-copy {
    max-width: 760px;
    color: var(--t2) !important;
    font-size: 0.98rem;
    line-height: 1.85;
}
.page-copy * {
    color: inherit !important;
    background-color: transparent !important;
    background-image: none !important;
}
.page-copy > *:first-child {
    margin-top: 0 !important;
}
.page-copy p {
    margin: 0 0 1.25rem;
    color: var(--t2) !important;
    font-family: "Inter", sans-serif !important;
    font-size: 0.98rem !important;
    font-weight: 400 !important;
}
.page-copy :where([style]) {
    color: inherit !important;
    background-color: transparent !important;
    background-image: none !important;
    font-family: inherit !important;
    font-size: inherit !important;
}
.page-copy h1 p,
.page-copy h2 p,
.page-copy h3 p,
.page-copy h1 ul,
.page-copy h2 ul,
.page-copy h3 ul {
    margin-top: 0.85rem;
}
.page-copy > p:first-of-type {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--t1) !important;
    line-height: 1.75;
}
.page-copy strong,
.page-copy b {
    color: var(--t1) !important;
    font-weight: 700;
}
.page-copy h1 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.3px;
    color: #fff !important;
    line-height: 1.3;
    margin: 3rem 0 1.1rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--line);
    position: relative;
}
.page-copy h1::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-light, var(--cyan)), transparent);
}
.page-copy h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.22rem;
    letter-spacing: -0.2px;
    color: #fff !important;
    line-height: 1.3;
    margin: 2rem 0 0.85rem;
}
.page-copy h3 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--t1) !important;
    line-height: 1.35;
    margin: 1.6rem 0 0.6rem;
    padding-left: 0.9rem;
    border-left: 2px solid var(--brand-light, var(--cyan));
}
.page-copy ul,
.page-copy ol {
    margin: 0 0 1.5rem;
    padding-left: 0;
    list-style: none;
}
.page-copy ul li,
.page-copy ol li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.75rem;
    color: var(--t1) !important;
    font-weight: 500;
}
.page-copy ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: var(--blue-soft);
    border: 1px solid rgba(37, 99, 235, 0.25);
}
.page-copy ul li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0.52em;
    width: 8px;
    height: 5px;
    border-left: 1.75px solid var(--brand-light, var(--cyan));
    border-bottom: 1.75px solid var(--brand-light, var(--cyan));
    transform: rotate(-45deg);
}
.page-copy ol {
    counter-reset: page-copy-ol;
}
.page-copy ol li {
    counter-increment: page-copy-ol;
}
.page-copy ol li::before {
    content: counter(page-copy-ol) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--brand-light, var(--cyan));
}
.page-copy hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, var(--line2), transparent);
    margin: 2.25rem 0;
}
.page-copy img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid var(--line);
    margin: 1.75rem 0;
    display: block;
}
.page-copy a {
    color: var(--cyan) !important;
    text-decoration: underline;
    text-decoration-color: rgba(56, 189, 248, 0.35);
    text-underline-offset: 3px;
}
.page-copy a:hover {
    color: var(--brand-light, var(--cyan)) !important;
}
.page-empty {
    color: var(--t3);
    font-size: 0.9rem;
}
.page-banner {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--line);
    margin: 2.5rem 0;
    display: block;
}

/* ── ICON-CARD MINI GRID ── */
/* Used two ways: (1) built automatically around emoji-led <h3> runs inside
   admin rich-text content (.page-copy), by the script in master.blade.php,
   turning stacked "🌐 Heading / paragraph" text into cards; and (2) authored
   directly in blade templates (e.g. solutions/ready-software default state)
   as a static feature grid. Matches the site's existing svc-ic treatment. */
.svc-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.75rem 0 2.25rem;
}
.svc-mini-card {
    background: var(--card);
    border: 1px solid var(--line2);
    border-radius: 14px;
    padding: 1.5rem 1.5rem 1.6rem;
}
.svc-mini-card h3 {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-left: none;
    padding-left: 0;
    margin: 0 0 0.6rem;
}
.svc-mini-ic {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--blue-soft);
    border: 1px solid rgba(37, 99, 235, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
}
.svc-mini-card p {
    margin: 0 !important;
    font-size: 0.92rem !important;
}
@media (max-width: 700px) {
    .svc-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* ── PROCESS STEP STRIP ── */
/* Default "how we deliver it" strip shown on solutions / ready-software
   pages when the admin hasn't added custom content yet. */
.step-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    margin: 1.75rem 0 0;
}
.step-item {
    background: var(--card);
    padding: 1.75rem 1.5rem;
}
.step-num {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--cyan);
    margin-bottom: 0.6rem;
}
.step-item h5 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--t1);
    margin: 0 0 0.4rem;
}
.step-item p {
    font-size: 0.85rem;
    color: var(--t2);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .step-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .step-strip {
        grid-template-columns: 1fr;
    }
}

/* ── ERROR PAGE ── */
.error-page {
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
}
.error-page::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(3, 119, 217, 0.16), transparent 65%);
    pointer-events: none;
}
.error-wrap {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.error-badge {
    width: 84px;
    height: 84px;
    margin: 0 auto 2rem;
    border-radius: 22px;
    background: linear-gradient(145deg, var(--blue), var(--blue-h));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px -12px rgba(37, 99, 235, 0.55);
}
.error-badge svg {
    width: 34px;
    height: 34px;
}
.error-code {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: clamp(4.5rem, 12vw, 7rem);
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff, var(--cyan) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}
.error-title {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 0.9rem;
}
.error-desc {
    font-size: 0.95rem;
    color: var(--t2);
    line-height: 1.75;
    margin: 0 0 2.25rem;
}
.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.error-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
}
.error-links a {
    color: var(--t3);
    text-decoration: none;
    transition: color 0.15s;
}
.error-links a:hover {
    color: var(--cyan);
}
.error-links span {
    color: var(--line2);
}
@media (max-width: 480px) {
    .error-page {
        padding: 4rem 0 5rem;
    }
    .error-actions {
        flex-direction: column;
        width: 100%;
    }
    .error-actions .btn-blue,
    .error-actions .btn-ghost-white {
        width: 100%;
        justify-content: center;
    }
}

/* Generic bordered card wrapper for freeform page content (company profile,
   legal pages, blog posts, careers, solutions/ready-software details) —
   gives every content page the same boxed treatment as the CEO Message card. */
.content-card {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2.5rem;
    margin-top: 2.5rem;
}
.content-card .page-copy {
    margin-top: 0 !important;
}
.content-card .page-copy > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}
@media (max-width: 640px) {
    .content-card {
        padding: 1.75rem 1.5rem;
        border-radius: 14px;
    }
}

.ceo-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2.5rem;
    margin-top: 2.5rem;
}
.ceo-photo {
    width: 160px;
    height: 160px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--line2);
    flex-shrink: 0;
}
.ceo-name {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.2rem;
}
.ceo-role {
    font-size: 0.82rem;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.gallery-cell {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line);
    background: var(--card2);
}
.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.gallery-cell:hover img {
    transform: scale(1.06);
}
.gallery-cell figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.6rem 0.75rem;
    font-size: 0.76rem;
    color: #fff;
    background: linear-gradient(0deg, rgba(4, 9, 26, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}
.gallery-cell:hover figcaption {
    opacity: 1;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.client-card {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.2s, transform 0.2s;
}
.client-card:hover {
    border-color: var(--line2);
    transform: translateY(-3px);
}
.client-logo {
    width: 100%;
    height: 70px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}
.client-logo img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
}
.client-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--t2);
    text-align: center;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.story-card {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}
.story-card:hover {
    border-color: var(--line2);
    transform: translateY(-4px);
}
.story-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.story-body {
    padding: 1.5rem 1.5rem 1.75rem;
}
.story-body h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.6rem;
}
.story-body p {
    font-size: 0.85rem;
    color: var(--t2);
    line-height: 1.7;
    margin: 0 0 1rem;
}
.story-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cyan);
    text-decoration: none;
}
.story-link:hover {
    color: var(--blue);
}

.team-card {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover {
    border-color: var(--line2);
    transform: translateY(-3px);
}
.team-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line2);
    margin-bottom: 1rem;
}
.team-name {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.25rem;
}
.team-role {
    font-size: 0.78rem;
    color: var(--cyan);
    font-weight: 500;
    margin-bottom: 1rem;
}
.team-social {
    display: flex;
    gap: 0.5rem;
}
.team-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.team-social a:hover {
    background: var(--blue);
}
.team-social svg {
    width: 13px;
    height: 13px;
    fill: var(--t1);
}

/* ── TEAM TREE (org chart) ── */
.team-tree {
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}
.team-tree ul {
    padding-top: 2.5rem;
    position: relative;
    display: table;
    margin: 0 auto;
}
.team-tree li {
    list-style: none;
    float: left;
    text-align: center;
    position: relative;
    padding: 2.5rem 1rem 0;
}
.team-tree li .team-card {
    width: 180px;
    margin: 0 auto;
}
.team-tree li::before,
.team-tree li::after {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 50%;
    height: 2.5rem;
    border-top: 1px solid var(--line2);
}
.team-tree li::after {
    right: auto;
    left: 50%;
    border-left: 1px solid var(--line2);
}
.team-tree li:only-child::before,
.team-tree li:only-child::after {
    display: none;
}
.team-tree li:only-child {
    padding-top: 0;
}
.team-tree li:first-child::before,
.team-tree li:last-child::after {
    border: 0 none;
}
.team-tree li:last-child::before {
    border-right: 1px solid var(--line2);
    border-radius: 0 6px 0 0;
}
.team-tree li:first-child::after {
    border-radius: 6px 0 0 0;
}
.team-tree ul ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2.5rem;
    border-left: 1px solid var(--line2);
}
.team-tree > ul {
    padding-top: 0;
}

/* ── CAREERS ── */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}
.job-card {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}
.job-card:hover {
    border-color: var(--line2);
    transform: translateY(-2px);
}
.job-card h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 0.5rem;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.job-meta span {
    font-size: 0.78rem;
    color: var(--t2);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
}
.job-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.job-arrow svg {
    width: 16px;
    height: 16px;
}
.job-card:hover .job-arrow {
    background: var(--blue);
    color: #fff;
}

/* ── BLOG ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.blog-card {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s;
}
.blog-card:hover {
    border-color: var(--line2);
    transform: translateY(-4px);
}
.blog-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy2);
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-body {
    padding: 1.5rem;
}
.blog-body h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin: 0 0 0.6rem;
    line-height: 1.4;
}
.blog-body p {
    font-size: 0.85rem;
    color: var(--t2);
    line-height: 1.7;
    margin: 0 0 0.9rem;
}
.blog-date {
    font-size: 0.74rem;
    color: var(--t3);
    font-weight: 500;
}

/* ── DEMO REQUEST MODAL ── */
.demo-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(2, 6, 15, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
}
.demo-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.demo-modal {
    position: relative;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--card2);
    border: 1px solid var(--line2);
    border-radius: 16px;
    padding: 2.25rem;
    transform: translateY(16px);
    transition: transform 0.2s;
}
.demo-modal-overlay.open .demo-modal {
    transform: translateY(0);
}
.demo-modal h3 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 0.4rem;
}
.demo-modal-product {
    display: none;
    font-size: 0.82rem;
    color: var(--cyan);
    font-weight: 600;
    margin: 0 0 1.25rem;
}
.demo-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.demo-modal-close svg {
    width: 15px;
    height: 15px;
}

/* ── CONTACT PAGE ── */
.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.contact-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 3rem;
}
.contact-offices {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.office-card {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.office-card h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin: 0;
}
.office-card p {
    font-size: 0.82rem;
    color: var(--t2);
    line-height: 1.6;
    margin: 0;
}
.office-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--t2);
    text-decoration: none;
}
.office-item:hover {
    color: var(--cyan);
}
.office-item svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--brand-light, var(--cyan));
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.contact-form-wrap {
    display: flex;
    justify-content: center;
}
.contact-form-box {
    width: 100%;
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 2.5rem;
}
.contact-form-box h3 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-field {
    margin-bottom: 1.1rem;
}
.form-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--t2);
    margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea {
    width: 100%;
    background: var(--navy2);
    border: 1px solid var(--line2);
    border-radius: 8px;
    padding: 0.7rem 0.9rem;
    color: var(--t1);
    font-size: 0.88rem;
    font-family: "Inter", sans-serif;
    resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--blue);
}
.form-error {
    font-size: 0.75rem;
    color: #f87171;
    margin-top: 0.3rem;
}
.form-alert {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.form-alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
}
.form-alert-error {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fca5a5;
}

/* ── PRODUCTS ── */
.prod-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2.5rem;
}
.prod-card {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition:
        border-color 0.2s,
        background 0.2s;
    position: relative;
    overflow: hidden;
}
.prod-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-soft), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}
.prod-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    background: var(--card);
}
.prod-card:hover::before {
    opacity: 1;
}
.prod-ic {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(56, 189, 248, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.prod-ic svg {
    width: 17px;
    height: 17px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.prod-card h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--t1);
    margin: 0 0 0.2rem;
    font-family: "Manrope", sans-serif;
}
.prod-card span {
    font-size: 0.76rem;
    color: var(--t3);
    line-height: 1.5;
}
.prod-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--cyan);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

/* ── PLATFORM ── */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.plat-card {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.2s;
}
.plat-card:hover {
    border-color: rgba(56, 189, 248, 0.25);
}
.plat-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--t3);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: "Manrope", sans-serif;
}
.plat-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: "Manrope", sans-serif;
}
.plat-card p {
    font-size: 0.82rem;
    color: var(--t2);
    line-height: 1.7;
    margin: 0;
}
.plat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}
.plat-pill svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

/* ── CLIENTS MARQUEE ── */
.marquee-wrap {
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
}
.marquee-wrap::before,
.marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--navy2), transparent);
}
.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--navy2), transparent);
}
.marquee-track {
    display: flex;
    gap: 1rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.m-logo {
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    min-width: 130px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.m-logo:hover {
    border-color: var(--line2);
}
.m-logo img {
    max-height: 28px;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0.55) grayscale(0.2);
    transition: filter 0.2s;
}
.m-logo:hover img {
    filter: brightness(0.9) grayscale(0);
}

/* ── TECH ── */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}
.t-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--t2);
    transition: all 0.2s;
}
.t-chip:hover {
    border-color: rgba(37, 99, 235, 0.4);
    color: var(--t1);
    background: var(--blue-soft);
}
.t-chip img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0.7);
}
.t-chip:hover img {
    filter: brightness(1);
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, #0a1540, #04091a);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 5rem 0;
}
.cta-box {
    background: var(--card2);
    border: 1px solid var(--line2);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.18),
        transparent 65%
    );
    pointer-events: none;
}
.cta-box h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}
.cta-box p {
    color: var(--t2);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 480px;
}
.contact-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.c-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--t2);
    text-decoration: none;
    transition: color 0.15s;
}
.c-item:hover {
    color: var(--t1);
}
.c-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.c-sep {
    width: 1px;
    height: 14px;
    background: var(--line2);
}

/* ── FOOTER ── */
footer {
    background: #02060f;
    border-top: 1px solid var(--line);
    padding: 5.5rem 0 1.75rem;
}
.f-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.f-logo-icon {
    flex: none;
    display: block;
}
.f-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.f-logo-name {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.28rem;
    color: #fff;
    letter-spacing: -0.3px;
}
.f-logo-name span {
    color: var(--brand-light);
}
.f-logo-tag {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.76rem;
    color: var(--t2);
    letter-spacing: 0.2px;
    margin-top: 3px;
}
.f-desc {
    font-size: 0.92rem;
    color: var(--t2);
    line-height: 1.8;
    margin: 1.25rem 0 1.75rem;
    max-width: 280px;
}
.f-head {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--t1);
    margin-bottom: 1.25rem;
}
.f-head::before {
    content: "";
    width: 14px;
    height: 1.5px;
    background: var(--brand-light);
    flex-shrink: 0;
}
.f-ul {
    list-style: none;
    padding: 0;
}
.f-ul li {
    margin-bottom: 0.75rem;
}
.f-ul a {
    font-size: 0.9rem;
    color: var(--t2);
    text-decoration: none;
    transition: color 0.15s, padding-left 0.15s;
}
.f-ul a:hover {
    color: var(--cyan);
    padding-left: 3px;
}
.f-contact a,
.f-contact div {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--t2);
    text-decoration: none;
    margin-bottom: 0.9rem;
    line-height: 1.65;
    transition: color 0.15s;
}
.f-contact a:hover {
    color: var(--cyan);
}
.f-contact-ic {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.f-contact svg {
    width: 14px;
    height: 14px;
    stroke: var(--brand-light);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
}
.f-bottom {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    margin-top: 3.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}
.f-bottom p,
.f-bottom a {
    font-size: 0.84rem;
    color: var(--t2);
    text-decoration: none;
}
.f-bottom a:hover {
    color: var(--t1);
}
.f-socials {
    display: flex;
    gap: 0.6rem;
}
.f-soc {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.f-soc:hover {
    background: var(--brand, var(--blue));
    border-color: transparent;
    transform: translateY(-2px);
}
.f-soc svg {
    width: 14px;
    height: 14px;
    stroke: var(--t2);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.15s;
}
.f-soc:hover svg {
    stroke: #fff;
}

/* ── WA ── */
.wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 900;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(18, 140, 126, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
.wa::before,
.wa::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: waPing 2.4s cubic-bezier(0, 0, 0.3, 1) infinite;
}
.wa::after {
    animation-delay: 1.2s;
}
@media (prefers-reduced-motion: reduce) {
    .wa::before,
    .wa::after {
        animation: none;
        display: none;
    }
}
.wa:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(18, 140, 126, 0.6);
}
.wa svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}
@keyframes waPing {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

/* ── REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.rv.in {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .infobar-address {
        display: none;
    }
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pkg-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .pkg-featured {
        order: -1;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .office-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ceo-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .pkg-side {
        position: static;
        width: 100%;
    }
    .prod-list {
        grid-template-columns: 1fr;
    }
    .platform-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    /* ── INFO BAR MOBILE ── */
    .infobar {
        display: none;
    }

    /* ── NAVBAR MOBILE ── */
    .nav-items {
        display: none !important;
    }
    .n-login {
        display: none !important;
    }
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Keep logo + buttons on ONE single row — no wrapping */
    .nav-wrap {
        flex-wrap: nowrap !important;
        height: 64px !important;
        padding: 0 !important;
        gap: 0.5rem !important;
        align-items: center;
    }

    /* logo stays left, shrinks gracefully instead of colliding with the CTA */
    .logo {
        gap: 8px;
        flex-shrink: 1;
        min-width: 0;
    }
    .logo-icon {
        width: 44px;
        height: 48px;
        flex-shrink: 0;
    }
    .logo-text {
        min-width: 0;
    }
    .logo-name {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .logo-tag {
        display: none;
    }

    /* push Get Started + toggle to far right */
    .nav-end {
        margin-left: auto;
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    .n-cta {
        font-size: 0.78rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
    }

    /* MOBILE MENU DROPDOWN — absolute, below navbar */
    .nav-open .nav-items {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        z-index: 998;
        background: var(--card);
        border-bottom: 1px solid var(--line2);
        padding: 0.75rem 1rem 1rem;
        gap: 0.15rem;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
    .nav-open .nav-items > li {
        width: 100%;
    }
    .nav-open .nav-items > li > a,
    .nav-open .nav-items > li > span {
        padding: 0.7rem 1rem;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 8px;
        color: var(--t1) !important;
    }
    .nav-open .nav-items > li > a:hover,
    .nav-open .nav-items > li > span:hover {
        background: var(--blue-soft);
    }

    /* Dropdown submenu inside mobile */
    .nav-open .drop-panel {
        display: none;
        position: static !important;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        padding: 0.4rem 0.5rem;
        margin: 0.25rem 0 0.25rem 0.5rem;
    }
    .nav-open .drop-parent.open .drop-panel {
        display: block;
    }
    .nav-open .drop-panel a {
        padding: 0.55rem 0.75rem;
        font-size: 0.88rem;
        border-radius: 6px;
        color: var(--t2);
    }
    .nav-open .drop-panel a .dp-icon {
        display: none;
    }

    /* Login link inside open menu */
    .nav-open .n-login {
        display: block !important;
        width: 100%;
        text-align: center;
        padding: 0.7rem;
        border-radius: 8px;
        margin-top: 0.35rem;
        font-size: 0.9rem;
    }

    /* Topbar needs position relative for absolute menu */
    .topbar {
        position: sticky;
        top: 0;
    }

    /* ── CONTENT MOBILE ── */
    .hero {
        padding: 3rem 0 2.5rem;
    }
    .hero h1 {
        font-size: 1.85rem;
        letter-spacing: -0.7px;
    }
    .hero-desc {
        font-size: 0.92rem;
    }
    .hero-kpi {
        flex-direction: column;
    }
    .kpi-item {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .kpi-item:last-child {
        border-bottom: none;
    }
    .svc-grid {
        grid-template-columns: 1fr;
    }
    .cta-box {
        padding: 1.75rem 1.25rem;
    }
    section {
        padding: 3rem 0;
    }
    .trusted-bar .logo-row {
        gap: 1rem;
    }
    .logo-chip {
        font-size: 0.72rem;
        padding: 0.4rem 0.75rem;
    }
}
@media (max-width: 480px) {
    .team-tree li .team-card {
        width: 140px;
        padding: 1.5rem 0.75rem;
    }
    .team-tree li {
        padding: 2rem 0.5rem 0;
    }
    .hero h1 {
        font-size: 1.55rem;
    }
    .hero-kpi .kpi-n {
        font-size: 1.4rem;
    }
    .n-cta {
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .n-cta-label {
        display: none;
    }
    .n-cta svg {
        margin: 0;
    }
    .nav-toggle {
        width: 36px;
        height: 36px;
    }
    .nav-wrap {
        gap: 0.4rem !important;
    }
    .nav-end {
        gap: 0.4rem !important;
    }
    .logo-icon {
        width: 38px;
        height: 41px;
    }
    .logo-name {
        font-size: 1.05rem;
        max-width: 150px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    .client-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .story-grid {
        grid-template-columns: 1fr;
    }
    .office-grid {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-box {
        padding: 1.75rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    .job-arrow {
        display: none;
    }
    .ceo-card {
        padding: 1.5rem;
    }
}
