:root {
    --navy: #152b4a;
    --navy-deep: #0b1d34;
    --navy-soft: #203a60;
    --teal: #2dd8c6;
    --teal-soft: #75f1e0;
    --blue: #4d66ff;
    --pink: #e50067;
    --orange: #ff9b4a;
    --ink: #142033;
    --muted: #687387;
    --line: #dfe5ee;
    --surface: #f5f8fc;
    --white: #ffffff;
    --shadow-sm: 0 12px 34px rgba(13, 32, 57, .09);
    --shadow-lg: 0 30px 80px rgba(6, 21, 40, .22);
    --radius-sm: 16px;
    --radius: 24px;
    --radius-lg: 34px;
    --shell: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--white);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3 {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(3.1rem, 6.4vw, 6.4rem);
}

h2 {
    font-size: clamp(2.25rem, 4.2vw, 4.4rem);
}

h3 {
    font-size: 1.32rem;
}

::selection {
    background: var(--teal);
    color: var(--navy-deep);
}

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

.section {
    position: relative;
    padding: 118px 0;
    overflow: hidden;
}

.section-light {
    background: var(--surface);
    color: var(--ink);
}

.center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 14px;
    left: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 26px;
    border: 1px solid var(--teal);
    border-radius: 999px;
    background: var(--teal);
    color: var(--navy-deep);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.015em;
    box-shadow: 0 12px 32px rgba(45, 216, 198, .2);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
    background: var(--teal-soft);
    box-shadow: 0 18px 42px rgba(45, 216, 198, .28);
}

.button-sm {
    min-height: 43px;
    padding: 11px 19px;
    font-size: .9rem;
}

.button-ghost {
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .05);
    color: var(--white);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    border-color: var(--teal);
    background: rgba(45, 216, 198, .1);
    color: var(--teal-soft);
    box-shadow: none;
}

.button-light {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy);
    box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
    background: var(--teal);
    border-color: var(--teal);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 800;
    border-bottom: 1px solid rgba(21, 43, 74, .28);
    padding-bottom: 3px;
}

.text-link span {
    color: var(--teal);
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.light-link {
    color: var(--white);
    border-color: rgba(255, 255, 255, .28);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--teal-soft);
    font-size: .77rem;
    font-weight: 900;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: var(--teal);
    box-shadow: 0 0 16px rgba(45, 216, 198, .65);
}

.eyebrow-dark {
    color: #3c5470;
}

.lead {
    color: #43516a;
    font-size: clamp(1.08rem, 1.6vw, 1.32rem);
    line-height: 1.7;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(14, 31, 55, .72);
    backdrop-filter: blur(18px) saturate(130%);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
    background: rgba(11, 29, 52, .94);
    box-shadow: 0 12px 40px rgba(3, 15, 30, .25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 184px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    color: rgba(255, 255, 255, .76);
    font-size: .94rem;
    font-weight: 700;
}

.primary-nav > a:not(.button) {
    position: relative;
    padding: 30px 0;
    transition: color .2s ease;
}

.primary-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 21px;
    left: 0;
    height: 2px;
    border-radius: 20px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .25s ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a.is-active {
    color: var(--white);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 10px;
    background: var(--white);
    transition: transform .25s ease, opacity .2s ease;
}

/* Home hero */
.hero {
    position: relative;
    min-height: 920px;
    padding: 178px 0 50px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(77, 102, 255, .2), transparent 30%),
        radial-gradient(circle at 12% 78%, rgba(45, 216, 198, .12), transparent 30%),
        linear-gradient(140deg, var(--navy-deep) 0%, var(--navy) 48%, #17365e 100%);
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -48%;
    width: 780px;
    height: 780px;
    border: 1px solid rgba(45, 216, 198, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(45, 216, 198, .025), 0 0 0 160px rgba(45, 216, 198, .018);
}

.hero-grid-pattern,
.page-hero-grid,
.cta-grid,
.not-found-grid {
    position: absolute;
    inset: 0;
    opacity: .2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-orb,
.page-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    top: 110px;
    right: 8%;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(45, 216, 198, .18);
    box-shadow: inset 0 0 80px rgba(45, 216, 198, .05);
}

.hero-orb-two {
    bottom: 130px;
    left: -110px;
    width: 290px;
    height: 290px;
    background: rgba(229, 0, 103, .06);
    filter: blur(60px);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
    align-items: center;
    gap: 72px;
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 28px;
}

.hero-copy h1 em {
    display: inline;
    color: var(--teal);
    font-style: normal;
    text-shadow: 0 0 40px rgba(45, 216, 198, .26);
}

.hero-copy > p {
    max-width: 710px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

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

.centered-actions {
    justify-content: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
}

.hero-trust p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: .83rem;
    line-height: 1.45;
}

.hero-trust strong {
    color: var(--white);
    font-size: .93rem;
}

.avatar-stack {
    display: flex;
    padding-left: 8px;
}

.avatar-stack span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-left: -8px;
    place-items: center;
    border: 2px solid var(--navy);
    border-radius: 50%;
    background: linear-gradient(145deg, #2f4a72, #162b49);
    color: var(--teal-soft);
    font-size: .57rem;
    font-weight: 900;
}

.hero-visual {
    position: relative;
    min-height: 550px;
}

.visual-glow {
    position: absolute;
    top: 8%;
    left: 10%;
    width: 82%;
    height: 82%;
    border-radius: 50%;
    background: rgba(45, 216, 198, .18);
    filter: blur(90px);
}

.creative-console {
    position: absolute;
    z-index: 2;
    top: 38px;
    right: 0;
    left: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 30px;
    background: rgba(7, 23, 43, .88);
    box-shadow: var(--shadow-lg);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
    backdrop-filter: blur(16px);
}

.console-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .46);
    font-size: .7rem;
    letter-spacing: .08em;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.window-dots i:nth-child(1) { background: var(--pink); }
.window-dots i:nth-child(2) { background: var(--orange); }
.window-dots i:nth-child(3) { background: var(--teal); }

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(45, 216, 198, .1);
    color: var(--teal-soft);
    font-weight: 800;
}

.live-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 10px var(--teal);
}

.console-body {
    display: grid;
    grid-template-columns: 70px 1fr;
    min-height: 410px;
}

.console-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-right: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .02);
}

.console-sidebar img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.console-sidebar span {
    width: 22px;
    height: 5px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .14);
}

.console-sidebar span.is-on {
    width: 28px;
    background: var(--teal);
    box-shadow: 0 0 18px rgba(45, 216, 198, .45);
}

.console-main {
    padding: 26px;
}

.mini-kicker {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .36);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.console-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.console-title-row strong {
    display: block;
    font-size: 1.36rem;
    letter-spacing: -.03em;
}

.console-title-row small {
    color: rgba(255, 255, 255, .48);
}

.growth-badge {
    padding: 7px 10px;
    border: 1px solid rgba(45, 216, 198, .2);
    border-radius: 10px;
    background: rgba(45, 216, 198, .1);
    color: var(--teal-soft);
    font-size: .8rem;
    font-weight: 900;
}

.chart-card {
    padding: 18px 18px 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 130px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.chart-bars span {
    flex: 1;
    height: var(--h);
    max-width: 24px;
    border-radius: 7px 7px 1px 1px;
    background: linear-gradient(to top, rgba(77, 102, 255, .45), var(--teal));
    box-shadow: 0 0 20px rgba(45, 216, 198, .12);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: rgba(255, 255, 255, .34);
    font-size: .62rem;
}

.console-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.console-cards > div {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
}

.console-cards span,
.console-cards small {
    display: block;
    color: rgba(255, 255, 255, .34);
    font-size: .55rem;
}

.console-cards strong {
    display: block;
    margin: 3px 0;
    color: var(--white);
    font-size: 1.16rem;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 215px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    background: rgba(18, 39, 66, .86);
    box-shadow: 0 16px 38px rgba(3, 14, 28, .26);
    backdrop-filter: blur(16px);
    animation: float 5s ease-in-out infinite;
}

.floating-card-a {
    top: 0;
    right: -28px;
}

.floating-card-b {
    bottom: 12px;
    left: -32px;
    animation-delay: -2.4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(45, 216, 198, .24), rgba(77, 102, 255, .16));
    color: var(--teal-soft);
    font-size: .74rem;
    font-weight: 900;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    color: var(--white);
    font-size: .85rem;
}

.floating-card span {
    color: rgba(255, 255, 255, .48);
    font-size: .66rem;
}

.hero-service-strip {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 62px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .5);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hero-service-strip i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
}

/* Intro and stats */
.split-heading {
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: end;
    gap: 90px;
}

.split-heading h2 {
    max-width: 720px;
    margin-bottom: 0;
}

.split-heading .lead {
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 76px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.stats-grid article {
    min-height: 170px;
    padding: 34px;
    border-right: 1px solid var(--line);
}

.stats-grid article:last-child {
    border-right: 0;
}

.stats-grid strong {
    display: block;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.06em;
}

.stats-grid strong span {
    color: var(--teal);
}

.stats-grid p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

/* Services preview */
.services-preview,
.process-section,
.capability-section,
.contact-faq {
    background:
        radial-gradient(circle at 14% 14%, rgba(45, 216, 198, .09), transparent 25%),
        linear-gradient(140deg, var(--navy-deep), var(--navy));
    color: var(--white);
}

.section-heading {
    max-width: 860px;
}

.section-heading.center {
    margin-inline: auto;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading > p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .58);
    font-size: 1.08rem;
}

.section-light .section-heading > p,
.values-section .section-heading > p,
.service-process .section-heading > p {
    color: var(--muted);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 58px;
}

.service-card {
    position: relative;
    min-height: 390px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(45, 216, 198, .1);
    filter: blur(10px);
    transition: transform .4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 216, 198, .45);
    background: rgba(255, 255, 255, .075);
}

.service-card:hover::before {
    transform: scale(1.3);
}

.service-card.featured {
    background: linear-gradient(145deg, rgba(45, 216, 198, .16), rgba(77, 102, 255, .08));
}

.service-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(255, 255, 255, .22);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.service-icon {
    position: relative;
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 56px;
    place-items: center;
    border: 1px solid rgba(45, 216, 198, .24);
    border-radius: 19px;
    background: rgba(45, 216, 198, .09);
    color: var(--teal-soft);
}

.service-card h3 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 1.48rem;
}

.service-card p {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .56);
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-size: .88rem;
    font-weight: 800;
}

.service-card a span {
    color: var(--teal);
}

.icon-social {
    align-content: end;
    grid-template-columns: repeat(3, 8px);
    gap: 5px;
    padding-bottom: 15px;
}

.icon-social span {
    width: 8px;
    border-radius: 6px 6px 2px 2px;
    background: var(--teal);
}

.icon-social span:nth-child(1) { height: 16px; }
.icon-social span:nth-child(2) { height: 28px; }
.icon-social span:nth-child(3) { height: 21px; }

.icon-content span {
    width: 28px;
    height: 22px;
    border: 2px solid var(--teal);
    border-radius: 7px;
}

.icon-content span::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 27px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid var(--teal);
}

.icon-ads {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.icon-ads span {
    width: 7px;
    border-radius: 5px;
    background: var(--teal);
}

.icon-ads span:nth-child(1) { height: 13px; }
.icon-ads span:nth-child(2) { height: 25px; }
.icon-ads span:nth-child(3) { height: 34px; }

.icon-web span {
    font-size: .95rem;
    font-weight: 900;
}

.icon-app span:first-child {
    width: 22px;
    height: 34px;
    border: 2px solid var(--teal);
    border-radius: 6px;
}

.icon-app span:last-child {
    position: absolute;
    bottom: 18px;
    width: 5px;
    height: 2px;
    border-radius: 4px;
    background: var(--teal);
}

.icon-crm {
    grid-template-columns: repeat(3, 10px);
    gap: 4px;
}

.icon-crm span {
    width: 10px;
    height: 26px;
    border: 2px solid var(--teal);
    border-radius: 5px;
}

.icon-crm span:nth-child(2) { transform: translateY(-6px); }

.action-under-grid {
    margin-top: 44px;
}

/* Why section */
.why-layout {
    display: grid;
    grid-template-columns: .86fr 1.05fr;
    align-items: center;
    gap: 110px;
}

.why-visual {
    position: relative;
    min-height: 630px;
}

.phone-frame {
    position: absolute;
    top: 0;
    left: 14%;
    width: 360px;
    padding: 12px;
    border-radius: 48px;
    background: var(--navy-deep);
    box-shadow: 0 35px 70px rgba(15, 38, 66, .24);
    transform: rotate(-4deg);
}

.phone-notch {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 50%;
    width: 92px;
    height: 21px;
    border-radius: 0 0 15px 15px;
    background: var(--navy-deep);
    transform: translateX(-50%);
}

.phone-screen {
    min-height: 570px;
    padding: 26px 18px 20px;
    overflow: hidden;
    border-radius: 38px;
    background: var(--white);
}

.social-post-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.social-post-head img {
    border-radius: 50%;
    background: var(--navy);
}

.social-post-head div {
    flex: 1;
}

.social-post-head strong,
.social-post-head span {
    display: block;
}

.social-post-head strong {
    color: var(--ink);
    font-size: .78rem;
}

.social-post-head span {
    color: var(--muted);
    font-size: .62rem;
}

.social-post-head b {
    color: var(--muted);
}

.social-post-art {
    position: relative;
    display: flex;
    min-height: 345px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 22px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--navy) 0 60%, var(--teal) 60% 100%);
    color: var(--white);
}

.social-post-art > span {
    position: relative;
    z-index: 2;
    color: var(--teal-soft);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.social-post-art > strong {
    position: relative;
    z-index: 2;
    max-width: 220px;
    font-size: 2rem;
    line-height: 1;
}

.social-post-art img {
    position: absolute;
    top: 30px;
    right: 22px;
    opacity: .32;
}

.post-orbit {
    position: absolute;
    top: -25px;
    right: -60px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
}

.social-post-meta {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    color: var(--ink);
    font-size: 1.25rem;
}

.social-post-meta b {
    margin-left: auto;
}

.phone-screen > p {
    color: var(--ink);
    font-size: .68rem;
    line-height: 1.5;
}

.result-card {
    position: absolute;
    z-index: 4;
    min-width: 145px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.result-card strong,
.result-card span {
    display: block;
}

.result-card strong {
    color: var(--navy);
    font-size: 1.7rem;
    line-height: 1;
}

.result-card span {
    margin-top: 6px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
}

.result-card-one {
    top: 105px;
    right: 0;
}

.result-card-two {
    bottom: 40px;
    left: 0;
}

.why-copy h2 {
    margin-bottom: 24px;
}

.why-copy > p {
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-list article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.feature-list article > span {
    color: var(--teal);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.feature-list h3 {
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 1.06rem;
}

.feature-list p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

/* Process */
.process-section .section-heading {
    max-width: 760px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.process-grid article {
    position: relative;
    min-height: 265px;
    padding: 36px 28px 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.process-grid article:last-child {
    border-right: 0;
}

.process-grid article::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 28px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 8px rgba(45, 216, 198, .09), 0 0 18px rgba(45, 216, 198, .45);
}

.process-grid span {
    color: rgba(255, 255, 255, .28);
    font-size: .75rem;
    font-weight: 900;
}

.process-grid h3 {
    margin: 40px 0 14px;
    color: var(--white);
}

.process-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .54);
}

/* Tech band */
.tech-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: center;
    gap: 80px;
}

.tech-layout h2 {
    margin-bottom: 18px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tags span {
    padding: 13px 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: #41516c;
    font-weight: 750;
    box-shadow: 0 5px 16px rgba(14, 34, 59, .04);
}

.tech-tags span:nth-child(3n+1) {
    border-color: rgba(45, 216, 198, .4);
    color: var(--navy);
}

/* CTA */
.cta-section {
    position: relative;
    padding: 104px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 25%, rgba(77, 102, 255, .24), transparent 28%),
        linear-gradient(140deg, #102641, var(--navy));
    color: var(--white);
}

.cta-section::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -110px;
    width: 330px;
    height: 330px;
    border: 70px solid rgba(45, 216, 198, .08);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 70px;
}

.cta-inner h2 {
    max-width: 800px;
    margin-bottom: 18px;
}

.cta-inner p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 1.08rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

/* Page heroes */
.page-hero {
    position: relative;
    min-height: 650px;
    padding: 185px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 28%, rgba(45, 216, 198, .11), transparent 28%),
        linear-gradient(145deg, var(--navy-deep), var(--navy) 65%, #1a3c67);
    color: var(--white);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -140px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(45, 216, 198, .025), 0 0 0 140px rgba(45, 216, 198, .018);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .65fr;
    align-items: center;
    gap: 90px;
}

.page-hero-inner h1 {
    max-width: 900px;
    margin-bottom: 25px;
    font-size: clamp(3rem, 5.8vw, 5.7rem);
}

.page-hero-inner p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 1.14rem;
}

.page-hero-centered {
    display: block;
    max-width: 1040px;
    text-align: center;
}

.page-hero-centered p {
    margin-inline: auto;
}

.page-hero-centered .hero-actions {
    margin-top: 34px;
}

.page-hero-mark {
    position: relative;
    display: grid;
    place-items: center;
}

.page-hero-mark::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(45, 216, 198, .25);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(45, 216, 198, .025), 0 0 80px rgba(45, 216, 198, .15);
}

.page-hero-mark img {
    position: relative;
    width: min(380px, 90%);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .22));
}

.page-orb-a {
    top: 180px;
    left: -90px;
    width: 250px;
    height: 250px;
    background: rgba(229, 0, 103, .06);
    filter: blur(55px);
}

.page-orb-b {
    top: 120px;
    left: 12%;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(77, 102, 255, .18);
}

.page-orb-c {
    top: 140px;
    right: 8%;
    width: 290px;
    height: 290px;
    background: rgba(45, 216, 198, .05);
    filter: blur(45px);
}

/* About */
.story-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.story-layout h2 {
    margin-bottom: 0;
}

.story-copy p:not(.lead) {
    color: var(--muted);
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-metrics div {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 30px 24px;
    border-right: 1px solid var(--line);
}

.about-metrics div:last-child {
    border-right: 0;
}

.about-metrics strong {
    color: var(--navy);
    font-size: 2.2rem;
    letter-spacing: -.05em;
}

.about-metrics span {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 700;
}

.mission-section {
    background: linear-gradient(140deg, var(--navy-deep), var(--navy));
    color: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.mission-card {
    position: relative;
    min-height: 520px;
    padding: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .045);
}

.mission-card::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(45, 216, 198, .09);
    filter: blur(15px);
}

.vision-card {
    background: linear-gradient(145deg, rgba(45, 216, 198, .14), rgba(77, 102, 255, .08));
}

.mission-label {
    color: var(--teal-soft);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.mission-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 50px 0 38px;
    place-items: center;
    border: 1px solid rgba(45, 216, 198, .3);
    border-radius: 50%;
    color: var(--teal);
    font-weight: 900;
}

.mission-card h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    font-size: clamp(2rem, 3.2vw, 3.45rem);
}

.mission-card p {
    position: relative;
    z-index: 2;
    max-width: 580px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .6);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.values-grid article {
    min-height: 245px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 26px rgba(17, 39, 66, .04);
}

.values-grid span {
    color: var(--teal);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.values-grid h3 {
    margin: 35px 0 14px;
    color: var(--navy);
}

.values-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.capability-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.capability-copy h2 {
    margin-bottom: 25px;
}

.capability-copy p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .6);
    font-size: 1.06rem;
}

.capability-map {
    position: relative;
    min-height: 580px;
}

.capability-core {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: grid;
    width: 190px;
    height: 190px;
    place-items: center;
    border: 1px solid rgba(45, 216, 198, .35);
    border-radius: 50%;
    background: rgba(45, 216, 198, .08);
    box-shadow: 0 0 65px rgba(45, 216, 198, .14);
    transform: translate(-50%, -50%);
}

.capability-core img {
    width: 104px;
}

.capability-core span {
    margin-top: -22px;
    color: var(--teal-soft);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(255, 255, 255, .14);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 370px;
    height: 370px;
}

.orbit-two {
    width: 540px;
    height: 540px;
}

.cap-node {
    position: absolute;
    z-index: 5;
    min-width: 110px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .8);
    text-align: center;
    font-size: .76rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.node-one { top: 20px; left: 41%; }
.node-two { top: 22%; right: 1%; }
.node-three { right: 5%; bottom: 17%; }
.node-four { bottom: 8px; left: 41%; }
.node-five { bottom: 18%; left: 2%; }
.node-six { top: 22%; left: 0; }

.promise-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.promise-layout h2 {
    margin-bottom: 0;
}

.promise-points {
    display: grid;
    gap: 12px;
}

.promise-points article {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
}

.promise-points span {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: rgba(45, 216, 198, .13);
    color: #139f92;
    font-weight: 900;
}

.promise-points p {
    margin: 0;
    color: #49566c;
    font-weight: 650;
}

/* Services detail */
.service-intro {
    padding-bottom: 92px;
}

.service-detail {
    background: linear-gradient(140deg, var(--navy-deep), var(--navy));
    color: var(--white);
}

.service-detail.section-light {
    background: var(--surface);
    color: var(--ink);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 95px;
}

.reverse-layout .service-detail-copy {
    order: 2;
}

.reverse-layout .service-detail-visual {
    order: 1;
}

.service-detail-copy {
    position: relative;
}

.service-index {
    position: absolute;
    top: -66px;
    right: 0;
    color: rgba(255, 255, 255, .1);
    font-size: 5.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.09em;
}

.dark-index {
    color: rgba(21, 43, 74, .07);
}

.service-detail-copy h2 {
    margin-bottom: 23px;
}

.service-detail-copy > p {
    margin-bottom: 27px;
    color: rgba(255, 255, 255, .62);
    font-size: 1.04rem;
}

.dark-copy > p {
    color: var(--muted);
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 24px;
    padding: 0;
    margin: 0 0 32px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--teal);
    font-weight: 900;
}

.dark-list li {
    color: #4d5a6e;
}

.service-detail-visual {
    position: relative;
    min-height: 540px;
}

/* Social visual */
.content-calendar {
    position: absolute;
    top: 60px;
    right: 20px;
    left: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .07);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.calendar-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.calendar-head strong {
    font-size: 1.2rem;
}

.calendar-head span {
    padding: 4px 9px;
    border-radius: 8px;
    background: rgba(45, 216, 198, .12);
    color: var(--teal-soft);
    font-size: .72rem;
    font-weight: 800;
}

.calendar-days,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-days {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    font-size: .62rem;
}

.calendar-grid i {
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
}

.calendar-grid i[class] {
    border-color: transparent;
}

.calendar-grid .post-a { background: linear-gradient(145deg, var(--teal), #198b92); }
.calendar-grid .post-b { background: linear-gradient(145deg, var(--blue), #7d4eff); }
.calendar-grid .post-c { background: linear-gradient(145deg, var(--pink), #ff7049); }

.metric-chip {
    position: absolute;
    z-index: 3;
    min-width: 150px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 17px;
    background: rgba(10, 29, 52, .88);
    box-shadow: var(--shadow-sm);
}

.metric-chip strong,
.metric-chip span {
    display: block;
}

.metric-chip strong {
    color: var(--teal-soft);
    font-size: 1.65rem;
    line-height: 1;
}

.metric-chip span {
    margin-top: 6px;
    color: rgba(255, 255, 255, .48);
    font-size: .7rem;
}

.chip-a { top: 5px; right: -10px; }
.chip-b { bottom: 16px; left: -5px; }

/* Content visual */
.video-frame {
    position: absolute;
    inset: 25px 10px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(rgba(12, 29, 50, .1), rgba(12, 29, 50, .4)),
        radial-gradient(circle at 64% 34%, #77e5d5, transparent 17%),
        linear-gradient(145deg, #254566, #0c2037);
    box-shadow: var(--shadow-lg);
}

.video-frame::before,
.video-frame::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
}

.video-frame::before {
    top: -150px;
    left: -100px;
    border: 60px solid rgba(45, 216, 198, .16);
}

.video-frame::after {
    right: -120px;
    bottom: -160px;
    border: 70px solid rgba(77, 102, 255, .15);
}

.video-ui {
    position: absolute;
    z-index: 2;
    top: 22px;
    right: 24px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .75);
    font-size: .65rem;
}

.video-ui span {
    color: #ff5d78;
    font-weight: 900;
}

.focus-box {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 230px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, .48);
    transform: translate(-50%, -50%);
}

.focus-box::before,
.focus-box::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, .55);
}

.focus-box::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.focus-box::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}

.video-subject {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    width: 240px;
    height: 390px;
    border-radius: 130px 130px 0 0;
    background: linear-gradient(145deg, #f0bc91 0 24%, #151e32 24% 100%);
    transform: translateX(-50%);
}

.video-frame button {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    cursor: default;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
}

.production-tag {
    position: absolute;
    z-index: 5;
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--navy);
    font-size: .7rem;
    font-weight: 850;
    box-shadow: var(--shadow-sm);
}

.tag-a { top: 0; right: 10px; }
.tag-b { bottom: 5px; left: -10px; }

/* Ads visual */
.ads-dashboard {
    position: absolute;
    inset: 42px 5px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .055);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.ads-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.ads-head strong {
    font-size: 1.1rem;
}

.ads-head span {
    color: rgba(255, 255, 255, .38);
    font-size: .68rem;
}

.ads-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ads-metrics div {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 15px;
    background: rgba(255, 255, 255, .03);
}

.ads-metrics span,
.ads-metrics strong {
    display: block;
}

.ads-metrics span {
    color: rgba(255, 255, 255, .36);
    font-size: .62rem;
}

.ads-metrics strong {
    margin-top: 5px;
    color: var(--white);
    font-size: 1.28rem;
}

.line-chart {
    height: 230px;
    margin-top: 26px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 18px;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 100% 45px;
}

.line-chart svg {
    width: 100%;
    height: 100%;
}

/* Branding visual */
.brand-board {
    position: absolute;
    inset: 30px 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 13px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.brand-logo-tile {
    display: grid;
    grid-row: 1 / 3;
    place-items: center;
    border-radius: 21px;
    background: var(--navy);
}

.brand-logo-tile img {
    width: 150px;
}

.brand-colors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.brand-colors span {
    border-radius: 18px;
}

.brand-colors span:nth-child(1) { background: var(--navy); }
.brand-colors span:nth-child(2) { background: var(--teal); }
.brand-colors span:nth-child(3) { background: var(--blue); }
.brand-colors span:nth-child(4) { background: var(--pink); }

.brand-type {
    padding: 24px;
    border-radius: 20px;
    background: var(--surface);
}

.brand-type small,
.brand-type strong,
.brand-type p {
    display: block;
}

.brand-type small {
    color: var(--muted);
    font-size: .63rem;
}

.brand-type strong {
    margin: 8px 0;
    color: var(--navy);
    font-size: 3.7rem;
    line-height: 1;
    letter-spacing: -.08em;
}

.brand-type p {
    color: var(--muted);
    font-size: .72rem;
}

/* Web visual */
.browser-mockup {
    position: absolute;
    top: 45px;
    right: 0;
    left: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 25px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding: 0 15px;
    background: #e9eef5;
}

.browser-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4cedd;
}

.browser-bar span {
    min-width: 180px;
    margin-left: 15px;
    padding: 4px 12px;
    border-radius: 8px;
    background: var(--white);
    color: #8190a5;
    font-size: .58rem;
}

.browser-page {
    min-height: 370px;
    padding: 18px;
    background: #f8fbff;
}

.browser-nav {
    width: 100%;
    height: 24px;
    margin-bottom: 15px;
    border-radius: 7px;
    background: var(--navy);
}

.browser-hero {
    position: relative;
    min-height: 190px;
    padding: 34px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--navy) 0 58%, var(--teal) 58%);
}

.browser-hero span {
    display: block;
    width: 55px;
    height: 5px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: var(--teal-soft);
}

.browser-hero strong {
    display: block;
    max-width: 220px;
    color: var(--white);
    font-size: 1.6rem;
}

.browser-hero p {
    width: 190px;
    height: 7px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
}

.browser-hero button {
    width: 80px;
    height: 22px;
    border: 0;
    border-radius: 999px;
    background: var(--teal);
}

.browser-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.browser-cards i {
    height: 80px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
}

.responsive-phone {
    position: absolute;
    right: -12px;
    bottom: 2px;
    width: 150px;
    height: 285px;
    padding: 22px 12px;
    border: 7px solid var(--navy-deep);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.responsive-phone span {
    display: block;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
}

.responsive-phone strong,
.responsive-phone i {
    display: block;
    height: 9px;
    margin-top: 15px;
    border-radius: 10px;
    background: #d9e1eb;
}

.responsive-phone strong { width: 75%; }
.responsive-phone i:nth-of-type(1) { height: 58px; }
.responsive-phone i:nth-of-type(2) { height: 58px; }

/* Software visual */
.software-shell {
    position: absolute;
    inset: 25px 0;
    display: grid;
    grid-template-columns: 68px 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.software-shell aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-top: 20px;
    background: var(--navy);
}

.software-shell aside img {
    width: 36px;
}

.software-shell aside span {
    width: 23px;
    height: 6px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .18);
}

.software-main {
    padding: 24px;
}

.software-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
}

.software-title i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e8eef6;
}

.software-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 22px 0;
}

.software-metrics article {
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.software-metrics span,
.software-metrics strong {
    display: block;
}

.software-metrics span {
    color: var(--muted);
    font-size: .56rem;
}

.software-metrics strong {
    color: var(--navy);
    font-size: .95rem;
}

.software-chart {
    display: flex;
    align-items: flex-end;
    height: 160px;
    gap: 9px;
    padding: 18px;
    border-radius: 14px;
    background: var(--surface);
}

.software-chart span {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top, var(--blue), var(--teal));
}

.software-chart span:nth-child(1) { height: 28%; }
.software-chart span:nth-child(2) { height: 48%; }
.software-chart span:nth-child(3) { height: 42%; }
.software-chart span:nth-child(4) { height: 65%; }
.software-chart span:nth-child(5) { height: 55%; }
.software-chart span:nth-child(6) { height: 79%; }
.software-chart span:nth-child(7) { height: 68%; }
.software-chart span:nth-child(8) { height: 92%; }

.software-table {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.software-table i {
    height: 8px;
    border-radius: 10px;
    background: #e6ebf2;
}

.software-table i:nth-child(2) { width: 92%; }
.software-table i:nth-child(3) { width: 83%; }
.software-table i:nth-child(4) { width: 88%; }

.service-process {
    background: var(--surface);
}

.compact-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 52px;
}

.compact-process article {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.compact-process span {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(45, 216, 198, .13);
    color: #118d83;
    font-weight: 900;
}

.compact-process h3 {
    color: var(--navy);
}

.compact-process p {
    margin-bottom: 0;
    color: var(--muted);
}

/* Contact */
.contact-hero-card {
    display: grid;
    gap: 0;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(14px);
}

.contact-hero-card > span {
    margin-bottom: 12px;
    color: var(--teal-soft);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.contact-hero-card a {
    display: block;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.contact-hero-card strong,
.contact-hero-card small {
    display: block;
}

.contact-hero-card strong {
    color: var(--white);
    font-size: 1rem;
}

.contact-hero-card small {
    color: rgba(255, 255, 255, .45);
}

.contact-layout {
    display: grid;
    grid-template-columns: .76fr 1.24fr;
    align-items: start;
    gap: 90px;
}

.contact-copy h2 {
    margin-bottom: 22px;
}

.contact-methods {
    display: grid;
    gap: 11px;
    margin: 35px 0;
}

.contact-methods a {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-methods a:hover {
    transform: translateX(5px);
    border-color: rgba(45, 216, 198, .5);
    box-shadow: var(--shadow-sm);
}

.contact-method-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    background: rgba(45, 216, 198, .12);
    color: var(--navy);
    font-size: .76rem;
    font-weight: 900;
}

.contact-methods small,
.contact-methods strong,
.contact-methods p {
    display: block;
}

.contact-methods small {
    color: var(--muted);
    font-size: .66rem;
    text-transform: uppercase;
}

.contact-methods strong {
    color: var(--navy);
    word-break: break-word;
}

.contact-methods p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: .72rem;
}

.contact-methods b {
    color: var(--teal);
}

.contact-note {
    padding: 20px;
    border-left: 3px solid var(--teal);
    border-radius: 0 14px 14px 0;
    background: rgba(45, 216, 198, .07);
}

.contact-note strong {
    color: var(--navy);
}

.contact-note p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: .82rem;
}

.contact-form-card {
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 26px 70px rgba(14, 34, 59, .1);
}

.form-heading {
    margin-bottom: 32px;
}

.form-heading > span {
    color: #148e84;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.form-heading h2 {
    margin: 8px 0;
    color: var(--navy);
    font-size: 2.3rem;
}

.form-heading p {
    margin: 0;
    color: var(--muted);
    font-size: .8rem;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label:not(.consent-row):not(.honeypot) {
    display: grid;
    gap: 7px;
}

.contact-form label > span {
    color: #37465e;
    font-size: .76rem;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d7dfe9;
    border-radius: 12px;
    outline: none;
    background: #fbfcfe;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input,
.contact-form select {
    height: 52px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 155px;
    padding: 14px 15px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 216, 198, .12);
}

.contact-form [aria-invalid="true"] {
    border-color: #e54862;
    box-shadow: 0 0 0 4px rgba(229, 72, 98, .1);
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: .78rem;
    cursor: pointer;
}

.consent-row input {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--teal);
}

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

.form-submit {
    display: flex;
    width: 100%;
    margin-top: 3px;
    border: 0;
    cursor: pointer;
}

.form-submit i {
    margin-left: auto;
    font-style: normal;
}

.form-submit[disabled] {
    opacity: .66;
    cursor: wait;
    transform: none;
}

.form-status {
    display: none;
    padding: 13px 15px;
    border-radius: 11px;
    font-size: .82rem;
    font-weight: 700;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    border: 1px solid rgba(27, 154, 116, .22);
    background: rgba(27, 154, 116, .1);
    color: #126e55;
}

.form-status.is-error {
    border: 1px solid rgba(208, 50, 78, .22);
    background: rgba(208, 50, 78, .08);
    color: #a3243b;
}

.faq-layout {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    align-items: start;
    gap: 90px;
}

.faq-list {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.faq-list article {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.faq-list button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: var(--white);
    text-align: left;
    cursor: pointer;
}

.faq-list button span {
    font-weight: 800;
}

.faq-list button b {
    color: var(--teal);
    font-size: 1.4rem;
    transition: transform .25s ease;
}

.faq-list article.is-open button b {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s ease;
}

.faq-answer > p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .56);
}

.faq-list article.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-list article.is-open .faq-answer > p {
    padding: 0 35px 24px 0;
}

/* 404 */
.not-found-section {
    position: relative;
    display: grid;
    min-height: 760px;
    place-items: center;
    padding: 160px 0 90px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--navy-deep), var(--navy));
    color: var(--white);
}

.not-found-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.not-found-inner img {
    width: 120px;
    margin: 0 auto 15px;
}

.not-found-inner > span {
    display: block;
    color: var(--teal);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .25em;
}

.not-found-inner h1 {
    margin: 15px 0;
    font-size: clamp(2.6rem, 5vw, 5rem);
}

.not-found-inner p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .6);
}

/* Footer */
.site-footer {
    padding: 78px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #081a30;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr .8fr 1fr;
    gap: 65px;
}

.footer-logo img {
    width: 180px;
}

.footer-brand > p {
    max-width: 360px;
    margin: 23px 0;
    color: rgba(255, 255, 255, .52);
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    color: var(--teal-soft);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.social-row a:hover {
    transform: translateY(-3px);
    border-color: var(--teal);
    background: rgba(45, 216, 198, .09);
}

.social-row svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-grid h2 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-grid ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-grid li,
.footer-grid li a,
.footer-contact > a,
.footer-contact p {
    color: rgba(255, 255, 255, .5);
    font-size: .86rem;
}

.footer-grid li a:hover,
.footer-contact > a:hover {
    color: var(--teal-soft);
}

.footer-contact > a {
    display: block;
    margin-bottom: 8px;
    word-break: break-word;
}

.footer-contact p {
    margin-top: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .36);
    font-size: .72rem;
}

.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: var(--teal);
    color: var(--navy-deep);
    box-shadow: 0 15px 35px rgba(14, 53, 62, .3);
    transition: transform .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.03);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 1100px) {
    :root { --shell: 960px; }

    .hero-layout {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .creative-console {
        left: 0;
        transform: perspective(1200px) rotateY(-3deg);
    }

    .floating-card-a { right: -5px; }
    .floating-card-b { left: -8px; }

    .why-layout,
    .service-detail-layout,
    .capability-layout {
        gap: 55px;
    }

    .phone-frame {
        left: 4%;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .7fr .9fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto auto 1fr;
        align-items: start;
        gap: 20px;
    }

    .footer-contact h2 {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    .footer-contact p {
        margin: 0;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 90px 0;
    }

    .header-inner {
        min-height: 78px;
    }

    .brand img {
        width: 165px;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 3;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        z-index: 2;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 110px 34px 50px;
        background: rgba(8, 26, 48, .98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity .25s ease, transform .25s ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav > a:not(.button) {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
        font-size: 1.4rem;
    }

    .primary-nav > a:not(.button)::after {
        display: none;
    }

    .primary-nav .nav-cta {
        margin-top: 30px;
        min-height: 54px;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 45px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        width: min(100%, 620px);
        min-height: 530px;
        margin-inline: auto;
    }

    .hero-service-strip {
        margin-top: 40px;
    }

    .split-heading,
    .story-layout,
    .why-layout,
    .tech-layout,
    .mission-grid,
    .capability-layout,
    .promise-layout,
    .service-detail-layout,
    .contact-layout,
    .faq-layout,
    .cta-inner,
    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .split-heading,
    .story-layout,
    .why-layout,
    .tech-layout,
    .capability-layout,
    .promise-layout,
    .service-detail-layout,
    .contact-layout,
    .faq-layout,
    .cta-inner,
    .page-hero-inner {
        gap: 45px;
    }

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

    .stats-grid article:nth-child(2) {
        border-right: 0;
    }

    .stats-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

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

    .why-visual {
        width: min(100%, 590px);
        min-height: 620px;
        margin-inline: auto;
    }

    .process-grid article:nth-child(2) {
        border-right: 0;
    }

    .process-grid article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .page-hero {
        min-height: auto;
        padding: 150px 0 90px;
    }

    .page-hero-mark {
        display: none;
    }

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

    .about-metrics div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .about-metrics div:last-child {
        border-bottom: 0;
    }

    .capability-map {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .reverse-layout .service-detail-copy,
    .reverse-layout .service-detail-visual {
        order: initial;
    }

    .service-detail-copy {
        max-width: 760px;
    }

    .service-detail-visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }

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

    .contact-copy {
        max-width: 680px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr .8fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section {
        padding: 74px 0;
    }

    h1 {
        font-size: clamp(2.75rem, 13vw, 4.2rem);
    }

    h2 {
        font-size: clamp(2.05rem, 10vw, 3.2rem);
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 148px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-copy > p {
        font-size: 1rem;
    }

    .hero-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
    }

    .hero-visual {
        min-height: 415px;
    }

    .creative-console {
        top: 28px;
        border-radius: 22px;
        transform: none;
    }

    .console-body {
        grid-template-columns: 50px 1fr;
        min-height: 320px;
    }

    .console-main {
        padding: 18px 14px;
    }

    .console-sidebar {
        gap: 19px;
    }

    .console-sidebar img {
        width: 30px;
        height: 30px;
    }

    .console-title-row strong {
        font-size: 1.05rem;
    }

    .chart-bars {
        height: 85px;
    }

    .console-cards > div {
        padding: 10px 7px;
    }

    .console-cards strong {
        font-size: .88rem;
    }

    .floating-card {
        min-width: 170px;
        padding: 10px;
    }

    .floating-card-a {
        top: 0;
        right: -4px;
    }

    .floating-card-b {
        bottom: -3px;
        left: -4px;
    }

    .floating-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .floating-card strong {
        font-size: .72rem;
    }

    .floating-card span {
        font-size: .58rem;
    }

    .hero-service-strip {
        justify-content: flex-start;
        gap: 10px;
        font-size: .62rem;
    }

    .stats-grid,
    .service-card-grid,
    .values-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid article,
    .stats-grid article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stats-grid article:last-child {
        border-bottom: 0;
    }

    .service-card {
        min-height: 350px;
    }

    .why-visual {
        min-height: 520px;
    }

    .phone-frame {
        left: 50%;
        width: 300px;
        transform: translateX(-50%) rotate(-3deg);
    }

    .phone-screen {
        min-height: 490px;
    }

    .social-post-art {
        min-height: 285px;
    }

    .result-card-one {
        top: 95px;
        right: -4px;
    }

    .result-card-two {
        bottom: 15px;
        left: -4px;
    }

    .process-grid article,
    .process-grid article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .process-grid article:last-child {
        border-bottom: 0;
    }

    .tech-tags span {
        font-size: .8rem;
    }

    .cta-section {
        padding: 78px 0;
    }

    .page-hero {
        padding: 130px 0 72px;
    }

    .page-hero-inner h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .mission-card {
        min-height: auto;
        padding: 34px 28px;
    }

    .mission-icon {
        margin: 38px 0 28px;
    }

    .about-metrics div {
        flex-direction: column;
        gap: 2px;
    }

    .capability-map {
        min-height: 430px;
        transform: scale(.82);
        transform-origin: center;
    }

    .service-detail-visual {
        min-height: 420px;
    }

    .service-index {
        top: -48px;
        font-size: 4rem;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .content-calendar {
        inset-inline: 0;
        padding: 18px;
    }

    .calendar-grid {
        gap: 5px;
    }

    .video-frame,
    .ads-dashboard,
    .brand-board,
    .software-shell {
        inset-inline: 0;
    }

    .ads-dashboard {
        padding: 18px;
    }

    .ads-metrics {
        gap: 5px;
    }

    .ads-metrics div {
        padding: 10px 7px;
    }

    .ads-metrics strong {
        font-size: .9rem;
    }

    .line-chart {
        height: 190px;
    }

    .brand-board {
        grid-template-columns: .9fr 1.1fr;
    }

    .brand-logo-tile img {
        width: 110px;
    }

    .brand-type {
        padding: 15px;
    }

    .browser-mockup {
        top: 25px;
    }

    .responsive-phone {
        right: -5px;
        width: 115px;
        height: 225px;
    }

    .software-shell {
        grid-template-columns: 48px 1fr;
    }

    .software-main {
        padding: 16px 10px;
    }

    .software-metrics article {
        padding: 9px 5px;
    }

    .software-chart {
        height: 130px;
        gap: 5px;
        padding: 12px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

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

    .faq-layout {
        gap: 20px;
    }

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

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-contact {
        display: block;
    }

    .footer-contact h2 {
        margin-bottom: 22px;
    }

    .footer-contact p {
        margin-top: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        margin-top: 42px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   FAST MEDIA UI V2 — immersive motion, imagery and UX
   ========================================================= */
:root { --navy-ultra:#051324; --cyan:#13d8d0; --purple:#7047ff; --wa:#25d366; }
body { overflow-x:hidden; }
.site-progress { position:fixed; z-index:1200; top:0; left:0; width:100%; height:3px; background:rgba(255,255,255,.04); pointer-events:none; }
.site-progress span { display:block; width:100%; height:100%; background:linear-gradient(90deg,var(--teal),#49a7ff,var(--pink)); transform:scaleX(0); transform-origin:left; box-shadow:0 0 18px rgba(45,216,198,.65); }
.site-header { border-bottom-color:rgba(85,232,221,.12); background:linear-gradient(180deg,rgba(5,19,36,.91),rgba(5,19,36,.68)); overflow:visible; }
.site-header::after { content:""; position:absolute; left:50%; bottom:-1px; width:min(94%,1300px); height:1px; transform:translateX(-50%); background:linear-gradient(90deg,transparent,rgba(45,216,198,.6),rgba(112,71,255,.38),transparent); }
.site-header.is-scrolled { background:rgba(4,16,31,.95); box-shadow:0 18px 70px rgba(0,0,0,.34); }
.header-aura { position:absolute; inset:-120px 10% auto; height:170px; background:radial-gradient(circle,rgba(45,216,198,.15),transparent 66%); filter:blur(22px); pointer-events:none; }
.header-inner { min-height:82px; }
.brand { position:relative; gap:13px; }
.brand img { width:174px; transition:filter .3s ease,transform .3s ease; }
.brand:hover img { transform:translateY(-1px) scale(1.02); filter:drop-shadow(0 0 17px rgba(45,216,198,.24)); }
.brand-tag { padding-left:13px; border-left:1px solid rgba(255,255,255,.15); color:rgba(255,255,255,.42); font-size:.62rem; font-weight:800; letter-spacing:.08em; line-height:1.3; text-transform:uppercase; max-width:100px; }
.primary-nav { gap:9px; padding:7px; border:1px solid rgba(255,255,255,.075); border-radius:999px; background:rgba(255,255,255,.035); box-shadow:inset 0 1px rgba(255,255,255,.04); }
.primary-nav > a:not(.button) { padding:12px 15px; border-radius:999px; }
.primary-nav > a:not(.button)::after { display:none; }
.primary-nav > a:not(.button)::before { content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(135deg,rgba(45,216,198,.13),rgba(112,71,255,.08)); opacity:0; transform:scale(.85); transition:.25s ease; }
.primary-nav > a:not(.button):hover::before,.primary-nav > a.is-active::before { opacity:1; transform:scale(1); }
.primary-nav > a span { position:relative; z-index:1; }
.nav-cta { margin-left:2px; gap:8px; background:linear-gradient(135deg,var(--teal),#62efe0); border-color:transparent; }
.nav-cta b { font-size:1.05rem; }
.mobile-nav-contact { display:none; }

.fm-hero { position:relative; padding-top:82px; background:var(--navy-ultra); overflow:hidden; }
.fm-hero::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 0,rgba(37,171,209,.13),transparent 43%); pointer-events:none; }
.fm-hero-stage { position:relative; width:100%; aspect-ratio:1672/941; max-height:calc(100vh - 82px); min-height:540px; overflow:hidden; background:#06152a; }
.fm-hero-slide { position:absolute; inset:0; opacity:0; transform:scale(1.045); transition:opacity .9s ease,transform 7.5s cubic-bezier(.22,1,.36,1); }
.fm-hero-slide.is-active { opacity:1; transform:scale(1); z-index:1; }
.fm-hero-slide img { width:100%; height:100%; object-fit:cover; }
.fm-hero-shade { position:absolute; z-index:2; inset:0; pointer-events:none; background:linear-gradient(180deg,rgba(4,14,28,.28),transparent 18%,transparent 80%,rgba(3,13,26,.34)); }
.fm-hero-arrow { position:absolute; z-index:4; top:50%; display:grid; width:54px; height:54px; place-items:center; padding:0; border:1px solid rgba(255,255,255,.17); border-radius:50%; background:rgba(5,18,34,.48); color:#fff; font-size:2rem; line-height:1; cursor:pointer; backdrop-filter:blur(14px); opacity:.15; transition:.25s ease; }
.fm-hero:hover .fm-hero-arrow,.fm-hero:focus-within .fm-hero-arrow { opacity:1; }
.fm-hero-arrow:hover { border-color:var(--teal); background:rgba(45,216,198,.14); transform:translateY(-50%) scale(1.06); }
.fm-hero-prev { left:22px; transform:translateY(-50%); }
.fm-hero-next { right:22px; transform:translateY(-50%); }
.fm-hero-dots { position:absolute; z-index:4; right:34px; bottom:28px; display:flex; gap:9px; }
.fm-hero-dots button { width:8px; height:8px; padding:0; border:0; border-radius:20px; background:rgba(255,255,255,.44); cursor:pointer; transition:.25s ease; }
.fm-hero-dots button.is-active { width:34px; background:var(--teal); box-shadow:0 0 16px rgba(45,216,198,.66); }
.fm-hero-progress { position:absolute; z-index:5; left:0; bottom:0; width:100%; height:3px; background:rgba(255,255,255,.08); }
.fm-hero-progress span { display:block; width:100%; height:100%; transform-origin:left; background:linear-gradient(90deg,var(--teal),#5688ff,var(--pink)); }
@keyframes fmHeroProgress { from { transform:scaleX(0); } to { transform:scaleX(1); } }
.hero-action-dock { position:relative; z-index:5; display:flex; align-items:center; justify-content:space-between; gap:25px; margin-top:-1px; padding:25px 30px; border:1px solid rgba(255,255,255,.09); border-top:0; border-radius:0 0 28px 28px; background:linear-gradient(135deg,rgba(11,30,54,.98),rgba(15,38,68,.9)); box-shadow:0 28px 80px rgba(0,0,0,.3); color:#fff; }
.dock-copy { display:flex; align-items:center; gap:13px; }
.dock-copy p { margin:0; color:rgba(255,255,255,.6); font-size:.92rem; }
.dock-copy strong { color:#fff; }
.status-dot { width:11px; height:11px; border-radius:50%; background:var(--teal); box-shadow:0 0 0 8px rgba(45,216,198,.09),0 0 22px var(--teal); animation:statusPulse 2.4s ease-in-out infinite; }
@keyframes statusPulse { 50% { box-shadow:0 0 0 13px rgba(45,216,198,0),0 0 28px var(--teal); } }
.dock-actions { display:flex; gap:10px; flex:0 0 auto; }

.service-marquee { position:relative; z-index:2; overflow:hidden; padding:21px 0; border-block:1px solid rgba(45,216,198,.15); background:#071a31; color:#fff; }
.marquee-track { display:flex; width:max-content; align-items:center; gap:26px; animation:marqueeMove 32s linear infinite; }
.marquee-track span { color:rgba(255,255,255,.78); font-weight:900; letter-spacing:.08em; text-transform:uppercase; white-space:nowrap; }
.marquee-track i { color:var(--teal); font-style:normal; }
@keyframes marqueeMove { to { transform:translateX(-50%); } }

.animated-stats strong { display:flex; align-items:baseline; justify-content:center; }
.animated-stats strong b { color:var(--teal); font-size:.45em; }
.visual-service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; perspective:1400px; }
.visual-service-card { --tilt-x:0deg; --tilt-y:0deg; position:relative; min-height:470px; overflow:hidden; border:1px solid rgba(255,255,255,.1); border-radius:28px; background:#071a31; box-shadow:0 24px 65px rgba(0,0,0,.25); transform:perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transform-style:preserve-3d; transition:transform .2s ease,border-color .3s ease,box-shadow .3s ease; }
.visual-service-card::after,.showcase-card::after,.media-frame::after,.service-image-frame::after,.page-hero-photo::after,.about-visual-main::after,.capability-team-frame::after { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at var(--spot-x,50%) var(--spot-y,50%),rgba(45,216,198,.17),transparent 38%); opacity:0; transition:opacity .3s ease; }
.visual-service-card:hover::after,.showcase-card:hover::after,.media-frame:hover::after,.service-image-frame:hover::after,.page-hero-photo:hover::after,.about-visual-main:hover::after,.capability-team-frame:hover::after { opacity:1; }
.visual-service-card:hover { border-color:rgba(45,216,198,.35); box-shadow:0 32px 90px rgba(0,0,0,.38),0 0 55px rgba(45,216,198,.09); }
.visual-service-card img { width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.22,1,.36,1); }
.visual-service-card:hover img { transform:scale(1.065); }
.visual-service-card > div { position:absolute; z-index:2; inset:auto 0 0; padding:80px 26px 27px; background:linear-gradient(180deg,transparent,rgba(3,13,26,.98) 56%); color:#fff; transform:translateZ(25px); }
.visual-service-card > div > span { color:var(--teal); font-size:.75rem; font-weight:900; letter-spacing:.16em; }
.visual-service-card h3 { margin:9px 0 10px; font-size:1.45rem; }
.visual-service-card p { margin:0 0 17px; color:rgba(255,255,255,.61); font-size:.9rem; line-height:1.55; }
.visual-service-card a { color:var(--teal-soft); font-size:.85rem; font-weight:900; }
.visual-service-wide { grid-column:span 3; min-height:430px; }
.visual-service-wide > div { max-width:690px; background:linear-gradient(90deg,rgba(3,13,26,.98),rgba(3,13,26,.82),transparent); padding-top:100px; }
.upgraded-why { align-items:center; }
.media-frame,.showcase-card,.service-image-frame,.page-hero-photo,.about-visual-main,.capability-team-frame { --tilt-x:0deg; --tilt-y:0deg; position:relative; overflow:hidden; border:1px solid rgba(45,216,198,.18); border-radius:30px; background:#06162a; box-shadow:0 30px 85px rgba(8,26,48,.2); transform:perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transition:transform .2s ease,box-shadow .3s ease,border-color .3s ease; }
.media-frame:hover,.showcase-card:hover,.service-image-frame:hover,.page-hero-photo:hover,.about-visual-main:hover,.capability-team-frame:hover { border-color:rgba(45,216,198,.42); box-shadow:0 38px 100px rgba(4,18,35,.32),0 0 55px rgba(45,216,198,.08); }
.media-frame img,.showcase-card img,.service-image-frame img,.page-hero-photo img,.about-visual-main img,.capability-team-frame img { width:100%; height:100%; object-fit:cover; transition:transform 1s cubic-bezier(.22,1,.36,1); }
.media-frame:hover img,.showcase-card:hover img,.service-image-frame:hover img,.page-hero-photo:hover img,.about-visual-main:hover img,.capability-team-frame:hover img { transform:scale(1.04); }
.why-real-visual { min-height:650px; }
.why-real-visual figcaption { position:absolute; z-index:3; right:22px; bottom:22px; left:22px; display:flex; justify-content:space-between; gap:18px; padding:18px 20px; border:1px solid rgba(255,255,255,.16); border-radius:18px; background:rgba(5,18,34,.74); color:#fff; backdrop-filter:blur(16px); }
.why-real-visual figcaption span { color:rgba(255,255,255,.58); }
.creative-showcase { background:linear-gradient(145deg,#071a31,#0b2545); color:#fff; }
.showcase-heading { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:42px; }
.showcase-heading h2 { max-width:800px; margin-bottom:0; }
.showcase-grid { display:grid; grid-template-columns:1.3fr .7fr; grid-template-rows:repeat(2,320px); gap:20px; perspective:1400px; }
.showcase-card { margin:0; }
.showcase-large { grid-row:span 2; }
.showcase-card figcaption { position:absolute; z-index:3; right:18px; bottom:18px; left:18px; padding:14px 17px; border:1px solid rgba(255,255,255,.13); border-radius:14px; background:rgba(4,15,30,.72); color:#fff; font-size:.85rem; font-weight:800; backdrop-filter:blur(12px); }

.enhanced-page-hero { padding-top:155px; min-height:760px; }
.service-hero-layout,.about-hero-layout { grid-template-columns:minmax(0,1fr) minmax(420px,.9fr); align-items:center; gap:70px; }
.page-hero-photo { height:510px; }
.service-jump { position:sticky; z-index:20; top:82px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.08); background:rgba(5,19,36,.93); backdrop-filter:blur(18px); }
.service-jump-inner { display:flex; gap:9px; overflow-x:auto; scrollbar-width:none; }
.service-jump-inner::-webkit-scrollbar { display:none; }
.service-jump a { flex:0 0 auto; padding:10px 16px; border:1px solid rgba(255,255,255,.1); border-radius:999px; color:rgba(255,255,255,.63); font-size:.79rem; font-weight:800; transition:.22s ease; }
.service-jump a:hover { border-color:var(--teal); background:rgba(45,216,198,.1); color:#fff; transform:translateY(-2px); }
.visual-service-detail .service-detail-layout { align-items:center; }
.service-image-frame { min-height:560px; margin:0; }
.visual-service-detail:nth-of-type(odd) .service-image-frame { box-shadow:0 35px 100px rgba(0,0,0,.3); }

.about-visual-story { background:linear-gradient(135deg,#071a31,#0e2b4f); color:#fff; }
.about-visual-grid { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:70px; }
.about-visual-main { height:620px; }
.about-visual-copy p { color:rgba(255,255,255,.62); font-size:1.05rem; }
.about-mini-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:30px; }
.about-mini-grid article { padding:18px; border:1px solid rgba(255,255,255,.1); border-radius:18px; background:rgba(255,255,255,.04); }
.about-mini-grid strong { display:block; color:var(--teal); }
.about-mini-grid span { color:rgba(255,255,255,.52); font-size:.82rem; }
.upgraded-capability { align-items:center; }
.capability-team-frame { height:610px; }
.floating-note { position:absolute; z-index:3; padding:10px 15px; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(5,18,34,.72); color:#fff; font-size:.74rem; font-weight:900; backdrop-filter:blur(14px); animation:noteFloat 4s ease-in-out infinite; }
.note-one { top:24px; left:24px; }.note-two { top:46%; right:18px; animation-delay:-1.4s; }.note-three { bottom:25px; left:30%; animation-delay:-2.7s; }
@keyframes noteFloat { 50% { transform:translateY(-8px); } }

.site-footer { position:relative; overflow:hidden; padding-top:0; background:linear-gradient(145deg,#041326,#081d35 55%,#07192e); }
.footer-orb { position:absolute; border-radius:50%; filter:blur(3px); pointer-events:none; }
.footer-orb-one { width:520px; height:520px; right:-240px; top:90px; background:radial-gradient(circle,rgba(45,216,198,.12),transparent 67%); }
.footer-orb-two { width:430px; height:430px; left:-230px; bottom:-180px; background:radial-gradient(circle,rgba(112,71,255,.15),transparent 67%); }
.footer-cta { position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:40px; margin-bottom:75px; padding:58px 60px; border:1px solid rgba(255,255,255,.1); border-top:0; border-radius:0 0 34px 34px; background:linear-gradient(135deg,rgba(45,216,198,.1),rgba(112,71,255,.1)); box-shadow:0 26px 80px rgba(0,0,0,.22); }
.footer-cta h2 { max-width:780px; margin:0; font-size:clamp(2.2rem,4vw,4.2rem); }
.footer-cta-actions { display:flex; gap:10px; flex:0 0 auto; }
.footer-grid,.footer-bottom { position:relative; z-index:2; }
.footer-grid li a { display:inline-block; transition:transform .2s ease,color .2s ease; }
.footer-grid li a:hover { transform:translateX(5px); }
.footer-bottom { padding-bottom:12px; }

.floating-whatsapp { right:20px; bottom:20px; display:flex; width:auto; height:58px; padding:7px; border:0; border-radius:999px; background:var(--wa); color:#fff; box-shadow:0 16px 45px rgba(37,211,102,.3); overflow:visible; }
.whatsapp-icon { position:relative; z-index:2; display:grid; width:44px; height:44px; place-items:center; border-radius:50%; background:rgba(0,0,0,.1); }
.floating-whatsapp svg { width:27px; height:27px; fill:currentColor; stroke:none; }
.whatsapp-label { width:0; overflow:hidden; color:#fff; font-size:.82rem; font-weight:900; white-space:nowrap; opacity:0; transition:width .28s ease,opacity .2s ease,padding .28s ease; }
.floating-whatsapp:hover { transform:translateY(-5px); }
.floating-whatsapp:hover .whatsapp-label { width:126px; padding:0 12px 0 7px; opacity:1; }
.whatsapp-pulse { position:absolute; inset:0; border:1px solid rgba(37,211,102,.65); border-radius:inherit; animation:waPulse 2.2s ease-out infinite; }
@keyframes waPulse { to { opacity:0; transform:scale(1.34); } }
.social-row a:nth-child(2) svg { fill:currentColor; stroke:none; }

@media (max-width:1100px) {
    .brand-tag { display:none; }
    .primary-nav { gap:3px; }
    .primary-nav > a:not(.button) { padding-inline:10px; }
    .visual-service-grid { grid-template-columns:repeat(2,1fr); }
    .visual-service-wide { grid-column:span 2; }
    .service-hero-layout,.about-hero-layout { grid-template-columns:1fr 1fr; gap:35px; }
    .footer-cta { padding-inline:34px; }
}
@media (max-width:900px) {
    .site-header { overflow:visible; }
    .primary-nav { padding:26px; border-radius:0 0 26px 26px; background:rgba(4,16,31,.98); }
    .primary-nav > a:not(.button) { padding:13px 6px; border-bottom:1px solid rgba(255,255,255,.07); border-radius:0; }
    .mobile-nav-contact { display:grid; gap:5px; margin-top:12px; padding-top:18px; border-top:1px solid rgba(255,255,255,.1); }
    .mobile-nav-contact small { color:var(--teal); font-weight:800; }
    .mobile-nav-contact a { color:rgba(255,255,255,.6); font-size:.84rem; }
    .fm-hero { padding-top:78px; }
    .fm-hero-stage { min-height:0; aspect-ratio:16/10; }
    .hero-action-dock { width:calc(100% - 28px); flex-direction:column; align-items:stretch; margin-inline:auto; border-radius:0 0 24px 24px; }
    .dock-actions { width:100%; }
    .dock-actions .button { flex:1; }
    .visual-service-grid { grid-template-columns:1fr 1fr; }
    .why-real-visual { min-height:500px; }
    .showcase-grid { grid-template-columns:1fr 1fr; grid-template-rows:340px 300px; }
    .showcase-large { grid-column:span 2; grid-row:auto; }
    .service-hero-layout,.about-hero-layout,.about-visual-grid { grid-template-columns:1fr; }
    .page-hero-photo { height:430px; }
    .service-jump { top:78px; }
    .service-image-frame { min-height:430px; }
    .about-visual-main { height:470px; }
    .capability-team-frame { height:500px; }
    .footer-cta { flex-direction:column; align-items:flex-start; }
}
@media (max-width:640px) {
    .header-inner { min-height:74px; }
    .brand img { width:150px; }
    .fm-hero { padding-top:74px; }
    .fm-hero-stage { aspect-ratio:4/3; min-height:420px; }
    .fm-hero-slide img { object-position:center; }
    .fm-hero-arrow { width:44px; height:44px; font-size:1.6rem; }
    .fm-hero-prev { left:9px; }.fm-hero-next { right:9px; }
    .fm-hero-dots { right:18px; bottom:17px; }
    .hero-action-dock { padding:20px; }
    .dock-copy { align-items:flex-start; }
    .dock-actions { flex-direction:column; }
    .marquee-track { gap:18px; animation-duration:25s; }
    .marquee-track span { font-size:.78rem; }
    .visual-service-grid { grid-template-columns:1fr; }
    .visual-service-card { min-height:430px; }
    .visual-service-wide { grid-column:auto; }
    .visual-service-wide > div { background:linear-gradient(180deg,transparent,rgba(3,13,26,.98) 56%); }
    .why-real-visual { min-height:430px; }
    .why-real-visual figcaption { flex-direction:column; gap:2px; }
    .showcase-heading { align-items:flex-start; flex-direction:column; }
    .showcase-grid { display:grid; grid-template-columns:1fr; grid-template-rows:repeat(3,300px); }
    .showcase-large { grid-column:auto; }
    .enhanced-page-hero { padding-top:125px; min-height:auto; }
    .page-hero-photo { height:320px; }
    .service-jump { top:74px; }
    .service-image-frame { min-height:320px; }
    .about-mini-grid { grid-template-columns:1fr; }
    .about-visual-main,.capability-team-frame { height:350px; }
    .footer-cta { padding:42px 24px; margin-bottom:58px; }
    .footer-cta-actions { width:100%; flex-direction:column; }
    .floating-whatsapp:hover .whatsapp-label { width:0; padding:0; opacity:0; }
}
@media (prefers-reduced-motion:reduce) {
    .marquee-track,.status-dot,.floating-note,.whatsapp-pulse { animation:none !important; }
    .fm-hero-slide { transition:opacity .2s ease; transform:none !important; }
}

/* =========================================================
   FAST MEDIA MOBILE FIX — navigation + uncropped imagery
   ========================================================= */
@media (max-width: 900px) {
    body.nav-open {
        overflow: hidden;
        overscroll-behavior: none;
        touch-action: none;
    }

    .site-header {
        z-index: 3000;
    }

    .nav-toggle {
        z-index: 3003;
        flex: 0 0 auto;
    }

    .primary-nav {
        position: fixed !important;
        z-index: 3002;
        top: 78px !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        inset: 78px 0 0 !important;
        width: 100% !important;
        height: calc(100dvh - 78px) !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 18px 24px 34px !important;
        border: 0 !important;
        border-top: 1px solid rgba(255,255,255,.08) !important;
        border-radius: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        background:
            radial-gradient(circle at 100% 0, rgba(45,216,198,.13), transparent 34%),
            radial-gradient(circle at 0 100%, rgba(112,71,255,.13), transparent 37%),
            rgba(4,16,31,.99) !important;
        box-shadow: 0 24px 70px rgba(0,0,0,.46);
        opacity: 0 !important;
        visibility: hidden;
        pointer-events: none !important;
        transform: translateX(100%) !important;
        transition:
            transform .32s cubic-bezier(.22,1,.36,1),
            opacity .22s ease,
            visibility .22s ease !important;
    }

    .primary-nav.is-open {
        opacity: 1 !important;
        visibility: visible;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .primary-nav > a:not(.button) {
        position: relative;
        z-index: 1;
        display: flex !important;
        width: 100% !important;
        min-height: 59px;
        align-items: center;
        justify-content: space-between;
        padding: 14px 4px !important;
        border-bottom: 1px solid rgba(255,255,255,.09) !important;
        border-radius: 0 !important;
        color: rgba(255,255,255,.82) !important;
        font-size: clamp(1.15rem, 5vw, 1.4rem) !important;
        font-weight: 800 !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .primary-nav > a:not(.button)::before {
        display: none !important;
    }

    .primary-nav > a:not(.button)::after {
        content: "→" !important;
        position: static !important;
        display: block !important;
        width: auto !important;
        height: auto !important;
        margin-left: 15px;
        background: none !important;
        color: rgba(45,216,198,.72);
        font-size: 1rem;
        transform: none !important;
    }

    .primary-nav > a.is-active {
        color: #fff !important;
    }

    .primary-nav > a.is-active::after {
        color: var(--teal);
    }

    .primary-nav .nav-cta {
        order: 5;
        display: inline-flex !important;
        width: 100% !important;
        min-height: 56px;
        margin: 22px 0 0 !important;
        justify-content: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mobile-nav-contact {
        order: 6;
        display: grid !important;
        gap: 7px;
        width: 100%;
        margin-top: 18px !important;
        padding-top: 18px !important;
    }

    /* Keep every 16:9 hero banner fully visible on phones/tablets. */
    .fm-hero-stage {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 1672 / 941 !important;
        background: #06152a;
    }

    .fm-hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain !important;
        object-position: center center !important;
        background: #06152a;
    }

    /* Generated service artwork is 4:3. Match the containers to prevent cropping. */
    .visual-service-card {
        display: flex;
        min-height: 0 !important;
        height: auto !important;
        flex-direction: column;
        transform: none !important;
    }

    .visual-service-card img {
        position: relative;
        display: block;
        width: 100%;
        height: auto !important;
        aspect-ratio: 4 / 3;
        flex: 0 0 auto;
        object-fit: contain !important;
        object-position: center !important;
        background: #06162a;
    }

    .visual-service-card > div,
    .visual-service-wide > div {
        position: relative !important;
        inset: auto !important;
        max-width: none !important;
        padding: 24px !important;
        flex: 1 1 auto;
        background: linear-gradient(145deg, #06162a, #0a213d) !important;
        transform: none !important;
    }

    .why-real-visual,
    .service-image-frame,
    .page-hero-photo,
    .about-visual-main,
    .capability-team-frame {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 4 / 3;
        transform: none !important;
    }

    .why-real-visual img,
    .service-image-frame img,
    .page-hero-photo img,
    .about-visual-main img,
    .capability-team-frame img {
        object-fit: contain !important;
        object-position: center !important;
        background: #06162a;
    }

    .showcase-grid {
        grid-template-rows: auto !important;
    }

    .showcase-card,
    .showcase-large {
        width: 100%;
        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: 4 / 3;
        transform: none !important;
    }

    .showcase-card img {
        object-fit: contain !important;
        object-position: center !important;
        background: #06162a;
    }
}

@media (max-width: 640px) {
    .primary-nav {
        top: 74px !important;
        inset: 74px 0 0 !important;
        height: calc(100dvh - 74px) !important;
        padding: 14px 20px 28px !important;
    }

    .fm-hero-stage {
        min-height: 0 !important;
        aspect-ratio: 1672 / 941 !important;
    }

    .fm-hero-arrow {
        display: none;
    }

    .fm-hero-dots {
        right: 14px;
        bottom: 12px;
    }

    .fm-hero-dots button {
        width: 7px;
        height: 7px;
    }

    .fm-hero-dots button.is-active {
        width: 25px;
    }

    .hero-action-dock {
        width: calc(100% - 20px);
        padding: 18px;
    }

    .why-real-visual figcaption {
        right: 12px;
        bottom: 12px;
        left: 12px;
        padding: 13px 15px;
    }
}

/* =========================================================
   FAST MEDIA — CLIENTS / BRAND SOCIAL-PROOF SECTION
   ========================================================= */
.clients-section {
    position: relative;
    overflow: hidden;
    padding-block: clamp(82px, 9vw, 132px);
    background:
        radial-gradient(circle at 13% 15%, rgba(45,216,198,.15), transparent 27%),
        radial-gradient(circle at 90% 80%, rgba(111,78,255,.17), transparent 30%),
        linear-gradient(145deg, #06172c 0%, #081d36 52%, #06162b 100%);
    color: #fff;
    isolation: isolate;
}

.clients-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .24;
    background-image: radial-gradient(rgba(255,255,255,.19) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 2%, #000 25%, #000 75%, transparent 98%);
    mask-image: linear-gradient(to bottom, transparent 2%, #000 25%, #000 75%, transparent 98%);
}

.clients-orb {
    position: absolute;
    z-index: -1;
    width: 420px;
    aspect-ratio: 1;
    border: 1px solid rgba(45,216,198,.13);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(.1px);
}

.clients-orb::before,
.clients-orb::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(102,106,255,.12);
}

.clients-orb::before { inset: 42px; }
.clients-orb::after { inset: 95px; }

.clients-orb-one {
    top: -210px;
    right: -90px;
    animation: clientOrb 18s linear infinite;
}

.clients-orb-two {
    bottom: -280px;
    left: -150px;
    animation: clientOrb 24s linear infinite reverse;
}

@keyframes clientOrb {
    to { transform: rotate(360deg); }
}

.clients-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 38px;
    margin-bottom: 48px;
}

.clients-heading > div {
    max-width: 820px;
}

.clients-heading h2 {
    max-width: 760px;
    margin: 14px 0 18px;
    color: #fff;
}

.clients-heading p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 1rem;
    line-height: 1.75;
}

.clients-instagram-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    padding: 13px 17px;
    border: 1px solid rgba(45,216,198,.25);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: #fff;
    font-size: .85rem;
    font-weight: 850;
    backdrop-filter: blur(14px);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.clients-instagram-link span {
    color: var(--teal);
    transition: transform .25s ease;
}

.clients-instagram-link:hover {
    transform: translateY(-3px);
    border-color: rgba(45,216,198,.58);
    background: rgba(45,216,198,.08);
}

.clients-instagram-link:hover span {
    transform: translate(2px,-2px);
}

.clients-logo-stage {
    position: relative;
    display: grid;
    gap: 16px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.clients-logo-row {
    overflow: hidden;
}

.clients-logo-track {
    display: flex;
    width: max-content;
    gap: 16px;
    will-change: transform;
    animation: clientLogoMarquee 68s linear infinite;
}

.clients-logo-row-reverse .clients-logo-track {
    animation-direction: reverse;
    animation-duration: 74s;
}

.clients-logo-stage:hover .clients-logo-track {
    animation-play-state: paused;
}

@keyframes clientLogoMarquee {
    to { transform: translateX(-50%); }
}

.client-logo-card {
    position: relative;
    display: grid;
    flex: 0 0 210px;
    width: 210px;
    height: 118px;
    margin: 0;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(241,247,250,.95));
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
    transform: translateZ(0);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.client-logo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.75) 50%, transparent 70%);
    transform: translateX(-150%);
    transition: transform .65s ease;
}

.client-logo-card:hover {
    z-index: 2;
    transform: translateY(-6px) scale(1.035);
    border-color: rgba(45,216,198,.62);
    box-shadow: 0 24px 64px rgba(0,0,0,.29), 0 0 34px rgba(45,216,198,.10);
}

.client-logo-card:hover::after {
    transform: translateX(150%);
}

.client-logo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(.96);
    filter: saturate(.92) contrast(1.02);
    transition: filter .28s ease, transform .28s ease;
}

.client-logo-card:hover img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1);
}

@media (max-width: 900px) {
    .clients-section {
        padding-block: 72px;
    }

    .clients-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 36px;
    }

    .clients-logo-stage {
        -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
        mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    }

    .client-logo-card {
        flex-basis: 176px;
        width: 176px;
        height: 100px;
        border-radius: 17px;
    }

    .clients-logo-track {
        gap: 12px;
        animation-duration: 50s;
    }

    .clients-logo-row-reverse .clients-logo-track {
        animation-duration: 55s;
    }
}

@media (max-width: 640px) {
    .clients-section {
        padding-block: 62px;
    }

    .clients-heading {
        margin-bottom: 30px;
    }

    .clients-heading p {
        font-size: .92rem;
    }

    .clients-instagram-link {
        width: 100%;
        justify-content: center;
    }

    .clients-logo-stage {
        gap: 11px;
        margin-inline: -2px;
    }

    .client-logo-card {
        flex-basis: 154px;
        width: 154px;
        height: 88px;
        border-radius: 15px;
    }

    .clients-logo-track {
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-logo-track,
    .clients-orb {
        animation: none !important;
    }

    .clients-logo-row {
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .clients-logo-track {
        transform: none !important;
    }
}

/* =========================================================
   FAST MEDIA GLOBAL MOBILE IMAGE FIX
   About + Services + Homepage media frames
   ========================================================= */
@media (max-width: 900px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Prevent grid children and figure defaults from pushing media off-screen. */
    .page-hero-inner,
    .service-detail-layout,
    .about-visual-grid,
    .capability-layout,
    .why-layout,
    .showcase-grid,
    .visual-service-grid {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .page-hero-inner > *,
    .service-detail-layout > *,
    .about-visual-grid > *,
    .capability-layout > *,
    .why-layout > *,
    .showcase-grid > *,
    .visual-service-grid > * {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    /* All generated image frames use their real image height on mobile.
       No fixed heights/aspect-ratio cropping and no browser figure margins. */
    figure.page-hero-photo,
    figure.service-image-frame,
    figure.about-visual-main,
    figure.capability-team-frame,
    figure.why-real-visual,
    figure.showcase-card,
    .media-frame,
    .visual-service-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 auto !important;
        aspect-ratio: auto !important;
        transform: none !important;
        box-sizing: border-box !important;
    }

    figure.page-hero-photo > img,
    figure.service-image-frame > img,
    figure.about-visual-main > img,
    figure.capability-team-frame > img,
    figure.why-real-visual > img,
    figure.showcase-card > img,
    .media-frame > img,
    .visual-service-card > img {
        position: relative !important;
        inset: auto !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
    }

    /* Service/detail imagery should stay centered even when text order alternates. */
    .service-detail-layout,
    .about-visual-grid,
    .capability-layout {
        overflow: visible !important;
    }

    .service-image-frame,
    .page-hero-photo,
    .about-visual-main,
    .capability-team-frame {
        justify-self: stretch !important;
        align-self: start !important;
    }

    /* Keep overlay captions/labels contained inside their own image. */
    .why-real-visual figcaption {
        right: 14px !important;
        bottom: 14px !important;
        left: 14px !important;
        max-width: calc(100% - 28px) !important;
        box-sizing: border-box !important;
    }

    .capability-team-frame .floating-note {
        max-width: calc(100% - 28px);
        white-space: nowrap;
    }

    .note-one {
        top: 14px !important;
        left: 14px !important;
    }

    .note-two {
        right: 14px !important;
    }

    .note-three {
        bottom: 14px !important;
        left: 14px !important;
    }

    /* Hero banners: show the complete banner, never crop it. */
    .fm-hero-stage {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 1672 / 941 !important;
        overflow: hidden !important;
    }

    .fm-hero-slide,
    .fm-hero-slide img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
    }

    .fm-hero-slide img {
        object-fit: contain !important;
        object-position: center !important;
    }
}

@media (max-width: 640px) {
    /* Use the shell's real mobile width for every major image area. */
    .page-hero-inner,
    .service-detail-layout,
    .about-visual-grid,
    .capability-layout,
    .why-layout {
        width: min(calc(100% - 28px), var(--shell)) !important;
        margin-inline: auto !important;
    }

    figure.page-hero-photo,
    figure.service-image-frame,
    figure.about-visual-main,
    figure.capability-team-frame,
    figure.why-real-visual,
    figure.showcase-card,
    .media-frame {
        border-radius: 22px !important;
    }

    /* Prevent any hover/desktop transforms from surviving on touch layouts. */
    figure.page-hero-photo:hover img,
    figure.service-image-frame:hover img,
    figure.about-visual-main:hover img,
    figure.capability-team-frame:hover img,
    figure.why-real-visual:hover img,
    figure.showcase-card:hover img,
    .media-frame:hover img {
        transform: none !important;
    }

    .capability-team-frame .floating-note {
        padding: 7px 10px;
        font-size: .65rem;
    }
}

