:root {
    --ink: #0c1324;
    --muted: #5d687b;
    --line: #e4e8f0;
    --surface: #ffffff;
    --surface-soft: #f4f6fa;
    --brand: #ef3340;
    --brand-dark: #c81f2b;
    --navy: #080d19;
    --navy-soft: #121b31;
    --blue: #5b6cff;
    --success: #087a55;
    --shadow-sm: 0 14px 40px rgba(15, 23, 42, .08);
    --shadow-lg: 0 32px 90px rgba(7, 12, 28, .20);
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
    margin: 0 0 .7em;
    color: var(--ink);
    font-weight: 780;
    line-height: 1.12;
    letter-spacing: -.035em;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
p { margin: 0 0 1.15rem; }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { color: #dce4f5; background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .section-copy { color: #aebbd3; }

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-topbar {
    color: #d9e3f6;
    background: var(--navy);
    font-size: .85rem;
}

.site-topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar-links { display: flex; gap: 22px; }
.topbar-links a:hover { color: #fff; }
.venture-link { color: #fff; font-weight: 700; }
.venture-link span { color: #ff6069; }

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(227, 232, 239, .9);
    backdrop-filter: blur(16px);
}

.nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 210px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a, .nav-dropdown > button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    color: #26334a;
    background: transparent;
    border: 0;
    border-radius: 10px;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
}

.site-nav > a:hover, .site-nav > a.active, .nav-dropdown > button:hover, .nav-dropdown > button.active {
    color: var(--brand);
    background: #fff3f4;
}

.nav-dropdown { position: relative; }
.nav-dropdown svg { width: 14px; transition: transform .2s ease; }
.nav-dropdown:hover svg, .nav-dropdown:focus-within svg { transform: rotate(180deg); }
.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: min(740px, 90vw);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 14px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    transform: translate(-50%, 8px);
    transition: .18s ease;
}
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}
.dropdown-panel a {
    padding: 11px 13px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 700;
}
.dropdown-panel a:hover { color: var(--brand); background: var(--surface-soft); }
.dropdown-panel .all-services { color: var(--brand); }

.nav-cta { color: #fff !important; background: var(--brand) !important; padding-inline: 18px !important; }
.nav-cta:hover { background: var(--brand-dark) !important; }

.nav-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    color: var(--ink);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
}
.nav-toggle svg { width: 23px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.section-dark .eyebrow { color: #ff737c; }

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(92px, 11vw, 156px) 0 92px;
    color: #d9e3f6;
    background:
        radial-gradient(circle at 76% 22%, rgba(45, 100, 240, .32), transparent 32%),
        radial-gradient(circle at 20% 85%, rgba(227, 40, 53, .20), transparent 28%),
        var(--navy);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
    align-items: center;
    gap: clamp(48px, 8vw, 100px);
}
.hero h1 { max-width: 820px; color: #fff; }
.hero h1 span { color: #ff5863; }
.hero-copy { max-width: 680px; color: #b9c5dc; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    color: #fff;
    background: var(--brand);
    border: 1px solid var(--brand);
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--brand-dark); box-shadow: 0 12px 28px rgba(227, 40, 53, .24); transform: translateY(-2px); }
.button-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.3); }
.button-outline:hover { background: rgba(255,255,255,.09); box-shadow: none; }
.button-light { color: var(--navy); background: #fff; border-color: #fff; }
.button-light:hover { color: var(--brand); background: #fff; }
.button-dark { background: var(--navy); border-color: var(--navy); }

.hero-console {
    position: relative;
    padding: 22px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
}
.console-bar { display: flex; gap: 7px; padding-bottom: 18px; }
.console-bar i { width: 9px; height: 9px; display: block; background: #ff5c67; border-radius: 50%; }
.console-bar i:nth-child(2) { background: #f4b942; }
.console-bar i:nth-child(3) { background: #45ca83; }
.console-card { padding: 22px; background: rgba(7, 16, 39, .72); border-radius: 18px; }
.console-label { color: #8294b8; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.console-title { margin: 7px 0 18px; color: #fff; font-size: 1.25rem; font-weight: 760; }
.console-list { display: grid; gap: 10px; }
.console-list span { display: flex; align-items: center; gap: 10px; color: #c4d0e7; font-size: .9rem; }
.console-list span::before { width: 8px; height: 8px; content: ""; background: #ff5863; border-radius: 3px; box-shadow: 0 0 0 4px rgba(255,88,99,.12); }
.console-status { margin-top: 18px; display: flex; justify-content: space-between; color: #7790bd; font-size: .78rem; }
.console-status strong { color: #54db95; }

.stats-bar { position: relative; margin-top: 74px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.14); }
.stat { padding: 27px 24px 0; border-right: 1px solid rgba(255,255,255,.14); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: #fff; font-size: 1.8rem; line-height: 1.2; }
.stat span { color: #90a0bd; font-size: .88rem; }

.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-copy { color: var(--muted); font-size: 1.06rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-card:hover { border-color: #f2a6ac; box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--brand);
    background: #fff0f1;
    border-radius: 14px;
    font-size: 1.25rem;
    font-weight: 850;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .95rem; }
.card-link { margin-top: auto; color: var(--brand); font-size: .87rem; font-weight: 800; }
.card-link span { display: inline-block; transition: transform .2s ease; }
.service-card:hover .card-link span { transform: translateX(4px); }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(45px, 8vw, 100px); }
.media-frame { position: relative; }
.media-frame::before { position: absolute; z-index: -1; inset: -18px 22px 22px -18px; content: ""; background: #ffedef; border-radius: var(--radius-lg); }
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.check-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: #35425a; }
.check-list li::before {
    position: absolute;
    top: .35em;
    left: 0;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    content: "\2713";
    color: #fff;
    background: var(--success);
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 900;
}

.venture-panel {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 40px;
    padding: clamp(34px, 6vw, 62px);
    color: #dce4f5;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.venture-panel h2 { color: #fff; }
.venture-mark { padding: 28px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; }
.venture-mark strong { display: block; color: #fff; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -.05em; }
.venture-mark p { margin: 0; color: #aebbd3; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
.process-card { position: relative; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); counter-increment: process; }
.process-card::before { content: "0" counter(process); display: block; margin-bottom: 24px; color: var(--brand); font-size: 1.05rem; font-weight: 850; }
.process-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.tech-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tech-cloud span { padding: 10px 15px; color: #3c4a62; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .88rem; font-weight: 750; }

.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.team-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.team-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--surface-soft); }
.team-card__body { padding: 20px; }
.team-card h3 { margin: 0 0 4px; font-size: 1.08rem; }
.team-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.ceo-feature { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(38px, 7vw, 90px); }
.ceo-feature img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.quote { color: #26344d; font-size: clamp(1.25rem, 2.5vw, 1.75rem); line-height: 1.5; }
.quote-author { color: var(--muted); }
.quote-author strong { display: block; color: var(--ink); }

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 76px;
    color: #c5d0e5;
    background: radial-gradient(circle at 78% 28%, rgba(45,100,240,.27), transparent 30%), var(--navy);
}
.page-hero h1 { max-width: 900px; color: #fff; font-size: clamp(2.5rem, 6vw, 4.75rem); }
.page-hero p { max-width: 740px; color: #b7c3da; font-size: 1.13rem; }
.breadcrumbs { margin-bottom: 22px; color: #8fa1c0; font-size: .84rem; font-weight: 700; }
.breadcrumbs a:hover { color: #fff; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.service-detail-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 70px; }
.service-sidebar { align-self: start; position: sticky; top: 110px; padding: 28px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.service-sidebar h3 { font-size: 1.05rem; }
.service-sidebar ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.service-sidebar a { display: block; padding: 9px 12px; border-radius: 9px; color: #46536a; font-size: .9rem; font-weight: 700; }
.service-sidebar a:hover, .service-sidebar a.active { color: var(--brand); background: #fff; }

.cta-band {
    padding: clamp(42px, 6vw, 68px);
    color: #dce5f6;
    background: linear-gradient(120deg, var(--brand-dark), var(--brand) 45%, #f04c57);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(185,23,35,.23);
}
.cta-band h2 { max-width: 760px; color: #fff; }
.cta-band p { max-width: 700px; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 52px; }
.contact-cards { display: grid; gap: 15px; }
.contact-card { padding: 22px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 14px; }
.contact-card span { display: block; color: var(--brand); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 5px; color: var(--ink); }
.contact-card p { margin: 5px 0 0; color: var(--muted); font-size: .92rem; }

.contact-form { padding: clamp(26px, 5vw, 42px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: #344057; font-size: .84rem; font-weight: 780; }
.form-control, .contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cfd7e3;
    border-radius: 10px;
    outline: 0;
}
.contact-form textarea { min-height: 145px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(45,100,240,.1); }
.alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; font-weight: 700; }
.alert-success { color: #075a41; background: #e8fbf3; }
.alert-danger { color: #9e1c28; background: #fff0f1; }
.g-recaptcha { margin: 4px 0; }

.prose { max-width: 880px; }
.prose h2 { margin-top: 2.2rem; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.prose h3 { margin-top: 1.7rem; }
.prose p, .prose li { color: #4f5d72; }
.prose a { color: var(--brand); text-decoration: underline; }
.prose ul, .prose ol { padding-left: 1.3rem; }

.main-footer { padding: 72px 0 28px; color: #aebbd3; background: #071128; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .8fr 1.1fr; gap: 45px; }
.footer-brand img { width: 205px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; }
.footer-title { margin-bottom: 17px; color: #fff; font-size: .9rem; letter-spacing: .02em; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 13px; }
.footer-contact div { font-size: .9rem; }
.footer-contact strong { display: block; color: #fff; }
.footer-bottom { margin-top: 52px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom a:hover { color: #fff; }

/* Compatibility for the retained legal and payment templates. */
.post-wrapper-top { padding: 60px 0; color: #b7c3da; background: var(--navy); }
.post-wrapper-top .container { display: flex; align-items: center; justify-content: space-between; }
.post-wrapper-top h1, .post-wrapper-top h2 { margin: 0; color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.breadcrumb { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li + li::before { margin-right: 8px; content: "/"; color: #7386aa; }
.white-wrapper, .about-area-two, .about-area-three, .about-area-four { padding: 72px 0; }
.grey-wrapper { padding: 72px 0; background: var(--surface-soft); }
.row { display: flex; flex-wrap: wrap; margin-inline: -12px; }
[class*="col-"] { width: 100%; padding-inline: 12px; }
.col-lg-6, .col-md-6 { width: 50%; }
.col-lg-4, .col-md-4 { width: 33.333%; }
.col-lg-3, .col-md-3 { width: 25%; }
.general-title { margin-bottom: 32px; text-align: center; }
.img-responsive { max-width: 100%; height: auto; }
.clearfix::after { display: table; clear: both; content: ""; }
.padding-top { padding-top: 30px; }
.text-center { text-align: center; }

@media (max-width: 1040px) {
    .site-topbar__inner { justify-content: center; }
    .site-topbar__inner > span { display: none; }
    .nav-toggle { display: grid; }
    .site-header { backdrop-filter: none; }
    .site-nav {
        position: fixed;
        z-index: 120;
        top: var(--mobile-nav-top, 78px);
        right: 0;
        bottom: auto;
        left: 0;
        height: calc(100dvh - var(--mobile-nav-top, 78px));
        display: none;
        overflow-y: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
        padding: 24px 20px 50px;
        background: #fff;
        overscroll-behavior: contain;
    }
    .nav-open .site-nav { display: flex; }
    .site-nav > a, .nav-dropdown > button { width: 100%; min-height: 50px; justify-content: space-between; }
    .nav-dropdown > button { pointer-events: auto; }
    .dropdown-panel { position: static; width: 100%; margin-top: 6px; padding: 8px; visibility: visible; opacity: 1; display: none; pointer-events: auto; border-radius: 13px; box-shadow: none; transform: none; }
    .nav-dropdown.open .dropdown-panel { display: grid; }
    .dropdown-panel a { min-height: 44px; display: flex; align-items: center; }
    .nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { transform: none; }
    .hero-grid, .venture-panel { grid-template-columns: 1fr; }
    .hero-console { max-width: 620px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .topbar-links { gap: 14px; font-size: .78rem; }
    .topbar-links a:first-child { display: none; }
    .nav-shell { min-height: 72px; }
    .brand img { width: 176px; }
    .site-nav { top: 112px; }
    .dropdown-panel { grid-template-columns: 1fr; }
    .hero { padding-top: 76px; }
    .hero-grid, .split, .ceo-feature, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; }
    .stat { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .stat:last-child { border-bottom: 0; }
    .service-grid, .feature-grid, .team-grid, .process-grid, .form-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; }
    .footer-bottom-links { flex-wrap: wrap; }
    .col-lg-6, .col-md-6, .col-lg-4, .col-md-4, .col-lg-3, .col-md-3 { width: 100%; }
    .post-wrapper-top .container { align-items: flex-start; flex-direction: column; gap: 12px; }
    .g-recaptcha { overflow: hidden; transform: scale(.88); transform-origin: left center; }
}

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

/* Premium enterprise technology theme */
.site-topbar {
    background: #060a13;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.site-topbar__inner { min-height: 36px; }
.site-topbar__inner > span { display: none; }
.venture-link { order: -1; color: #ccd5e6; letter-spacing: .01em; }
.venture-link span { color: #ff5964; }
.topbar-links { margin-left: auto; color: #93a0b8; }
.topbar-links a:last-child { color: #fff; font-weight: 700; }

.site-header {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 10px 35px rgba(15, 23, 42, .035);
}

.nav-shell { min-height: 78px; }
.brand img { width: 198px; }
.site-nav > a, .nav-dropdown > button { font-size: .86rem; letter-spacing: -.01em; }
.site-nav > a:hover, .site-nav > a.active, .nav-dropdown > button:hover, .nav-dropdown > button.active { background: #f7f8fb; }
.nav-cta {
    min-height: 44px !important;
    margin-left: 7px;
    background: linear-gradient(135deg, #ed2937, #c91422) !important;
    box-shadow: 0 9px 22px rgba(226, 39, 52, .22);
}

.dropdown-panel {
    padding: 18px;
    border-color: #e8ebf2;
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(8, 15, 32, .18);
}
.dropdown-panel a { padding: 12px 14px; }

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: clamp(86px, 10vw, 138px) 0 72px;
    background:
        radial-gradient(circle at 82% 16%, rgba(91, 108, 255, .19), transparent 29%),
        radial-gradient(circle at 9% 86%, rgba(239, 51, 64, .16), transparent 25%),
        linear-gradient(128deg, #060a13 0%, #0b1120 48%, #101a31 100%);
}

.hero::before {
    opacity: .12;
    background-size: 70px 70px;
    transform: perspective(600px) rotateX(58deg) scale(1.5) translateY(13%);
    transform-origin: bottom;
}

.hero::after {
    position: absolute;
    top: 11%;
    right: 2%;
    width: 430px;
    height: 430px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(91, 108, 255, .08), inset 0 0 100px rgba(91, 108, 255, .04);
}

.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: clamp(52px, 7vw, 92px); }
.hero h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(3rem, 5.65vw, 5.05rem); font-weight: 800; letter-spacing: -.065em; }
.hero h1 span { color: #ff5863; background: linear-gradient(90deg, #ff4c58, #ff8a91); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-copy { max-width: 650px; color: #aebad0; font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.75; }
.hero .eyebrow { color: #ff6c75; }

.button {
    min-height: 54px;
    padding-inline: 24px;
    background: linear-gradient(135deg, #ef3340, #ca1b28);
    border: 0;
    border-radius: 11px;
    box-shadow: 0 12px 30px rgba(225, 37, 51, .18);
    letter-spacing: -.01em;
}
.button:hover { box-shadow: 0 16px 34px rgba(225, 37, 51, .3); }
.button-outline { border: 1px solid rgba(255, 255, 255, .23); box-shadow: none; }
.button-dark { background: linear-gradient(135deg, #10182b, #080d19); box-shadow: 0 12px 30px rgba(8, 13, 25, .16); }
.button-light { background: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, .12); }

.systems-visual {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 1;
    margin-left: auto;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 48%, rgba(91, 108, 255, .19), transparent 25%),
        linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 38px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .34), inset 0 1px rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
}

.systems-visual::before {
    position: absolute;
    inset: 8%;
    content: "";
    background: radial-gradient(circle, rgba(91,108,255,.12), transparent 62%);
    border-radius: 50%;
    filter: blur(8px);
}

.systems-grid {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at center, #000, transparent 73%);
}

.system-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(133, 148, 255, .27); border-radius: 50%; transform: translate(-50%, -50%); }
.system-orbit--outer { width: 72%; aspect-ratio: 1; }
.system-orbit--inner { width: 43%; aspect-ratio: 1; border-style: dashed; animation: orbit-spin 30s linear infinite; }

.system-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 116px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    text-align: center;
    background: linear-gradient(145deg, #696bff, #3445d6);
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(69, 78, 222, .48), inset 0 1px rgba(255,255,255,.35);
    transform: translate(-50%, -50%) rotate(45deg);
}
.system-core span, .system-core small { transform: rotate(-45deg); }
.system-core span { color: #fff; font-size: 1.45rem; font-weight: 800; letter-spacing: -.04em; }
.system-core small { color: #dce0ff; font-size: .62rem; font-weight: 700; letter-spacing: .05em; }

.system-node {
    position: absolute;
    z-index: 4;
    min-width: 118px;
    padding: 13px 15px 13px 36px;
    color: #fff;
    background: rgba(9, 15, 29, .82);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
}
.system-node i { position: absolute; top: 18px; left: 15px; width: 9px; height: 9px; background: #55d99a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(85,217,154,.11); }
.system-node strong, .system-node small { display: block; line-height: 1.2; }
.system-node strong { font-size: .82rem; }
.system-node small { margin-top: 3px; color: #8998b4; font-size: .62rem; }
.system-node--ai { top: 16%; left: 9%; animation: node-float 5s ease-in-out infinite; }
.system-node--apps { top: 29%; right: 5%; animation: node-float 5.7s ease-in-out .4s infinite; }
.system-node--cloud { bottom: 18%; left: 11%; animation: node-float 6.3s ease-in-out .8s infinite; }
.system-node--ai i { background: #ff6570; box-shadow: 0 0 0 5px rgba(255,101,112,.11); }
.system-node--apps i { background: #65a9ff; box-shadow: 0 0 0 5px rgba(101,169,255,.11); }

.system-pulse { position: absolute; z-index: 2; width: 7px; height: 7px; background: #fff; border-radius: 50%; box-shadow: 0 0 14px #fff; }
.system-pulse--one { top: 28%; left: 49%; animation: pulse-travel 5s ease-in-out infinite; }
.system-pulse--two { right: 24%; bottom: 27%; animation: pulse-travel 5.5s ease-in-out 1s infinite reverse; }

.systems-badge { position: absolute; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 8px; padding: 9px 12px; color: #b8c4da; background: rgba(5,9,18,.7); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; font-size: .65rem; font-weight: 700; }
.systems-badge span { width: 7px; height: 7px; background: #55d99a; border-radius: 50%; box-shadow: 0 0 10px #55d99a; }
.systems-venture { position: absolute; top: 20px; right: 20px; text-align: right; }
.systems-venture small, .systems-venture strong { display: block; }
.systems-venture small { color: #7484a2; font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; }
.systems-venture strong { color: #fff; font-size: .9rem; letter-spacing: .06em; }

@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes node-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse-travel { 0%, 100% { opacity: .25; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.35); } }

.stats-bar { gap: 1px; margin-top: 66px; overflow: hidden; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.stat { padding: 22px 25px; background: rgba(6,10,20,.44); border-right: 0; backdrop-filter: blur(10px); }
.stat:first-child { padding-left: 25px; }
.stat strong { font-size: 1.35rem; }
.stat span { display: block; margin-top: 3px; font-size: .77rem; }

.section { padding: clamp(84px, 9vw, 126px) 0; }
.section-heading { margin-bottom: 52px; }
.section-heading h2 { letter-spacing: -.052em; }
.eyebrow { padding: 7px 11px; background: rgba(239,51,64,.07); border: 1px solid rgba(239,51,64,.1); border-radius: 999px; font-size: .68rem; }
.eyebrow::before { width: 17px; }
.section-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .venture-panel .eyebrow, .cta-band .eyebrow { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); }

.service-grid { gap: 22px; }
.service-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    background: linear-gradient(155deg, #fff 0%, #fff 68%, #fafbfe 100%);
    border-color: #e7eaf1;
    border-radius: 20px;
    box-shadow: 0 2px 0 rgba(15,23,42,.02);
}
.service-card::before { position: absolute; top: 0; right: 0; width: 120px; height: 120px; content: ""; opacity: 0; background: radial-gradient(circle at top right, rgba(91,108,255,.16), transparent 65%); transition: opacity .25s ease; }
.service-card:hover { border-color: #d5d9e5; box-shadow: 0 24px 55px rgba(15,23,42,.1); transform: translateY(-7px); }
.service-card:hover::before { opacity: 1; }
.service-card h3 { font-size: 1.26rem; letter-spacing: -.035em; }
.service-card p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 4; color: #657084; line-height: 1.7; }
.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 25px;
    color: #4d5fe7;
    background: linear-gradient(145deg, #f0f2ff, #e8ebff);
    border: 1px solid #dfe3ff;
    border-radius: 16px;
    box-shadow: inset 0 1px #fff;
}
.service-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.service-card:nth-child(3n+1) .service-icon { color: #d52b38; background: linear-gradient(145deg, #fff4f5, #ffe9eb); border-color: #ffdade; }
.card-link { color: #d22633; }

.architecture-visual {
    position: relative;
    overflow: hidden;
    padding: 24px;
    background: linear-gradient(145deg, #0b1120, #111a2d);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(8,14,28,.22);
}
.architecture-visual::before { position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px; content: ""; background: rgba(91,108,255,.18); border-radius: 50%; filter: blur(60px); }
.architecture-head { position: relative; display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .8rem; font-weight: 800; }
.architecture-head i { padding: 6px 9px; color: #67dca1; background: rgba(103,220,161,.08); border: 1px solid rgba(103,220,161,.15); border-radius: 7px; font-size: .58rem; font-style: normal; text-transform: uppercase; letter-spacing: .08em; }
.architecture-flow { position: relative; padding: 22px 0; }
.architecture-layer { position: relative; display: grid; grid-template-columns: 34px 1fr 10px; align-items: center; gap: 13px; padding: 16px; color: #dbe3f2; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: 13px; }
.architecture-layer > span { color: #697b9e; font-size: .62rem; font-weight: 800; }
.architecture-layer strong, .architecture-layer small { display: block; }
.architecture-layer strong { color: #fff; font-size: .82rem; }
.architecture-layer small { margin-top: 3px; color: #7889a8; font-size: .62rem; }
.architecture-layer > i { width: 8px; height: 8px; background: #55d99a; border-radius: 50%; box-shadow: 0 0 0 4px rgba(85,217,154,.1); }
.architecture-layer--ai { background: linear-gradient(90deg, rgba(91,108,255,.17), rgba(91,108,255,.05)); border-color: rgba(119,131,255,.24); }
.architecture-connector { width: 1px; height: 14px; margin: 0 auto; background: linear-gradient(#586c97, transparent); }
.architecture-foot { position: relative; display: flex; flex-wrap: wrap; gap: 9px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.08); }
.architecture-foot span { display: flex; align-items: center; gap: 6px; color: #8b9ab6; font-size: .62rem; font-weight: 700; }
.architecture-foot i { width: 5px; height: 5px; background: #5b6cff; border-radius: 50%; }

.company-profile-visual {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    padding: 25px;
    color: #dfe6f4;
    background:
        radial-gradient(circle at 65% 40%, rgba(91,108,255,.2), transparent 26%),
        linear-gradient(145deg, #0a1020, #111a30);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(8,14,28,.22);
}
.company-profile-visual::after { position: absolute; inset: 0; content: ""; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle, #000, transparent 74%); }
.company-profile-head { position: relative; z-index: 2; display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .78rem; font-weight: 800; }
.company-profile-head i { color: #7788a8; font-size: .66rem; font-style: normal; }
.company-profile-map { position: relative; z-index: 2; height: 315px; }
.company-profile-map svg { position: absolute; inset: 20px 0 0; width: 100%; height: 230px; overflow: visible; }
.company-profile-map path { fill: none; stroke: rgba(105,123,255,.42); stroke-width: 1.5; stroke-dasharray: 6 7; }
.profile-globe { position: absolute; z-index: 3; top: 82px; left: 50%; width: 116px; aspect-ratio: 1; display: grid; place-items: center; color: #fff; background: radial-gradient(circle at 35% 30%, #7680ff, #3342bd); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 20px 55px rgba(68,79,208,.4), inset -14px -10px 30px rgba(3,8,30,.3); transform: translateX(-50%); }
.profile-globe::before, .profile-globe::after { position: absolute; content: ""; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.profile-globe::before { width: 52%; height: 100%; }
.profile-globe::after { width: 100%; height: 42%; }
.profile-globe span { font-size: 1.2rem; font-weight: 800; }
.profile-location { position: absolute; z-index: 4; min-width: 150px; padding: 13px 14px 13px 34px; background: rgba(6,11,22,.8); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; box-shadow: 0 16px 35px rgba(0,0,0,.22); }
.profile-location i { position: absolute; top: 18px; left: 14px; width: 8px; height: 8px; background: #ff5964; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,89,100,.11); }
.profile-location strong, .profile-location small { display: block; }
.profile-location strong { color: #fff; font-size: .72rem; }
.profile-location small { margin-top: 3px; color: #7f8eaa; font-size: .59rem; }
.profile-location--uk { top: 44px; left: 0; }
.profile-location--pk { right: 0; bottom: 36px; }
.profile-location--pk i { background: #55d99a; box-shadow: 0 0 0 5px rgba(85,217,154,.11); }
.company-profile-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; }
.company-profile-stats div { padding: 15px; background: rgba(6,11,22,.68); }
.company-profile-stats strong, .company-profile-stats span { display: block; }
.company-profile-stats strong { color: #fff; font-size: 1rem; }
.company-profile-stats span { margin-top: 2px; color: #71819e; font-size: .57rem; }

.venture-panel {
    background:
        radial-gradient(circle at 92% 12%, rgba(108,96,255,.28), transparent 32%),
        radial-gradient(circle at 2% 100%, rgba(239,51,64,.22), transparent 27%),
        linear-gradient(135deg, #070c18, #121a31);
    border: 1px solid rgba(255,255,255,.08);
}
.venture-mark { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.11); backdrop-filter: blur(12px); }

.process-card { border-radius: 18px; }
.section-dark .process-card { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.09); }
.section-dark .process-card p { color: #95a4bf; }

.page-hero {
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 83% 16%, rgba(91,108,255,.22), transparent 29%),
        radial-gradient(circle at 6% 100%, rgba(239,51,64,.13), transparent 27%),
        linear-gradient(128deg, #060a13, #0e172c);
}
.page-hero::after { position: absolute; inset: 0; content: ""; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, transparent, #000 50%, transparent); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 980px; letter-spacing: -.06em; }
.page-hero p { line-height: 1.8; }

.feature-card { padding: 29px; border-radius: 18px; box-shadow: 0 2px rgba(15,23,42,.02); }
.feature-card h3 { font-size: 1.1rem; }
.feature-card:hover { border-color: #d6dbe7; box-shadow: var(--shadow-sm); }

.team-card { border-radius: 19px; transition: transform .22s ease, box-shadow .22s ease; }
.team-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.team-card img { filter: saturate(.94) contrast(1.02); }

.cta-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 5%, rgba(255,255,255,.18), transparent 25%),
        linear-gradient(125deg, #c91927, #ef3340 55%, #f15a65);
}
.cta-band::after { position: absolute; right: -80px; bottom: -140px; width: 320px; height: 320px; content: ""; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { color: #a51420; background: rgba(255,255,255,.94); border-color: rgba(255,255,255,.98); box-shadow: 0 8px 24px rgba(104,10,20,.12); }

/* Detailed IT service pages */
.service-hero { padding: 74px 0 0; }
.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr); align-items: center; gap: clamp(54px, 8vw, 100px); }
.service-hero-copy { padding-bottom: 66px; }
.service-hero-copy h1 { max-width: 760px; font-size: clamp(3rem, 5.3vw, 4.9rem); }
.service-hero-copy p { max-width: 680px; }
.service-blueprint { position: relative; overflow: hidden; padding: 20px; color: #dce5f8; background: linear-gradient(145deg, rgba(22,34,62,.95), rgba(8,14,28,.96)); border: 1px solid rgba(255,255,255,.12); border-radius: 26px; box-shadow: 0 34px 80px rgba(1,5,15,.34); }
.service-blueprint::before { position: absolute; inset: 0; content: ""; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 40px 40px; }
.service-blueprint > * { position: relative; z-index: 1; }
.service-blueprint__top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 16px; color: #7889a8; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .62rem; font-weight: 800; letter-spacing: .11em; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; background: #34415c; border-radius: 50%; }
.window-dots i:first-child { background: #ef3340; }
.service-blueprint__core { min-height: 128px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 17px; padding: 25px 2px; }
.service-blueprint__core .service-icon { width: 58px; height: 58px; margin: 0; color: #ff6570; background: rgba(239,51,64,.12); border-color: rgba(255,101,112,.2); }
.service-blueprint__core small { display: block; margin-bottom: 4px; color: #7989a8; font-size: .56rem; font-weight: 800; letter-spacing: .12em; }
.service-blueprint__core strong { display: block; color: #fff; font-size: 1.15rem; }
.live-status { display: inline-flex; align-items: center; gap: 7px; color: #9cabc5; font-size: .64rem; font-weight: 700; }
.live-status i { width: 7px; height: 7px; background: #35d49a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(53,212,154,.08); }
.service-blueprint__flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.service-blueprint__flow div { min-height: 82px; display: flex; flex-direction: column; justify-content: space-between; padding: 13px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; }
.service-blueprint__flow span { color: #ff6670; font-size: .58rem; font-weight: 850; }
.service-blueprint__flow strong { color: #dfe6f5; font-size: .7rem; line-height: 1.35; }
.service-blueprint__foot { display: flex; align-items: center; gap: 9px; margin-top: 18px; color: #71809c; font-size: .58rem; font-weight: 750; text-transform: uppercase; }
.service-blueprint__foot i { height: 1px; flex: 1; background: linear-gradient(90deg, #475672, #ef3340); }
.service-proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin-top: 4px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.1); border-bottom: 0; border-radius: 17px 17px 0 0; }
.service-proof-strip div { padding: 20px 24px; background: rgba(6,10,20,.6); }
.service-proof-strip strong, .service-proof-strip span { display: block; }
.service-proof-strip strong { color: #fff; font-size: .84rem; }
.service-proof-strip span { margin-top: 3px; color: #8393af; font-size: .7rem; }

.service-overview-section { background: linear-gradient(180deg, #fff, #fafbfe); }
.service-page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 292px; align-items: start; gap: clamp(52px, 7vw, 86px); }
.service-page-main { min-width: 0; }
.service-main-header { max-width: 820px; }
.service-main-header h2 { max-width: 700px; }
.service-main-header .section-copy { line-height: 1.82; }
.service-switcher { display: none; }
.service-ai-callout { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; margin-top: 38px; padding: 26px; color: #aebbd3; background: linear-gradient(135deg, #091020, #142044); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; box-shadow: 0 20px 50px rgba(10,17,35,.14); }
.service-ai-callout__mark { width: 52px; height: 52px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #ef3340, #b91522); border-radius: 14px; font-size: 1.4rem; font-weight: 850; }
.service-ai-callout span { color: #ff6973; font-size: .58rem; font-weight: 800; letter-spacing: .11em; }
.service-ai-callout h3 { margin: 6px 0 7px; color: #fff; font-size: 1.15rem; }
.service-ai-callout p { margin: 0; color: #aebbd3; font-size: .82rem; line-height: 1.7; }
.service-ai-callout > a { white-space: nowrap; color: #fff; font-size: .73rem; font-weight: 800; }
.service-capability-section { margin-top: 82px; }
.service-section-heading { max-width: 720px; margin-bottom: 35px; }
.service-section-heading p { color: var(--muted); }
.service-capability-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.service-capability-card { position: relative; min-height: 220px; padding: 28px; overflow: hidden; background: #fff; border: 1px solid #e2e6ee; border-radius: 17px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.service-capability-card::after { position: absolute; top: -38px; right: -38px; width: 105px; height: 105px; content: ""; background: radial-gradient(circle, rgba(91,108,255,.1), transparent 68%); }
.service-capability-card:hover { border-color: #cfd5e2; box-shadow: 0 18px 40px rgba(15,23,42,.07); transform: translateY(-3px); }
.service-capability-card > span { display: inline-flex; margin-bottom: 25px; color: #ef3340; font-size: .65rem; font-weight: 850; letter-spacing: .08em; }
.service-capability-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.service-capability-card p { margin: 0; color: #647085; font-size: .88rem; line-height: 1.72; }
.service-outcome-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 76px; }
.service-outcome-panel { padding: 32px; background: #fff; border: 1px solid #e2e6ee; border-radius: 20px; }
.service-outcome-panel h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
.service-outcome-panel .check-list { gap: 15px; }
.service-outcome-panel .check-list li { font-size: .87rem; }
.service-outcome-panel--dark { color: #dce4f5; background: linear-gradient(145deg, #0a1020, #151f38); border-color: rgba(255,255,255,.07); }
.service-outcome-panel--dark h2 { color: #fff; }
.service-outcome-panel--dark .eyebrow { color: #ff717a; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.service-outcome-panel--dark .check-list li { color: #c0cbde; }
.service-page-sidebar { position: sticky; top: 110px; padding: 25px; background: #f3f5f9; border: 1px solid #e1e5ed; border-radius: 19px; }
.service-page-sidebar__label { margin-bottom: 8px; color: #ef3340; font-size: .62rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.service-page-sidebar h2 { margin-bottom: 18px; font-size: 1.15rem; }
.service-page-sidebar nav { display: grid; gap: 3px; }
.service-page-sidebar nav a { min-height: 41px; display: grid; grid-template-columns: 25px 1fr; align-items: center; gap: 7px; padding: 7px 9px; color: #536078; border-radius: 9px; font-size: .76rem; font-weight: 750; }
.service-page-sidebar nav a span { color: #a2adbf; font-size: .58rem; }
.service-page-sidebar nav a:hover, .service-page-sidebar nav a.active { color: #d12431; background: #fff; box-shadow: 0 5px 16px rgba(15,23,42,.05); }
.service-page-sidebar nav a.active span { color: #d12431; }
.service-sidebar-contact { margin-top: 20px; padding: 20px; color: #b9c4d8; background: #0d162a; border-radius: 14px; }
.service-sidebar-contact > span { color: #ff6973; font-size: .63rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.service-sidebar-contact p { margin: 8px 0 12px; color: #aeb9cd; font-size: .72rem; line-height: 1.6; }
.service-sidebar-contact a { color: #fff; font-size: .72rem; font-weight: 800; }
.service-tech-panel { padding: clamp(40px, 6vw, 66px); background: #fff; border: 1px solid #e1e5ed; border-radius: 25px; box-shadow: 0 20px 60px rgba(15,23,42,.06); }
.service-tech-panel .section-heading { margin-bottom: 35px; }

.contact-form { border-radius: 24px; box-shadow: 0 25px 70px rgba(15,23,42,.1); }
.contact-card { transition: border-color .2s ease, transform .2s ease; }
a.contact-card:hover { border-color: #cdd3e0; transform: translateY(-2px); }

/* Contact and project enquiry */
.contact-hero { padding: 86px 0; }
.contact-hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr); align-items: center; gap: clamp(55px, 8vw, 105px); }
.contact-hero h1 { max-width: 800px; font-size: clamp(3.1rem, 5.5vw, 5.05rem); }
.contact-hero p { max-width: 700px; }
.contact-response-card { position: relative; overflow: hidden; padding: 32px; color: #b5c1d7; background: linear-gradient(145deg, rgba(19,31,58,.96), rgba(8,14,27,.98)); border: 1px solid rgba(255,255,255,.12); border-radius: 25px; box-shadow: 0 30px 75px rgba(1,5,15,.3); }
.contact-response-card::after { position: absolute; top: -90px; right: -80px; width: 240px; height: 240px; content: ""; background: radial-gradient(circle, rgba(91,108,255,.22), transparent 67%); }
.contact-response-card > * { position: relative; z-index: 1; }
.contact-response-card__status { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 25px; color: #a9b8d0; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contact-response-card__status i { width: 8px; height: 8px; background: #39d69d; border-radius: 50%; box-shadow: 0 0 0 6px rgba(57,214,157,.09); }
.contact-response-card h2 { color: #fff; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.contact-response-card > p { color: #9faec7; font-size: .9rem; }
.contact-response-metrics { display: grid; gap: 1px; margin-top: 28px; overflow: hidden; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; }
.contact-response-metrics div { padding: 14px 16px; background: rgba(255,255,255,.035); }
.contact-response-metrics span, .contact-response-metrics strong { display: block; }
.contact-response-metrics span { color: #7f90ad; font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.contact-response-metrics strong { margin-top: 2px; color: #e9eef8; font-size: .79rem; }

.contact-channel-section { position: relative; z-index: 4; margin-top: -34px; }
.contact-channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: #fff; border: 1px solid #e1e5ed; border-radius: 19px; box-shadow: 0 24px 65px rgba(15,23,42,.12); }
.contact-channel-grid > a { min-width: 0; display: flex; flex-direction: column; padding: 25px 28px; border-right: 1px solid #e4e8ef; transition: background .2s ease; }
.contact-channel-grid > a:last-child { border-right: 0; }
.contact-channel-grid > a:hover { background: #f8f9fc; }
.contact-channel-grid span { color: #ef3340; font-size: .62rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-channel-grid strong { margin-top: 10px; overflow-wrap: anywhere; font-size: 1rem; }
.contact-channel-grid small { min-height: 44px; margin-top: 5px; color: #778398; font-size: .72rem; line-height: 1.55; }
.contact-channel-grid b { margin-top: 15px; color: #303d55; font-size: .72rem; }

.contact-main-section { padding-top: clamp(105px, 10vw, 140px); background: linear-gradient(180deg, #fff, #fafbfe); scroll-margin-top: 84px; }
.contact-workspace { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(52px, 8vw, 105px); }
.contact-guidance { position: sticky; top: 112px; }
.contact-guidance h2 { max-width: 460px; }
.contact-brief-list { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid #e0e4ec; }
.contact-brief-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 13px; padding: 20px 0; border-bottom: 1px solid #e0e4ec; }
.contact-brief-list > div > span { color: #ef3340; font-size: .65rem; font-weight: 850; }
.contact-brief-list p { margin: 0; color: #69758a; font-size: .83rem; line-height: 1.65; }
.contact-brief-list strong { display: block; margin-bottom: 3px; color: #172239; font-size: .9rem; }
.contact-confidentiality { margin-top: 25px; padding: 22px; background: #f1f3f8; border: 1px solid #e0e4ec; border-left: 3px solid #5b6cff; border-radius: 13px; }
.contact-confidentiality strong { font-size: .87rem; }
.contact-confidentiality p { margin: 7px 0 0; color: #6d788c; font-size: .76rem; line-height: 1.65; }
.contact-form--project { width: 100%; padding: clamp(28px, 4.5vw, 48px); box-shadow: 0 28px 80px rgba(15,23,42,.1); }
.contact-form-heading { margin-bottom: 32px; padding-bottom: 27px; border-bottom: 1px solid #e4e8ef; }
.contact-form-heading > span { color: #ef3340; font-size: .64rem; font-weight: 850; letter-spacing: .1em; }
.contact-form-heading h2 { max-width: 620px; margin: 10px 0 12px; font-size: clamp(1.8rem, 3.2vw, 2.55rem); }
.contact-form-heading p { margin: 0; color: #6d788b; font-size: .87rem; }
.contact-form--project .form-grid { gap: 20px; }
.contact-form--project .form-field label { color: #29364d; }
.contact-form--project input, .contact-form--project textarea, .contact-form--project select { background: #fbfcfe; border-color: #d9dee7; }
.contact-form--project input:hover, .contact-form--project textarea:hover, .contact-form--project select:hover { border-color: #bdc6d5; }
.contact-form--project textarea { min-height: 180px; }
.recaptcha-shell { min-height: 78px; padding: 12px; overflow: hidden; background: #f7f8fb; border: 1px solid #e1e5ec; border-radius: 12px; }
.contact-submit { min-height: 56px; display: flex; justify-content: space-between; padding-inline: 22px; }
.contact-submit b { font-size: 1.15rem; }
.contact-form-note { margin: 17px 0 0; color: #7a8598; font-size: .72rem; }
.contact-form-note a { color: #d12431; text-decoration: underline; text-underline-offset: 2px; }

.contact-offices-section { background: #f3f5f9; }
.contact-office-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.contact-office-card { min-height: 260px; display: flex; flex-direction: column; padding: 30px; background: #fff; border: 1px solid #e0e4ec; border-radius: 19px; transition: transform .2s ease, box-shadow .2s ease; }
a.contact-office-card:hover { box-shadow: 0 20px 45px rgba(15,23,42,.08); transform: translateY(-3px); }
.contact-office-card > span { color: #ef3340; font-size: .63rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-office-card h2 { margin: 21px 0 12px; font-size: 1.75rem; }
.contact-office-card p { color: #69758a; font-size: .83rem; }
.contact-office-card b { margin-top: auto; color: #27344c; font-size: .76rem; }
.contact-office-card--rascodex { color: #bdc8dc; background: linear-gradient(145deg, #0a1020, #182448); border-color: rgba(255,255,255,.08); }
.contact-office-card--rascodex > span { color: #ff6c75; }
.contact-office-card--rascodex h2, .contact-office-card--rascodex b { color: #fff; }
.contact-office-card--rascodex p { color: #aebbd1; }

.contact-next-section { background: linear-gradient(135deg, #060a13, #0e172a); }
.contact-next-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr); align-items: end; gap: 60px; margin-bottom: 48px; }
.contact-next-heading h2 { margin-bottom: 0; }
.contact-next-heading > p { margin: 0; color: #9dabc3; }
.contact-step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.contact-step-grid article { position: relative; min-height: 240px; padding: 27px; overflow: hidden; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; }
.contact-step-grid article::after { position: absolute; right: -35px; bottom: -35px; width: 100px; height: 100px; content: ""; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.contact-step-grid span { display: inline-flex; margin-bottom: 42px; color: #ff5d68; font-size: .67rem; font-weight: 850; }
.contact-step-grid h3 { color: #fff; font-size: 1.05rem; }
.contact-step-grid p { margin: 0; color: #9eabc1; font-size: .79rem; line-height: 1.65; }

.legal-hero { padding-bottom: 78px; }
.legal-hero h1 { margin-bottom: 18px; }
.legal-hero p { max-width: 660px; }
.legal-meta { width: max-content; display: flex; align-items: center; gap: 12px; margin-top: 28px; padding: 10px 13px; color: #9ba8c0; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; font-size: .72rem; }
.legal-meta strong { color: #fff; }
.legal-section-wrap { background: linear-gradient(180deg, #fff, #fafbfe); }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 790px); justify-content: space-between; align-items: start; gap: 80px; }
.legal-sidebar { position: sticky; top: 112px; padding: 24px; background: #f5f7fb; border: 1px solid #e4e8f0; border-radius: 18px; }
.legal-sidebar .eyebrow { margin-bottom: 14px; }
.legal-sidebar nav { display: grid; gap: 3px; }
.legal-sidebar nav a { padding: 8px 10px; color: #566278; border-radius: 8px; font-size: .79rem; font-weight: 650; }
.legal-sidebar nav a:hover { color: #d12431; background: #fff; }
.legal-help { margin-top: 20px; padding-top: 20px; border-top: 1px solid #dce2eb; }
.legal-help strong { font-size: .88rem; }
.legal-help p { margin: 7px 0 10px; color: #6c778b; font-size: .76rem; }
.legal-help a { color: #d12431; font-size: .76rem; font-weight: 800; word-break: break-word; }
.legal-prose { min-width: 0; }
.legal-prose > section { position: relative; padding: 56px 0 0; scroll-margin-top: 110px; }
.legal-prose h2 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.7vw, 2.15rem); letter-spacing: -.045em; }
.legal-prose p, .legal-prose li { color: #566278; font-size: .98rem; line-height: 1.82; }
.legal-prose ul { display: grid; gap: 8px; margin: 18px 0 20px; padding: 0; list-style: none; }
.legal-prose li { position: relative; padding-left: 27px; }
.legal-prose li::before { position: absolute; top: .75em; left: 2px; width: 7px; height: 7px; content: ""; background: #ef3340; border-radius: 50%; box-shadow: 0 0 0 5px rgba(239,51,64,.08); }
.legal-prose a { color: #d12431; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-number { display: inline-flex; margin-bottom: 13px; color: #ef3340; font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.legal-callout { padding: 36px; background: linear-gradient(145deg, #0a1020, #131d35); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; box-shadow: 0 25px 60px rgba(8,14,28,.16); scroll-margin-top: 110px; }
.legal-callout > span { color: #ff6670; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legal-callout h2 { margin-top: 14px; color: #fff; }
.legal-callout p { margin-bottom: 0; color: #aab7cf; }
.legal-note { margin-top: 23px; padding: 22px; background: #f4f6fb; border: 1px solid #e1e5ee; border-left: 3px solid #5b6cff; border-radius: 12px; }
.legal-note strong { display: block; margin-bottom: 5px; color: #111a2c; }
.legal-note p { margin: 0; font-size: .9rem; }
.legal-contact-panel { margin-top: 58px; padding: 34px !important; background: #f4f6fa; border: 1px solid #e1e5ed; border-radius: 20px; }
.legal-contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.legal-contact-grid > div { padding: 17px; background: #fff; border: 1px solid #e3e7ef; border-radius: 11px; }
.legal-contact-grid .full { grid-column: 1 / -1; }
.legal-contact-grid span { display: block; margin-bottom: 5px; color: #ef3340; font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.legal-contact-grid p, .legal-contact-grid a { margin: 0; color: #263349; font-size: .86rem; font-weight: 700; text-decoration: none; }

@media (min-width: 761px) {
    .ceo-feature > :first-child:has(+ .prose) { position: sticky; top: 118px; }
}

.main-footer {
    background:
        radial-gradient(circle at 15% 100%, rgba(239,51,64,.09), transparent 28%),
        linear-gradient(135deg, #050810, #091020);
}

@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr 430px; gap: 42px; }
    .site-nav > a, .nav-dropdown > button { padding-inline: 10px; }
}

@media (max-width: 1040px) {
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; }
    .systems-visual { width: min(100%, 580px); margin: 10px auto 0 0; }
    .site-nav { background: #fff; box-shadow: 0 26px 60px rgba(8, 15, 32, .12); }
    .nav-cta { margin-left: 0; }
    .service-hero-grid { grid-template-columns: 1fr; }
    .service-hero-copy { padding-bottom: 20px; }
    .service-blueprint { width: min(100%, 650px); }
    .service-page-layout { grid-template-columns: 1fr; }
    .service-page-sidebar { display: none; }
    .service-switcher { display: block; margin: 34px 0 0; background: #f3f5f9; border: 1px solid #e0e4ec; border-radius: 14px; }
    .service-switcher summary { padding: 16px 18px; color: #253249; font-size: .86rem; font-weight: 800; cursor: pointer; }
    .service-switcher > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; padding: 0 12px 12px; }
    .service-switcher a { padding: 10px 12px; color: #5b677b; background: #fff; border-radius: 8px; font-size: .76rem; font-weight: 700; }
    .service-switcher a.active { color: #d12431; }
    .contact-hero-grid { grid-template-columns: 1fr; }
    .contact-response-card { max-width: 680px; }
    .contact-workspace { grid-template-columns: 1fr; }
    .contact-guidance { position: static; }
    .contact-guidance .section-copy { max-width: 720px; }
    .contact-brief-list { grid-template-columns: repeat(2, 1fr); gap: 0 22px; }
    .contact-form--project { max-width: 820px; }
    .contact-office-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-office-card--rascodex { grid-column: 1 / -1; min-height: 220px; }
    .contact-step-grid { grid-template-columns: repeat(2, 1fr); }
    .legal-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 760px) {
    .site-topbar__inner { justify-content: center; }
    .venture-link { font-size: .7rem; }
    .topbar-links { display: none; }
    .hero { padding-top: 68px; }
    .hero h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
    .systems-visual { max-height: 420px; border-radius: 26px; }
    .system-node { min-width: 101px; padding: 11px 11px 11px 30px; }
    .system-node i { top: 16px; left: 12px; }
    .system-core { width: 92px; border-radius: 25px; }
    .systems-venture { top: 14px; right: 14px; }
    .systems-badge { right: 14px; bottom: 14px; }
    .stats-bar { border-radius: 14px; }
    .stat, .stat:first-child { padding: 18px 20px; }
    .service-card { padding: 27px; }
    .architecture-visual { padding: 18px; }
    .architecture-layer { grid-template-columns: 26px 1fr 8px; padding: 13px; }
    .company-profile-visual { min-height: 450px; padding: 18px; }
    .profile-location { min-width: 128px; }
    .company-profile-stats div { padding: 12px 9px; }
    .service-hero { padding-top: 55px; }
    .service-hero-copy h1 { font-size: clamp(2.6rem, 13vw, 3.8rem); }
    .service-blueprint { padding: 15px; border-radius: 20px; }
    .service-blueprint__core { grid-template-columns: auto 1fr; }
    .live-status { grid-column: 1 / -1; }
    .service-blueprint__flow { grid-template-columns: 1fr; }
    .service-blueprint__flow div { min-height: 58px; flex-direction: row; align-items: center; gap: 15px; }
    .service-proof-strip { grid-template-columns: 1fr; border-radius: 14px 14px 0 0; }
    .service-proof-strip div { padding: 16px 18px; }
    .service-switcher > div { grid-template-columns: 1fr; }
    .service-ai-callout { grid-template-columns: auto 1fr; padding: 21px; }
    .service-ai-callout > a { grid-column: 2; }
    .service-capability-section { margin-top: 62px; }
    .service-capability-grid, .service-outcome-grid { grid-template-columns: 1fr; }
    .service-capability-card { min-height: 0; }
    .service-outcome-grid { margin-top: 58px; }
    .service-tech-panel { width: min(calc(100% - 28px), var(--container)); padding: 29px 20px; }
    .contact-hero { padding: 58px 0 76px; }
    .contact-hero h1 { font-size: clamp(2.65rem, 13vw, 3.75rem); }
    .contact-response-card { padding: 24px; border-radius: 20px; }
    .contact-channel-section { margin-top: -28px; }
    .contact-channel-grid { grid-template-columns: 1fr; }
    .contact-channel-grid > a { border-right: 0; border-bottom: 1px solid #e4e8ef; }
    .contact-channel-grid > a:last-child { border-bottom: 0; }
    .contact-channel-grid small { min-height: 0; }
    .contact-main-section { padding-top: 90px; }
    .contact-brief-list { grid-template-columns: 1fr; }
    .contact-form--project { padding: 25px 20px; }
    .contact-office-grid, .contact-step-grid { grid-template-columns: 1fr; }
    .contact-office-card--rascodex { grid-column: auto; }
    .contact-next-heading { grid-template-columns: 1fr; gap: 18px; }
    .contact-step-grid article { min-height: 0; }
    .contact-step-grid span { margin-bottom: 25px; }
    .legal-layout { grid-template-columns: 1fr; gap: 26px; }
    .legal-sidebar { position: static; }
    .legal-sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .legal-prose > section { padding-top: 46px; }
    .legal-callout { padding: 26px; }
    .legal-contact-panel { padding: 24px !important; }
    .legal-contact-grid { grid-template-columns: 1fr; }
    .legal-contact-grid .full { grid-column: auto; }
}
