:root {
    --navy-950: #08152e;
    --navy-900: #0d1d3d;
    --navy-850: #10264f;
    --navy-800: #153166;
    --ink-900: #102142;
    --ink-800: #1d3155;
    --ink-700: #314668;
    --ink-600: #536580;
    --ink-500: #6e7d94;
    --blue-700: #1f4ed8;
    --blue-600: #2d5be7;
    --blue-500: #426bec;
    --purple-700: #5b39d6;
    --purple-600: #6c48e8;
    --teal-700: #078d91;
    --teal-600: #08a3a6;
    --green-600: #16a768;
    --amber-500: #e89a1d;
    --red-500: #e35757;
    --surface: #ffffff;
    --surface-soft: #f7f9fe;
    --surface-blue: #f0f5ff;
    --surface-purple: #f6f2ff;
    --surface-teal: #effbfb;
    --line: #e3e9f3;
    --line-strong: #d2dceb;
    --gradient-primary: linear-gradient(135deg, #2458e8 0%, #6848e5 55%, #08a3a6 100%);
    --gradient-blue: linear-gradient(135deg, #2458e8, #6348e3);
    --gradient-dark: linear-gradient(135deg, #0b1b3b 0%, #132f61 55%, #113b60 100%);
    --shadow-xs: 0 4px 15px rgba(25, 47, 88, 0.06);
    --shadow-sm: 0 10px 30px rgba(24, 47, 91, 0.09);
    --shadow-md: 0 18px 50px rgba(24, 47, 91, 0.13);
    --shadow-lg: 0 30px 80px rgba(17, 37, 78, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 34px;
    --container: 1240px;
    --header-height: 78px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    background: #ffffff;
    color: var(--ink-900);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.bot-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,
h4,
h5,
h6 {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink-900);
    font-weight: 800;
    letter-spacing: -0.035em;
}

p {
    color: var(--ink-600);
}

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

.section-space {
    padding: 112px 0;
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: 10px;
    z-index: 9999;
    transform: translateY(-160%);
    padding: 11px 16px;
    border-radius: 10px;
    background: var(--ink-900);
    color: white;
    font-weight: 700;
    transition: transform var(--transition);
}

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

.ui-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.mini-svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.button-icon {
    width: 19px;
    height: 19px;
}

.chip-icon {
    width: 14px;
    height: 14px;
}

.page-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 3000;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    box-shadow: 0 1px 10px rgba(59, 81, 225, 0.35);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 750;
    line-height: 1.2;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button span {
    transition: transform var(--transition);
}

.button:hover span:last-child {
    transform: translateX(3px);
}

.button-large {
    min-height: 56px;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 16.5px;
}

.button-small {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 11px;
    font-size: 14px;
}

.button-primary {
    color: #ffffff;
    background: var(--gradient-blue);
    box-shadow: 0 15px 32px rgba(50, 74, 215, 0.27);
}

.button-primary:hover {
    box-shadow: 0 20px 42px rgba(50, 74, 215, 0.34);
}

.button-secondary {
    color: var(--ink-900);
    background: #ffffff;
    border-color: var(--line-strong);
    box-shadow: var(--shadow-xs);
}

.button-secondary:hover {
    border-color: #aebfea;
    box-shadow: var(--shadow-sm);
}

.button-light,
.button-white {
    color: var(--blue-700);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.button-outline-light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.35);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-weight: 750;
}

.text-link span {
    transition: transform var(--transition);
}

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

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

.section-heading.centered {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

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

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
    gap: 70px;
    align-items: end;
}

.section-heading-row > p {
    margin: 0 0 8px;
    font-size: 17px;
}

.section-heading h2 {
    max-width: 900px;
    margin: 12px 0 0;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.08;
}

.section-heading p {
    margin: 20px auto 0;
    max-width: 760px;
    font-size: 18px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--purple-700);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 28px;
    height: 2px;
    border-radius: 5px;
    background: var(--gradient-primary);
    content: "";
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .65, .25, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="right"] {
    transform: translateX(28px);
}

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

.site-alert {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--container), calc(100% - 48px));
    margin: 18px auto 0;
    padding: 15px 18px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 650;
    box-shadow: var(--shadow-sm);
}

.site-alert button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 23px;
}

.alert-success {
    color: #10623d;
    background: #eafaf2;
    border-color: #c5eed7;
}

.alert-danger {
    color: #8a2f36;
    background: #fff0f1;
    border-color: #f4cdd1;
}

.alert-warning {
    color: #735415;
    background: #fff8df;
    border-color: #f1dfa9;
}

.alert-info {
    color: #244d8c;
    background: #edf5ff;
    border-color: #cfe0fa;
}

/* Header */
.utility-bar {
    position: relative;
    z-index: 1200;
    color: #dce8ff;
    background: var(--navy-950);
    font-size: 12.5px;
}

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

.utility-inner p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #dce8ff;
    font-weight: 650;
}

.utility-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #26d18d;
    box-shadow: 0 0 0 5px rgba(38, 209, 141, 0.12);
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.utility-links a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #dce8ff;
    transition: color var(--transition);
}

.utility-links a:hover {
    color: #ffffff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    border-bottom: 1px solid rgba(222, 230, 242, 0.9);
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 35px rgba(20, 42, 82, 0.09);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
}

.site-logo {
    width: 224px;
    flex: 0 0 auto;
}

.site-logo img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link,
.nav-menu-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 45px;
    padding: 9px 12px;
    border: 0;
    border-radius: 10px;
    color: var(--ink-700);
    background: transparent;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 700;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active,
.nav-menu-button:hover,
.nav-menu-button.active {
    color: var(--blue-700);
    background: var(--surface-blue);
}

.nav-chevron {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--transition);
}

.has-mega.open .nav-chevron,
.has-mega:hover .nav-chevron {
    transform: translateY(3px) rotate(225deg);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    margin-left: 7px;
    padding: 11px 17px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--gradient-blue);
    box-shadow: 0 10px 26px rgba(54, 75, 207, 0.24);
    font-size: 14.5px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 32px rgba(54, 75, 207, 0.32);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-soft);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    border-radius: 3px;
    background: var(--ink-900);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-menu-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 1150;
    display: grid;
    width: min(940px, calc(100vw - 50px));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.mega-menu::before {
    position: absolute;
    top: -18px;
    right: 0;
    left: 0;
    height: 18px;
    content: "";
}

.has-mega:hover .mega-menu,
.has-mega.open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega-services {
    grid-template-columns: 0.74fr 1.45fr;
    gap: 18px;
}

.mega-solutions {
    grid-template-columns: 0.72fr 1.5fr;
    gap: 18px;
    width: min(1050px, calc(100vw - 50px));
}

.mega-intro {
    padding: 27px;
    border-radius: 17px;
    background: var(--surface-blue);
}

.mega-intro h3 {
    margin: 10px 0 12px;
    font-size: 26px;
    line-height: 1.15;
}

.mega-intro p {
    margin-bottom: 20px;
    font-size: 14.5px;
}

.mega-label {
    color: var(--purple-700);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.gradient-panel {
    color: #ffffff;
    background: var(--gradient-dark);
}

.gradient-panel h3,
.gradient-panel p,
.gradient-panel .mega-label {
    color: #ffffff;
}

.gradient-panel p {
    color: #d7e4fb;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    align-content: center;
}

.mega-card {
    display: flex;
    gap: 12px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.mega-card:hover {
    border-color: var(--line);
    background: var(--surface-soft);
    transform: translateY(-2px);
}

.mega-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: var(--blue-700);
    background: var(--surface-blue);
}

.mega-icon .ui-icon {
    width: 21px;
    height: 21px;
}

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

.mega-card strong {
    margin-bottom: 3px;
    color: var(--ink-900);
    font-size: 14px;
}

.mega-card small {
    color: var(--ink-500);
    font-size: 12px;
    line-height: 1.4;
}

.mega-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    align-content: center;
}

.mega-solution-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 11px;
    color: var(--ink-700);
    font-size: 13.5px;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.mega-solution-grid a:hover {
    color: var(--blue-700);
    background: var(--surface-blue);
    transform: translateX(2px);
}

.mega-solution-grid span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--purple-700);
    background: var(--surface-purple);
}

.mega-solution-icon {
    width: 18px;
    height: 18px;
}

/* Hero */
.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 92px 0 36px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 70%, #ffffff 100%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.45;
    background-image: linear-gradient(rgba(61, 89, 158, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(61, 89, 158, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 84%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 84%);
}

.hero-orb {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0.5;
}

.hero-orb-one {
    top: -220px;
    left: -160px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(100, 75, 232, 0.2), transparent 68%);
}

.hero-orb-two {
    top: 80px;
    right: -220px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(4, 172, 174, 0.2), transparent 68%);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
    gap: 50px;
    align-items: center;
}

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

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid #dce5f7;
    border-radius: 999px;
    color: var(--blue-700);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-xs);
    font-size: 11.5px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.kicker-icon {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gradient-primary);
}

.kicker-icon .ui-icon {
    width: 14px;
    height: 14px;
}

.hero-content h1 {
    max-width: 720px;
    margin: 25px 0 24px;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.99;
    letter-spacing: -0.055em;
}

.hero-content h1::after {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 7px;
    border-radius: 50%;
    background: var(--gradient-primary);
    content: "";
}

.hero-lead {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 19px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 3px;
    padding: 3px 5px;
}

.contact-link-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--teal-700);
    background: var(--surface-teal);
}

.contact-link-icon .ui-icon {
    width: 20px;
    height: 20px;
}

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

.hero-contact-link small {
    color: var(--ink-500);
    font-size: 11.5px;
}

.hero-contact-link strong {
    color: var(--ink-800);
    font-size: 13.5px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 31px;
}

.proof-avatars {
    display: flex;
    padding-left: 8px;
}

.proof-avatars span {
    display: grid;
    width: 34px;
    height: 34px;
    margin-left: -8px;
    place-items: center;
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gradient-blue);
    font-size: 10px;
    font-weight: 800;
}

.proof-avatars span:nth-child(2) { background: linear-gradient(135deg, #08a3a6, #3976da); }
.proof-avatars span:nth-child(3) { background: linear-gradient(135deg, #8855e9, #d45b9f); }
.proof-avatars span:nth-child(4) { background: linear-gradient(135deg, #f0a336, #e56c55); }

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: var(--ink-800);
    font-size: 13px;
}

.hero-proof > div:last-child span {
    color: var(--ink-500);
    font-size: 11.5px;
}

.hero-product-stage {
    position: relative;
    min-height: 560px;
    perspective: 1400px;
}

.stage-ring {
    position: absolute;
    border: 1px dashed rgba(77, 87, 212, 0.2);
    border-radius: 50%;
    animation: slow-spin 25s linear infinite;
}

.ring-one {
    top: 38px;
    right: 35px;
    width: 450px;
    height: 450px;
}

.ring-two {
    top: 95px;
    right: 92px;
    width: 335px;
    height: 335px;
    animation-direction: reverse;
    animation-duration: 18s;
}

.dashboard-window {
    position: absolute;
    top: 55px;
    right: 3px;
    width: 610px;
    overflow: hidden;
    border: 1px solid rgba(209, 220, 239, 0.95);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 45px 100px rgba(25, 47, 99, 0.22), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transform: rotateY(-6deg) rotateX(2deg);
    transform-origin: center;
    animation: dashboard-float 7s ease-in-out infinite;
}

.dashboard-titlebar {
    display: grid;
    grid-template-columns: 80px 1fr 45px;
    align-items: center;
    min-height: 48px;
    padding: 0 13px;
    border-bottom: 1px solid #e9eef6;
    background: #fbfcff;
}

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

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e46b6b;
}

.window-dots span:nth-child(2) { background: #eab24a; }
.window-dots span:nth-child(3) { background: #48c383; }

.dashboard-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #6b7991;
    font-size: 10px;
    font-weight: 700;
}

.dashboard-user {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 9px;
    color: #ffffff;
    background: var(--gradient-blue);
    font-size: 9px;
    font-weight: 800;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 48px 1fr;
    min-height: 400px;
}

.dashboard-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    padding-top: 12px;
    background: var(--navy-900);
}

.mini-brand {
    display: grid;
    width: 27px;
    height: 27px;
    margin-bottom: 10px;
    place-items: center;
    border-radius: 8px;
    color: #ffffff;
    background: var(--gradient-primary);
    font-size: 11px;
    font-weight: 900;
}

.dashboard-sidebar span {
    width: 18px;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.22);
}

.dashboard-sidebar span.active {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.dashboard-canvas {
    padding: 18px;
    background: #f5f8fd;
}

.dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.dashboard-welcome small {
    color: var(--blue-700);
    font-size: 7.5px;
    font-weight: 900;
    letter-spacing: 0.11em;
}

.dashboard-welcome h2 {
    margin: 1px 0 0;
    font-size: 16px;
    letter-spacing: -0.025em;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border: 1px solid #cdebdc;
    border-radius: 999px;
    color: #287c54;
    background: #edf9f3;
    font-size: 7.5px;
    font-weight: 700;
}

.live-pill i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #25b871;
    box-shadow: 0 0 0 3px rgba(37, 184, 113, 0.13);
}

.dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.dashboard-kpis article {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #e2e9f3;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(29, 51, 91, 0.04);
}

.kpi-icon {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 8px;
}

.kpi-icon .ui-icon { width: 15px; height: 15px; }
.kpi-icon.blue { color: var(--blue-700); background: #edf3ff; }
.kpi-icon.purple { color: var(--purple-700); background: #f2edff; }
.kpi-icon.teal { color: var(--teal-700); background: #e9f9f8; }

.dashboard-kpis small,
.dashboard-kpis strong,
.dashboard-kpis em {
    display: block;
}

.dashboard-kpis small {
    color: #8390a4;
    font-size: 6.8px;
}

.dashboard-kpis strong {
    margin: 1px 0;
    color: var(--ink-900);
    font-size: 12px;
}

.dashboard-kpis em {
    color: #1b9b63;
    font-size: 6.5px;
    font-style: normal;
    font-weight: 700;
}

.dashboard-main-grid {
    display: grid;
    grid-template-columns: 1.55fr 0.7fr;
    gap: 9px;
    margin-top: 9px;
}

.dashboard-chart-card,
.dashboard-process-card {
    min-width: 0;
    padding: 12px;
    border: 1px solid #e2e9f3;
    border-radius: 11px;
    background: #ffffff;
}

.chart-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.chart-card-head small,
.chart-card-head strong {
    display: block;
}

.chart-card-head small {
    color: #8a97aa;
    font-size: 7px;
}

.chart-card-head strong {
    color: var(--ink-900);
    font-size: 9px;
}

.chart-card-head > span {
    color: #7e8aa0;
    font-size: 6.5px;
}

.line-chart {
    position: relative;
    height: 153px;
    margin-top: 9px;
    overflow: hidden;
}

.chart-grid-lines {
    position: absolute;
    inset: 0 0 18px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.chart-grid-lines span {
    width: 100%;
    border-top: 1px dashed #e6ebf4;
}

.line-chart svg {
    position: absolute;
    inset: 5px 0 21px;
    width: 100%;
    height: calc(100% - 26px);
    overflow: visible;
}

.line-chart .line {
    fill: none;
    stroke: #4b63e4;
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 3px 5px rgba(75, 99, 228, 0.2));
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: chart-draw 2.4s ease forwards 0.6s;
}

.line-chart circle {
    fill: #ffffff;
    stroke: #4b63e4;
    stroke-width: 2;
}

.chart-labels {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    justify-content: space-between;
    color: #9aa5b5;
    font-size: 6px;
}

.dashboard-process-card {
    display: flex;
    align-items: stretch;
    flex-direction: column;
}

.trend-up {
    color: #1d9a62 !important;
    font-weight: 800;
}

.progress-ring {
    position: relative;
    display: grid;
    width: 92px;
    height: 92px;
    margin: 20px auto 14px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(#5d4bdd 0 92%, #e9edf5 92% 100%);
}

.progress-ring::before {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    content: "";
}

.progress-ring span {
    position: relative;
    color: var(--ink-900);
    font-size: 22px;
    font-weight: 850;
}

.progress-ring small {
    font-size: 8px;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.process-list span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6e7b91;
    font-size: 7px;
}

.process-list i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6dce7;
}

.process-list i.done {
    background: #5d4bdd;
}

.floating-module {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 180px;
    padding: 10px 12px;
    border: 1px solid rgba(219, 227, 241, 0.95);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(25, 47, 92, 0.16);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    animation: module-float 5s ease-in-out infinite;
}

.floating-module > span {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 10px;
    color: var(--blue-700);
    background: var(--surface-blue);
}

.floating-module > span .ui-icon { width: 18px; height: 18px; }
.floating-module small,
.floating-module strong { display: block; }
.floating-module small { color: var(--ink-500); font-size: 8px; }
.floating-module strong { color: var(--ink-900); font-size: 10px; }
.floating-module > i { margin-left: auto; color: #1f9c65; font-size: 9px; font-style: normal; font-weight: 800; }

.module-erp { top: 8px; left: -8px; }
.module-ai { right: -20px; bottom: 25px; animation-delay: -1.3s; }
.module-sfa { left: 5px; bottom: 58px; animation-delay: -2.7s; }

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #20ba77;
    box-shadow: 0 0 0 0 rgba(32, 186, 119, 0.4);
    animation: pulse-dot 1.8s infinite;
}

.hero-module-strip {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    margin-top: 65px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.hero-module-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 58px;
    padding: 10px;
    border-right: 1px solid var(--line);
    color: var(--ink-700);
    font-size: 12px;
    font-weight: 750;
    text-align: center;
}

.hero-module-strip span:last-child {
    border-right: 0;
}

.hero-module-strip i {
    color: var(--purple-700);
    font-size: 9px;
    font-style: normal;
}

/* Trusted platform */
.trust-platform-section {
    background: #ffffff;
}

.trust-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.trust-feature-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.trust-feature-card::after {
    position: absolute;
    right: -60px;
    bottom: -65px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 97, 229, 0.12), transparent 70%);
    content: "";
    transition: transform 400ms ease;
}

.trust-feature-card:hover {
    border-color: #cfdaf0;
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.trust-feature-card:hover::after {
    transform: scale(1.35);
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 25px;
    color: #d4dcea;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.feature-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 30px;
    place-items: center;
    border-radius: 16px;
    color: var(--blue-700);
    background: linear-gradient(135deg, #edf3ff, #f4efff);
    box-shadow: 0 10px 20px rgba(52, 77, 190, 0.1);
}

.feature-icon .ui-icon { width: 27px; height: 27px; }

.trust-feature-card:nth-child(2) .feature-icon,
.trust-feature-card:nth-child(5) .feature-icon {
    color: var(--teal-700);
    background: var(--surface-teal);
}

.trust-feature-card:nth-child(3) .feature-icon,
.trust-feature-card:nth-child(6) .feature-icon {
    color: var(--purple-700);
    background: var(--surface-purple);
}

.trust-feature-card h3 {
    margin-bottom: 11px;
    font-size: 22px;
}

.trust-feature-card p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Solution explorer */
.solution-explorer-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f9fe 0%, #f1f5fc 100%);
}

.solution-explorer-section::before {
    position: absolute;
    top: 150px;
    left: -180px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(103, 72, 229, 0.1), transparent 68%);
    content: "";
}

.solution-explorer {
    position: relative;
    display: grid;
    grid-template-columns: 325px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #dce4f0;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.solution-tab-list {
    padding: 18px;
    border-right: 1px solid var(--line);
    background: #fbfcff;
}

.solution-tab {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 11px;
    align-items: center;
    width: 100%;
    min-height: 59px;
    padding: 9px 12px;
    border: 0;
    border-radius: 13px;
    color: var(--ink-700);
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.solution-tab + .solution-tab {
    margin-top: 4px;
}

.solution-tab > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: var(--purple-700);
    background: var(--surface-purple);
}

.solution-tab > span .ui-icon { width: 20px; height: 20px; }

.solution-tab strong {
    font-size: 13.5px;
    line-height: 1.3;
}

.solution-tab i {
    color: #9aa7bb;
    font-style: normal;
}

.solution-tab:hover {
    color: var(--blue-700);
    background: #f1f5fd;
    transform: translateX(2px);
}

.solution-tab.active {
    color: #ffffff;
    background: var(--gradient-blue);
    box-shadow: 0 12px 25px rgba(56, 75, 202, 0.24);
}

.solution-tab.active > span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.solution-tab.active i {
    color: #ffffff;
}

.solution-panel-wrap {
    min-width: 0;
}

.solution-panel {
    display: none;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.8fr);
    gap: 30px;
    min-height: 715px;
    padding: 45px;
    animation: panel-in 420ms ease;
}

.solution-panel.active {
    display: grid;
}

.panel-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    background: var(--gradient-primary);
    box-shadow: 0 15px 30px rgba(65, 74, 206, 0.24);
}

.panel-icon .ui-icon { width: 30px; height: 30px; }

.panel-label {
    color: var(--purple-700);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.solution-panel-copy h3 {
    margin: 12px 0 15px;
    font-size: clamp(32px, 3.2vw, 48px);
    line-height: 1.08;
}

.solution-panel-copy > p {
    max-width: 650px;
    margin-bottom: 25px;
    font-size: 17px;
}

.solution-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.solution-chip-list span,
.recommended-modules span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border: 1px solid #dce4f2;
    border-radius: 999px;
    color: var(--ink-700);
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.solution-outcome-card {
    align-self: center;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(217, 226, 241, 0.95);
    border-radius: 25px;
    background: linear-gradient(155deg, #f6f8ff, #eef8fa);
    box-shadow: var(--shadow-sm);
}

.outcome-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(216, 226, 239, 0.9);
    color: var(--ink-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.outcome-card-top i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25bb77;
    box-shadow: 0 0 0 5px rgba(37, 187, 119, 0.11);
}

.outcome-network {
    position: relative;
    height: 355px;
    overflow: hidden;
}

.outcome-network::before,
.outcome-network::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(82, 92, 205, 0.23);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.outcome-network::before {
    width: 260px;
    height: 260px;
    animation: slow-spin 22s linear infinite;
}

.outcome-network::after {
    width: 190px;
    height: 190px;
    animation: slow-spin 17s linear infinite reverse;
}

.network-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 130px;
    height: 130px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gradient-blue);
    box-shadow: 0 24px 50px rgba(65, 73, 200, 0.28);
    text-align: center;
    transform: translate(-50%, -50%);
}

.network-core .ui-icon { width: 28px; height: 28px; }
.network-core strong,
.network-core small { display: block; }
.network-core strong { margin-top: -12px; font-size: 13px; }
.network-core small { max-width: 90px; margin-top: -20px; color: #dce4ff; font-size: 8px; line-height: 1.3; }

.network-node {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border: 1px solid #d7e1ef;
    border-radius: 20px;
    color: var(--blue-700);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
    animation: module-float 5s ease-in-out infinite;
}

.network-node .ui-icon { width: 22px; height: 22px; }
.network-node small { margin-top: -10px; color: var(--ink-600); font-size: 8px; font-weight: 750; }
.node-one { top: 35px; left: calc(50% - 37px); }
.node-two { top: 140px; right: 24px; animation-delay: -1.2s; }
.node-three { bottom: 31px; left: calc(50% - 37px); animation-delay: -2.4s; }
.node-four { top: 140px; left: 24px; animation-delay: -3.6s; }

.outcome-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(216, 226, 239, 0.9);
    background: rgba(255, 255, 255, 0.74);
}

.outcome-metrics div {
    padding: 15px 10px;
    border-right: 1px solid rgba(216, 226, 239, 0.9);
    text-align: center;
}

.outcome-metrics div:last-child { border-right: 0; }
.outcome-metrics small,
.outcome-metrics strong { display: block; }
.outcome-metrics small { color: var(--ink-500); font-size: 8px; }
.outcome-metrics strong { color: var(--ink-900); font-size: 12px; }

/* Services */
.services-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    background: var(--gradient-dark);
}

.services-section::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.22;
    background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 58px 58px;
    content: "";
}

.services-section::after {
    position: absolute;
    top: -200px;
    right: -160px;
    z-index: -1;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 83, 227, 0.36), transparent 67%);
    content: "";
}

.services-background-word {
    position: absolute;
    top: 65px;
    right: -20px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.025);
    font-size: clamp(110px, 15vw, 230px);
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 1;
}

.light-heading h2,
.light-heading p,
.services-section .section-kicker {
    color: #ffffff;
}

.services-section .section-kicker::before {
    background: linear-gradient(90deg, #7ea4ff, #72e0d8);
}

.service-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-showcase-card {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.service-showcase-card::after {
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 119, 246, 0.35), transparent 70%);
    content: "";
    transition: transform 400ms ease;
}

.service-showcase-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-7px);
}

.service-showcase-card:hover::after {
    transform: scale(1.35);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    color: #bfcfff;
    background: rgba(255, 255, 255, 0.09);
}

.service-icon .ui-icon { width: 24px; height: 24px; }

.service-index {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.service-showcase-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
}

.service-showcase-card p {
    margin-bottom: 24px;
    color: #c9d6ee;
    font-size: 14px;
}

.service-showcase-card a {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
}

.service-showcase-card a span {
    transition: transform var(--transition);
}

.service-showcase-card:hover a span {
    transform: translateX(4px);
}

/* Platform preview */
.platform-preview-section {
    overflow: hidden;
    background: #ffffff;
}

.platform-preview {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.platform-tab-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: #fafcff;
}

.platform-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 125px;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--ink-600);
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 750;
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.platform-tab .ui-icon {
    width: 19px;
    height: 19px;
}

.platform-tab:hover {
    color: var(--blue-700);
    background: var(--surface-blue);
}

.platform-tab.active {
    color: #ffffff;
    background: var(--gradient-blue);
    box-shadow: 0 10px 24px rgba(54, 74, 202, 0.22);
}

.platform-screen-shell {
    background: #f4f7fc;
}

.platform-screen-top {
    display: grid;
    grid-template-columns: 110px 1fr 110px;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    color: var(--ink-500);
    background: var(--navy-900);
    font-size: 11px;
}

.platform-screen-top > span {
    display: flex;
    gap: 5px;
}

.platform-screen-top > span i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef6c6c;
}

.platform-screen-top > span i:nth-child(2) { background: #eeb34c; }
.platform-screen-top > span i:nth-child(3) { background: #48c481; }

.platform-screen-top strong {
    color: #dbe5f8;
    text-align: center;
}

.platform-screen-top em {
    justify-self: end;
    padding: 4px 8px;
    border-radius: 999px;
    color: #83e0ba;
    background: rgba(38, 198, 129, 0.1);
    font-style: normal;
    font-weight: 750;
}

.platform-screen {
    display: none;
    padding: 28px;
    animation: panel-in 380ms ease;
}

.platform-screen.active {
    display: block;
}

.screen-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.screen-summary > div {
    position: relative;
    min-height: 132px;
    padding: 20px 20px 18px 78px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.screen-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
}

.screen-icon .ui-icon { width: 22px; height: 22px; }
.screen-icon.blue { color: var(--blue-700); background: var(--surface-blue); }
.screen-icon.purple { color: var(--purple-700); background: var(--surface-purple); }
.screen-icon.teal { color: var(--teal-700); background: var(--surface-teal); }

.screen-summary small,
.screen-summary strong,
.screen-summary em {
    display: block;
}

.screen-summary small {
    color: var(--ink-500);
    font-size: 11px;
}

.screen-summary strong {
    margin: 2px 0;
    color: var(--ink-900);
    font-size: 25px;
}

.screen-summary em {
    color: var(--green-600);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.screen-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.75fr);
    gap: 15px;
    margin-top: 15px;
}

.screen-graph-card,
.screen-list-card {
    min-height: 335px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.screen-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.screen-card-heading small,
.screen-card-heading strong {
    display: block;
}

.screen-card-heading small {
    color: var(--ink-500);
    font-size: 10px;
}

.screen-card-heading strong {
    color: var(--ink-900);
    font-size: 16px;
}

.screen-card-heading > span {
    padding: 5px 8px;
    border-radius: 8px;
    color: var(--ink-500);
    background: var(--surface-soft);
    font-size: 9px;
    font-weight: 700;
}

.bar-chart {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 230px;
    padding: 25px 12px 0;
    border-bottom: 1px solid var(--line);
    background-image: linear-gradient(to bottom, transparent calc(25% - 1px), #edf1f7 25%, transparent calc(25% + 1px), transparent calc(50% - 1px), #edf1f7 50%, transparent calc(50% + 1px), transparent calc(75% - 1px), #edf1f7 75%, transparent calc(75% + 1px));
}

.bar-chart > div {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: end;
    width: 13%;
    height: 100%;
}

.bar-chart span {
    width: 100%;
    height: var(--bar);
    min-height: 25px;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, #6f55ea, #315be3);
    box-shadow: 0 8px 16px rgba(50, 77, 216, 0.16);
    transform: scaleY(0);
    transform-origin: bottom;
    animation: bar-grow 900ms ease forwards;
}

.bar-chart div:nth-child(2) span { animation-delay: 100ms; }
.bar-chart div:nth-child(3) span { animation-delay: 180ms; }
.bar-chart div:nth-child(4) span { animation-delay: 260ms; }
.bar-chart div:nth-child(5) span { animation-delay: 340ms; }

.bar-chart small {
    margin-top: 10px;
    color: var(--ink-500);
    font-size: 9px;
}

.screen-list-card ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.screen-list-card li {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.screen-list-card li:last-child {
    border-bottom: 0;
}

.task-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.task-dot.critical { background: var(--red-500); box-shadow: 0 0 0 5px rgba(227, 87, 87, 0.09); }
.task-dot.warning { background: var(--amber-500); box-shadow: 0 0 0 5px rgba(232, 154, 29, 0.09); }
.task-dot.success { background: var(--green-600); box-shadow: 0 0 0 5px rgba(22, 167, 104, 0.09); }

.screen-list-card li strong,
.screen-list-card li small {
    display: block;
}

.screen-list-card li strong {
    color: var(--ink-800);
    font-size: 12px;
}

.screen-list-card li small {
    color: var(--ink-500);
    font-size: 9px;
}

.screen-list-card li em {
    color: var(--ink-700);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.finance-chart {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 225px;
    padding: 22px 20px 0;
    border-bottom: 1px solid var(--line);
}

.finance-chart > span {
    z-index: 1;
    width: 9%;
    height: var(--h);
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, #26b7b6, #315be3);
    transform: scaleY(0);
    transform-origin: bottom;
    animation: bar-grow 850ms ease forwards;
}

.finance-chart > span:nth-child(2) { animation-delay: 80ms; }
.finance-chart > span:nth-child(3) { animation-delay: 160ms; }
.finance-chart > span:nth-child(4) { animation-delay: 240ms; }
.finance-chart > span:nth-child(5) { animation-delay: 320ms; }
.finance-chart > span:nth-child(6) { animation-delay: 400ms; }

.finance-chart > i {
    position: absolute;
    inset: 18px 0 0;
    opacity: 0.75;
    background-image: repeating-linear-gradient(to bottom, transparent 0 50px, #e7ecf4 50px 51px);
}

.line-utilization {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 34px;
}

.line-utilization > div {
    display: grid;
    grid-template-columns: 65px 1fr 45px;
    gap: 12px;
    align-items: center;
}

.line-utilization small {
    color: var(--ink-600);
    font-size: 11px;
    font-weight: 700;
}

.line-utilization > div > span {
    height: 11px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9edf5;
}

.line-utilization i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: line-grow 1.1s ease forwards;
}

.line-utilization strong {
    color: var(--ink-800);
    font-size: 11px;
}

.people-bubbles {
    position: relative;
    height: 240px;
    margin-top: 18px;
}

.people-bubbles > span {
    position: absolute;
    display: grid;
    width: var(--size);
    height: var(--size);
    place-items: center;
    border: 1px solid rgba(79, 91, 218, 0.16);
    border-radius: 50%;
    color: var(--ink-700);
    background: linear-gradient(145deg, rgba(236, 242, 255, 0.95), rgba(243, 237, 255, 0.95));
    box-shadow: 0 16px 30px rgba(44, 65, 121, 0.09);
    font-size: 10px;
    font-weight: 750;
    text-align: center;
    animation: module-float 5s ease-in-out infinite;
}

.people-bubbles > span small {
    display: block;
    color: var(--purple-700);
    font-size: 15px;
}

.people-bubbles > span:nth-child(1) { top: 16px; left: 12%; }
.people-bubbles > span:nth-child(2) { top: 110px; left: 35%; animation-delay: -1.1s; }
.people-bubbles > span:nth-child(3) { top: 20px; right: 15%; animation-delay: -2.2s; }
.people-bubbles > span:nth-child(4) { right: 4%; bottom: 0; animation-delay: -3.3s; }

.planning-lines {
    position: relative;
    height: 245px;
    margin-top: 15px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background-image: repeating-linear-gradient(to bottom, transparent 0 50px, #e7ecf4 50px 51px);
}

.planning-lines svg {
    width: 100%;
    height: 190px;
    margin-top: 15px;
    overflow: visible;
}

.planning-lines path {
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: chart-draw 2.2s ease forwards;
}

.plan-one { stroke: #4a62e4; }
.plan-two { stroke: #1db3ae; animation-delay: 250ms !important; }

.planning-lines > div {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 15px;
    color: var(--ink-500);
    font-size: 9px;
}

.planning-lines > div span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.planning-lines > div i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.blue-dot { background: #4a62e4; }
.teal-dot { background: #1db3ae; }

/* Architecture */
.architecture-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    background: var(--navy-950);
}

.architecture-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.25;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: radial-gradient(circle at 72% 48%, black, transparent 72%);
    mask-image: radial-gradient(circle at 72% 48%, black, transparent 72%);
}

.architecture-section::after {
    position: absolute;
    right: -200px;
    bottom: -260px;
    z-index: -1;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 181, 179, 0.22), transparent 68%);
    content: "";
}

.architecture-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
    gap: 80px;
    align-items: center;
}

.architecture-copy .section-kicker,
.architecture-copy h2 {
    color: #ffffff;
}

.architecture-copy h2 {
    margin: 14px 0 22px;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
}

.architecture-copy > p {
    color: #c9d7ef;
    font-size: 17px;
}

.architecture-points {
    display: grid;
    gap: 14px;
    margin: 30px 0 34px;
}

.architecture-points > div {
    display: flex;
    gap: 13px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.architecture-points > div > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: #a9c1ff;
    background: rgba(95, 117, 233, 0.16);
}

.architecture-points .ui-icon { width: 19px; height: 19px; }
.architecture-points strong,
.architecture-points small { display: block; }
.architecture-points strong { color: #ffffff; font-size: 13px; }
.architecture-points small { color: #aebed8; font-size: 11px; }

.architecture-visual {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 35px 85px rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.architecture-layer {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 13px;
    align-items: center;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.08);
}

.architecture-layer > span {
    color: #8ca8e6;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.architecture-layer > div {
    display: grid;
    grid-template-columns: 37px 1fr;
    grid-template-areas: "icon title" "icon copy";
    gap: 0 10px;
    align-items: center;
}

.architecture-layer .ui-icon {
    grid-area: icon;
    width: 28px;
    height: 28px;
    color: #afc5ff;
}

.architecture-layer strong {
    grid-area: title;
    color: #ffffff;
    font-size: 14px;
}

.architecture-layer small {
    grid-area: copy;
    color: #9eb0ca;
    font-size: 10px;
}

.layer-main {
    background: linear-gradient(135deg, rgba(54, 85, 220, 0.24), rgba(100, 70, 222, 0.18));
}

.layer-common {
    background: linear-gradient(135deg, rgba(16, 151, 157, 0.2), rgba(49, 83, 209, 0.18));
}

.layer-connector {
    position: relative;
    display: grid;
    height: 45px;
    place-items: center;
}

.layer-connector i {
    position: absolute;
    width: 2px;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

.layer-connector i::after {
    position: absolute;
    top: -14px;
    left: 0;
    width: 2px;
    height: 15px;
    background: #78a0ff;
    content: "";
    animation: flow-down 2s linear infinite;
}

.layer-connector em {
    position: relative;
    z-index: 2;
    padding: 3px 8px;
    border-radius: 999px;
    color: #8fa7ce;
    background: var(--navy-950);
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.architecture-module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.architecture-module-grid > div,
.architecture-bottom-row > div {
    display: grid;
    min-height: 94px;
    place-items: center;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
    transition: transform var(--transition), background var(--transition);
}

.architecture-module-grid > div:hover,
.architecture-bottom-row > div:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-3px);
}

.architecture-module-grid .ui-icon,
.architecture-bottom-row .ui-icon {
    width: 23px;
    height: 23px;
    color: #9db9ff;
}

.architecture-module-grid strong,
.architecture-module-grid small,
.architecture-bottom-row strong,
.architecture-bottom-row small {
    display: block;
}

.architecture-module-grid strong,
.architecture-bottom-row strong {
    color: #ffffff;
    font-size: 11px;
}

.architecture-module-grid small,
.architecture-bottom-row small {
    color: #8fa2c0;
    font-size: 8px;
}

.architecture-bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

/* Industry finder */
.industry-finder-section {
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
}

.industry-finder {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.industry-selector {
    max-height: 690px;
    padding: 16px;
    overflow-y: auto;
    border-right: 1px solid var(--line);
    background: #fbfcff;
    scrollbar-width: thin;
    scrollbar-color: #cad5e7 transparent;
}

.industry-selector-button {
    display: grid;
    grid-template-columns: 40px 1fr 18px;
    gap: 11px;
    align-items: center;
    width: 100%;
    min-height: 57px;
    padding: 8px 11px;
    border: 0;
    border-radius: 13px;
    color: var(--ink-700);
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.industry-selector-button + .industry-selector-button {
    margin-top: 4px;
}

.industry-selector-button > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    color: var(--teal-700);
    background: var(--surface-teal);
}

.industry-selector-button .ui-icon { width: 20px; height: 20px; }
.industry-selector-button strong { font-size: 13.5px; }
.industry-selector-button i { color: #a0adc0; font-style: normal; }

.industry-selector-button:hover {
    color: var(--blue-700);
    background: var(--surface-blue);
    transform: translateX(2px);
}

.industry-selector-button.active {
    color: #ffffff;
    background: var(--gradient-blue);
    box-shadow: 0 10px 24px rgba(56, 74, 201, 0.22);
}

.industry-selector-button.active > span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.industry-selector-button.active i { color: #ffffff; }

.industry-panels {
    min-width: 0;
}

.industry-panel {
    display: none;
    min-height: 620px;
    padding: 52px;
    animation: panel-in 420ms ease;
}

.industry-panel.active {
    display: block;
}

.industry-panel-header {
    display: flex;
    align-items: center;
    gap: 19px;
}

.industry-panel-header > span {
    display: grid;
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 20px;
    color: #ffffff;
    background: var(--gradient-primary);
    box-shadow: 0 15px 30px rgba(62, 78, 207, 0.22);
}

.industry-panel-header .ui-icon { width: 31px; height: 31px; }
.industry-panel-header small { color: var(--purple-700); font-size: 10px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.industry-panel-header h3 { margin: 4px 0 0; font-size: clamp(30px, 3vw, 45px); line-height: 1.1; }

.industry-panel > p {
    max-width: 760px;
    margin: 25px 0 26px;
    font-size: 17px;
}

.recommended-label {
    margin-bottom: 12px;
    color: var(--ink-800);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.recommended-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-outcome {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #d5e9e9;
    border-radius: 17px;
    background: var(--surface-teal);
}

.industry-outcome > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    color: var(--teal-700);
    background: #ffffff;
}

.industry-outcome .ui-icon { width: 21px; height: 21px; }
.industry-outcome small,
.industry-outcome strong { display: block; }
.industry-outcome small { color: var(--teal-700); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.industry-outcome strong { color: var(--ink-800); font-size: 14px; line-height: 1.5; }

.industry-panel-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
}

/* AI section */
.ai-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #121d44 0%, #29326e 52%, #154f69 100%);
}

.ai-section::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.18;
    background-image: radial-gradient(circle at center, rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
}

.ai-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
}

.ai-orb-one {
    top: -240px;
    left: -170px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(99, 70, 224, 0.48), transparent 68%);
}

.ai-orb-two {
    right: -170px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0, 180, 180, 0.36), transparent 68%);
}

.ai-layout {
    display: grid;
    grid-template-columns: minmax(500px, 1.04fr) minmax(0, 0.96fr);
    gap: 80px;
    align-items: center;
}

.ai-visual {
    position: relative;
    min-height: 590px;
}

.ai-chat-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}

.main-chat-card {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 475px;
    transform: rotateY(5deg) rotateZ(-1deg);
    animation: dashboard-float 7s ease-in-out infinite;
}

.ai-chat-card header {
    display: grid;
    grid-template-columns: 45px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.ai-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background: var(--gradient-primary);
}

.ai-avatar .ui-icon { width: 21px; height: 21px; }
.ai-chat-card header strong,
.ai-chat-card header small { display: block; }
.ai-chat-card header strong { color: var(--ink-900); font-size: 13px; }
.ai-chat-card header small { display: flex; align-items: center; gap: 5px; color: var(--ink-500); font-size: 9px; }
.ai-chat-card header small i { width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); }
.ai-chat-card header em { padding: 4px 7px; border-radius: 7px; color: var(--purple-700); background: var(--surface-purple); font-size: 9px; font-style: normal; font-weight: 850; }

.ai-conversation {
    min-height: 340px;
    padding: 20px;
    background: #f5f8fd;
}

.ai-conversation p {
    max-width: 82%;
    margin-bottom: 13px;
    padding: 12px 14px;
    border-radius: 15px;
    font-size: 11px;
    line-height: 1.55;
}

.assistant-bubble {
    color: var(--ink-700);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.user-bubble {
    margin-left: auto;
    color: #ffffff;
    background: var(--gradient-blue);
}

.ai-conversation strong,
.ai-conversation span { display: block; }
.ai-conversation strong { margin-bottom: 5px; color: var(--ink-900); }

.ai-chat-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 10px 12px 10px 18px;
    color: var(--ink-500);
    background: #ffffff;
    font-size: 10px;
}

.ai-chat-card footer button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 11px;
    color: #ffffff;
    background: var(--gradient-blue);
}

.ai-chat-card footer .ui-icon { width: 18px; height: 18px; }

.ai-mini-card {
    position: absolute;
    z-index: 3;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
    align-items: center;
    min-width: 255px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
    animation: module-float 5s ease-in-out infinite;
}

.ai-mini-card > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: var(--blue-700);
    background: var(--surface-blue);
}

.ai-mini-card .ui-icon { width: 20px; height: 20px; }
.ai-mini-card small,
.ai-mini-card strong { display: block; }
.ai-mini-card small { color: var(--ink-500); font-size: 8px; }
.ai-mini-card strong { color: var(--ink-900); font-size: 11px; }

.voice-card { top: 100px; right: -25px; }
.whatsapp-card { right: 15px; bottom: 75px; animation-delay: -2s; }
.whatsapp-card > span { color: #169a5d; background: #eaf9f1; }
.whatsapp-card > i { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: #ffffff; background: var(--green-600); font-size: 11px; font-style: normal; font-weight: 800; }

.wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 24px;
}

.wave b {
    width: 2px;
    height: 8px;
    border-radius: 3px;
    background: var(--blue-600);
    animation: wave 1.2s ease-in-out infinite;
}

.wave b:nth-child(2) { height: 16px; animation-delay: 100ms; }
.wave b:nth-child(3) { height: 22px; animation-delay: 200ms; }
.wave b:nth-child(4) { height: 13px; animation-delay: 300ms; }
.wave b:nth-child(5) { height: 8px; animation-delay: 400ms; }

.ai-copy .section-kicker,
.ai-copy h2 {
    color: #ffffff;
}

.ai-copy h2 {
    margin: 14px 0 22px;
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.06;
}

.ai-copy > p {
    color: #ced8ec;
    font-size: 17px;
}

.ai-capability-grid {
    display: grid;
    gap: 12px;
    margin: 28px 0 32px;
}

.ai-capability-grid > div {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.ai-capability-grid > div > span {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: #b4c8ff;
    background: rgba(90, 110, 226, 0.17);
}

.ai-capability-grid .ui-icon { width: 20px; height: 20px; }
.ai-capability-grid strong,
.ai-capability-grid small { display: block; }
.ai-capability-grid strong { color: #ffffff; font-size: 13px; }
.ai-capability-grid small { color: #aebcd5; font-size: 10px; }

/* Why Bizrove */
.why-section {
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.why-card {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #f1f5ff, #f7f2ff);
}

.why-card:hover {
    border-color: #cfdaf0;
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.why-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 14px;
    color: var(--blue-700);
    background: var(--surface-blue);
}

.why-icon .ui-icon { width: 24px; height: 24px; }
.why-card:nth-child(3n) .why-icon { color: var(--purple-700); background: var(--surface-purple); }
.why-card:nth-child(3n + 2) .why-icon { color: var(--teal-700); background: var(--surface-teal); }

.why-card h3 {
    margin-bottom: 9px;
    font-size: 19px;
}

.why-card p {
    margin-bottom: 0;
    font-size: 13.5px;
}

.why-card em {
    position: absolute;
    top: 22px;
    right: 23px;
    color: #d5ddea;
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
    letter-spacing: 0.1em;
}

/* Implementation */
.implementation-section {
    overflow: hidden;
    background: linear-gradient(180deg, #f7f9fe, #eef3fb);
}

.implementation-journey {
    position: relative;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.journey-rail {
    position: absolute;
    top: 63px;
    right: 65px;
    left: 65px;
    height: 2px;
    overflow: hidden;
    background: #e3e9f3;
}

.journey-rail span {
    display: block;
    width: var(--journey-progress, 0%);
    height: 100%;
    background: var(--gradient-primary);
    transition: width 450ms ease;
}

.journey-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(10, minmax(90px, 1fr));
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
}

.journey-step {
    min-width: 96px;
    padding: 9px 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: center;
}

.journey-step span {
    display: grid;
    width: 43px;
    height: 43px;
    margin: 0 auto 9px;
    place-items: center;
    border: 2px solid #dce4f0;
    border-radius: 50%;
    color: var(--ink-500);
    background: #ffffff;
    font-size: 10px;
    font-weight: 850;
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.journey-step strong {
    display: block;
    color: var(--ink-600);
    font-size: 9px;
    line-height: 1.35;
    transition: color var(--transition);
}

.journey-step:hover span {
    border-color: #acbce7;
    transform: translateY(-2px);
}

.journey-step.active span {
    border-color: transparent;
    color: #ffffff;
    background: var(--gradient-blue);
    box-shadow: 0 10px 22px rgba(56, 75, 203, 0.25);
}

.journey-step.active strong {
    color: var(--blue-700);
}

.journey-detail-wrap {
    margin-top: 12px;
}

.journey-detail {
    display: none;
    grid-template-columns: 85px 1fr 60px;
    gap: 22px;
    align-items: center;
    min-height: 190px;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f3f6ff, #f1fbfb);
    animation: panel-in 380ms ease;
}

.journey-detail.active {
    display: grid;
}

.journey-detail-number {
    color: #d3dced;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.journey-detail small {
    color: var(--purple-700);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.journey-detail h3 {
    margin: 5px 0 8px;
    font-size: 25px;
}

.journey-detail p {
    margin: 0;
    font-size: 14px;
}

.journey-check {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    color: var(--green-600);
    background: #e9f9f1;
}

.journey-check .ui-icon { width: 25px; height: 25px; }

/* Statistics */
.statistics-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 66px 0;
    color: #ffffff;
    background: var(--gradient-primary);
}

.stats-noise {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.22;
    background-image: radial-gradient(circle at center, rgba(255,255,255,.35) 1px, transparent 1px);
    background-size: 25px 25px;
}

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

.statistics-grid article {
    position: relative;
    min-height: 135px;
    padding: 15px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    text-align: center;
}

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

.stat-index {
    position: absolute;
    top: 0;
    right: 18px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.statistics-grid article > div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.statistics-grid strong {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
}

.statistics-grid em {
    margin: 4px 0 0 3px;
    color: #cbe9ff;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
}

.statistics-grid p {
    margin: 9px 0 0;
    color: #e3ebff;
    font-size: 12px;
    font-weight: 700;
}

/* Final CTA */
.final-cta-section {
    background: #ffffff;
}

.final-cta-card {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 60px;
    align-items: center;
    overflow: hidden;
    padding: 65px;
    border-radius: 32px;
    color: #ffffff;
    background: var(--gradient-dark);
    box-shadow: var(--shadow-lg);
}

.cta-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.18;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-orb {
    position: absolute;
    right: -120px;
    bottom: -220px;
    z-index: -1;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 195, 190, 0.42), transparent 65%);
}

.final-cta-copy .section-kicker,
.final-cta-copy h2 {
    color: #ffffff;
}

.final-cta-copy h2 {
    max-width: 720px;
    margin: 13px 0 15px;
    font-size: clamp(38px, 4vw, 57px);
    line-height: 1.06;
}

.final-cta-copy p {
    max-width: 680px;
    margin: 0;
    color: #cfdaed;
    font-size: 16px;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
    min-width: 245px;
}

/* Inner page foundations */
.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 92px 0 86px;
    background: linear-gradient(180deg, #f7f9ff, #eef4fc);
}

.page-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.5;
    background-image: linear-gradient(rgba(61, 89, 158, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(61, 89, 158, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
}

.page-hero::after {
    position: absolute;
    top: -250px;
    right: -160px;
    z-index: -1;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 70, 226, 0.18), transparent 68%);
    content: "";
}

.page-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
    gap: 60px;
    align-items: center;
}

.page-hero-copy {
    max-width: 820px;
}

.page-hero h1 {
    margin: 18px 0 22px;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 750px;
    margin-bottom: 0;
    font-size: 19px;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

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

.page-visual-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
}

.page-visual-card.primary {
    top: 20px;
    right: 25px;
    width: 330px;
    min-height: 235px;
    padding: 25px;
    transform: rotate(3deg);
}

.page-visual-card.secondary {
    left: 5px;
    bottom: 12px;
    width: 225px;
    padding: 18px;
    transform: rotate(-5deg);
}

.page-visual-card .visual-icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 15px;
    color: #ffffff;
    background: var(--gradient-primary);
}

.page-visual-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.page-visual-card p {
    font-size: 13px;
}

.page-visual-stat {
    display: flex;
    align-items: end;
    gap: 6px;
    margin-top: 20px;
}

.page-visual-stat i {
    width: 20px;
    height: var(--h);
    border-radius: 5px 5px 2px 2px;
    background: var(--gradient-blue);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    color: var(--ink-500);
    font-size: 12px;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: var(--blue-700);
}

.inner-section {
    padding: 95px 0;
}

.inner-section.soft {
    background: var(--surface-soft);
}

.content-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.content-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.content-grid-three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* About page */
.about-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 75px;
    align-items: center;
}

.about-intro-copy h2 {
    margin: 14px 0 20px;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
}

.about-intro-copy > p {
    font-size: 17px;
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.about-principle {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.about-principle > span {
    display: grid;
    width: 45px;
    height: 45px;
    margin-bottom: 17px;
    place-items: center;
    border-radius: 13px;
    color: var(--blue-700);
    background: var(--surface-blue);
}

.about-principle h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.about-principle p {
    margin-bottom: 0;
    font-size: 13px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mission-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    padding: 38px;
    border-radius: 24px;
    color: #ffffff;
    background: var(--gradient-dark);
}

.mission-card:nth-child(2) {
    background: linear-gradient(135deg, #263271, #6a48e4 70%, #169da5);
}

.mission-card::after {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    content: "";
}

.mission-card > span {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 50px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    color: #ffffff;
    background: rgba(255,255,255,.09);
}

.mission-card h3 {
    color: #ffffff;
    font-size: 28px;
}

.mission-card p {
    color: #d5e0f3;
    font-size: 16px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.value-card {
    min-height: 230px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-card span {
    display: grid;
    width: 47px;
    height: 47px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 14px;
    color: var(--purple-700);
    background: var(--surface-purple);
}

.value-card h3 {
    font-size: 19px;
}

.value-card p {
    margin-bottom: 0;
    font-size: 13px;
}

.operating-model {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.operating-model article {
    position: relative;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
}

.operating-model article:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -20px;
    z-index: 2;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue-700);
    background: #ffffff;
    content: ">";
    font-size: 10px;
    font-weight: 900;
    transform: translateY(-50%);
}

.operating-model span {
    color: var(--purple-700);
    font-size: 11px;
    font-weight: 850;
}

.operating-model h3 {
    margin: 8px 0 10px;
    font-size: 19px;
}

.operating-model p {
    margin: 0;
    font-size: 13px;
}

/* Service page */
.filter-bar {
    position: sticky;
    top: 95px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-button {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--ink-600);
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
}

.filter-button:hover {
    color: var(--blue-700);
    background: var(--surface-blue);
}

.filter-button.active {
    color: #ffffff;
    background: var(--gradient-blue);
}

.service-directory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 34px;
}

.service-directory-card {
    position: relative;
    min-height: 370px;
    overflow: hidden;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-directory-card:hover {
    border-color: #ccd8ed;
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.service-directory-card > span {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 16px;
    color: var(--blue-700);
    background: var(--surface-blue);
}

.service-directory-card:nth-child(3n + 2) > span {
    color: var(--teal-700);
    background: var(--surface-teal);
}

.service-directory-card:nth-child(3n) > span {
    color: var(--purple-700);
    background: var(--surface-purple);
}

.service-directory-card h2 {
    margin-bottom: 11px;
    font-size: 23px;
}

.service-directory-card > p {
    font-size: 14px;
}

.service-directory-card ul {
    margin: 20px 0 55px;
    padding: 0;
    list-style: none;
}

.service-directory-card li {
    position: relative;
    margin: 8px 0;
    padding-left: 19px;
    color: var(--ink-600);
    font-size: 12px;
}

.service-directory-card li::before {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-primary);
    content: "";
}

.service-directory-card .text-link {
    position: absolute;
    right: 29px;
    bottom: 26px;
    left: 29px;
    justify-content: space-between;
    font-size: 13px;
}

.service-category-block {
    margin-top: 75px;
    scroll-margin-top: 130px;
}

.service-category-block:first-child {
    margin-top: 0;
}

.category-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.category-heading > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background: var(--gradient-primary);
}

.category-heading h2 {
    margin: 0 0 3px;
    font-size: 31px;
}

.category-heading p {
    margin: 0;
    font-size: 14px;
}

/* Solutions page */
.solution-category-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: -38px;
    position: relative;
    z-index: 4;
}

.solution-category-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.solution-category-nav a:hover {
    border-color: #cbd7ee;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.solution-category-nav span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: var(--purple-700);
    background: var(--surface-purple);
}

.solution-category-nav strong {
    color: var(--ink-800);
    font-size: 11.5px;
    line-height: 1.35;
}

.solution-category-section {
    padding: 90px 0;
    scroll-margin-top: 90px;
}

.solution-category-section:nth-child(even) {
    background: var(--surface-soft);
}

.solution-category-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 60px;
    align-items: start;
}

.solution-category-copy {
    position: sticky;
    top: 120px;
}

.solution-category-copy > span {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    place-items: center;
    border-radius: 19px;
    color: #ffffff;
    background: var(--gradient-primary);
    box-shadow: 0 15px 30px rgba(57, 76, 203, 0.22);
}

.solution-category-copy h2 {
    margin-bottom: 15px;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.08;
}

.solution-category-copy p {
    font-size: 16px;
}

.solution-category-copy .button {
    margin-top: 13px;
}

.solution-item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.solution-item-card {
    min-height: 205px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.solution-item-card:hover {
    border-color: #cedaee;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.solution-item-card > span {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 19px;
    place-items: center;
    border-radius: 12px;
    color: var(--blue-700);
    background: var(--surface-blue);
}

.solution-item-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.solution-item-card p {
    margin-bottom: 0;
    font-size: 12.5px;
}

.solution-comparison {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.comparison-head,
.comparison-row {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
}

.comparison-head > div,
.comparison-row > div {
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.comparison-head > div:first-child,
.comparison-row > div:first-child {
    text-align: left;
}

.comparison-head > div:last-child,
.comparison-row > div:last-child {
    border-right: 0;
}

.comparison-row:last-child > div {
    border-bottom: 0;
}

.comparison-head {
    color: #ffffff;
    background: var(--gradient-dark);
    font-size: 12px;
    font-weight: 800;
}

.comparison-row > div:first-child {
    color: var(--ink-800);
    font-weight: 750;
}

.comparison-check {
    display: inline-grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--green-600);
    font-size: 11px;
    font-weight: 900;
}

.comparison-dash {
    color: #b2bdce;
}

/* Industries page */
.industry-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-directory-card {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    scroll-margin-top: 125px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.industry-directory-card:hover {
    border-color: #ced9ec;
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.industry-directory-card::after {
    position: absolute;
    right: -65px;
    bottom: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(69, 91, 222, 0.11), transparent 70%);
    content: "";
}

.industry-directory-card > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 27px;
    place-items: center;
    border-radius: 17px;
    color: var(--teal-700);
    background: var(--surface-teal);
}

.industry-directory-card h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.industry-directory-card > p {
    font-size: 14px;
}

.industry-directory-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.industry-directory-card li {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-600);
    background: var(--surface-soft);
    font-size: 10px;
    font-weight: 700;
}

/* Forms */
.form-page-section {
    padding: 90px 0 110px;
    background: linear-gradient(180deg, #ffffff, #f5f8fd);
}

.form-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 28px;
    align-items: start;
}

.professional-form {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

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

.form-heading h2 {
    margin-bottom: 9px;
    font-size: 31px;
}

.form-heading p {
    margin: 0;
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    min-width: 0;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
    display: block;
    margin-bottom: 7px;
    color: var(--ink-800);
    font-size: 12px;
    font-weight: 750;
}

.required-mark {
    color: var(--red-500);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 49px;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    outline: none;
    color: var(--ink-800);
    background: #ffffff;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field textarea {
    min-height: 135px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #7894e7;
    box-shadow: 0 0 0 4px rgba(72, 101, 221, 0.1);
    background: #fcfdff;
}

.form-field small {
    display: block;
    margin-top: 5px;
    color: var(--ink-500);
    font-size: 10px;
}

.solution-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.solution-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--ink-700);
    background: var(--surface-soft);
    cursor: pointer;
    font-size: 11.5px;
    font-weight: 700;
}

.solution-checkbox input {
    width: 16px;
    min-height: auto;
    height: 16px;
    padding: 0;
    accent-color: var(--blue-600);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-600);
    font-size: 11px;
}

.consent-label input {
    width: 17px;
    height: 17px;
    min-height: auto;
    margin-top: 2px;
    padding: 0;
    accent-color: var(--blue-600);
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
}

.form-security-note {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-500);
    font-size: 10px;
}

.form-security-note .ui-icon {
    width: 15px;
    height: 15px;
    color: var(--green-600);
}

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

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

.form-side-card {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.form-side-card.dark {
    color: #ffffff;
    background: var(--gradient-dark);
}

.form-side-card > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 14px;
    color: var(--blue-700);
    background: var(--surface-blue);
}

.form-side-card.dark > span {
    color: #ffffff;
    background: rgba(255,255,255,.1);
}

.form-side-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.form-side-card.dark h3 {
    color: #ffffff;
}

.form-side-card p {
    margin-bottom: 0;
    font-size: 13px;
}

.form-side-card.dark p {
    color: #cbd8ed;
}

.form-side-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.form-side-list li {
    display: flex;
    gap: 9px;
    margin: 11px 0;
    color: var(--ink-600);
    font-size: 12px;
}

.form-side-list li::before {
    display: grid;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--green-600);
    content: "✓";
    font-size: 9px;
    font-weight: 900;
}

.form-side-card.dark .form-side-list li {
    color: #d6e1f2;
}

.contact-information-list {
    display: grid;
    gap: 13px;
    margin-top: 20px;
}

.contact-information-list a,
.contact-information-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface-soft);
}

.contact-information-list > * > span:first-child {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: var(--blue-700);
    background: #ffffff;
}

.contact-information-list small,
.contact-information-list strong {
    display: block;
}

.contact-information-list small {
    color: var(--ink-500);
    font-size: 9px;
}

.contact-information-list strong {
    color: var(--ink-800);
    font-size: 12px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
}

.faq-list summary {
    position: relative;
    padding: 17px 50px 17px 18px;
    cursor: pointer;
    color: var(--ink-800);
    font-size: 13px;
    font-weight: 750;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 18px;
    content: "+";
    color: var(--blue-700);
    font-size: 22px;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list details p {
    margin: 0;
    padding: 0 18px 18px;
    font-size: 12px;
}

/* Legal pages */
.legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 115px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.legal-nav h3 {
    font-size: 16px;
}

.legal-nav a {
    display: block;
    padding: 8px 0;
    color: var(--ink-600);
    font-size: 12px;
}

.legal-nav a:hover {
    color: var(--blue-700);
}

.legal-content {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.legal-content h2 {
    margin-top: 36px;
    font-size: 25px;
    scroll-margin-top: 120px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    font-size: 14px;
}

/* Footer */
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 78px;
    color: #ced9ec;
    background: var(--navy-950);
}

.site-footer::before {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.18;
    background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 54px 54px;
    content: "";
}

.footer-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
}

.footer-glow-one {
    top: -260px;
    left: -180px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 67, 224, 0.25), transparent 68%);
}

.footer-glow-two {
    right: -180px;
    bottom: -300px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(3, 166, 168, 0.2), transparent 68%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.65fr 0.95fr 0.95fr 1.25fr;
    gap: 42px;
}

.footer-logo {
    display: block;
    width: 230px;
    padding: 9px 12px;
    border-radius: 13px;
    background: #ffffff;
}

.footer-brand-column > p {
    max-width: 390px;
    margin: 22px 0;
    color: #aebdd4;
    font-size: 14px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    color: #b9c7dd;
    background: rgba(255,255,255,.05);
    font-size: 9px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.social-links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 11px;
    color: #c5d3e9;
    background: rgba(255,255,255,.05);
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.social-links a:hover {
    color: #ffffff;
    background: rgba(255,255,255,.11);
    transform: translateY(-3px);
}

.social-svg {
    width: 18px;
    height: 18px;
}

.footer-column h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: -0.01em;
}

.footer-column > a:not(.footer-contact-item):not(.button) {
    display: block;
    margin: 9px 0;
    color: #aebdd4;
    font-size: 12px;
    transition: color var(--transition), transform var(--transition);
}

.footer-column > a:not(.footer-contact-item):not(.button):hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-column {
    min-width: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
}

.footer-contact-item > span:first-child {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    color: #a8c1ff;
    background: rgba(83, 105, 225, 0.15);
}

.footer-contact-item .ui-icon {
    width: 17px;
    height: 17px;
}

.footer-contact-item small,
.footer-contact-item strong {
    display: block;
    min-width: 0;
}

.footer-contact-item small {
    color: #8295b3;
    font-size: 8px;
}

.footer-contact-item strong {
    overflow: hidden;
    color: #dbe5f4;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer-demo-button {
    width: 100%;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 55px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
    margin: 0;
    color: #8193af;
    font-size: 10px;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: #9fb0ca;
    font-size: 10px;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Floating actions and bot */
.floating-action {
    position: fixed;
    right: 22px;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 56px;
    height: 56px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(18, 37, 78, 0.28);
    font-size: 12px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition);
}

.floating-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 23px 48px rgba(18, 37, 78, 0.34);
}

.whatsapp-action {
    bottom: 22px;
    background: #20bd67;
}

.whatsapp-action svg {
    width: 25px;
    height: 25px;
}

.bot-action {
    bottom: 88px;
    background: var(--gradient-blue);
}

.bot-toggle-icon {
    width: 24px;
    height: 24px;
}

.bot-window {
    position: fixed;
    right: 22px;
    bottom: 154px;
    z-index: 1600;
    display: flex;
    width: min(405px, calc(100vw - 30px));
    height: min(610px, calc(100vh - 185px));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 35px 90px rgba(14, 31, 68, 0.33);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.97);
    transform-origin: bottom right;
    flex-direction: column;
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.bot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.bot-header {
    display: grid;
    grid-template-columns: 46px 1fr 32px;
    gap: 10px;
    align-items: center;
    min-height: 72px;
    padding: 13px 15px;
    color: #ffffff;
    background: var(--gradient-dark);
}

.bot-avatar {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 13px;
    background: rgba(255,255,255,.1);
}

.bot-avatar .ui-icon {
    width: 22px;
    height: 22px;
}

.bot-header strong,
.bot-header small {
    display: block;
}

.bot-header strong {
    font-size: 13px;
}

.bot-header small {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b9c8df;
    font-size: 9px;
}

.bot-header small span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #39ce8d;
    box-shadow: 0 0 0 4px rgba(57, 206, 141, 0.11);
}

.bot-header button {
    border: 0;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    font-size: 26px;
}

.bot-body {
    flex: 1;
    min-height: 0;
    padding: 16px;
    overflow-y: auto;
    background: #f4f7fc;
}

.bot-message {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 10px 0;
}

.bot-message > div:last-child {
    max-width: 82%;
    padding: 11px 13px;
    border-radius: 14px 14px 14px 4px;
    color: var(--ink-700);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    font-size: 11px;
    line-height: 1.55;
    white-space: pre-wrap;
}

.bot-message-user {
    justify-content: flex-end;
}

.bot-message-user > div:last-child {
    border-radius: 14px 14px 4px 14px;
    color: #ffffff;
    background: var(--gradient-blue);
}

.bot-message-avatar {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 9px;
    color: var(--blue-700);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.bot-message-avatar .ui-icon {
    width: 15px;
    height: 15px;
}

.bot-typing > div:last-child {
    display: flex;
    gap: 4px;
    width: 55px;
}

.bot-typing i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9ba8bb;
    animation: typing 1.1s infinite;
}

.bot-typing i:nth-child(2) { animation-delay: 150ms; }
.bot-typing i:nth-child(3) { animation-delay: 300ms; }

.bot-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 12px 0;
}

.bot-quick-actions a {
    padding: 7px 10px;
    border: 1px solid #d7e0ee;
    border-radius: 999px;
    color: var(--blue-700);
    background: #ffffff;
    font-size: 9px;
    font-weight: 750;
}

.bot-suggestions {
    display: flex;
    gap: 6px;
    padding: 9px 12px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    background: #ffffff;
    scrollbar-width: none;
}

.bot-suggestions::-webkit-scrollbar {
    display: none;
}

.bot-suggestions button {
    flex: 0 0 auto;
    max-width: 230px;
    padding: 7px 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-600);
    background: var(--surface-soft);
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bot-suggestions button:hover {
    color: var(--blue-700);
    border-color: #c8d5ec;
    background: var(--surface-blue);
}

.bot-form {
    display: grid;
    grid-template-columns: 1fr 43px;
    gap: 8px;
    padding: 11px 12px;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.bot-form input {
    min-width: 0;
    height: 43px;
    padding: 10px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    outline: none;
    color: var(--ink-800);
    font-size: 11px;
}

.bot-form input:focus {
    border-color: #7b96e6;
    box-shadow: 0 0 0 3px rgba(70, 97, 219, 0.09);
}

.bot-form button {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 0;
    border-radius: 11px;
    color: #ffffff;
    background: var(--gradient-blue);
    cursor: pointer;
}

.bot-form button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bot-disclaimer {
    margin: 0;
    padding: 0 12px 9px;
    color: #96a2b4;
    background: #ffffff;
    font-size: 8px;
    text-align: center;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 158px;
    z-index: 1400;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink-700);
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Empty states */
.empty-state {
    padding: 55px 30px;
    border: 1px dashed var(--line-strong);
    border-radius: 18px;
    background: var(--surface-soft);
    text-align: center;
}

.empty-state > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 18px;
    color: var(--blue-700);
    background: var(--surface-blue);
}

.empty-state h3 {
    font-size: 20px;
}

/* Animations */
@keyframes slow-spin {
    to { transform: rotate(360deg); }
}

@keyframes dashboard-float {
    0%, 100% { transform: rotateY(-6deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-4deg) rotateX(1deg) translateY(-8px); }
}

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

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(32, 186, 119, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(32, 186, 119, 0); }
    100% { box-shadow: 0 0 0 0 rgba(32, 186, 119, 0); }
}

@keyframes chart-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bar-grow {
    to { transform: scaleY(1); }
}

@keyframes line-grow {
    to { transform: scaleX(1); }
}

@keyframes flow-down {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
}

@keyframes wave {
    0%, 100% { transform: scaleY(.55); }
    50% { transform: scaleY(1); }
}

@keyframes typing {
    0%, 70%, 100% { transform: translateY(0); opacity: .4; }
    35% { transform: translateY(-3px); opacity: 1; }
}

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
/* Dynamic theme and publishing extension */
body{background:var(--brand-bg,#f7f9ff);color:var(--brand-text,#14213d);font-family:var(--brand-body-font,Inter,Arial,sans-serif)}
h1,h2,h3,h4,h5,h6{font-family:var(--brand-heading-font,Inter,Arial,sans-serif)}
.button-primary,.header-cta{background:linear-gradient(135deg,var(--brand-primary,#2457f5),var(--brand-secondary,#7447f5))}
.text-link,.content-type,.post-meta a{color:var(--brand-primary,#2457f5)}
.content-hero{padding:120px 0 64px;background:linear-gradient(135deg,color-mix(in srgb,var(--brand-primary) 10%,white),color-mix(in srgb,var(--brand-secondary) 8%,white))}
.content-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.content-card{background:var(--brand-surface,#fff);border:1px solid rgba(20,33,61,.08);border-radius:var(--brand-radius,24px);padding:28px;box-shadow:0 18px 50px rgba(31,45,90,.08);display:flex;flex-direction:column;gap:14px}.content-card:hover{transform:translateY(-6px);box-shadow:0 24px 60px rgba(31,45,90,.14)}.content-card h3{font-size:1.35rem;margin:0}.content-type{font-weight:800;text-transform:uppercase;letter-spacing:.08em;font-size:.74rem}.content-card .excerpt{color:#5f6b85}.content-meta{display:flex;gap:12px;flex-wrap:wrap;font-size:.85rem;color:#70809f}.content-filter{display:flex;gap:10px;flex-wrap:wrap;margin:30px 0}.content-filter a{padding:10px 16px;border-radius:999px;background:#fff;border:1px solid rgba(20,33,61,.1);font-weight:700}.content-filter a.active{background:var(--brand-primary);color:white}.article-shell{max-width:900px;margin:0 auto;padding:70px 20px}.article-shell h1{font-size:clamp(2.4rem,6vw,4.6rem);line-height:1.05}.article-body{font-size:1.08rem;line-height:1.85}.article-body h2{margin-top:2.2em}.tag-list{display:flex;gap:8px;flex-wrap:wrap;margin:25px 0}.tag-list a{background:color-mix(in srgb,var(--brand-primary) 8%,white);padding:7px 12px;border-radius:999px}.announcement-strip{background:linear-gradient(90deg,var(--brand-primary),var(--brand-secondary));color:#fff;padding:10px 0;text-align:center}.announcement-strip a{color:#fff;font-weight:800}.academy-grid,.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.plan-card{background:#fff;border-radius:var(--brand-radius);padding:30px;border:1px solid rgba(20,33,61,.1)}.plan-price{font-size:2rem;font-weight:900;color:var(--brand-primary)}
@media(max-width:900px){.content-grid,.academy-grid,.pricing-grid{grid-template-columns:1fr 1fr}}@media(max-width:640px){.content-grid,.academy-grid,.pricing-grid{grid-template-columns:1fr}.content-hero{padding-top:90px}}

/* =========================================================
   Bizrove Brand Hero v5
   One Platform. Endless Possibilities.
   ========================================================= */
.site-logo {
    width: 246px;
    padding: 5px 0;
    transition: transform var(--transition), filter var(--transition);
}

.site-logo:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 9px 16px rgba(25, 75, 218, 0.16));
}

.site-logo img {
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
}

.hero-brand-section {
    min-height: 790px;
    padding: 76px 0 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at 16% 14%, rgba(16, 98, 255, .34), transparent 32%),
        radial-gradient(circle at 89% 18%, rgba(15, 222, 241, .21), transparent 30%),
        radial-gradient(circle at 64% 92%, rgba(61, 91, 255, .22), transparent 34%),
        linear-gradient(128deg, #03102b 0%, #061b45 44%, #062e66 72%, #043761 100%);
}

.hero-brand-section::after {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(2, 13, 38, .36));
    content: "";
}

.hero-brand-section .hero-grid-pattern {
    opacity: .32;
    background-image:
        linear-gradient(rgba(116, 181, 255, .095) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 181, 255, .095) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: radial-gradient(circle at 70% 40%, #000 0, transparent 76%);
    mask-image: radial-gradient(circle at 70% 40%, #000 0, transparent 76%);
}

.hero-brand-beam {
    position: absolute;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92, 220, 255, .7), transparent);
    transform-origin: center;
    animation: brand-beam 8s ease-in-out infinite;
}

.beam-one {
    top: 23%;
    right: -7%;
    width: 54%;
    transform: rotate(-18deg);
}

.beam-two {
    right: 18%;
    bottom: 23%;
    width: 46%;
    transform: rotate(16deg);
    animation-delay: -3s;
}

.hero-brand-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(80, 215, 255, .15);
    border-radius: 50%;
}

.orbit-one {
    top: 90px;
    right: -260px;
    width: 780px;
    height: 780px;
}

.orbit-two {
    top: 205px;
    right: -108px;
    width: 510px;
    height: 510px;
}

.hero-brand-layout {
    grid-template-columns: minmax(0, .92fr) minmax(580px, 1.08fr);
    gap: 58px;
}

.hero-brand-copy {
    padding-top: 4px;
}

.hero-brand-lockup {
    display: block;
    width: min(430px, 92%);
    margin: 0 0 23px;
    filter: drop-shadow(0 17px 28px rgba(0, 0, 0, .22));
    transition: transform var(--transition), filter var(--transition);
}

.hero-brand-lockup:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 22px 34px rgba(21, 167, 255, .2));
}

.hero-brand-kicker {
    border-color: rgba(113, 202, 255, .24);
    color: #bcecff;
    background: rgba(10, 36, 84, .55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 30px rgba(0, 0, 0, .12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.hero-brand-kicker .kicker-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #195cff, #16d8e9);
    box-shadow: 0 0 0 5px rgba(36, 126, 255, .1);
}

.hero-brand-copy h1 {
    max-width: 760px;
    margin: 23px 0 22px;
    color: #ffffff;
    font-size: clamp(54px, 5.25vw, 82px);
    line-height: .98;
    letter-spacing: -.062em;
    text-wrap: balance;
}

.hero-brand-copy h1::after {
    width: 13px;
    height: 13px;
    background: linear-gradient(135deg, #4f78ff, #24e2f2);
    box-shadow: 0 0 24px rgba(38, 220, 247, .72);
}

.hero-brand-copy .hero-lead {
    max-width: 700px;
    color: #c9d8f0;
    font-size: 18px;
    line-height: 1.72;
}

.hero-brand-actions .button-primary {
    color: #061434;
    background: linear-gradient(135deg, #ffffff 0%, #d9f8ff 100%);
    box-shadow: 0 18px 45px rgba(8, 194, 234, .2);
}

.hero-brand-actions .button-primary:hover {
    box-shadow: 0 22px 50px rgba(8, 194, 234, .32);
}

.hero-brand-actions .button-secondary {
    border-color: rgba(172, 218, 255, .34);
    color: #ffffff;
    background: rgba(255, 255, 255, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-brand-actions .button-secondary:hover {
    border-color: rgba(90, 226, 255, .62);
    background: rgba(28, 99, 202, .25);
}

.hero-brand-contact {
    border-radius: 15px;
    color: #ffffff;
}

.hero-brand-contact:hover {
    background: rgba(255, 255, 255, .06);
}

.hero-brand-contact .contact-link-icon {
    border-color: rgba(76, 220, 255, .26);
    color: #7eefff;
    background: rgba(23, 148, 204, .16);
}

.hero-brand-contact small {
    color: #91a6c7;
}

.hero-brand-contact strong {
    color: #ffffff;
}

.hero-brand-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 29px;
}

.hero-brand-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid rgba(149, 203, 255, .16);
    border-radius: 999px;
    color: #c9dcf8;
    background: rgba(255, 255, 255, .055);
    font-size: 11.5px;
    font-weight: 750;
    letter-spacing: .02em;
}

.hero-brand-proof .ui-icon {
    color: #4ee3f2;
}

.brand-platform-stage {
    position: relative;
    min-height: 620px;
    isolation: isolate;
}

.platform-stage-grid {
    position: absolute;
    inset: 2% 0 0 3%;
    z-index: -4;
    border-radius: 50%;
    opacity: .33;
    background-image:
        linear-gradient(rgba(78, 209, 255, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 209, 255, .16) 1px, transparent 1px);
    background-size: 38px 38px;
    -webkit-mask-image: radial-gradient(circle, #000 0, transparent 68%);
    mask-image: radial-gradient(circle, #000 0, transparent 68%);
}

.platform-stage-glow {
    position: absolute;
    top: 92px;
    left: 50%;
    z-index: -3;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 179, 242, .26), rgba(33, 84, 228, .14) 44%, transparent 72%);
    transform: translateX(-50%);
    filter: blur(3px);
    animation: brand-pulse 4.8s ease-in-out infinite;
}

.platform-connectors {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.platform-connectors path {
    fill: none;
    stroke: url(#connectorGradient);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 8 10;
    filter: url(#connectorGlow);
    animation: connector-flow 10s linear infinite;
}

.platform-connectors circle {
    fill: #51e8f7;
    filter: url(#connectorGlow);
    animation: node-pulse 2.4s ease-in-out infinite;
}

.platform-core-card {
    position: absolute;
    top: 155px;
    left: 50%;
    z-index: 5;
    display: flex;
    width: 254px;
    min-height: 278px;
    padding: 25px 23px 22px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(98, 220, 255, .34);
    border-radius: 34px;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(19, 72, 156, .84), rgba(4, 22, 62, .94)),
        rgba(6, 25, 68, .9);
    box-shadow:
        0 36px 80px rgba(0, 6, 25, .42),
        inset 0 1px 0 rgba(255, 255, 255, .15),
        0 0 55px rgba(18, 155, 238, .14);
    text-align: center;
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    animation: core-float 5s ease-in-out infinite;
}

.platform-core-card::before {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 27px;
    content: "";
    pointer-events: none;
}

.platform-core-pulse {
    position: absolute;
    top: 24px;
    right: 25px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #34e49c;
    box-shadow: 0 0 0 0 rgba(52, 228, 156, .46);
    animation: pulse-dot 1.8s infinite;
}

.platform-core-icon {
    width: 105px;
    height: 105px;
    margin-bottom: 15px;
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, .25));
}

.platform-core-card > small {
    color: #6ee9fa;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .14em;
}

.platform-core-card > strong {
    margin-top: 5px;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: -.03em;
}

.platform-core-card > p {
    max-width: 190px;
    margin: 6px auto 13px;
    color: #aebfda;
    font-size: 11px;
    line-height: 1.5;
}

.core-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(86, 224, 240, .18);
    border-radius: 999px;
    color: #dcecff;
    background: rgba(255, 255, 255, .05);
    font-size: 9.5px;
    font-weight: 750;
}

.core-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35e39c;
    box-shadow: 0 0 10px rgba(53, 227, 156, .65);
}

.platform-node {
    position: absolute;
    z-index: 6;
    display: flex;
    min-width: 180px;
    min-height: 66px;
    padding: 11px 13px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(118, 199, 255, .25);
    border-radius: 17px;
    color: #ffffff;
    background: linear-gradient(140deg, rgba(17, 62, 131, .86), rgba(5, 23, 61, .9));
    box-shadow: 0 18px 42px rgba(0, 5, 24, .3), inset 0 1px 0 rgba(255, 255, 255, .11);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    animation: node-float 4.6s ease-in-out infinite;
}

.platform-node > span {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #2159ed, #12bfdf);
    box-shadow: 0 8px 20px rgba(30, 131, 232, .28);
}

.platform-node > span .ui-icon {
    width: 20px;
    height: 20px;
}

.platform-node strong,
.platform-node small {
    display: block;
}

.platform-node strong {
    color: #ffffff;
    font-size: 13px;
}

.platform-node small {
    color: #9fb4d2;
    font-size: 9.5px;
}

.platform-node > i {
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-radius: 50%;
    background: #3ce4a1;
    box-shadow: 0 0 11px rgba(60, 228, 161, .65);
}

.node-erp { top: 55px; left: 12px; animation-delay: -.6s; }
.node-crm { top: 50px; right: -2px; animation-delay: -1.8s; }
.node-sfa { top: 273px; left: -30px; animation-delay: -2.7s; }
.node-hrms { top: 273px; right: -28px; animation-delay: -3.4s; }
.node-ai { top: 470px; left: 38px; animation-delay: -1.2s; }
.node-analytics { top: 470px; right: 22px; animation-delay: -2.2s; }

.node-crm > span,
.node-ai > span { background: linear-gradient(135deg, #5939df, #3479f5); }
.node-hrms > span { background: linear-gradient(135deg, #087fbe, #18d4cf); }
.node-analytics > span { background: linear-gradient(135deg, #184cd3, #8b4be0); }

.platform-growth-card {
    position: absolute;
    right: 50%;
    bottom: -9px;
    z-index: 7;
    width: min(470px, 72%);
    padding: 17px 19px 14px;
    border: 1px solid rgba(114, 211, 255, .27);
    border-radius: 21px;
    background: linear-gradient(145deg, rgba(10, 48, 108, .9), rgba(4, 21, 57, .94));
    box-shadow: 0 28px 65px rgba(0, 5, 22, .36), inset 0 1px 0 rgba(255, 255, 255, .1);
    transform: translateX(50%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.growth-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.growth-card-head small,
.growth-card-head strong {
    display: block;
}

.growth-card-head small {
    color: #89a5c9;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.growth-card-head strong {
    color: #ffffff;
    font-size: 14px;
}

.growth-card-head > span {
    padding: 6px 9px;
    border-radius: 999px;
    color: #5df1b3;
    background: rgba(50, 219, 147, .11);
    font-size: 10px;
    font-weight: 850;
}

.platform-growth-card svg {
    width: 100%;
    height: 72px;
    margin-top: 3px;
    overflow: visible;
}

.growth-area {
    fill: url(#growthFill);
}

.growth-line {
    fill: none;
    stroke: #38e5f1;
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(56, 229, 241, .52));
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: chart-draw 2.2s ease forwards .5s;
}

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

.growth-card-metrics span {
    color: #8fa8c9;
    font-size: 8.5px;
    line-height: 1.35;
}

.growth-card-metrics b {
    display: block;
    color: #ffffff;
    font-size: 11px;
}

.hero-brand-module-strip {
    margin-top: 62px;
    border-color: rgba(117, 203, 255, .19);
    background: rgba(255, 255, 255, .065);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 20px 50px rgba(0, 7, 28, .2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.hero-brand-module-strip span {
    border-color: rgba(121, 203, 255, .15);
    color: #d9e8fb;
}

.hero-brand-module-strip i {
    color: #54e5f4;
}

.footer-logo img {
    width: min(320px, 100%);
    filter: drop-shadow(0 13px 24px rgba(0, 0, 0, .24));
}

@keyframes brand-beam {
    0%, 100% { opacity: .28; transform-origin: center; }
    50% { opacity: .9; }
}

@keyframes brand-pulse {
    0%, 100% { opacity: .7; transform: translateX(-50%) scale(.96); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

@keyframes connector-flow {
    to { stroke-dashoffset: -180; }
}

@keyframes node-pulse {
    0%, 100% { opacity: .55; transform: scale(.9); }
    50% { opacity: 1; transform: scale(1.2); }
}

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

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

@keyframes chart-draw {
    to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-brand-beam,
    .platform-stage-glow,
    .platform-connectors path,
    .platform-connectors circle,
    .platform-core-card,
    .platform-node,
    .growth-line {
        animation: none !important;
    }

    .growth-line {
        stroke-dashoffset: 0;
    }
}
