/* ====== Base & Theme ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal: #009B92;
    --purple: #782fcb;
    --green: #009B92;
    --bg: #f6f9fb;
    --bg-2: #ffffff;
    --bg-3: #111827;
    --tx: #101828;
    --tx-2: #475467;
    --dev-dark: #070b12;
    --dev-ink: #101828;
    --dev-line: rgba(16, 24, 40, .12);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, Cantarell, sans-serif;
    background: var(--bg);
    color: var(--tx);
    line-height: 1.6;
    opacity: 0;
    padding-top: 76px;
    transition: opacity 0.5s ease;
    overflow-x: hidden;
}

body.loaded {
    opacity: 1;
}

body.nav-open {
    overflow: hidden;
}

.fade-section,
.fade-section.visible,
.card-animate,
.card-animate.card-visible {
    opacity: 1;
    transform: none;
    transition: none;
}

/* ====== Header / Nav ====== */
header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    width: 100%;
    background: #070b12;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
    transform: none !important;
    transition: box-shadow .3s ease;
}

header.scrolled {
    box-shadow: 0 14px 30px rgba(0, 0, 0, .32);
}

nav {
    max-width: 1200px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-container,
.logo-container a {
    display: inline-flex;
    align-items: center;
}

.logo-container img {
    height: 44px;
    object-fit: contain;
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex: 1;
}

.mobile-menu-brand {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-links a,
.nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 8px;
    text-decoration: none;
}

.nav-links a {
    padding: 0 0.95rem;
    color: rgba(255, 255, 255, 0.76);
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
    color: #fff;
    outline: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.35rem;
    height: 3px;
    border-radius: 999px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

/* ====== Dropdown nav ====== */
.nav-item--dropdown {
    position: relative;
}

.nav-item--dropdown > a {
    gap: 0.35rem;
    cursor: pointer;
}

.nav-dropdown-icon {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.nav-item--dropdown.open .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    z-index: 200;
}

.nav-dropdown__inner {
    background: #070b12;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid rgba(0, 155, 146, 0.5);
    padding: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

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

.nav-dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-dropdown li:last-child {
    border-bottom: none;
}

.nav-dropdown li a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    min-height: unset;
    border: 0;
}

.nav-dropdown li a::after {
    display: none;
}

.nav-dropdown li a:hover {
    color: #fff;
    background: rgba(0, 155, 146, 0.08);
}

@media (max-width: 900px) {
    .nav-dropdown,
    .nav-item--dropdown.open .nav-dropdown {
        display: none !important;
    }

    .nav-dropdown-icon {
        display: none !important;
    }
}

.nav-cta {
    padding: 0 1.05rem;
    color: #041415;
    background: var(--teal);
    border: 1px solid var(--teal);
    box-shadow: 0 10px 24px rgba(0, 155, 146, 0.2);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1003;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ====== Section / Headings ====== */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    color: #61117E;
    font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
    font-weight: 700;
    line-height: 1.05;
}

.section-lead {
    max-width: 760px;
    margin: 0 0 2.25rem;
    color: var(--tx-2);
    font-size: 1rem;
    line-height: 1.72;
}

/* ====== Hero ====== */
.hero {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: calc(100vh - 76px);
    padding: 3.1rem 1.5rem 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    background: #000000;
    isolation: isolate;
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

.hero-content {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
    text-align: left;
    transform: translateY(-.25rem);
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    text-align: center;
}

.hero-text > *,
.hero-copy > * {
    max-width: 760px;
}

.eyebrow {
    color: var(--teal);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .55rem;
}

.hero-logo-mark {
    display: block;
    width: min(470px, 76vw);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto 1.15rem;
    filter:
        drop-shadow(0 18px 30px rgba(0,0,0,.46))
        drop-shadow(0 0 24px rgba(0,155,146,.14));
}

.hero h1 {
    font-size: clamp(1.85rem, 3.35vw, 3.25rem);
    margin: .05rem auto .55rem;
    color: #fff;
    font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
    font-weight: 700;
    line-height: 1;
}

.hero-text p:not(.eyebrow) {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: .96rem;
    max-width: 650px;
}

.hero-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .48rem;
    margin-top: .7rem;
}

.hero-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .34rem .68rem;
    color: rgba(255,255,255,.76);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.phone-scene {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
}

.phone-scene::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 155, 146, .18), rgba(120, 47, 203, .1) 46%, transparent 72%);
    filter: blur(14px);
    transform: translate(22px, 34px);
}

.phone-scene::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 42px;
    width: min(560px, 92%);
    height: 54px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,255,255,.28), rgba(0,155,146,.12) 34%, transparent 72%);
    filter: blur(14px);
    transform: translateX(-50%);
    opacity: .72;
}

.monitor {
    position: absolute;
    width: 482px;
    height: 342px;
    transform: translate(-58px, -2px) rotateY(-7deg) rotateX(2deg) rotateZ(-.2deg);
    transform-style: preserve-3d;
    z-index: 1;
}

.monitor-frame {
    position: relative;
    height: 278px;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(145deg, #202632, #111722 48%, #05070b);
    box-shadow:
        28px 34px 70px rgba(0,0,0,.52),
        inset 0 0 0 1px rgba(255,255,255,.12),
        inset 0 -12px 26px rgba(0,0,0,.34);
}

.monitor-frame::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    transform: translateX(-50%);
}

.monitor-screen {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f9fc;
    border: 1px solid rgba(16,24,40,.16);
    color: #101828;
}

.monitor-neck {
    width: 70px;
    height: 48px;
    margin: -2px auto 0;
    background: linear-gradient(180deg, #141a24, #070a10);
    border-left: 1px solid rgba(255,255,255,.08);
    border-right: 1px solid rgba(255,255,255,.05);
}

.monitor-stand {
    width: 210px;
    height: 22px;
    margin: -1px auto 0;
    border-radius: 50% 50% 12px 12px;
    background: linear-gradient(180deg, #1b222d, #070a10);
    box-shadow: 18px 20px 34px rgba(0,0,0,.4);
    transform: rotateX(60deg);
}

.desktop-bar {
    height: 30px;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 0 .75rem;
    border-bottom: 1px solid rgba(16,24,40,.08);
    background: #ffffff;
}

.desktop-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow: 14px 0 #ffbd2e, 28px 0 #28c840;
}

.desktop-bar strong {
    margin-left: 2rem;
    font-size: .72rem;
    color: #344054;
}

.desktop-layout {
    height: calc(100% - 30px);
    display: grid;
    grid-template-columns: 72px 1fr;
}

.desktop-layout aside {
    padding: .85rem .65rem;
    background: #eef2f7;
    border-right: 1px solid rgba(16,24,40,.08);
}

.desktop-layout aside b,
.desktop-layout aside span {
    display: block;
    border-radius: 999px;
}

.desktop-layout aside b {
    width: 34px;
    height: 34px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--teal), var(--purple));
}

.desktop-layout aside span {
    height: 7px;
    margin: .62rem 0;
    background: #c9d1dc;
}

.desktop-layout main {
    padding: .85rem;
}

.desktop-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
    margin-bottom: .75rem;
}

.desktop-metrics div,
.desktop-chart,
.desktop-table {
    background: #ffffff;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(16,24,40,.06);
}

.desktop-metrics div {
    padding: .55rem;
}

.desktop-metrics small {
    display: block;
    color: #667085;
    font-size: .58rem;
}

.desktop-metrics strong {
    color: #101828;
    font-size: .9rem;
}

.desktop-chart {
    height: 58px;
    display: flex;
    align-items: end;
    gap: .45rem;
    padding: .55rem;
    margin-bottom: .75rem;
}

.desktop-chart span {
    flex: 1;
    min-width: 0;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--teal), rgba(0,155,146,.32));
}

.desktop-chart span:nth-child(1) { height: 38%; }
.desktop-chart span:nth-child(2) { height: 62%; }
.desktop-chart span:nth-child(3) { height: 48%; background: linear-gradient(180deg, var(--purple), rgba(120,47,203,.28)); }
.desktop-chart span:nth-child(4) { height: 78%; }
.desktop-chart span:nth-child(5) { height: 54%; }

.desktop-table {
    display: grid;
    overflow: hidden;
}

.desktop-table p {
    display: grid;
    grid-template-columns: 1.2fr .9fr .8fr;
    gap: .5rem;
    padding: .4rem .55rem;
    margin: 0;
    color: #475467;
    font-size: .58rem;
    border-top: 1px solid rgba(16,24,40,.06);
}

.desktop-table p:first-child {
    border-top: 0;
    color: #101828;
    font-weight: 800;
    background: #f8fafc;
}

.phone {
    position: relative;
    width: 158px;
    height: 318px;
    padding: 8px;
    border-radius: 25px;
    background:
        linear-gradient(145deg, #202632, #111722 48%, #05070b);
    box-shadow:
        28px 30px 60px rgba(0,0,0,.5),
        -8px -8px 24px rgba(255,255,255,.04),
        inset 0 0 0 1px rgba(255,255,255,.14);
    transform: translate(210px, 22px) rotateY(-9deg) rotateX(4deg) rotateZ(1deg);
    transform-style: preserve-3d;
    z-index: 3;
}

.phone::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 54px;
    height: 15px;
    border-radius: 0 0 12px 12px;
    background: #05070b;
    transform: translateX(-50%);
    z-index: 4;
}

.phone-side {
    position: absolute;
    top: 20px;
    right: -6px;
    width: 6px;
    height: 62px;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(180deg, #1a202b, #070a10);
    transform: translateZ(-6px);
}

.phone-screen {
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 19px;
    padding: .8rem .58rem .58rem;
    background: #f7f9fc;
    color: #101828;
    border: 1px solid rgba(16,24,40,.18);
}

.phone-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 42%, rgba(255,255,255,.44) 48%, transparent 55%);
    transform: translateX(-80%);
    pointer-events: none;
}

.phone-status,
.app-header,
.metric-card,
.mini-grid,
.timeline,
.system-list {
    position: relative;
    z-index: 1;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    color: #667085;
    font-size: .58rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.app-header {
    display: flex;
    gap: .48rem;
    align-items: center;
    margin-bottom: .7rem;
}

.app-dot {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    box-shadow: 0 0 22px rgba(0,155,146,.34);
}

.app-header strong,
.app-header small,
.metric-card span,
.metric-card small,
.mini-grid span {
    display: block;
}

.app-header strong {
    font-size: .68rem;
    color: #101828;
}

.app-header small,
.metric-card span,
.metric-card small,
.mini-grid span {
    color: #667085;
    font-size: .54rem;
}

.metric-card {
    padding: .62rem;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: .48rem;
    box-shadow: 0 8px 20px rgba(16,24,40,.08);
}

.metric-card strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    margin: .25rem 0;
    color: #009B92;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
    margin-bottom: .55rem;
}

.mini-grid div {
    padding: .5rem;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(16,24,40,.08);
}

.mini-grid strong {
    display: block;
    margin-top: .18rem;
    font-size: .72rem;
    color: #101828;
}

.timeline {
    display: grid;
    gap: .28rem;
    margin-bottom: .58rem;
}

.timeline span {
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), rgba(79,255,252,.25));
}

.timeline span:nth-child(2) {
    width: 76%;
    background: linear-gradient(90deg, var(--purple), rgba(120,47,203,.18));
}

.timeline span:nth-child(3) {
    width: 54%;
}

.system-list {
    display: grid;
    gap: .32rem;
}

.system-list p {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: #475467;
    font-size: .56rem;
}

.system-list i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ffffc;
    box-shadow: 0 0 12px rgba(79,255,252,.7);
}

.cta-button,
.btn {
    display: inline-block;
    padding: 0.75rem 1.35rem;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    background: #009B92;
    border: 1px solid #009B92;
    box-shadow: 0 10px 24px rgba(0, 155, 146, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.cta-button:hover,
.btn:hover {
    transform: translateY(-1px);
    background: #009B92;
    box-shadow: 0 14px 30px rgba(0, 155, 146, 0.28);
}

.cta-secondary {
    background: transparent;
    border-color: rgba(255,255,255,.28);
    box-shadow: none;
}

.cta-secondary:hover {
    background: rgba(255,255,255,.08);
    box-shadow: none;
}

/* ====== Consulting ====== */
.consulting-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
    gap: 2.5rem;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 4.5rem;
}

.consulting-content h2 {
    margin-bottom: 1rem;
    max-width: 720px;
}

.consulting-content p:not(.section-kicker) {
    max-width: 760px;
    color: var(--tx-2);
    font-size: 1rem;
    line-height: 1.75;
}

.consulting-gallery {
    display: grid;
    gap: 1rem;
}

.consulting-image-card {
    margin: 0;
    background: #fff;
    border: 1px solid rgba(16, 24, 40, .12);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(16, 24, 40, .12);
}

.consulting-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consulting-image-card--main {
    aspect-ratio: 16 / 10;
}

.consulting-image-card--secondary {
    aspect-ratio: 16 / 8;
}

.consulting-image-card figcaption {
    padding: .75rem .9rem;
    color: #344054;
    font-size: .84rem;
    font-weight: 800;
    background: #fff;
    border-top: 1px solid rgba(16, 24, 40, .08);
}

.audience-section {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr);
    gap: 3.5rem;
    align-items: start;
    padding-top: 2.5rem;
    padding-bottom: 4.5rem;
}

.audience-intro p {
    color: var(--tx-2);
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1rem;
}

.audience-image {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 40, .12);
    box-shadow: 0 18px 42px rgba(16, 24, 40, .12);
}

.audience-image img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.audience-list {
    list-style: none;
    display: grid;
    gap: 0;
}

.audience-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(16, 24, 40, .1);
}

.audience-list li:first-child {
    border-top: 1px solid rgba(16, 24, 40, .1);
    padding-top: 1.25rem;
}

.audience-list i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.audience-list strong {
    display: block;
    color: #61117E;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.audience-list p {
    color: var(--tx-2);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}

/* ====== Solutions ====== */
.solutions-section {
    padding-top: 4.5rem;
}

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

.solution-card {
    grid-column: span 4;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.35rem;
    background: #12002a;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,155,146,.12), transparent 48%);
    opacity: 0;
    transition: opacity .2s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 155, 146, .4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .4);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card--wide {
    grid-column: span 4;
    min-height: 285px;
}

.solution-card--dark,
.solution-card--accent {
    background: #12002a;
}

.solution-topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.solution-number {
    display: none;
}

.solution-topline i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.3rem;
}

.solution-body {
    position: relative;
    z-index: 1;
    text-align: center;
}

.solution-kicker {
    display: none;
}

.solution-card h3 {
    color: #fff;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.3rem;
    line-height: 1.1;
    margin-bottom: .55rem;
}

.solution-card p {
    color: rgba(255, 255, 255, .62);
    font-size: .94rem;
    line-height: 1.65;
}

.solution-card ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem;
    margin-top: 1rem;
}

.solution-card li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 800;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: .32rem .58rem;
}

.solution-card li::before {
    display: none;
}

/* ====== Process ====== */
.process-section {
    padding-top: 4.5rem;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.15rem;
    position: relative;
    align-items: stretch;
}

.process-flow::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 43px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), rgba(120, 47, 203, .72));
}

.process-step {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: .9rem;
    min-height: 260px;
}

.process-step::after {
    content: "";
    position: absolute;
    top: 35px;
    right: -18px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 12px solid rgba(120, 47, 203, .72);
    z-index: 2;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    position: relative;
    z-index: 3;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: #fff;
    color: var(--teal);
    border: 2px solid rgba(0, 155, 146, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(16, 24, 40, .12);
}

.step-content {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, .12);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 14px 30px rgba(16, 24, 40, .08);
}

.step-content h3 {
    color: #61117E;
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: .45rem;
}

.step-content p {
    color: var(--tx-2);
    font-size: .86rem;
    line-height: 1.55;
}

/* ====== Reusable card baseline required by contact ====== */
.card {
    background: var(--bg-2);
    border: 1px solid rgba(57, 141, 163, 0.18);
    border-radius: 14px;
    padding: 1.25rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--teal);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ====== Clients Section ====== */
.clients-section {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 2.5rem 1.5rem;
    background: transparent;
    border-top: 10px solid #1e0030;
    border-bottom: 10px solid #1e0030;
    text-align: center;
}

.clients-section h2 {
    color: #61117E;
    text-align: center;
}

.clients-intro {
    margin-bottom: 2.5rem;
}

.clients-intro p {
    color: var(--tx-2);
    font-size: 1rem;
    line-height: 1.72;
    max-width: 680px;
    margin-top: .75rem;
    margin-left: auto;
    margin-right: auto;
}

.logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 2.5rem;
    margin-top: 1.75rem;
}

.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    width: auto;
    height: auto;
    box-shadow: none;
    transition: transform .25s ease, filter .25s ease, opacity .25s ease;
}

.logo-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-card:hover {
    transform: translateY(-4px) scale(1.04);
    filter: drop-shadow(0 8px 18px rgba(0, 155, 146, .22));
    opacity: 0.9;
}

.logo-card img {
    width: auto;
    height: 80px;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.logo-card--colypro img {
    height: 100px;
    max-width: 260px;
}

.logo-card--srcacao img {
    height: 160px;
    max-width: 160px;
}

@media (max-width: 899px) and (min-width: 600px) {
    .logo-grid {
        column-gap: 1.5rem;
        row-gap: 1.75rem;
        margin-top: 1.25rem;
    }
    .logo-card--colypro img { height: 85px;  max-width: 220px; }
    .logo-card--srcacao img { height: 130px; max-width: 130px; }
}

@media (max-width: 599px) {
    .logo-grid {
        column-gap: 0.5rem;
        row-gap: 1.5rem;
        margin-top: 1rem;
    }
    .logo-card--colypro img { height: 70px;  max-width: 180px; }
    .logo-card--srcacao img { height: 100px; max-width: 100px; }
}

@media (max-width: 380px) {
    .logo-grid {
        column-gap: 0.35rem;
        row-gap: 1.25rem;
    }
    .logo-card--colypro img { height: 58px; max-width: 150px; }
    .logo-card--srcacao img { height: 82px; max-width: 82px;  }
}

/* ====== Contact Section - same as Cronode home ====== */
#contacto {
    margin-top: 2rem;
    padding-top: 2.25rem;
    padding-bottom: 2.75rem;
}

#contacto h2 {
    margin-bottom: 1.35rem;
    font-size: 2rem;
}

#contacto h3 {
    font-size: 1.05rem;
    margin-bottom: .35rem;
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
    margin: .75rem 0 .85rem;
}

.contact-action {
    background: #009B92;
    color: #fff;
    min-height: 38px;
    border-radius: 8px;
    border: 1px solid #009B92;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.7rem;
    text-decoration: none;
    font-weight: 800;
    font-size: .84rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-action:hover {
    transform: translateY(-1px);
    background: #009B92;
    box-shadow: 0 8px 24px rgba(0, 155, 146, 0.28);
}

.contact-action i {
    font-size: 1rem;
}

.contact-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(12, 1fr);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.contact-card {
    grid-column: span 12;
    position: relative;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    transform: none !important;
    min-height: 100%;
}

.contact-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.contact-map {
    position: relative;
    width: 100%;
    aspect-ratio: 16/6.6;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(16, 24, 40, .12);
    margin-top: .75rem;
    background: #fff;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (min-width: 900px) {
    .contact-grid {
        align-items: stretch;
    }

    .contact-card:nth-child(1) {
        grid-column: span 5;
        padding-right: 1.15rem;
        border-right: 1px solid rgba(16, 24, 40, .1);
        display: flex;
        flex-direction: column;
    }

    .contact-card:nth-child(2) {
        grid-column: span 7;
        padding-left: .5rem;
        display: flex;
        flex-direction: column;
    }

    .contact-card:nth-child(2) form {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .contact-card:nth-child(2) .form-row:nth-of-type(3) {
        flex: 1;
        display: flex;
    }

    .contact-card:nth-child(2) textarea {
        min-height: 0;
        flex: 1;
    }

    .contact-map {
        flex: 1;
        min-height: 132px;
    }
}

.contact-list {
    list-style: none;
    display: grid;
    gap: .45rem;
    margin: .75rem 0 0;
}

.contact-list li {
    display: grid;
    grid-template-columns: 22px minmax(72px, auto) 1fr;
    align-items: center;
    gap: .45rem;
    padding-top: .45rem;
    border-top: 1px solid rgba(16, 24, 40, .08);
    font-size: .86rem;
}

.contact-list i {
    color: #61117E;
    text-align: center;
}

.contact-list span {
    color: var(--tx);
    font-weight: 800;
}

.contact-list a {
    color: var(--tx-2);
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--teal);
}

.contact-value {
    color: var(--tx-2);
}

.mini-copy {
    color: var(--tx-2);
    margin-top: .5rem;
    font-size: .9rem;
    line-height: 1.55;
}

.section-kicker {
    color: #61117E;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-bottom: .45rem;
}

.form-row label {
    color: var(--tx);
    font-size: .86rem;
}

.form-row input,
.form-row textarea {
    background: #fff;
    color: var(--tx);
    border: 1px solid rgba(16, 24, 40, .16);
    border-radius: 8px;
    padding: .58rem .72rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    resize: none;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 155, 146, .18);
}

.error {
    color: #ff9aa2;
    font-size: .85rem;
    min-height: 1.1em;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .25rem;
}

.form-note {
    color: var(--tx-2);
    font-size: .8rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.btn-square {
    border-radius: 8px;
}

/* ====== Footer ====== */
footer {
    background: var(--bg-3);
    border-top: 1px solid rgba(57, 141, 163, 0.18);
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.25rem 1.5rem;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    display: block;
    margin: 0.25rem 0;
}

.footer-section a:hover {
    color: #fff;
}

.footer-note {
    font-size: .9rem;
    font-style: italic;
    margin-top: .5rem;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.64);
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
    .nav-dropdown,
    .nav-item--dropdown.open .nav-dropdown {
        display: none !important;
    }

    .nav-dropdown-icon {
        display: none !important;
    }
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
    h2 {
        font-size: 2rem;
    }

    .site-nav {
        padding: 0 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-panel {
        position: fixed;
        inset: 0;
        z-index: 1001;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1.05rem;
        padding: 4.15rem 1.5rem 1.25rem;
        background: #070b12;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: opacity 0.22s ease, transform 0.28s ease, visibility 0.28s ease;
        overflow: hidden;
    }

    .site-header.menu-open .nav-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-menu-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        padding: 0 0 0.8rem;
        border-bottom: 0;
        overflow: visible;
    }

    .mobile-menu-brand img {
        width: min(160px, 46vw);
        margin-top: 0;
        height: auto;
        object-fit: contain;
        transform: none;
    }

    .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .nav-links a {
        justify-content: flex-start;
        width: 100%;
        min-height: 48px;
        border-radius: 0;
        font-size: 1.04rem;
        background: transparent;
        border: 0;
        padding: 0 0 0.5rem;
        color: rgba(255, 255, 255, 0.86);
    }

    .nav-links a.active,
    .nav-links a:hover,
    .nav-links a:focus-visible {
        color: #fff;
        background: transparent;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.active {
        text-decoration: underline;
        text-decoration-color: #009B92;
        text-decoration-thickness: 3px;
        text-underline-offset: 8px;
    }

    .nav-cta {
        width: 100%;
        min-height: 48px;
        border-radius: 8px;
        font-size: 1.02rem;
        justify-content: center;
        text-align: center;
        padding: 0 1rem;
        margin-top: 0.25rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        justify-items: center;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-logo-mark {
        margin-left: auto;
        margin-right: auto;
    }

    .phone-scene {
        width: min(100%, 620px);
        min-height: 440px;
    }

    .monitor {
        transform: translate(-28px, 0) scale(.8) rotateY(-6deg) rotateX(2deg) rotateZ(-.2deg);
    }

    .phone {
        transform: translate(132px, 20px) scale(.86) rotateY(-8deg) rotateX(4deg) rotateZ(1deg);
    }

    .consulting-section {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .audience-section {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

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

    .process-flow::before,
    .process-step::after {
        display: none;
    }
}

@media (max-width: 700px) {
    section {
        padding: 4rem 1rem;
    }

    nav {
        min-height: 76px;
        padding: 0 1rem;
        flex-direction: row;
        text-align: left;
    }

    body {
        padding-top: 76px;
    }

    .hero {
        min-height: calc(100vh - 76px);
        padding: 2.4rem 1rem 2rem;
        text-align: center;
    }

    .hero-content {
        transform: none;
        justify-items: center;
    }

    .hero-text > * {
        max-width: 560px;
    }

    .hero-text p:not(.eyebrow) {
        margin-left: auto;
        margin-right: auto;
        font-size: .9rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-logo-mark {
        width: min(210px, 58vw);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tags {
        justify-content: center;
        gap: .4rem;
    }

    .phone-scene {
        min-height: 350px;
        margin-top: .5rem;
    }

    .monitor {
        width: 340px;
        height: 250px;
        transform: translate(-18px, 0) scale(.82) rotateY(-5deg) rotateX(2deg) rotateZ(-.2deg);
        animation: none;
    }

    .monitor-frame {
        height: 198px;
        padding: 9px;
    }

    .monitor-neck {
        width: 52px;
        height: 34px;
    }

    .monitor-stand {
        width: 150px;
        height: 18px;
    }

    .desktop-metrics {
        gap: .34rem;
    }

    .desktop-table p {
        font-size: .5rem;
    }

    .phone {
        width: 132px;
        height: 264px;
        padding: 7px;
        border-radius: 22px;
        transform: translate(90px, 18px) scale(.86) rotateY(-6deg) rotateX(3deg) rotateZ(1deg);
        animation: none;
    }

    .phone::before {
        width: 42px;
        height: 12px;
    }

    .phone-screen {
        border-radius: 17px;
        padding: .7rem .48rem .48rem;
    }

    .metric-card strong {
        font-size: 1.1rem;
    }

    .system-list p {
        font-size: .48rem;
    }

    .phone-scene::before {
        width: 240px;
        height: 220px;
    }

    .section-lead {
        margin-bottom: 1.75rem;
    }

    .consulting-section {
        padding-top: 4rem;
        padding-bottom: 3.5rem;
    }

    .consulting-image-card--main,
    .consulting-image-card--secondary {
        width: 100%;
        max-width: 100%;
        min-height: 240px;
        aspect-ratio: unset;
    }

    .solution-card {
        grid-column: span 12;
        min-height: auto;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-step {
        min-height: auto;
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto;
        align-items: stretch;
        gap: .85rem;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1rem;
    }

    .contact-actions {
        grid-template-columns: 1fr;
    }

    .contact-list li {
        grid-template-columns: 22px 1fr;
    }

    .contact-list a,
    .contact-value {
        grid-column: 2;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-logo-mark {
        width: min(175px, 54vw);
    }

    .btn,
    .cta-button {
        width: 100%;
        text-align: center;
    }

    .hero-tags {
        display: none;
    }
}
