:root {
    --navy: #0f172a;
    --navy-soft: #18304f;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #06b6d4;
    --cyan-soft: #dff8fc;
    --green: #10b981;
    --ink: #152033;
    --muted: #64748b;
    --light: #f8fafc;
    --tint: #f3f8fd;
    --white: #ffffff;
    --border: #e2e8f0;
    --border-blue: #dbeafe;
    --shadow-sm: 0 8px 28px rgba(15, 23, 42, 0.06);
    --shadow: 0 22px 60px rgba(37, 99, 235, 0.11);
    --shadow-lg: 0 32px 90px rgba(15, 23, 42, 0.16);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;
    --font-body: "Inter", sans-serif;
    --font-display: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 118px;
    overflow-x: clip;
}

body {
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.72;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a,
button,
.service-card,
.product-card,
.why-card {
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.75rem, 5.15vw, 4.9rem);
}

h2 {
    font-size: clamp(2.05rem, 3.45vw, 3.4rem);
}

h3 {
    font-size: 1.2rem;
}

p:last-child {
    margin-bottom: 0;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 1rem;
    z-index: 2000;
    padding: .75rem 1rem;
    color: var(--white);
    background: var(--navy);
    border-radius: 0 0 10px 10px;
}

.skip-link:focus {
    top: 0;
}

.container {
    --bs-gutter-x: 2rem;
    max-width: 1240px;
}

.section {
    position: relative;
    padding: 112px 0;
}

.section-tint {
    background: var(--tint);
}

.section-deep {
    position: relative;
    color: #c7d4e8;
    background: linear-gradient(145deg, #071427 0%, #0d2544 56%, #0a3350 100%);
    overflow: hidden;
}

.section-deep h2,
.section-deep h3,
.section-deep strong {
    color: var(--white);
}

.section-deep .lead-copy {
    color: #b5c8df;
}

.deep-grid {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(125, 211, 252, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 211, 252, .14) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.1rem;
    color: var(--blue);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.35;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #67e8f9;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--cyan);
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(6, 182, 212, .11);
}

.lead-copy {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading.narrow {
    max-width: 790px;
}

.heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .7fr);
    gap: 4rem;
    align-items: end;
}

.heading-row h2 {
    max-width: 740px;
    margin-bottom: 0;
}

.heading-row > p,
.heading-row > div:last-child p {
    margin-bottom: 1rem;
}

.heading-row-dark p {
    color: #b5c8df;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    padding: .72rem 1.35rem;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: -.01em;
}

.btn-lg {
    min-height: 56px;
    padding: .9rem 1.6rem;
    font-size: .96rem;
}

.btn-sm {
    min-height: 42px;
    padding: .55rem 1.15rem;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #168acb);
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .22);
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-dark), #087da9);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(37, 99, 235, .28);
}

.btn-outline-dark {
    color: var(--navy);
    background: rgba(255, 255, 255, .62);
    border-color: #cbd5e1;
}

.btn-outline-dark:hover {
    color: var(--navy);
    background: var(--white);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.btn-soft {
    color: var(--blue-dark);
    background: #eaf2ff;
    border-color: #d5e5ff;
}

.btn-soft:hover {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 700;
}

.text-link:hover i,
.card-link:hover i,
.product-card > a:hover i {
    transform: translateX(4px);
}

.text-link i,
.card-link i,
.product-card > a i {
    transition: transform .25s ease;
}

/* Navigation */
.announcement-bar {
    position: relative;
    z-index: 1030;
    padding: .46rem 0;
    color: #cbd9ed;
    background: var(--navy);
    font-size: .74rem;
    letter-spacing: .01em;
}

.announcement-bar a {
    margin-left: .45rem;
    color: #67e8f9;
    font-weight: 700;
}

.announcement-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .16);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, .91);
    border-bottom: 1px solid rgba(226, 232, 240, .75);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}

.navbar {
    min-height: 82px;
    padding: .7rem 0;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .72rem;
    color: var(--navy);
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
}

.brand-mark img,
.footer-brand img {
    object-fit: contain;
}

.brand-copy,
.footer-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong,
.footer-brand strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.16rem;
    letter-spacing: -.02em;
}

.brand-copy small,
.footer-brand small {
    margin-top: .35rem;
    color: var(--muted);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.navbar-nav {
    gap: .12rem;
}

.navbar .nav-link {
    position: relative;
    padding: .65rem .85rem !important;
    color: #42526a;
    font-size: .86rem;
    font-weight: 600;
}

.navbar .nav-link::after {
    position: absolute;
    right: .85rem;
    bottom: .35rem;
    left: .85rem;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--blue);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    padding: .45rem;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(37, 99, 235, .14);
}

/* Home hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-home {
    display: flex;
    min-height: 750px;
    padding: 94px 0 110px;
    align-items: center;
    background: linear-gradient(145deg, #fff 5%, #f4f9ff 56%, #edf9fb 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image: linear-gradient(rgba(37, 99, 235, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, .08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, #000 0%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-glow-one {
    top: -180px;
    right: 3%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(37, 99, 235, .15), transparent 68%);
}

.hero-glow-two {
    bottom: -180px;
    left: 20%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(6, 182, 212, .13), transparent 70%);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    margin-bottom: 1.55rem;
    color: var(--navy);
}

.hero-copy h1 span {
    color: transparent;
    background: linear-gradient(120deg, var(--blue), #0e9bc2);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 2rem;
    color: #53647c;
    font-size: 1.12rem;
    line-height: 1.82;
}

.hero-actions,
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.hero-services-link {
    align-self: center;
    color: var(--navy);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.hero-services-link:hover,
.hero-services-link:focus-visible {
    color: var(--blue);
    text-decoration: underline;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    margin-top: 2rem;
    color: #475569;
    font-size: .82rem;
    font-weight: 600;
}

.hero-trust > div {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.trust-check {
    display: grid;
    width: 22px;
    height: 22px;
    color: #047857;
    background: #dcfce7;
    border-radius: 50%;
    place-items: center;
}

.hero-visual {
    position: relative;
    max-width: 650px;
    margin-left: auto;
    padding: 20px 12px 34px 30px;
}

.visual-frame {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(191, 219, 254, .9);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}

.visual-frame-top {
    display: flex;
    height: 38px;
    padding: 0 1rem;
    align-items: center;
    gap: .35rem;
    background: rgba(248, 250, 252, .94);
    border-bottom: 1px solid var(--border);
}

.visual-frame-top span {
    width: 7px;
    height: 7px;
    background: #cbd5e1;
    border-radius: 50%;
}

.visual-frame-top span:nth-child(1) { background: #38bdf8; }
.visual-frame-top span:nth-child(2) { background: #60a5fa; }
.visual-frame-top span:nth-child(3) { background: #2dd4bf; }

.visual-frame-top small {
    margin-left: auto;
    color: #7c8da6;
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .15em;
}

.visual-frame > img {
    display: block;
    width: 100%;
    aspect-ratio: 1.775 / 1;
    object-fit: cover;
}

.floating-chip {
    position: absolute;
    display: flex;
    min-width: 210px;
    padding: .7rem .85rem;
    align-items: center;
    gap: .65rem;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(219, 234, 254, .94);
    border-radius: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.floating-chip img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 10px;
}

.floating-chip span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.floating-chip small {
    color: var(--muted);
    font-size: .62rem;
    text-transform: uppercase;
}

.floating-chip strong {
    margin-top: .14rem;
    color: var(--navy);
    font-size: .78rem;
}

.floating-chip-security {
    right: -18px;
    bottom: 0;
}

.floating-chip-api {
    top: 26%;
    left: 0;
}

.signal-strip {
    padding: 28px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.signal-strip .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.signal-strip p {
    flex: 0 0 180px;
    margin: 0;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.55;
    text-transform: uppercase;
}

.signal-list {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 1rem;
    color: var(--navy);
    font-size: .82rem;
    font-weight: 700;
}

.signal-list span {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
}

.signal-list span::before {
    width: 6px;
    height: 6px;
    content: "";
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 50%;
}

/* Shared cards and content */
.stats-section {
    padding-bottom: 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f5faff);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stat-item {
    position: relative;
    padding: 2.1rem 1rem;
    text-align: center;
}

.stat-item:not(:last-child)::after {
    position: absolute;
    top: 24%;
    right: 0;
    width: 1px;
    height: 52%;
    content: "";
    background: var(--border);
}

.stat-item strong,
.about-stat-grid strong {
    display: block;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.stat-item > span,
.about-stat-grid div > span {
    display: block;
    margin-top: .7rem;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.service-card,
.product-card {
    position: relative;
    display: flex;
    padding: 2rem;
    flex-direction: column;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .035);
    overflow: hidden;
}

.service-card::before,
.product-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0;
    transition: opacity .25s ease;
}

.service-card:hover,
.product-card:hover {
    border-color: #bfd7ff;
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-card:hover::before,
.product-card:hover::before {
    opacity: 1;
}

.themed-icon,
.mini-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    background: linear-gradient(145deg, #eaf2ff, #e8fbfd);
    border: 1px solid #d9eaff;
    border-radius: 16px;
    place-items: center;
}

.themed-icon img,
.mini-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3,
.product-card h3 {
    margin-bottom: .75rem;
}

.service-card p,
.product-card p {
    margin-bottom: 1.25rem;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.75;
}

.service-card .card-link,
.product-card > a {
    margin-top: auto;
    font-size: .82rem;
}

.service-card-compact {
    padding: 1.7rem;
}

.service-card-compact .themed-icon {
    width: 58px;
    height: 58px;
}

.image-shell {
    position: relative;
    overflow: hidden;
    padding: .75rem;
    background: linear-gradient(145deg, #f8fbff, #ecf7fb);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.image-shell > img {
    display: block;
    width: 100%;
    aspect-ratio: 1.563 / 1;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 10px);
}

.image-label,
.cloud-status-row {
    position: absolute;
    z-index: 2;
    top: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    display: flex;
    padding: .75rem 1rem;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(219, 234, 254, .9);
    border-radius: 13px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
    backdrop-filter: blur(12px);
}

.image-label span,
.image-label small {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.image-label span { color: var(--blue); }
.image-label small { color: var(--muted); }

.feature-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem 1rem;
    margin: 1.8rem 0 2rem;
}

.feature-check-grid > div {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #334155;
    font-size: .87rem;
    font-weight: 600;
}

.feature-check-grid span {
    display: grid;
    width: 26px;
    height: 26px;
    color: var(--blue);
    background: #e8f1ff;
    border-radius: 50%;
    place-items: center;
}

.dark-image-shell {
    position: relative;
    padding: .7rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(125, 211, 252, .18);
    border-radius: 28px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, .28);
}

.dark-image-shell img {
    display: block;
    width: 100%;
    aspect-ratio: 1.563 / 1;
    object-fit: cover;
    border-radius: 21px;
}

.market-pulse {
    position: absolute;
    right: 1.7rem;
    bottom: 1.7rem;
    display: inline-flex;
    padding: .55rem .8rem;
    align-items: center;
    gap: .5rem;
    color: #d7f7ff;
    background: rgba(7, 20, 39, .85);
    border: 1px solid rgba(103, 232, 249, .25);
    border-radius: 10px;
    font-size: .68rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.market-pulse span {
    width: 7px;
    height: 7px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(52, 211, 153, .15);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 1.6rem 0;
}

.tag-cloud span {
    padding: .5rem .75rem;
    color: #3e5069;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .73rem;
    font-weight: 600;
}

.tag-cloud-dark span {
    color: #d8e8f9;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(148, 163, 184, .18);
}

.broker-line {
    margin-bottom: 1.8rem;
    color: #9fb4ce;
    font-size: .76rem;
}

.broker-line strong {
    color: #67e8f9;
}

.mini-capabilities {
    display: grid;
    gap: .25rem;
    margin: 1.5rem 0 2rem;
}

.mini-capabilities article {
    display: flex;
    padding: 1rem 0;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.mini-capabilities article:last-child {
    border-bottom: 0;
}

.mini-capabilities .mini-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 13px;
}

.mini-capabilities h3 {
    margin: 0 0 .25rem;
    font-size: 1rem;
}

.mini-capabilities p {
    color: var(--muted);
    font-size: .83rem;
    line-height: 1.6;
}

.cloud-status-row {
    color: var(--muted);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cloud-status-row span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.cloud-status-row i {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
}

.cloud-status-row strong {
    color: var(--blue);
    font-size: .75rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.why-card {
    padding: 1.7rem;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.why-card:hover {
    background: var(--white);
    border-color: var(--border-blue);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.why-card img {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    object-fit: cover;
    border-radius: 13px;
}

.why-card h3 {
    margin-bottom: .5rem;
    font-size: 1.02rem;
}

.why-card p {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.65;
}

.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .75rem;
}

.process-track::before {
    position: absolute;
    z-index: 0;
    top: 22px;
    right: 7%;
    left: 7%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.process-step {
    position: relative;
    z-index: 1;
    padding: 0 .25rem;
}

.process-step > span {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 1.2rem;
    color: var(--blue);
    background: var(--white);
    border: 1px solid #bcd3f9;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(37, 99, 235, .12);
    place-items: center;
}

.process-step h3 {
    margin-bottom: .4rem;
    font-size: .9rem;
}

.process-step p {
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.5;
}

.tech-groups {
    display: grid;
    gap: 1rem;
}

.tech-group {
    display: grid;
    grid-template-columns: 145px 1fr;
    padding: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.tech-group h3 {
    margin: 0;
    padding-left: .5rem;
    font-size: .85rem;
}

.tech-group > div {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.tech-group span {
    padding: .45rem .72rem;
    color: #45566e;
    background: var(--white);
    border: 1px solid #e4eaf2;
    border-radius: 9px;
    font-size: .72rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .025);
}

.testimonial-card {
    position: relative;
    display: flex;
    padding: 2rem;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.quote-mark {
    width: 44px;
    height: 44px;
    margin-bottom: 1.1rem;
    color: var(--blue);
    background: #eaf2ff;
    border-radius: 12px;
    font-family: Georgia, serif;
    font-size: 2.1rem;
    line-height: 1.45;
    text-align: center;
}

.testimonial-card blockquote {
    flex: 1;
    margin: 0 0 1.7rem;
    color: #334155;
    font-size: .94rem;
    line-height: 1.8;
}

.testimonial-card figcaption {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.testimonial-card figcaption > span {
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue), var(--cyan));
    border-radius: 50%;
    font-weight: 700;
    place-items: center;
}

.testimonial-card figcaption div {
    display: flex;
    flex-direction: column;
}

.testimonial-card figcaption strong {
    color: var(--navy);
    font-size: .82rem;
}

.testimonial-card figcaption small {
    color: var(--muted);
    font-size: .68rem;
}

/* Inner page hero */
.page-hero {
    position: relative;
    display: flex;
    min-height: 500px;
    padding: 82px 0 94px;
    align-items: center;
    background-color: #f5faff;
    background-image: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 32%, rgba(244,249,255,.62) 57%, rgba(240,249,255,.1) 100%), url("../images/page-banner.webp");
    background-position: center, center right;
    background-size: cover, cover;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.page-hero::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 70px;
    content: "";
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.28));
    pointer-events: none;
}

.page-hero h1 {
    max-width: 770px;
    margin-bottom: 1.35rem;
    font-size: clamp(2.55rem, 4.5vw, 4.3rem);
}

.page-hero p {
    max-width: 700px;
    margin-bottom: 1.8rem;
    color: #53647c;
    font-size: 1.08rem;
    line-height: 1.82;
}

.page-breadcrumb {
    margin-bottom: 1.6rem;
    font-size: .74rem;
}

.page-breadcrumb a {
    color: var(--muted);
}

.page-breadcrumb .active {
    color: var(--blue);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #a7b4c7;
}

.intro-section {
    padding-bottom: 55px;
}

.anchor-nav {
    display: flex;
    margin-top: 3rem;
    padding: .6rem;
    gap: .45rem;
    background: var(--tint);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.anchor-nav a {
    flex: 1;
    padding: .7rem 1rem;
    color: #43536b;
    background: rgba(255,255,255,.72);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: .76rem;
    font-weight: 700;
    text-align: center;
}

.anchor-nav a:hover {
    color: var(--blue);
    background: var(--white);
    border-color: var(--border-blue);
}

.service-category + .service-category {
    border-top: 1px solid rgba(226, 232, 240, .7);
}

.category-kicker {
    display: block;
    margin-bottom: .4rem;
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
}

.api-capability-panel {
    padding: 1.7rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(125, 211, 252, .18);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.api-panel-head {
    display: flex;
    padding-bottom: 1.25rem;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(148,163,184,.16);
}

.api-panel-head img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 15px;
}

.api-panel-head div {
    display: flex;
    flex-direction: column;
}

.api-panel-head small {
    color: #67e8f9;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
}

.api-panel-head strong {
    margin-top: .3rem;
    font-size: 1rem;
}

.api-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
    margin-top: 1.25rem;
}

.api-grid span {
    display: flex;
    padding: .65rem;
    align-items: center;
    gap: .45rem;
    color: #c8d9eb;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(148,163,184,.12);
    border-radius: 9px;
    font-size: .7rem;
}

.api-grid i {
    color: #67e8f9;
}

.model-card {
    padding: 2.1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.model-card > span {
    color: var(--blue);
    font-family: var(--font-display);
    font-size: .76rem;
    font-weight: 700;
}

.model-card h3 {
    margin: 1rem 0 .7rem;
    font-size: 1.22rem;
}

.model-card p {
    color: var(--muted);
    font-size: .88rem;
}

.model-card small {
    display: inline-block;
    margin-top: .6rem;
    padding: .35rem .65rem;
    color: var(--blue);
    background: #edf4ff;
    border-radius: 7px;
    font-size: .66rem;
    font-weight: 700;
}

.premium-accordion {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.premium-accordion .accordion-item {
    background: transparent;
    border-color: var(--border);
}

.premium-accordion .accordion-button {
    padding: 1.35rem 1.5rem;
    color: var(--navy);
    background: var(--white);
    font-family: var(--font-display);
    font-size: .93rem;
    font-weight: 600;
    box-shadow: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--blue);
    background: #f8fbff;
}

.premium-accordion .accordion-button:focus {
    box-shadow: inset 0 0 0 2px rgba(37,99,235,.16);
}

.premium-accordion .accordion-body {
    padding: 0 1.5rem 1.4rem;
    color: var(--muted);
    font-size: .88rem;
}

/* Fintech */
.feature-list {
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    padding: 1rem 0;
    gap: 1rem;
    border-top: 1px solid var(--border);
}

.feature-list li > span {
    flex: 0 0 34px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: .74rem;
    font-weight: 700;
}

.feature-list strong {
    display: block;
    margin-bottom: .25rem;
    color: var(--navy);
    font-size: .9rem;
}

.feature-list p {
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.6;
}

.journey-flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.journey-flow article {
    position: relative;
    padding: 1.7rem 1.15rem;
}

.journey-flow article:not(:last-child) {
    border-right: 1px solid var(--border);
}

.journey-flow article:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 27px;
    right: -9px;
    display: grid;
    width: 18px;
    height: 18px;
    content: "›";
    color: var(--blue);
    background: var(--white);
    border: 1px solid var(--border-blue);
    border-radius: 50%;
    font-weight: 700;
    line-height: 1;
    place-items: center;
}

.journey-flow span {
    color: var(--cyan);
    font-size: .65rem;
    font-weight: 700;
}

.journey-flow h3 {
    margin: .55rem 0 .45rem;
    font-size: .92rem;
}

.journey-flow p {
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.55;
}

.integration-map {
    position: relative;
    display: grid;
    min-height: 420px;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(37,99,235,.22), rgba(255,255,255,.025) 60%);
    border: 1px solid rgba(125,211,252,.18);
    border-radius: var(--radius-lg);
    place-items: center;
}

.integration-map::before,
.integration-map::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    content: "";
    border: 1px solid rgba(103,232,249,.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.integration-map::after {
    width: 340px;
    height: 340px;
    border-style: dashed;
}

.integration-core {
    position: relative;
    z-index: 2;
    display: flex;
    width: 155px;
    height: 155px;
    padding: 1rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    background: rgba(8, 25, 47, .94);
    border: 1px solid rgba(103,232,249,.3);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 50px rgba(37,99,235,.25);
}

.integration-core img {
    width: 58px;
    height: 58px;
    margin-bottom: .45rem;
    object-fit: cover;
    border-radius: 14px;
}

.integration-core strong {
    font-size: .74rem;
    line-height: 1.35;
}

.integration-nodes {
    position: absolute;
    inset: 0;
}

.integration-nodes span {
    position: absolute;
    padding: .45rem .7rem;
    color: #d7e8fa;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(148,163,184,.2);
    border-radius: 9px;
    font-size: .64rem;
    font-weight: 600;
}

.integration-nodes span:nth-child(1) { top: 9%; left: 13%; }
.integration-nodes span:nth-child(2) { top: 8%; right: 14%; }
.integration-nodes span:nth-child(3) { top: 35%; right: 5%; }
.integration-nodes span:nth-child(4) { right: 11%; bottom: 12%; }
.integration-nodes span:nth-child(5) { right: 37%; bottom: 4%; }
.integration-nodes span:nth-child(6) { bottom: 12%; left: 9%; }
.integration-nodes span:nth-child(7) { top: 38%; left: 4%; }
.integration-nodes span:nth-child(8) { top: 5%; left: 42%; }

.assurance-card {
    padding: 1.6rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.assurance-card img {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    object-fit: cover;
    border-radius: 14px;
}

.assurance-card h3 {
    margin-bottom: .5rem;
    font-size: 1rem;
}

.assurance-card p {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.65;
}

.compliance-note {
    display: flex;
    max-width: 900px;
    margin: 2rem auto 0;
    align-items: flex-start;
    justify-content: center;
    gap: .6rem;
    color: var(--muted);
    font-size: .7rem;
    text-align: center;
}

/* Cloud */
.cloud-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.cloud-points > div {
    position: relative;
    padding: .95rem 1rem .95rem 1.2rem;
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 13px;
}

.cloud-points > div::before {
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 0;
    width: 3px;
    content: "";
    background: linear-gradient(var(--blue), var(--cyan));
    border-radius: 2px;
}

.cloud-points strong,
.cloud-points span {
    display: block;
}

.cloud-points strong {
    color: var(--navy);
    font-size: .86rem;
}

.cloud-points span {
    margin-top: .2rem;
    color: var(--muted);
    font-size: .75rem;
}

.architecture-stack {
    display: grid;
    gap: .7rem;
}

.architecture-stack > div {
    display: grid;
    grid-template-columns: 45px 160px 1fr;
    padding: 1rem 1.2rem;
    align-items: center;
    color: #b7cce3;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(148,163,184,.15);
    border-radius: 13px;
}

.architecture-stack span {
    color: #67e8f9;
    font-family: var(--font-display);
    font-size: .65rem;
    font-weight: 700;
}

.architecture-stack strong {
    font-size: .82rem;
}

.architecture-stack small {
    font-size: .68rem;
}

.managed-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.managed-grid article {
    position: relative;
    padding: 1.7rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
}

.managed-grid article::after {
    position: absolute;
    right: -9px;
    top: 36px;
    z-index: 2;
    width: 18px;
    height: 1px;
    content: "";
    background: var(--cyan);
}

.managed-grid article:last-child::after { display: none; }
.managed-grid span { color: var(--blue); font-size: .65rem; font-weight: 700; }
.managed-grid h3 { margin: .65rem 0 .5rem; font-size: .95rem; }
.managed-grid p { color: var(--muted); font-size: .72rem; line-height: 1.55; }

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

.business-service-grid article {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 17px;
}

.business-service-grid img {
    width: 56px;
    height: 56px;
    margin-bottom: .8rem;
    object-fit: cover;
    border-radius: 14px;
}

.business-service-grid h3 { margin-bottom: .4rem; font-size: .96rem; }
.business-service-grid p { color: var(--muted); font-size: .75rem; line-height: 1.6; }

/* Products */
.product-filter {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: .55rem;
}

.product-filter button {
    padding: .56rem .85rem;
    color: #4b5d75;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
}

.product-filter button:hover,
.product-filter button.active {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 8px 18px rgba(37,99,235,.2);
}

.product-item.is-hidden {
    display: none;
}

.product-card-top {
    display: flex;
    margin-bottom: 1.2rem;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.product-card-top .themed-icon {
    margin: 0;
}

.product-card-top > span {
    padding: .35rem .55rem;
    color: var(--blue);
    background: #edf4ff;
    border-radius: 7px;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.market-badges {
    display: flex;
    margin: 1.4rem 0;
    align-items: center;
    gap: .6rem;
}

.market-badges span {
    display: grid;
    width: 48px;
    height: 48px;
    color: #67e8f9;
    background: rgba(103,232,249,.08);
    border: 1px solid rgba(103,232,249,.24);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    place-items: center;
}

.market-badges small {
    margin-left: .4rem;
    color: #b4c9df;
    font-size: .7rem;
    font-weight: 700;
}

.trading-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem 1rem;
    margin-bottom: 1.8rem;
}

.trading-capabilities > div {
    color: #c7d8e9;
    font-size: .76rem;
}

.trading-capabilities i {
    margin-right: .45rem;
    color: #67e8f9;
}

.broker-panel {
    display: flex;
    margin-top: 4.5rem;
    padding: 1.2rem 1.4rem;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(148,163,184,.14);
    border-radius: 16px;
}

.broker-panel > span {
    flex: 0 0 auto;
    color: #67e8f9;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.broker-panel > div {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .65rem 1rem;
}

.broker-panel strong {
    color: #dbeafe;
    font-size: .7rem;
}

.configuration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.configuration-grid article {
    display: flex;
    padding: 1.7rem;
    gap: 1rem;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.configuration-grid article:nth-child(3n) { border-right: 0; }
.configuration-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.configuration-grid article > span { color: var(--cyan); font-size: .65rem; font-weight: 700; }
.configuration-grid h3 { margin-bottom: .45rem; font-size: 1rem; }
.configuration-grid p { color: var(--muted); font-size: .76rem; line-height: 1.6; }

.launch-path {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.launch-path article {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.launch-path span { color: var(--blue); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.launch-path h3 { margin: .65rem 0 .4rem; font-size: 1rem; }
.launch-path p { color: var(--muted); font-size: .76rem; line-height: 1.6; }

.product-note { padding-top: 60px; }

.notice-panel {
    display: flex;
    padding: 1.5rem 1.8rem;
    align-items: center;
    gap: 1rem;
    background: #f8fbff;
    border: 1px solid var(--border-blue);
    border-radius: 16px;
}

.notice-panel img { flex: 0 0 58px; width: 58px; height: 58px; object-fit: cover; border-radius: 14px; }
.notice-panel strong { display: block; margin-bottom: .25rem; color: var(--navy); font-size: .86rem; }
.notice-panel p { color: var(--muted); font-size: .72rem; line-height: 1.55; }

/* About */
.team-image-shell > img { aspect-ratio: 1.777 / 1; }

.team-image-caption {
    position: absolute;
    right: 1.6rem;
    bottom: 1.6rem;
    left: 1.6rem;
    display: flex;
    padding: .85rem 1rem;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 12px;
    backdrop-filter: blur(12px);
}

.team-image-caption span { color: var(--blue); font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.team-image-caption strong { color: var(--navy); font-size: .7rem; }

.founder-note {
    margin-top: 1.6rem;
    padding: 1.2rem 1.3rem;
    background: linear-gradient(145deg, #f0f6ff, #effbfc);
    border-left: 3px solid var(--blue);
    border-radius: 0 14px 14px 0;
}

.founder-note span { color: var(--blue); font-size: .6rem; font-weight: 700; letter-spacing: .13em; }
.founder-note blockquote { margin: .45rem 0 0; color: var(--navy); font-family: var(--font-display); font-size: .96rem; line-height: 1.55; }

.value-card {
    position: relative;
    padding: 1.8rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.value-card img { width: 56px; height: 56px; margin-bottom: 1.2rem; object-fit: cover; border-radius: 14px; }
.value-number { position: absolute; top: 1.5rem; right: 1.5rem; color: #bfd2ef; font-family: var(--font-display); font-size: .7rem; font-weight: 700; }
.value-card h3 { margin-bottom: .55rem; font-size: 1rem; }
.value-card p { color: var(--muted); font-size: .78rem; line-height: 1.65; }

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.about-stat-grid > div {
    padding: 1.8rem;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-stat-grid > div:nth-child(2n) { border-right: 0; }
.about-stat-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.about-stat-grid > div:last-child { grid-column: 1 / -1; text-align: center; }

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(148,163,184,.15);
    border-radius: var(--radius);
    overflow: hidden;
}

.expertise-grid article {
    padding: 1.8rem;
    background: rgba(255,255,255,.045);
    border-right: 1px solid rgba(148,163,184,.15);
    border-bottom: 1px solid rgba(148,163,184,.15);
}

.expertise-grid article:nth-child(3n) { border-right: 0; }
.expertise-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.expertise-grid span { color: #67e8f9; font-size: .64rem; font-weight: 700; }
.expertise-grid h3 { margin: .7rem 0 .5rem; font-size: .98rem; }
.expertise-grid p { color: #aabfd7; font-size: .75rem; line-height: 1.6; }

.location-panel {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 420px;
    overflow: hidden;
    background: linear-gradient(145deg, #eff6ff, #edfbfc);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.location-copy { padding: 3.5rem; }
.location-copy p { max-width: 650px; margin-bottom: 1.5rem; color: var(--muted); }

.location-visual {
    position: relative;
    display: grid;
    min-height: 320px;
    background-image: radial-gradient(circle at 50% 50%, rgba(37,99,235,.13), transparent 55%), linear-gradient(rgba(37,99,235,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,.07) 1px, transparent 1px);
    background-size: auto, 32px 32px, 32px 32px;
    place-items: center;
}

.map-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(37,99,235,.16);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.map-ring-two { width: 340px; height: 340px; border-style: dashed; }

.location-pin {
    position: relative;
    z-index: 2;
    display: flex;
    padding: 1.2rem 1.5rem;
    align-items: center;
    flex-direction: column;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border-blue);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.location-pin i { margin-bottom: .45rem; color: var(--blue); font-size: 1.45rem; }
.location-pin strong { color: var(--navy); font-family: var(--font-display); }
.location-pin small { color: var(--muted); font-size: .66rem; }

/* Contact */
.contact-section { background: linear-gradient(to bottom, #fff, #fafdff); }

.contact-paths {
    display: grid;
    gap: .8rem;
    margin: 1.8rem 0;
}

.contact-paths article {
    display: flex;
    padding: 1rem;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
}

.contact-paths img {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 13px;
}

.contact-paths h3 { margin-bottom: .3rem; font-size: .94rem; }
.contact-paths p { color: var(--muted); font-size: .74rem; line-height: 1.55; }

.direct-contact {
    display: flex;
    padding: 1.2rem;
    flex-direction: column;
    background: #edf6ff;
    border: 1px solid var(--border-blue);
    border-radius: 15px;
}

.direct-contact > span { color: var(--muted); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.direct-contact a { margin: .25rem 0; font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.direct-contact small { color: var(--muted); font-size: .68rem; }
.direct-contact .callback-link { margin-top: .85rem; padding-top: .75rem; border-top: 1px solid #d2e4f8; font-family: var(--font-body); font-size: .75rem; }

.contact-form-card {
    padding: 2.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-card-header { margin-bottom: 1.8rem; }
.form-card-header > span { color: var(--blue); font-size: .62rem; font-weight: 700; letter-spacing: .14em; }
.form-card-header h2 { margin: .4rem 0 .25rem; font-size: 1.65rem; }
.form-card-header p { color: var(--muted); font-size: .74rem; }

.contact-form .form-label {
    margin-bottom: .42rem;
    color: #334155;
    font-size: .72rem;
    font-weight: 700;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 50px;
    padding: .72rem .85rem;
    color: var(--navy);
    background-color: #fbfdff;
    border-color: #dbe3ed;
    border-radius: 10px;
    font-size: .82rem;
}

.contact-form textarea.form-control {
    min-height: 132px;
    resize: vertical;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--white);
    border-color: #7cacf9;
    box-shadow: 0 0 0 .2rem rgba(37,99,235,.1);
}

.contact-form .invalid-feedback { font-size: .68rem; }

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.5;
}

.form-consent i { color: var(--green); font-size: .9rem; }

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    border-radius: 12px;
    font-size: .76rem;
}

.form-alert i { font-size: 1.15rem; }
.form-alert div { display: flex; flex-direction: column; }

.contact-location,
.contact-readiness {
    height: 100%;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.contact-location h2 { font-size: 1.6rem; }
.contact-location p { color: var(--muted); font-size: .82rem; }

.contact-location-pin {
    position: relative;
    display: grid;
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    color: var(--blue);
    background: #ecf5ff;
    border-radius: 50%;
    font-size: 1.7rem;
    place-items: center;
}

.contact-location-pin span {
    position: absolute;
    inset: 12px;
    border: 1px dashed #8eb9f8;
    border-radius: 50%;
}

.contact-readiness img { width: 58px; height: 58px; margin-bottom: .8rem; object-fit: cover; border-radius: 14px; }
.contact-readiness h2 { font-size: 1.25rem; }
.contact-readiness ol { margin: .8rem 0 0; padding-left: 1.2rem; color: var(--muted); font-size: .76rem; }
.contact-readiness li + li { margin-top: .35rem; }

/* Footer */
.footer-cta {
    padding: 80px 0 0;
    background: var(--white);
    overflow: hidden;
}

.footer-cta-panel {
    position: relative;
    padding: 3.5rem;
    color: #cfe0f1;
    background: linear-gradient(135deg, #0c1b33, #123b63 60%, #0d5268);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.footer-cta-panel h2 {
    margin-bottom: .7rem;
    color: var(--white);
}

.footer-cta-panel p {
    max-width: 720px;
    color: #b8cee2;
}

.cta-orb {
    position: absolute;
    border: 1px solid rgba(103,232,249,.14);
    border-radius: 50%;
}

.cta-orb-one { top: -120px; right: 25%; width: 330px; height: 330px; }
.cta-orb-two { right: -80px; bottom: -190px; width: 430px; height: 430px; }

.site-footer {
    padding: 90px 0 28px;
    color: #8291a6;
    background: var(--white);
}

.footer-main { padding-bottom: 3rem; }

.footer-brand strong { font-size: 1.3rem; }
.footer-intro { max-width: 350px; margin: 1.35rem 0 1rem; color: var(--muted); font-size: .82rem; }
.footer-location,
.footer-email { display: flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .74rem; }
.footer-email { margin-top: .45rem; }
.footer-email:hover { color: var(--blue); }

.footer-heading {
    margin-bottom: 1rem;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li { margin-top: .65rem; }
.footer-links a { color: var(--muted); font-size: .77rem; }
.footer-links a:hover { color: var(--blue); }

.footer-bottom {
    display: flex;
    padding-top: 1.6rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p,
.footer-legal { margin: 0; color: #8a98aa; font-size: .68rem; }
.footer-legal { display: flex; align-items: center; gap: 1rem; }
.footer-legal a { color: var(--blue); font-size: 1rem; }

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(37,99,235,.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, background-color .25s ease;
    place-items: center;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover { background: var(--blue-dark); }

@media (max-width: 1199.98px) {
    .hero-home { min-height: auto; }
    .process-track { grid-template-columns: repeat(4, 1fr); gap: 2rem 1rem; }
    .process-track::before { display: none; }
    .journey-flow { grid-template-columns: repeat(3, 1fr); }
    .journey-flow article:nth-child(3) { border-right: 0; }
    .journey-flow article:nth-child(-n+3) { border-bottom: 1px solid var(--border); }
    .journey-flow article:nth-child(3)::after { display: none; }
    .managed-grid { grid-template-columns: repeat(3, 1fr); }
    .managed-grid article:nth-child(3)::after { display: none; }
}

@media (max-width: 991.98px) {
    .section { padding: 88px 0; }
    .announcement-bar { display: none; }
    .navbar { min-height: 72px; }
    .navbar-collapse {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        max-height: calc(100vh - 72px);
        padding: 1.25rem 1.5rem 1.8rem;
        overflow-y: auto;
        background: rgba(255,255,255,.98);
        border-top: 1px solid var(--border);
        box-shadow: 0 24px 40px rgba(15,23,42,.12);
    }
    .navbar-nav { align-items: stretch !important; }
    .navbar .nav-link { padding: .8rem .4rem !important; font-size: .95rem; }
    .navbar .nav-link::after { right: auto; bottom: .35rem; left: .4rem; width: 30px; }
    .nav-cta { width: 100%; }
    .hero-home { padding: 80px 0 100px; }
    .hero-copy { max-width: 760px; text-align: center; margin: 0 auto; }
    .hero-lead { margin-right: auto; margin-left: auto; }
    .hero-actions,
    .hero-trust { justify-content: center; }
    .hero-visual { max-width: 720px; margin: 2rem auto 0; }
    .signal-strip .container { flex-direction: column; gap: 1.2rem; }
    .signal-strip p { flex-basis: auto; text-align: center; }
    .signal-list { width: 100%; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
    .heading-row { grid-template-columns: 1fr; gap: 1.2rem; align-items: start; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .process-track { grid-template-columns: repeat(4, 1fr); }
    .page-hero { min-height: 460px; background-image: linear-gradient(90deg, rgba(255,255,255,.97), rgba(255,255,255,.84) 62%, rgba(244,249,255,.35)), url("../images/page-banner.webp"); }
    .anchor-nav { flex-wrap: wrap; }
    .anchor-nav a { flex: 1 0 40%; }
    .location-panel { grid-template-columns: 1fr; }
    .location-copy { padding: 2.5rem; }
    .location-visual { min-height: 300px; }
}

@media (max-width: 767.98px) {
    .container { --bs-gutter-x: 1.4rem; }
    .section { padding: 74px 0; }
    .hero-home { padding: 66px 0 82px; }
    .hero-copy h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
    .hero-lead { font-size: 1rem; }
    .hero-trust { flex-direction: column; align-items: center; }
    .visual-frame { transform: none; }
    .floating-chip { display: none; }
    .hero-visual { padding: 0; }
    .visual-frame-top small { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(2n)::after { display: none; }
    .stat-item:last-child { grid-column: 1 / -1; border-bottom: 0; }
    .stat-item:nth-last-child(2) { border-bottom: 0; }
    .feature-check-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-track { grid-template-columns: repeat(2, 1fr); }
    .tech-group { grid-template-columns: 1fr; gap: .8rem; }
    .tech-group h3 { padding-left: 0; }
    .page-hero { min-height: 440px; padding: 66px 0 78px; background-position: center, 63% center; }
    .page-hero p { font-size: .98rem; }
    .page-hero-actions { flex-direction: column; align-items: stretch; }
    .anchor-nav { padding: .4rem; }
    .anchor-nav a { flex-basis: 100%; }
    .api-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-flow { grid-template-columns: repeat(2, 1fr); }
    .journey-flow article { border-right: 1px solid var(--border) !important; border-bottom: 1px solid var(--border); }
    .journey-flow article:nth-child(2n) { border-right: 0 !important; }
    .journey-flow article:nth-last-child(-n+2) { border-bottom: 0; }
    .journey-flow article:nth-child(2n)::after { display: none; }
    .integration-map { min-height: 460px; }
    .architecture-stack > div { grid-template-columns: 38px 1fr; }
    .architecture-stack small { grid-column: 2; margin-top: .3rem; }
    .managed-grid { grid-template-columns: repeat(2, 1fr); }
    .managed-grid article:nth-child(3)::after { display: block; }
    .managed-grid article:nth-child(2n)::after { display: none; }
    .business-service-grid { grid-template-columns: 1fr; }
    .broker-panel { flex-direction: column; align-items: flex-start; }
    .broker-panel > div { justify-content: flex-start; }
    .configuration-grid { grid-template-columns: 1fr; }
    .configuration-grid article { border-right: 0; border-bottom: 1px solid var(--border) !important; }
    .configuration-grid article:last-child { border-bottom: 0 !important; }
    .expertise-grid { grid-template-columns: 1fr; }
    .expertise-grid article { border-right: 0 !important; border-bottom: 1px solid rgba(148,163,184,.15) !important; }
    .expertise-grid article:last-child { border-bottom: 0 !important; }
    .contact-form-card { padding: 1.5rem; }
    .contact-location { align-items: flex-start; flex-direction: column; }
    .footer-cta-panel { padding: 2.3rem 1.6rem; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-legal { align-items: flex-start; }
}

@media (max-width: 575.98px) {
    h2 { font-size: 2rem; }
    .brand-mark { width: 42px; height: 42px; }
    .brand-mark img { width: 42px; height: 42px; }
    .brand-copy strong { font-size: 1.05rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .signal-list { display: grid; grid-template-columns: repeat(2, 1fr); }
    .signal-list span { font-size: .72rem; }
    .image-label { display: none; }
    .process-track { grid-template-columns: 1fr; gap: 1.2rem; }
    .process-step { display: grid; grid-template-columns: 46px 1fr; gap: 0 .8rem; }
    .process-step > span { grid-row: 1 / 3; margin: 0; }
    .process-step h3 { margin: .15rem 0; }
    .process-step p { grid-column: 2; }
    .api-grid { grid-template-columns: 1fr; }
    .journey-flow { grid-template-columns: 1fr; }
    .journey-flow article { border-right: 0 !important; border-bottom: 1px solid var(--border) !important; }
    .journey-flow article:last-child { border-bottom: 0 !important; }
    .journey-flow article::after { display: none !important; }
    .integration-map { min-height: 500px; padding: 1rem; }
    .integration-nodes span:nth-child(8) { top: 15%; left: 38%; }
    .managed-grid { grid-template-columns: 1fr; }
    .managed-grid article::after { display: none !important; }
    .launch-path { grid-template-columns: 1fr; }
    .trading-capabilities { grid-template-columns: 1fr; }
    .configuration-grid { border-radius: 16px; }
    .notice-panel { align-items: flex-start; }
    .about-stat-grid { grid-template-columns: 1fr; }
    .about-stat-grid > div { border-right: 0; }
    .about-stat-grid > div:last-child { grid-column: auto; }
    .team-image-caption { display: none; }
    .location-copy { padding: 2rem 1.5rem; }
    .contact-location-pin { width: 90px; height: 90px; flex-basis: 90px; }
    .footer-cta { padding-top: 55px; }
    .footer-legal { flex-direction: column; gap: .45rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
