:root {
    --vtx-black: #090511;
    --vtx-deep: #13051f;
    --vtx-night: #1a0829;
    --vtx-ink: #15101f;
    --vtx-muted: #6f667e;
    --vtx-purple: #8917f2;
    --vtx-purple-2: #b736ff;
    --vtx-lilac: #d66dff;
    --vtx-soft: #f8f4fb;
    --vtx-soft-2: #f0e8f7;
    --vtx-white: #fff;
    --vtx-border: rgba(34, 14, 48, .10);
    --vtx-border-strong: rgba(137, 23, 242, .18);
    --shadow-soft: 0 20px 70px rgba(22, 7, 35, .10);
    --shadow-card: 0 18px 44px rgba(22, 7, 35, .08);
    --shadow-purple: 0 22px 52px rgba(137, 23, 242, .24);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1260px;
    --topbar-h: 34px;
    --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--vtx-ink);
    background: #fff;
    overflow-x: hidden;
    font-size: 15px;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
main section[id] { scroll-margin-top: 130px; }

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

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex: 0 0 auto;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, #2b0a42 0%, #090511 72%);
    transition: opacity .45s ease, visibility .45s ease;
}
.site-preloader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 0 70px rgba(184, 54, 255, .45);
}
.loader-mark img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    animation: spinSoft 1.3s linear infinite;
}
@keyframes spinSoft { to { transform: rotate(360deg); } }

.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: var(--topbar-h);
    color: rgba(255,255,255,.92);
    background: linear-gradient(90deg, #2a073f 0%, #7c14e7 48%, #0d0614 100%);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: transform .28s ease;
}
.top-contact-bar.is-hidden { transform: translateY(-100%); }
.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    font-weight: 500;
}
.topbar-link, .topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.topbar-link .icon { font-size: 16px; }
.topbar-phone .icon { font-size: 13px; color: var(--vtx-lilac); }
.topbar-note {
    margin-left: auto;
    opacity: .9;
    white-space: nowrap;
}
.topbar-close {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: #fff;
    opacity: .72;
    cursor: pointer;
    font-size: 19px;
    display: grid;
    place-items: center;
}

.main-header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: top .28s ease, padding .28s ease, background .28s ease;
}
.topbar-closed .main-header { top: 0; }
.main-header.scrolled { padding: 8px 0; }
.nav-shell {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 10px 0 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 20px 60px rgba(25, 6, 38, .08);
    backdrop-filter: blur(22px);
}
.main-header.scrolled .nav-shell {
    background: rgba(255,255,255,.94);
    border-color: rgba(34, 14, 48, .08);
    box-shadow: 0 18px 55px rgba(25, 6, 38, .12);
}
.brand {
    display: inline-flex;
    align-items: center;
    min-width: 185px;
}
.brand img { width: 174px; height: auto; }
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
}
.desktop-nav a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(21, 16, 31, .74);
    padding: 11px 12px;
    border-radius: 999px;
    transition: color .22s ease, background .22s ease, transform .22s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--vtx-purple);
    background: rgba(137, 23, 242, .08);
    transform: translateY(-1px);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang-switch {
    width: 44px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(34, 14, 48, .12);
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--vtx-purple);
    background: rgba(255,255,255,.65);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.btn::after {
    content: "";
    position: absolute;
    top: -90%;
    bottom: -90%;
    left: -46%;
    width: 32%;
    transform: rotate(24deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
    transition: left .65s ease;
    z-index: -1;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { left: 118%; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 13px; }
.btn-lg { min-height: 54px; padding: 0 24px; font-size: 14px; }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    box-shadow: var(--shadow-purple);
}
.btn-outline {
    color: var(--vtx-ink);
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(34, 14, 48, .16);
}
.btn-outline:hover { border-color: rgba(137, 23, 242, .32); color: var(--vtx-purple); }
.btn-soft {
    color: var(--vtx-ink);
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(34, 14, 48, .10);
    box-shadow: 0 16px 36px rgba(22, 7, 35, .08);
}
.nav-login { padding-inline: 20px; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(137, 23, 242, .10);
    place-items: center;
    cursor: pointer;
}
.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--vtx-purple);
    display: block;
    border-radius: 8px;
    margin: 3px 0;
    transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.mobile-panel {
    display: none;
    width: min(var(--container), calc(100% - 48px));
    margin: 10px auto 0;
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    transform-origin: top;
}
.mobile-panel a:not(.btn):not(.lang-switch) {
    display: block;
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--vtx-ink);
    font-weight: 500;
}
.mobile-panel a:hover { background: rgba(137, 23, 242, .08); }
.mobile-actions { display: flex; gap: 10px; padding-top: 10px; }
.mobile-cta { flex: 1; color: #fff !important; }

.hero {
    min-height: 760px;
    padding: 158px 0 58px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fbf9fd 0%, #fff 76%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 86%);
    pointer-events: none;
}
.hero-bg-image {
    position: absolute;
    inset: 88px 0 auto;
    height: 620px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.72) 42%, rgba(255,255,255,.92) 100%),
        url('../img/vortex-brand-wall.jpg') center 42%/cover no-repeat;
    opacity: .20;
    filter: saturate(.65) blur(.2px);
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(2px);
}
.hero-glow-a {
    width: 430px;
    height: 430px;
    left: -170px;
    top: 140px;
    background: radial-gradient(circle, rgba(184,54,255,.20), transparent 68%);
}
.hero-glow-b {
    width: 520px;
    height: 520px;
    right: -190px;
    top: 80px;
    background: radial-gradient(circle, rgba(137,23,242,.16), transparent 70%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(620px, 1.18fr);
    gap: 56px;
    align-items: center;
}
.hero-copy { max-width: 560px; }
.eyebrow, .section-label, .mini-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vtx-purple);
    text-transform: uppercase;
    
    font-size: 12px;
    font-weight: 500;
}
.eyebrow {
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(137,23,242,.20);
    box-shadow: 0 14px 34px rgba(22,7,35,.06);
}
.eyebrow span {
    width: 18px;
    height: 2px;
    border-radius: 8px;
    background: var(--vtx-purple);
}
.hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(35px, 5vw, 35px);
    line-height: .99;
    
    color: var(--vtx-black);
    font-weight: 500;
}
.hero h1 strong {
    display: block;
    font-weight: 500;
    color: transparent;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2), var(--vtx-lilac));
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-copy > p {
    max-width: 500px;
    color: var(--vtx-muted);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 24px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.hero-actions .icon { font-size: 18px; }
.hero-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.hero-pill {
    min-height: 78px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: 0 16px 32px rgba(22,7,35,.05);
}
.hero-pill > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--vtx-purple);
    background: rgba(137,23,242,.09);
    flex: 0 0 auto;
}
.hero-pill strong {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--vtx-ink);
    line-height: 1.2;
}
.hero-pill small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--vtx-muted);
}

.hero-visual {
    min-width: 0;
    perspective: 1200px;
}
.erp-window {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 560px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(34,14,48,.10);
    box-shadow: 0 30px 100px rgba(22,7,35,.16);
    transform: rotateY(-3deg) rotateX(1deg);
}
.erp-sidebar {
    padding: 22px 14px;
    color: rgba(255,255,255,.74);
    background: linear-gradient(180deg, #11081c 0%, #07040c 100%);
}
.erp-sidebar img {
    width: 132px;
    height: auto;
    margin: 0 0 24px 6px;
}
.erp-sidebar nav {
    display: grid;
    gap: 6px;
}
.erp-sidebar span {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}
.erp-sidebar span .icon { font-size: 15px; opacity: .86; }
.erp-sidebar span.active {
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    box-shadow: 0 12px 34px rgba(137,23,242,.35);
}
.erp-screen {
    padding: 20px;
    background: linear-gradient(180deg, #fff 0%, #fbf9fd 100%);
}
.erp-screen-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.screen-search {
    width: 210px;
    height: 34px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.08);
    color: #a39aae;
    font-size: 11px;
    display: flex;
    align-items: center;
    padding: 0 14px;
}
.screen-admin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vtx-ink);
    font-size: 11px;
}
.screen-admin span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-lilac));
}
.erp-screen h3 {
    margin: 0 0 14px;
    font-size: 15px;
    color: var(--vtx-ink);
}
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}
.kpi-card {
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.07);
    box-shadow: 0 12px 26px rgba(22,7,35,.05);
}
.kpi-card span {
    display: block;
    color: var(--vtx-muted);
    font-size: 10px;
    font-weight: 500;
}
.kpi-card strong {
    display: block;
    margin: 6px 0 4px;
    font-size: 19px;
    
}
.kpi-card small {
    color: #19a566;
    font-size: 10px;
    font-weight: 500;
}
.kpi-card:nth-child(2) small { color: #e64c5e; }
.analytics-grid {
    display: grid;
    grid-template-columns: 1.55fr .95fr .95fr;
    gap: 12px;
}
.panel, .cash-card {
    min-height: 116px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.07);
    box-shadow: 0 12px 28px rgba(22,7,35,.05);
}
.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}
.panel-head strong { font-size: 12px; color: var(--vtx-ink); }
.panel-head small { font-size: 10px; color: var(--vtx-purple); font-weight: 500; }
.chart-panel { grid-column: span 2; }
.line-chart {
    height: 120px;
    position: relative;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(137,23,242,.08), rgba(137,23,242,0)),
        repeating-linear-gradient(to right, transparent 0 19%, rgba(34,14,48,.045) 19% 19.2%, transparent 19.2% 20%),
        repeating-linear-gradient(to bottom, transparent 0 32%, rgba(34,14,48,.04) 32% 32.5%, transparent 32.5% 33%);
    overflow: hidden;
}
.line-chart::before {
    content: "";
    position: absolute;
    left: 5%; right: 5%; top: 24%; bottom: 18%;
    background: linear-gradient(145deg, transparent 0 18%, var(--vtx-purple) 18.2% 18.8%, transparent 19%, transparent 35%, var(--vtx-purple) 35.2% 35.8%, transparent 36%, transparent 50%, var(--vtx-purple) 50.2% 50.8%, transparent 51%, transparent 67%, var(--vtx-purple) 67.2% 67.8%, transparent 68%);
    transform: skewY(-11deg);
    opacity: .9;
}
.line-chart i {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--vtx-purple);
    box-shadow: 0 0 0 5px rgba(137,23,242,.12);
}
.line-chart i:nth-child(1) { left: 8%; top: 63%; }
.line-chart i:nth-child(2) { left: 25%; top: 48%; }
.line-chart i:nth-child(3) { left: 42%; top: 54%; }
.line-chart i:nth-child(4) { left: 63%; top: 35%; }
.line-chart i:nth-child(5) { left: 78%; top: 42%; }
.line-chart i:nth-child(6) { left: 91%; top: 25%; }
.donut {
    width: 92px;
    height: 92px;
    margin: 6px auto 8px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--vtx-purple) 0 60%, var(--vtx-lilac) 60% 82%, #ead7f8 82% 100%);
    position: relative;
}
.donut::after {
    content: "";
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #fff;
}
.donut span { position: relative; z-index: 1; font-size: 12px; font-weight: 500; }
.donut-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; font-size: 10px; color: var(--vtx-muted); }
.invoice-panel p {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 6px;
    align-items: center;
    margin: 8px 0;
    font-size: 10px;
}
.invoice-panel b { color: var(--vtx-ink); }
.invoice-panel em {
    font-style: normal;
    color: #19a566;
    background: rgba(25,165,102,.08);
    padding: 4px 6px;
    border-radius: 999px;
    font-weight: 500;
}
.invoice-panel em.pending { color: #d48b00; background: rgba(212,139,0,.10); }
.stock-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 11px;
    border-bottom: 1px solid rgba(34,14,48,.06);
}
.stock-row.danger b { color: #e64c5e; }
.bars-panel { display: grid; align-content: center; gap: 14px; }
.bar-line {
    height: 9px;
    border-radius: 999px;
    background: rgba(137,23,242,.10);
    overflow: hidden;
}
.bar-line span {
    display: block;
    width: var(--w);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--vtx-lilac), var(--vtx-purple));
}
.cash-card {
    color: #fff;
    background: linear-gradient(145deg, var(--vtx-purple), #4d0a86);
    box-shadow: var(--shadow-purple);
}
.cash-card span, .cash-card small { display: block; opacity: .86; font-size: 11px; }
.cash-card strong { display: block; margin: 10px 0 16px; font-size: 24px;  }

.modules-strip {
    position: relative;
    z-index: 2;
    padding: 16px 0 28px;
    background: #fff;
}
.mini-label {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    text-align: center;
}
.modules-row {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
}
.module-tile {
    min-height: 82px;
    padding: 13px 8px;
    border-radius: 16px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: 0 14px 30px rgba(22,7,35,.045);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 9px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.module-tile:hover { transform: translateY(-4px); border-color: rgba(137,23,242,.25); box-shadow: 0 18px 44px rgba(137,23,242,.12); }
.module-tile span {
    color: var(--vtx-purple);
    font-size: 24px;
}
.module-tile strong {
    font-size: 12px;
    text-align: center;
    color: var(--vtx-ink);
}

.benefits-band {
    padding: 22px 0;
    background: linear-gradient(180deg, #fff, #fbf9fd);
}
.benefits-shell {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(34,14,48,.08);
    background: rgba(255,255,255,.82);
    box-shadow: 0 16px 42px rgba(22,7,35,.05);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 14px;
}
.benefits-grid article {
    display: flex;
    gap: 12px;
    padding: 4px 18px;
    border-left: 1px solid rgba(34,14,48,.08);
}
.benefits-grid article:first-child { border-left: 0; }
.benefits-grid article > span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--vtx-purple);
    background: rgba(137,23,242,.08);
    flex: 0 0 auto;
}
.benefits-grid h3 {
    margin: 0 0 4px;
    font-size: 13px;
}
.benefits-grid p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 12px;
    line-height: 1.45;
}

.workflow-section {
    padding: 58px 0 76px;
    background:
        radial-gradient(circle at 15% 100%, rgba(137,23,242,.10), transparent 32%),
        linear-gradient(180deg, #fbf9fd, #fff);
}
.workflow-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 42px;
    align-items: center;
    padding: 36px;
    border-radius: 30px;
    border: 1px solid rgba(34,14,48,.08);
    background: rgba(255,255,255,.70);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
}
.workflow-shell::before {
    content: "";
    position: absolute;
    inset: auto -80px -100px 220px;
    height: 240px;
    background: radial-gradient(circle, rgba(184,54,255,.20), transparent 70%);
}
.workflow-copy, .workflow-cards { position: relative; z-index: 1; }
.workflow-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.06;
    color: var(--vtx-purple);
    
    font-weight: 500;
}
.workflow-copy h2 span { display: block; }
.workflow-copy p {
    margin: 0 0 22px;
    color: var(--vtx-muted);
    line-height: 1.6;
}
.workflow-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 22px;
    align-items: center;
}
.flow-card {
    min-height: 154px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: 0 18px 40px rgba(22,7,35,.07);
    transform: rotate(-2deg);
}
.flow-card:nth-of-type(3n) { transform: rotate(2deg); }
.flow-card small {
    color: var(--vtx-purple);
    font-weight: 500;
    font-size: 11px;
}
.flow-card h3 { margin: 10px 0 6px; font-size: 15px; }
.flow-card p { margin: 0 0 14px; color: var(--vtx-muted); font-size: 12px; line-height: 1.4; }
.flow-card strong { color: #18a260; font-size: 13px; }
.flow-arrow {
    position: relative;
    margin-left: -18px;
    margin-right: -18px;
    color: var(--vtx-purple);
    font-size: 28px;
    justify-self: center;
    display: none;
}

.security-section {
    padding: 74px 0;
    background: #fff;
}
.security-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}
.security-visual {
    min-height: 430px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(184,54,255,.26), transparent 36%),
        linear-gradient(145deg, #12051f, #090511);
    box-shadow: 0 30px 90px rgba(22,7,35,.18);
}
.security-orbit {
    width: 180px;
    height: 180px;
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    box-shadow: inset 0 0 40px rgba(255,255,255,.04), 0 0 70px rgba(137,23,242,.38);
}
.security-orbit img { width: 96px; height: 96px; object-fit: contain; animation: spinSoft 10s linear infinite; }
.security-card {
    position: absolute;
    min-width: 150px;
    padding: 16px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
}
.security-card strong { display: block; font-size: 26px;  }
.security-card span { color: rgba(255,255,255,.68); font-size: 12px; }
.security-card.one { left: 28px; top: 40px; }
.security-card.two { right: 34px; top: 92px; }
.security-card.three { left: 74px; bottom: 50px; }
.section-label { margin-bottom: 16px; }
.security-copy h2,
.contact-copy h2,
.cta-block h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 35px);
    line-height: 1.04;
    
    font-weight: 500;
    color: var(--vtx-black);
}
.security-copy p,
.contact-copy p,
.cta-block p {
    margin: 0;
    max-width: 560px;
    color: var(--vtx-muted);
    line-height: 1.72;
    font-size: 16px;
}
.security-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}
.security-items span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--vtx-soft);
    color: var(--vtx-ink);
    font-weight: 500;
    font-size: 13px;
}
.security-items .icon { color: var(--vtx-purple); font-size: 18px; }

.testimonial-cta {
    padding: 38px 0;
    background: linear-gradient(135deg, #0b0412, #230937 54%, #0b0412);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.testimonial-cta::before {
    content: "";
    position: absolute;
    inset: -100px -10% auto;
    height: 220px;
    background: radial-gradient(circle, rgba(184,54,255,.28), transparent 70%);
    opacity: .8;
}
.testimonial-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    align-items: center;
}
.quote-block {
    display: flex;
    gap: 18px;
    align-items: center;
}
.avatar {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-lilac));
    box-shadow: 0 18px 44px rgba(137,23,242,.28);
}
.quote-block p { margin: 0 0 10px; color: rgba(255,255,255,.88); line-height: 1.6; font-size: 15px; }
.quote-block strong { display: block; font-size: 14px; }
.quote-block span { display: block; color: rgba(255,255,255,.62); font-size: 12px; margin-top: 4px; }
.cta-block {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(16px);
}
.cta-block h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); }
.cta-block p { color: rgba(255,255,255,.68); margin-bottom: 22px; }

.contact-section {
    padding: 84px 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(137,23,242,.10), transparent 35%),
        linear-gradient(180deg, #fff, #fbf9fd);
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
    max-width: 520px;
}
.contact-cards article {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: 0 14px 30px rgba(22,7,35,.05);
}
.contact-cards .icon {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    padding: 11px;
    color: var(--vtx-purple);
    border-radius: 15px;
    background: rgba(137,23,242,.08);
}
.contact-cards strong { font-size: 14px; }
.contact-cards span { color: var(--vtx-muted); font-size: 13px; }
.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,.90);
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: var(--shadow-soft);
}
.contact-form label { display: grid; gap: 8px; }
.contact-form label.full, .contact-form .full { grid-column: 1 / -1; }
.contact-form label span {
    color: var(--vtx-ink);
    font-size: 12px;
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(34,14,48,.10);
    border-radius: 15px;
    background: #fff;
    min-height: 52px;
    padding: 0 15px;
    color: var(--vtx-ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { padding: 14px 15px; resize: vertical; min-height: 128px; }
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(137,23,242,.36);
    box-shadow: 0 0 0 4px rgba(137,23,242,.08);
}
.contact-form [aria-invalid="true"] { border-color: #e64c5e; }
.form-note {
    grid-column: 1 / -1;
    min-height: 18px;
    margin: -4px 0 0;
    color: var(--vtx-purple);
    font-size: 13px;
    font-weight: 500;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,.82);
    background:
        radial-gradient(circle at 78% 8%, rgba(184,54,255,.22), transparent 26%),
        linear-gradient(180deg, #15071f 0%, #08040d 100%);
}
.footer-glow {
    position: absolute;
    inset: auto -20% -180px;
    height: 360px;
    background: radial-gradient(circle, rgba(137,23,242,.22), transparent 70%);
    pointer-events: none;
}
.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.8fr repeat(4, .86fr) 1.45fr;
    gap: 34px;
    padding: 58px 0 42px;
}
.footer-brand img { width: 185px; height: auto; margin-bottom: 20px; }
.footer-brand p {
    margin: 0 0 22px;
    max-width: 320px;
    color: rgba(255,255,255,.64);
    line-height: 1.65;
}
.socials { display: flex; gap: 10px; }
.socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.footer-col h3,
.footer-contact h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    
}
.footer-col a,
.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    margin: 0 0 10px;
    transition: color .2s ease;
}
.footer-col a:hover,
.footer-contact a:hover { color: #fff; }
.footer-contact .icon { color: var(--vtx-lilac); font-size: 17px; }
.footer-demo-card {
    margin-top: 20px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.055);
}
.footer-demo-card strong { display: block; color: #fff; font-size: 14px; line-height: 1.35; margin-bottom: 14px; }
.footer-bottom {
    position: relative;
    z-index: 1;
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.52);
    font-size: 12px;
}
.footer-bottom nav {
    display: flex;
    gap: 22px;
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom > a { justify-self: end; }

.cookie-modal {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .25s ease, transform .25s ease;
}
.cookie-modal.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-card {
    width: min(760px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(34,14,48,.10);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}
.cookie-card h3 { margin: 0 0 4px; font-size: 15px; }
.cookie-card p { margin: 0; color: var(--vtx-muted); font-size: 13px; }
.cookie-actions { display: flex; gap: 10px; }
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #1bc760, #0d9f4b);
    box-shadow: 0 18px 42px rgba(13,159,75,.28);
    transition: transform .25s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); }
.whatsapp-float .icon { font-size: 28px; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1180px) {
    .desktop-nav { display: none; }
    .nav-login { display: none; }
    .menu-toggle { display: grid; }
    .mobile-panel.is-open { display: block; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-copy { max-width: 760px; }
    .erp-window { transform: none; }
    .modules-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .benefits-grid article { border-left: 0; border-top: 1px solid rgba(34,14,48,.08); padding: 16px; }
    .benefits-grid article:first-child { border-top: 0; }
    .workflow-shell { grid-template-columns: 1fr; }
    .workflow-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-main { grid-template-columns: repeat(3, 1fr); }
    .footer-brand, .footer-contact { grid-column: span 3; }
}

@media (max-width: 820px) {
    :root { --topbar-h: 38px; }
    .container { width: min(100% - 28px, var(--container)); }
    .topbar-inner { gap: 10px; font-size: 11px; }
    .topbar-phone, .topbar-note { display: none; }
    .main-header { padding: 8px 0; }
    .nav-shell { height: 60px; padding-left: 16px; }
    .brand { min-width: 150px; }
    .brand img { width: 148px; }
    .nav-actions .btn-primary, .nav-actions .lang-switch { display: none; }
    .mobile-panel { width: min(100% - 28px, var(--container)); }
    .hero { min-height: auto; padding: 124px 0 42px; }
    .hero h1 { font-size: clamp(35px, 12vw, 35px);  }
    .hero-copy > p { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-pills { grid-template-columns: 1fr; }
    .erp-window { grid-template-columns: 1fr; min-height: auto; border-radius: 24px; }
    .erp-sidebar { display: none; }
    .erp-screen { padding: 14px; }
    .erp-screen-top { justify-content: space-between; }
    .screen-search { width: 160px; }
    .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .analytics-grid { grid-template-columns: 1fr; }
    .chart-panel { grid-column: span 1; }
    .modules-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .benefits-grid { grid-template-columns: 1fr; }
    .workflow-section, .security-section, .contact-section { padding: 56px 0; }
    .workflow-shell { padding: 22px; }
    .workflow-cards { grid-template-columns: 1fr; gap: 14px; }
    .flow-card, .flow-card:nth-of-type(3n) { transform: none; }
    .security-grid, .contact-grid, .testimonial-shell { grid-template-columns: 1fr; gap: 28px; }
    .security-visual { min-height: 360px; }
    .security-items { grid-template-columns: 1fr; }
    .testimonial-shell { text-align: left; }
    .quote-block { align-items: flex-start; }
    .contact-form { grid-template-columns: 1fr; padding: 20px; }
    .footer-main { grid-template-columns: 1fr; gap: 26px; }
    .footer-brand, .footer-contact { grid-column: auto; }
    .footer-bottom { grid-template-columns: 1fr; gap: 14px; padding: 18px 0; }
    .footer-bottom nav { flex-wrap: wrap; gap: 12px 18px; }
    .footer-bottom > a { justify-self: start; }
    .cookie-card { grid-template-columns: 38px 1fr; }
    .cookie-actions { grid-column: 1 / -1; }
    .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

@media (max-width: 460px) {
    .topbar-link span { max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
    .hero { padding-top: 116px; }
    .eyebrow { font-size: 10px; }
    .hero h1 { font-size: 35px; }
    .kpi-card strong { font-size: 16px; }
    .module-tile { min-height: 76px; }
    .quote-block { display: grid; }
}


/* Vortex ERP v2.1 — Pro premium refinement */
body { background: linear-gradient(180deg, #fcfbfe 0%, #ffffff 34%, #fbf8ff 100%); }
.top-contact-bar { background: linear-gradient(90deg, #2d1144 0%, #6f2be4 48%, #1e102b 100%); }
.topbar-link .icon,
.whatsapp-float .icon { animation: whatsappPulse 2.2s ease-in-out infinite; transform-origin: center; }
@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(255,255,255,.28)); }
}
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 1px solid rgba(37, 211, 102, .28);
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% { opacity: .8; transform: scale(.92); }
    100% { opacity: 0; transform: scale(1.2); }
}
.hero { background: linear-gradient(180deg, #fbf9fe 0%, #ffffff 72%); padding-bottom: 70px; }
.hero-bg-image {
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 42%, rgba(255,255,255,.94) 100%),
        url('../img/vortex-brand-wall.jpg') center 42%/cover no-repeat;
    opacity: .24;
}
.hero h1 { font-size: clamp(30px, 4vw, 35px) !important; font-weight: 500 !important; line-height: 1.06; }
.hero h1 strong { font-weight: 500 !important; }
.workflow-copy h2,
.security-copy h2,
.contact-copy h2,
.cta-block h2 { font-size: clamp(28px, 3.2vw, 35px) !important; font-weight: 500 !important; }
.btn,
.desktop-nav a,
.lang-switch,
.hero-pill strong,
.module-tile strong,
.benefits-grid h3,
.flow-card h3,
.footer-col h3,
.footer-contact h3 { font-weight: 500 !important; }

.hero-metrics-shell {
    margin-top: 22px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(249,244,254,.96) 100%);
    border: 1px solid rgba(140, 27, 242, .10);
    box-shadow: 0 18px 44px rgba(24, 9, 40, .08);
}
.hero-metrics-intro strong { display: block; margin-bottom: 6px; font-size: 16px; font-weight: 500; }
.hero-metrics-intro p { margin: 0; color: var(--vtx-muted); font-size: 13px; }
.hero-metrics { margin-top: 16px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.hero-metrics article { padding: 14px 12px; border-radius: 18px; background: rgba(255,255,255,.86); border: 1px solid rgba(40, 18, 66, .07); }
.hero-metrics strong { display: block; font-size: 22px; font-weight: 500; color: var(--vtx-purple); }
.hero-metrics span { display: block; margin-top: 4px; font-size: 12px; color: var(--vtx-muted); }

.erp-window {
    min-height: 640px;
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(24, 9, 40, .12);
}
.erp-sidebar { background: linear-gradient(180deg, #11091a 0%, #1b0d2b 65%, #130a1d 100%); }
.sidebar-note {
    margin-top: auto;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}
.sidebar-note strong { display: block; font-size: 13px; font-weight: 500; color: #fff; }
.sidebar-note small { display: block; margin-top: 6px; font-size: 12px; color: rgba(255,255,255,.64); }
.erp-screen-top { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.screen-badge {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 27, 242, .08);
    color: var(--vtx-purple);
    font-size: 12px;
    font-weight: 500;
}
.screen-admin small { display: block; font-size: 10px; color: var(--vtx-muted); }
.screen-highlight {
    margin-top: 16px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,240,252,.92));
    border: 1px solid rgba(140, 27, 242, .10);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}
.screen-highlight h3 { margin: 0 0 6px; font-size: 23px; font-weight: 500; }
.screen-highlight p { margin: 0; color: var(--vtx-muted); font-size: 13px; }
.highlight-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.highlight-stats span { min-width: 112px; padding: 10px 12px; border-radius: 16px; background: rgba(255,255,255,.9); border: 1px solid rgba(40, 18, 66, .06); font-size: 11px; color: var(--vtx-muted); }
.highlight-stats b { display: block; margin-bottom: 3px; font-size: 18px; font-weight: 500; color: var(--vtx-purple); }
.analytics-grid { grid-template-columns: 1.3fr .9fr .8fr; grid-auto-rows: minmax(120px, auto); gap: 12px; }
.panel, .cash-card { border-radius: 22px; }
.chart-panel { grid-column: span 2; }
.chart-svg { width: 100%; height: 180px; display: block; }
.chart-grid-lines line { stroke: rgba(40, 18, 66, .08); stroke-width: 1; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--vtx-purple); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.chart-dots circle { fill: #fff; stroke: var(--vtx-purple); stroke-width: 3; }
.chart-labels { display: flex; justify-content: space-between; gap: 8px; margin-top: 8px; font-size: 10px; color: var(--vtx-muted); }
.stock-progress { margin-top: 12px; display: grid; gap: 10px; }
.stock-progress i,
.bar-line span { display: block; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--vtx-purple), #ca82ff); width: var(--w); }
.bars-list { display: grid; gap: 12px; }
.bar-line { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: center; }
.bar-line label { font-size: 11px; color: var(--vtx-muted); }
.activity-item { display: flex; align-items: flex-start; justify-content: flex-start; gap: 10px; margin-top: 10px; }
.activity-item > span { width: 10px; height: 10px; margin-top: 5px; border-radius: 999px; background: var(--vtx-purple); box-shadow: 0 0 0 6px rgba(140, 27, 242, .10); }
.activity-item strong { display: block; font-size: 12px; font-weight: 500; }
.activity-item small { display: block; margin-top: 3px; font-size: 11px; color: var(--vtx-muted); }
.cash-trend { display: inline-flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 16px; background: rgba(255,255,255,.14); }
.cash-trend i { width: 54px; height: 8px; border-radius: 999px; background: linear-gradient(90deg, #fff, rgba(255,255,255,.3)); }
.cash-trend b { font-size: 12px; font-weight: 500; }
.modules-header { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 0; background: transparent; min-height: auto; }
.modules-header .mini-label { flex: 0 0 auto; }
.modules-header p { margin: 0; max-width: 720px; color: var(--vtx-muted); font-size: 14px; text-align: right; }
.module-tile { min-height: 170px; }
.module-tile p { margin: 8px 0 0; color: var(--vtx-muted); font-size: 13px; }
.testimonial-shell { background: linear-gradient(135deg, #2a123f 0%, #5b1ea3 48%, #6c2bdd 100%); }
.site-footer { background: linear-gradient(135deg, #12091c 0%, #231133 52%, #341451 100%); }

@media (max-width: 980px) {
    .hero-metrics,
    .highlight-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .screen-highlight { grid-template-columns: 1fr; }
    .modules-header { display: block; }
    .modules-header p { margin-top: 12px; text-align: left; }
    .erp-screen-top { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .hero-metrics,
    .highlight-stats { grid-template-columns: 1fr; }
    .analytics-grid { grid-template-columns: 1fr; }
    .chart-panel { grid-column: auto; }
}


/* ===== Vortex ERP v2.2 refinement ===== */
.hero.hero-slider {
    padding: 150px 0 38px;
    background: linear-gradient(180deg, #fcfbfe 0%, #ffffff 78%);
}
.hero-slider-shell { position: relative; z-index: 1; }
.hero-slider-stage {
    position: relative;
    min-height: 620px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(24, 9, 40, .14);
    background: #fff;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .65s ease, visibility .65s ease, transform .65s ease;
    transform: scale(1.02);
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 28%, rgba(255,255,255,.15) 72%, rgba(255,255,255,.12) 100%);
}
.hero-slide-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(620px, 58%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
}
.hero-slide-content h1 {
    margin: 18px 0 14px;
    font-size: clamp(28px, 4vw, 35px);
    line-height: 1.08;
    font-weight: 500;
    max-width: 490px;
}
.hero-slide-content p {
    margin: 0 0 24px;
    font-size: 16px;
    max-width: 500px;
    color: var(--vtx-muted);
}
.hero-slide-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.hero-slide-points span {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(140, 27, 242, .10);
    box-shadow: 0 12px 24px rgba(24, 9, 40, .05);
    font-size: 12px;
    color: var(--vtx-ink);
}
.hero-slide-points .icon { color: var(--vtx-purple); font-size: 14px; }
.hero-slider-controls {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    z-index: 3;
}
.hero-dots { display: flex; align-items: center; gap: 10px; }
.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255,255,255,.68);
    box-shadow: 0 0 0 1px rgba(40,18,66,.12) inset;
}
.hero-dot.is-active { width: 34px; border-radius: 999px; background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2)); box-shadow: none; }
.hero-arrow {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: rgba(255,255,255,.82);
    box-shadow: 0 14px 34px rgba(24, 9, 40, .09);
    color: var(--vtx-purple);
    transition: transform .22s ease, background .22s ease;
}
.hero-arrow:hover { transform: translateY(-2px); }
.hero-next .icon { transform: rotate(0deg); }
.hero-prev .icon { transform: rotate(180deg); }
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}
.hero-stat-card {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(40, 18, 66, .08);
    box-shadow: var(--vtx-shadow-soft);
}
.hero-stat-card strong,
.hero-stat-card span { display: block; }
.hero-stat-card strong { font-size: 22px; font-weight: 500; color: var(--vtx-purple); }
.hero-stat-card span { margin-top: 6px; font-size: 13px; color: var(--vtx-muted); }

.transformation-band { padding: 24px 0 0; }
.transformation-shell {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(135deg, #241136 0%, #4e198f 45%, #6b2bdd 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 24px 70px rgba(44, 18, 73, .18);
}
.transformation-copy h2 {
    margin: 16px 0 10px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.transformation-copy p {
    margin: 0 0 18px;
    font-size: 15px;
    color: rgba(255,255,255,.82);
}
.transformation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.transformation-tags span {
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 12px;
}
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.transform-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.transform-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 18px;
}
.transform-card strong,
.transform-card p { display: block; }
.transform-card strong { margin-top: 14px; font-size: 15px; font-weight: 500; }
.transform-card p { margin: 8px 0 0; font-size: 13px; color: rgba(255,255,255,.78); }

.site-footer { margin-top: 28px; padding-top: 26px; }
.footer-highlights {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.footer-highlight-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.footer-highlight-card strong,
.footer-highlight-card span { display: block; }
.footer-highlight-card strong { font-size: 14px; font-weight: 500; color: #fff; }
.footer-highlight-card span { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,.72); }
.footer-main { grid-template-columns: 1.2fr .8fr .8fr .8fr 1fr; }
.footer-brand-note {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.footer-brand-note strong,
.footer-brand-note span { display: block; }
.footer-brand-note strong { font-size: 13px; font-weight: 500; color: #fff; }
.footer-brand-note span { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,.72); }
.footer-demo-card p {
    margin: 8px 0 14px;
    font-size: 12px;
    color: rgba(255,255,255,.74);
}

@media (max-width: 1180px) {
    .hero-slide-content { width: min(640px, 66%); }
    .transformation-shell { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
    .hero-slider-stage { min-height: 600px; }
    .hero-slide-overlay { background: linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.76) 40%, rgba(255,255,255,.18) 100%); }
    .hero-slide-content { width: 100%; max-width: none; padding: 36px 32px 110px; justify-content: flex-start; }
    .hero-stats-grid, .footer-highlights, .transformation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
    .hero.hero-slider { padding-top: 140px; }
    .hero-slider-stage { min-height: 580px; }
    .hero-slide-content { padding: 26px 22px 110px; }
    .hero-slide-content p { font-size: 15px; }
    .hero-slider-controls { left: 18px; right: 18px; bottom: 18px; }
    .hero-stats-grid, .footer-highlights, .transformation-grid { grid-template-columns: 1fr; }
    .hero-arrow { width: 42px; height: 42px; }
}


/* Vortex ERP v2.3 fluid refinements */
.hero-slider-stage { min-height: 640px; }
.hero-slide-overlay { background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.84) 30%, rgba(255,255,255,.26) 72%, rgba(255,255,255,.14) 100%); }
.hero-slide-content { width: min(640px, 60%); padding: 54px; }
.hero-slide-content p { max-width: 520px; line-height: 1.6; }
.hero-slide-points span { min-height: 40px; padding-inline: 15px; }
.hero-stat-card { padding: 20px 22px; }
.transformation-shell { background: linear-gradient(135deg, #241136 0%, #5420a0 46%, #7741ea 100%); }
.transform-card { background: rgba(255,255,255,.09); }
.footer-main { gap: 18px; }
.footer-brand, .footer-contact, .footer-col { background: rgba(255,255,255,.055); }
.footer-demo-card { background: linear-gradient(135deg, rgba(140, 27, 242, .22), rgba(192, 99, 255, .18)); }
@media (max-width: 980px) {
  .hero-slide-content { width: 100%; padding: 34px 30px 105px; }
}
@media (max-width: 760px) {
  .hero-slider-stage { min-height: 560px; }
  .hero-slide-content { padding: 24px 22px 100px; }
  .hero-slide-content h1 { max-width: none; }
}


/* v2.3 micro-refinements */
.hero-slide-content .eyebrow { background: rgba(255,255,255,.88); }
.hero-slide-content { backdrop-filter: blur(1.5px); }
.transformation-shell, .contact-form, .benefits-shell { box-shadow: 0 26px 70px rgba(24,9,40,.10); }
.footer-highlight-card, .footer-brand-note, .footer-demo-card { backdrop-filter: blur(8px); }
.footer-demo-card { border: 1px solid rgba(255,255,255,.10); }


/* ===== v2.4 Premium refinement: modules, workflow, security, footer, legal pages ===== */
strong, b { font-weight: 500; }

.section-head.premium-head {
    display: grid;
    grid-template-columns: .42fr 1fr;
    gap: 26px;
    align-items: start;
    margin-bottom: 26px;
}
.section-head.premium-head h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.section-head.premium-head p {
    margin: 0;
    max-width: 760px;
    color: var(--vtx-muted);
    font-size: 15px;
}

/* Modules */
.modules-premium {
    padding: 34px 0 0;
}
.modules-premium-layout {
    display: grid;
    grid-template-columns: .9fr 1.6fr;
    gap: 18px;
    align-items: stretch;
}
.module-feature-card,
.module-card-premium {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 22px 56px rgba(24,9,40,.08);
    background: rgba(255,255,255,.92);
}
.module-feature-card {
    min-height: 420px;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 78% 20%, rgba(192,99,255,.22), rgba(192,99,255,0) 34%),
        linear-gradient(145deg, #ffffff 0%, #fbf7ff 52%, #f2e7ff 100%);
}
.module-feature-card::before {
    content: "";
    position: absolute;
    inset: 28px 28px auto auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: url('../img/vortex-icon.png') center/72px no-repeat, radial-gradient(circle, rgba(140,27,242,.14), rgba(140,27,242,0) 68%);
    opacity: .75;
}
.feature-orb {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    box-shadow: 0 18px 40px rgba(140,27,242,.22);
    font-size: 24px;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
}
.module-feature-card h3 {
    margin: 26px 0 12px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.module-feature-card p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 15px;
    position: relative;
    z-index: 1;
}
.module-feature-list {
    margin-top: 22px;
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.module-feature-list span {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(140,27,242,.10);
    font-size: 13px;
}
.module-feature-list .icon { color: var(--vtx-purple); }

.module-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.module-card-premium {
    min-height: 118px;
    border-radius: 24px;
    padding: 18px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.module-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(140,27,242,.20);
    box-shadow: 0 26px 64px rgba(24,9,40,.11);
}
.module-card-premium > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--vtx-purple);
    background: linear-gradient(145deg, rgba(140,27,242,.11), rgba(192,99,255,.06));
    font-size: 22px;
}
.module-card-premium strong {
    display: block;
    margin: 2px 0 7px;
    font-size: 15px;
    font-weight: 500;
}
.module-card-premium p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 13px;
    line-height: 1.42;
}

/* Workflow */
.workflow-premium {
    padding: 34px 0 0;
}
.workflow-premium-shell {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 24px;
    align-items: stretch;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 58% 96%, rgba(192,99,255,.22), rgba(192,99,255,0) 36%),
        linear-gradient(145deg, #ffffff 0%, #fbf8ff 100%);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 28px 72px rgba(24,9,40,.08);
}
.workflow-premium-copy h2 {
    margin: 16px 0 12px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.workflow-premium-copy h2 span {
    display: block;
    color: var(--vtx-purple);
}
.workflow-premium-copy p {
    margin: 0 0 18px;
    color: var(--vtx-muted);
    font-size: 15px;
}
.workflow-summary {
    display: grid;
    gap: 10px;
    margin: 20px 0 22px;
}
.workflow-summary span {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    background: rgba(140,27,242,.06);
    color: var(--vtx-ink);
    font-size: 13px;
}
.workflow-summary b {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    font-size: 12px;
}
.workflow-track {
    position: relative;
    display: grid;
    gap: 12px;
}
.workflow-track::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 38px;
    bottom: 38px;
    width: 2px;
    background: linear-gradient(180deg, rgba(140,27,242,.14), rgba(140,27,242,.38), rgba(140,27,242,.12));
}
.workflow-step-card {
    position: relative;
    min-height: 92px;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 18px 44px rgba(24,9,40,.06);
}
.workflow-step-number {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    box-shadow: 0 16px 34px rgba(140,27,242,.20);
    font-size: 14px;
    font-weight: 500;
}
.workflow-step-content h3 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 500;
}
.workflow-step-content p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 13px;
}
.workflow-step-card strong {
    min-height: 38px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(21,160,92,.10);
    color: #15965a;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* Security */
.security-premium {
    padding: 34px 0 0;
}
.security-premium-shell {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 28px;
    align-items: stretch;
}
.security-console {
    position: relative;
    min-height: 470px;
    border-radius: 34px;
    overflow: hidden;
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 48%, rgba(140,27,242,.42), rgba(140,27,242,0) 34%),
        linear-gradient(145deg, #0d0617 0%, #160921 55%, #0d0617 100%);
    box-shadow: 0 30px 80px rgba(18,6,30,.22);
}
.security-console::before {
    content: "";
    position: absolute;
    inset: 68px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.09);
}
.security-console-top,
.security-console-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.security-console-top span {
    color: rgba(255,255,255,.62);
    font-size: 12px;
}
.security-console-top strong {
    font-size: 14px;
    font-weight: 500;
}
.security-core {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 210px;
    height: 210px;
    display: grid;
    place-items: center;
}
.security-core img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    animation: spinSoft 7s linear infinite;
}
.security-ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
}
.ring-a { animation: pulseRing 2.6s ease-out infinite; }
.ring-b { inset: 38px; opacity: .7; }
.security-floating-card {
    position: absolute;
    z-index: 2;
    min-width: 150px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 42px rgba(0,0,0,.12);
}
.security-floating-card strong {
    display: block;
    font-size: 25px;
    line-height: 1;
    font-weight: 500;
}
.security-floating-card span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.72);
}
.card-availability { top: 84px; left: 34px; }
.card-permissions { top: 124px; right: 34px; }
.card-logs { left: 70px; bottom: 84px; }
.security-console-footer {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}
.security-console-footer span {
    min-height: 38px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.78);
    font-size: 12px;
}
.security-premium-copy {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 26px 70px rgba(24,9,40,.08);
}
.security-premium-copy h2 {
    margin: 18px 0 12px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.security-premium-copy > p {
    margin: 0 0 22px;
    color: var(--vtx-muted);
    font-size: 15px;
}
.premium-security-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.premium-security-items span {
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(140,27,242,.07), rgba(192,99,255,.04));
}
.security-note {
    margin-top: 18px;
    padding: 20px;
    border-radius: 22px;
    background: #fbf7ff;
    border: 1px solid rgba(140,27,242,.10);
}
.security-note strong {
    display: block;
    font-size: 15px;
    font-weight: 500;
}
.security-note p {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--vtx-muted);
}

/* Footer */
.footer-premium {
    margin-top: 34px;
    padding: 34px 0 18px;
}
.footer-premium-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .92fr 1.38fr;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 22px;
}
.footer-top-copy {
    min-height: 160px;
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.09);
}
.footer-top-copy span {
    color: #e5caff;
    font-size: 12px;
}
.footer-top-copy h2 {
    margin: 12px 0 0;
    font-size: clamp(26px, 3vw, 35px);
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
}
.premium-footer-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}
.footer-premium-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr .75fr .85fr .72fr 1.08fr;
    gap: 14px;
}
.footer-premium-main > div {
    min-height: 288px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 22px;
}
.footer-brand-premium p {
    font-size: 14px;
    line-height: 1.65;
}
.footer-contact-premium .footer-demo-card {
    background: linear-gradient(135deg, rgba(140,27,242,.36), rgba(192,99,255,.20));
    border-color: rgba(255,255,255,.12);
}
.footer-bottom {
    border-top-color: rgba(255,255,255,.10);
}

/* Legal pages */
.legal-page {
    padding: 152px 0 36px;
    background:
        radial-gradient(circle at 82% 4%, rgba(192,99,255,.16), rgba(192,99,255,0) 28%),
        linear-gradient(180deg, #fbf9fe 0%, #fff 100%);
}
.legal-hero {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 26px 70px rgba(24,9,40,.08);
}
.legal-hero h1 {
    margin: 16px 0 12px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.legal-hero p {
    margin: 0;
    max-width: 840px;
    color: var(--vtx-muted);
    font-size: 15px;
}
.legal-layout {
    display: grid;
    grid-template-columns: .34fr 1fr;
    gap: 22px;
    margin-top: 22px;
}
.legal-side-card,
.legal-content-card {
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 20px 54px rgba(24,9,40,.07);
}
.legal-side-card {
    padding: 22px;
    height: max-content;
    position: sticky;
    top: 116px;
}
.legal-side-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}
.legal-side-card a {
    display: block;
    padding: 10px 0;
    color: var(--vtx-muted);
    font-size: 13px;
    border-top: 1px solid rgba(40,18,66,.06);
}
.legal-content-card {
    padding: 30px;
}
.legal-content-card section + section {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(40,18,66,.08);
}
.legal-content-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 500;
}
.legal-content-card p,
.legal-content-card li {
    color: var(--vtx-muted);
    font-size: 14px;
    line-height: 1.7;
}
.legal-content-card ul {
    padding-left: 20px;
    margin: 10px 0 0;
}
.legal-footer-mini {
    padding: 26px 0;
    background: #13091d;
    color: rgba(255,255,255,.72);
}
.legal-footer-mini .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 12px;
}
.legal-footer-mini nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1180px) {
    .section-head.premium-head,
    .modules-premium-layout,
    .workflow-premium-shell,
    .security-premium-shell,
    .footer-premium-top,
    .footer-premium-main,
    .legal-layout {
        grid-template-columns: 1fr;
    }
    .footer-premium-main > div { min-height: auto; }
}
@media (max-width: 980px) {
    .module-grid-premium,
    .premium-security-items,
    .premium-footer-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .workflow-step-card {
        grid-template-columns: 54px 1fr;
    }
    .workflow-step-card strong {
        grid-column: 2;
        justify-self: start;
    }
}
@media (max-width: 760px) {
    .section-head.premium-head,
    .modules-premium-layout,
    .module-grid-premium,
    .workflow-premium-shell,
    .security-premium-shell,
    .premium-security-items,
    .premium-footer-highlights {
        grid-template-columns: 1fr;
    }
    .workflow-premium-shell,
    .security-premium-copy,
    .legal-hero,
    .legal-content-card {
        padding: 22px;
    }
    .module-feature-card { min-height: 360px; }
    .security-console { min-height: 430px; }
    .security-floating-card { min-width: 126px; }
    .card-permissions { right: 20px; }
    .card-availability { left: 20px; }
    .card-logs { left: 40px; }
    .legal-side-card { position: relative; top: auto; }
    .legal-footer-mini .container { flex-direction: column; align-items: flex-start; }
}


/* ===== v2.5 requested refinements ===== */

/* Módulos principais: voltar ao inline premium */
.modules-inline-premium {
    padding: 30px 0 0;
}
.modules-inline-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 18px;
}
.modules-context-card {
    min-height: 58px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: end;
    max-width: 820px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(140, 27, 242, .08), rgba(192, 99, 255, .04));
    border: 1px solid rgba(140, 27, 242, .12);
    box-shadow: 0 16px 38px rgba(24, 9, 40, .06);
}
.modules-context-card > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    color: var(--vtx-purple);
    background: rgba(140, 27, 242, .10);
}
.modules-context-card p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 13px;
    line-height: 1.45;
}
.modules-row-inline {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
}
.modules-row-inline .module-tile {
    min-height: 154px;
    padding: 16px 10px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 16px 36px rgba(24, 9, 40, .055);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.modules-row-inline .module-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 27, 242, .18);
    box-shadow: 0 22px 48px rgba(24, 9, 40, .09);
}
.modules-row-inline .module-tile > span {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    border-radius: 14px;
    font-size: 19px;
}
.modules-row-inline .module-tile strong {
    margin-top: 0;
    font-size: 13px;
    font-weight: 500;
}
.modules-row-inline .module-tile p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.22;
}

/* Abordagem orientada ao crescimento: label em branco */
.transformation-shell .section-label {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
}
.transformation-shell .section-label::selection,
.transformation-shell .section-label * {
    color: #fff;
}

/* Footer mais compacto e com o mesmo background da secção de crescimento */
.footer-premium {
    margin-top: 28px;
    padding: 24px 0 14px;
    background: linear-gradient(135deg, #241136 0%, #4e198f 45%, #6b2bdd 100%) !important;
}
.footer-premium .footer-glow {
    opacity: .55;
}
.footer-premium-top {
    grid-template-columns: .78fr 1.22fr;
    gap: 14px;
    margin-bottom: 14px;
}
.footer-top-copy {
    min-height: auto;
    padding: 18px 20px;
    border-radius: 22px;
}
.footer-top-copy h2 {
    margin-top: 8px;
    font-size: clamp(20px, 2.1vw, 26px);
    line-height: 1.12;
}
.premium-footer-highlights {
    gap: 10px;
}
.footer-highlight-card {
    padding: 14px 16px;
    border-radius: 18px;
}
.footer-highlight-card strong {
    font-size: 13px;
}
.footer-highlight-card span {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.38;
}
.footer-premium-main {
    grid-template-columns: 1.15fr .7fr .82fr .62fr 1fr;
    gap: 10px;
}
.footer-premium-main > div {
    min-height: auto;
    padding: 17px;
    border-radius: 20px;
}
.footer-brand-premium p {
    margin: 12px 0;
    font-size: 13px;
    line-height: 1.55;
}
.footer-brand-note {
    margin-top: 12px;
    padding: 13px;
    border-radius: 16px;
}
.footer-brand-note strong {
    font-size: 12px;
}
.footer-brand-note span {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.38;
}
.footer-col h3,
.footer-contact h3 {
    margin-bottom: 10px;
    font-size: 12px;
}
.footer-col a,
.footer-contact a,
.footer-contact span {
    margin-top: 8px;
    font-size: 12px;
}
.footer-contact-premium .footer-demo-card {
    margin-top: 12px;
    padding: 13px;
    border-radius: 16px;
}
.footer-demo-card strong {
    margin-bottom: 8px;
    font-size: 13px;
}
.footer-demo-card p {
    margin: 6px 0 12px;
    font-size: 11px;
    line-height: 1.4;
}
.footer-bottom {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 11px;
}

@media (max-width: 1180px) {
    .modules-row-inline {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .footer-premium-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 980px) {
    .modules-inline-head {
        grid-template-columns: 1fr;
    }
    .modules-context-card {
        justify-self: stretch;
        max-width: none;
    }
    .modules-row-inline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .modules-row-inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-premium-top,
    .footer-premium-main {
        grid-template-columns: 1fr;
    }
}
:root {
    --vtx-black: #090511;
    --vtx-deep: #13051f;
    --vtx-night: #1a0829;
    --vtx-ink: #15101f;
    --vtx-muted: #6f667e;
    --vtx-purple: #8917f2;
    --vtx-purple-2: #b736ff;
    --vtx-lilac: #d66dff;
    --vtx-soft: #f8f4fb;
    --vtx-soft-2: #f0e8f7;
    --vtx-white: #fff;
    --vtx-border: rgba(34, 14, 48, .10);
    --vtx-border-strong: rgba(137, 23, 242, .18);
    --shadow-soft: 0 20px 70px rgba(22, 7, 35, .10);
    --shadow-card: 0 18px 44px rgba(22, 7, 35, .08);
    --shadow-purple: 0 22px 52px rgba(137, 23, 242, .24);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1260px;
    --topbar-h: 34px;
    --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--vtx-ink);
    background: #fff;
    overflow-x: hidden;
    font-size: 15px;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
main section[id] { scroll-margin-top: 130px; }

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

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex: 0 0 auto;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, #2b0a42 0%, #090511 72%);
    transition: opacity .45s ease, visibility .45s ease;
}
.site-preloader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 0 70px rgba(184, 54, 255, .45);
}
.loader-mark img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    animation: spinSoft 1.3s linear infinite;
}
@keyframes spinSoft { to { transform: rotate(360deg); } }

.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: var(--topbar-h);
    color: rgba(255,255,255,.92);
    background: linear-gradient(90deg, #2a073f 0%, #7c14e7 48%, #0d0614 100%);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: transform .28s ease;
}
.top-contact-bar.is-hidden { transform: translateY(-100%); }
.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    font-weight: 500;
}
.topbar-link, .topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.topbar-link .icon { font-size: 16px; }
.topbar-phone .icon { font-size: 13px; color: var(--vtx-lilac); }
.topbar-note {
    margin-left: auto;
    opacity: .9;
    white-space: nowrap;
}
.topbar-close {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: #fff;
    opacity: .72;
    cursor: pointer;
    font-size: 19px;
    display: grid;
    place-items: center;
}

.main-header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: top .28s ease, padding .28s ease, background .28s ease;
}
.topbar-closed .main-header { top: 0; }
.main-header.scrolled { padding: 8px 0; }
.nav-shell {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 10px 0 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 20px 60px rgba(25, 6, 38, .08);
    backdrop-filter: blur(22px);
}
.main-header.scrolled .nav-shell {
    background: rgba(255,255,255,.94);
    border-color: rgba(34, 14, 48, .08);
    box-shadow: 0 18px 55px rgba(25, 6, 38, .12);
}
.brand {
    display: inline-flex;
    align-items: center;
    min-width: 185px;
}
.brand img { width: 174px; height: auto; }
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
}
.desktop-nav a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(21, 16, 31, .74);
    padding: 11px 12px;
    border-radius: 999px;
    transition: color .22s ease, background .22s ease, transform .22s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--vtx-purple);
    background: rgba(137, 23, 242, .08);
    transform: translateY(-1px);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang-switch {
    width: 44px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(34, 14, 48, .12);
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--vtx-purple);
    background: rgba(255,255,255,.65);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.btn::after {
    content: "";
    position: absolute;
    top: -90%;
    bottom: -90%;
    left: -46%;
    width: 32%;
    transform: rotate(24deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
    transition: left .65s ease;
    z-index: -1;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { left: 118%; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 13px; }
.btn-lg { min-height: 54px; padding: 0 24px; font-size: 14px; }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    box-shadow: var(--shadow-purple);
}
.btn-outline {
    color: var(--vtx-ink);
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(34, 14, 48, .16);
}
.btn-outline:hover { border-color: rgba(137, 23, 242, .32); color: var(--vtx-purple); }
.btn-soft {
    color: var(--vtx-ink);
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(34, 14, 48, .10);
    box-shadow: 0 16px 36px rgba(22, 7, 35, .08);
}
.nav-login { padding-inline: 20px; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(137, 23, 242, .10);
    place-items: center;
    cursor: pointer;
}
.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--vtx-purple);
    display: block;
    border-radius: 8px;
    margin: 3px 0;
    transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.mobile-panel {
    display: none;
    width: min(var(--container), calc(100% - 48px));
    margin: 10px auto 0;
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    transform-origin: top;
}
.mobile-panel a:not(.btn):not(.lang-switch) {
    display: block;
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--vtx-ink);
    font-weight: 500;
}
.mobile-panel a:hover { background: rgba(137, 23, 242, .08); }
.mobile-actions { display: flex; gap: 10px; padding-top: 10px; }
.mobile-cta { flex: 1; color: #fff !important; }

.hero {
    min-height: 760px;
    padding: 158px 0 58px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fbf9fd 0%, #fff 76%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 86%);
    pointer-events: none;
}
.hero-bg-image {
    position: absolute;
    inset: 88px 0 auto;
    height: 620px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.72) 42%, rgba(255,255,255,.92) 100%),
        url('../img/vortex-brand-wall.jpg') center 42%/cover no-repeat;
    opacity: .20;
    filter: saturate(.65) blur(.2px);
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(2px);
}
.hero-glow-a {
    width: 430px;
    height: 430px;
    left: -170px;
    top: 140px;
    background: radial-gradient(circle, rgba(184,54,255,.20), transparent 68%);
}
.hero-glow-b {
    width: 520px;
    height: 520px;
    right: -190px;
    top: 80px;
    background: radial-gradient(circle, rgba(137,23,242,.16), transparent 70%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(620px, 1.18fr);
    gap: 56px;
    align-items: center;
}
.hero-copy { max-width: 560px; }
.eyebrow, .section-label, .mini-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vtx-purple);
    text-transform: uppercase;
    
    font-size: 12px;
    font-weight: 500;
}
.eyebrow {
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(137,23,242,.20);
    box-shadow: 0 14px 34px rgba(22,7,35,.06);
}
.eyebrow span {
    width: 18px;
    height: 2px;
    border-radius: 8px;
    background: var(--vtx-purple);
}
.hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(35px, 5vw, 35px);
    line-height: .99;
    
    color: var(--vtx-black);
    font-weight: 500;
}
.hero h1 strong {
    display: block;
    font-weight: 500;
    color: transparent;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2), var(--vtx-lilac));
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-copy > p {
    max-width: 500px;
    color: var(--vtx-muted);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 24px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.hero-actions .icon { font-size: 18px; }
.hero-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.hero-pill {
    min-height: 78px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: 0 16px 32px rgba(22,7,35,.05);
}
.hero-pill > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--vtx-purple);
    background: rgba(137,23,242,.09);
    flex: 0 0 auto;
}
.hero-pill strong {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--vtx-ink);
    line-height: 1.2;
}
.hero-pill small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--vtx-muted);
}

.hero-visual {
    min-width: 0;
    perspective: 1200px;
}
.erp-window {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 560px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(34,14,48,.10);
    box-shadow: 0 30px 100px rgba(22,7,35,.16);
    transform: rotateY(-3deg) rotateX(1deg);
}
.erp-sidebar {
    padding: 22px 14px;
    color: rgba(255,255,255,.74);
    background: linear-gradient(180deg, #11081c 0%, #07040c 100%);
}
.erp-sidebar img {
    width: 132px;
    height: auto;
    margin: 0 0 24px 6px;
}
.erp-sidebar nav {
    display: grid;
    gap: 6px;
}
.erp-sidebar span {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}
.erp-sidebar span .icon { font-size: 15px; opacity: .86; }
.erp-sidebar span.active {
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    box-shadow: 0 12px 34px rgba(137,23,242,.35);
}
.erp-screen {
    padding: 20px;
    background: linear-gradient(180deg, #fff 0%, #fbf9fd 100%);
}
.erp-screen-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.screen-search {
    width: 210px;
    height: 34px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.08);
    color: #a39aae;
    font-size: 11px;
    display: flex;
    align-items: center;
    padding: 0 14px;
}
.screen-admin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vtx-ink);
    font-size: 11px;
}
.screen-admin span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-lilac));
}
.erp-screen h3 {
    margin: 0 0 14px;
    font-size: 15px;
    color: var(--vtx-ink);
}
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}
.kpi-card {
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.07);
    box-shadow: 0 12px 26px rgba(22,7,35,.05);
}
.kpi-card span {
    display: block;
    color: var(--vtx-muted);
    font-size: 10px;
    font-weight: 500;
}
.kpi-card strong {
    display: block;
    margin: 6px 0 4px;
    font-size: 19px;
    
}
.kpi-card small {
    color: #19a566;
    font-size: 10px;
    font-weight: 500;
}
.kpi-card:nth-child(2) small { color: #e64c5e; }
.analytics-grid {
    display: grid;
    grid-template-columns: 1.55fr .95fr .95fr;
    gap: 12px;
}
.panel, .cash-card {
    min-height: 116px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.07);
    box-shadow: 0 12px 28px rgba(22,7,35,.05);
}
.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}
.panel-head strong { font-size: 12px; color: var(--vtx-ink); }
.panel-head small { font-size: 10px; color: var(--vtx-purple); font-weight: 500; }
.chart-panel { grid-column: span 2; }
.line-chart {
    height: 120px;
    position: relative;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(137,23,242,.08), rgba(137,23,242,0)),
        repeating-linear-gradient(to right, transparent 0 19%, rgba(34,14,48,.045) 19% 19.2%, transparent 19.2% 20%),
        repeating-linear-gradient(to bottom, transparent 0 32%, rgba(34,14,48,.04) 32% 32.5%, transparent 32.5% 33%);
    overflow: hidden;
}
.line-chart::before {
    content: "";
    position: absolute;
    left: 5%; right: 5%; top: 24%; bottom: 18%;
    background: linear-gradient(145deg, transparent 0 18%, var(--vtx-purple) 18.2% 18.8%, transparent 19%, transparent 35%, var(--vtx-purple) 35.2% 35.8%, transparent 36%, transparent 50%, var(--vtx-purple) 50.2% 50.8%, transparent 51%, transparent 67%, var(--vtx-purple) 67.2% 67.8%, transparent 68%);
    transform: skewY(-11deg);
    opacity: .9;
}
.line-chart i {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--vtx-purple);
    box-shadow: 0 0 0 5px rgba(137,23,242,.12);
}
.line-chart i:nth-child(1) { left: 8%; top: 63%; }
.line-chart i:nth-child(2) { left: 25%; top: 48%; }
.line-chart i:nth-child(3) { left: 42%; top: 54%; }
.line-chart i:nth-child(4) { left: 63%; top: 35%; }
.line-chart i:nth-child(5) { left: 78%; top: 42%; }
.line-chart i:nth-child(6) { left: 91%; top: 25%; }
.donut {
    width: 92px;
    height: 92px;
    margin: 6px auto 8px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--vtx-purple) 0 60%, var(--vtx-lilac) 60% 82%, #ead7f8 82% 100%);
    position: relative;
}
.donut::after {
    content: "";
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #fff;
}
.donut span { position: relative; z-index: 1; font-size: 12px; font-weight: 500; }
.donut-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; font-size: 10px; color: var(--vtx-muted); }
.invoice-panel p {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 6px;
    align-items: center;
    margin: 8px 0;
    font-size: 10px;
}
.invoice-panel b { color: var(--vtx-ink); }
.invoice-panel em {
    font-style: normal;
    color: #19a566;
    background: rgba(25,165,102,.08);
    padding: 4px 6px;
    border-radius: 999px;
    font-weight: 500;
}
.invoice-panel em.pending { color: #d48b00; background: rgba(212,139,0,.10); }
.stock-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 11px;
    border-bottom: 1px solid rgba(34,14,48,.06);
}
.stock-row.danger b { color: #e64c5e; }
.bars-panel { display: grid; align-content: center; gap: 14px; }
.bar-line {
    height: 9px;
    border-radius: 999px;
    background: rgba(137,23,242,.10);
    overflow: hidden;
}
.bar-line span {
    display: block;
    width: var(--w);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--vtx-lilac), var(--vtx-purple));
}
.cash-card {
    color: #fff;
    background: linear-gradient(145deg, var(--vtx-purple), #4d0a86);
    box-shadow: var(--shadow-purple);
}
.cash-card span, .cash-card small { display: block; opacity: .86; font-size: 11px; }
.cash-card strong { display: block; margin: 10px 0 16px; font-size: 24px;  }

.modules-strip {
    position: relative;
    z-index: 2;
    padding: 16px 0 28px;
    background: #fff;
}
.mini-label {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    text-align: center;
}
.modules-row {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
}
.module-tile {
    min-height: 82px;
    padding: 13px 8px;
    border-radius: 16px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: 0 14px 30px rgba(22,7,35,.045);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 9px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.module-tile:hover { transform: translateY(-4px); border-color: rgba(137,23,242,.25); box-shadow: 0 18px 44px rgba(137,23,242,.12); }
.module-tile span {
    color: var(--vtx-purple);
    font-size: 24px;
}
.module-tile strong {
    font-size: 12px;
    text-align: center;
    color: var(--vtx-ink);
}

.benefits-band {
    padding: 22px 0;
    background: linear-gradient(180deg, #fff, #fbf9fd);
}
.benefits-shell {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(34,14,48,.08);
    background: rgba(255,255,255,.82);
    box-shadow: 0 16px 42px rgba(22,7,35,.05);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 14px;
}
.benefits-grid article {
    display: flex;
    gap: 12px;
    padding: 4px 18px;
    border-left: 1px solid rgba(34,14,48,.08);
}
.benefits-grid article:first-child { border-left: 0; }
.benefits-grid article > span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--vtx-purple);
    background: rgba(137,23,242,.08);
    flex: 0 0 auto;
}
.benefits-grid h3 {
    margin: 0 0 4px;
    font-size: 13px;
}
.benefits-grid p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 12px;
    line-height: 1.45;
}

.workflow-section {
    padding: 58px 0 76px;
    background:
        radial-gradient(circle at 15% 100%, rgba(137,23,242,.10), transparent 32%),
        linear-gradient(180deg, #fbf9fd, #fff);
}
.workflow-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 42px;
    align-items: center;
    padding: 36px;
    border-radius: 30px;
    border: 1px solid rgba(34,14,48,.08);
    background: rgba(255,255,255,.70);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
}
.workflow-shell::before {
    content: "";
    position: absolute;
    inset: auto -80px -100px 220px;
    height: 240px;
    background: radial-gradient(circle, rgba(184,54,255,.20), transparent 70%);
}
.workflow-copy, .workflow-cards { position: relative; z-index: 1; }
.workflow-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.06;
    color: var(--vtx-purple);
    
    font-weight: 500;
}
.workflow-copy h2 span { display: block; }
.workflow-copy p {
    margin: 0 0 22px;
    color: var(--vtx-muted);
    line-height: 1.6;
}
.workflow-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 22px;
    align-items: center;
}
.flow-card {
    min-height: 154px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: 0 18px 40px rgba(22,7,35,.07);
    transform: rotate(-2deg);
}
.flow-card:nth-of-type(3n) { transform: rotate(2deg); }
.flow-card small {
    color: var(--vtx-purple);
    font-weight: 500;
    font-size: 11px;
}
.flow-card h3 { margin: 10px 0 6px; font-size: 15px; }
.flow-card p { margin: 0 0 14px; color: var(--vtx-muted); font-size: 12px; line-height: 1.4; }
.flow-card strong { color: #18a260; font-size: 13px; }
.flow-arrow {
    position: relative;
    margin-left: -18px;
    margin-right: -18px;
    color: var(--vtx-purple);
    font-size: 28px;
    justify-self: center;
    display: none;
}

.security-section {
    padding: 74px 0;
    background: #fff;
}
.security-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}
.security-visual {
    min-height: 430px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(184,54,255,.26), transparent 36%),
        linear-gradient(145deg, #12051f, #090511);
    box-shadow: 0 30px 90px rgba(22,7,35,.18);
}
.security-orbit {
    width: 180px;
    height: 180px;
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    box-shadow: inset 0 0 40px rgba(255,255,255,.04), 0 0 70px rgba(137,23,242,.38);
}
.security-orbit img { width: 96px; height: 96px; object-fit: contain; animation: spinSoft 10s linear infinite; }
.security-card {
    position: absolute;
    min-width: 150px;
    padding: 16px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
}
.security-card strong { display: block; font-size: 26px;  }
.security-card span { color: rgba(255,255,255,.68); font-size: 12px; }
.security-card.one { left: 28px; top: 40px; }
.security-card.two { right: 34px; top: 92px; }
.security-card.three { left: 74px; bottom: 50px; }
.section-label { margin-bottom: 16px; }
.security-copy h2,
.contact-copy h2,
.cta-block h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 35px);
    line-height: 1.04;
    
    font-weight: 500;
    color: var(--vtx-black);
}
.security-copy p,
.contact-copy p,
.cta-block p {
    margin: 0;
    max-width: 560px;
    color: var(--vtx-muted);
    line-height: 1.72;
    font-size: 16px;
}
.security-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}
.security-items span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--vtx-soft);
    color: var(--vtx-ink);
    font-weight: 500;
    font-size: 13px;
}
.security-items .icon { color: var(--vtx-purple); font-size: 18px; }

.testimonial-cta {
    padding: 38px 0;
    background: linear-gradient(135deg, #0b0412, #230937 54%, #0b0412);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.testimonial-cta::before {
    content: "";
    position: absolute;
    inset: -100px -10% auto;
    height: 220px;
    background: radial-gradient(circle, rgba(184,54,255,.28), transparent 70%);
    opacity: .8;
}
.testimonial-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    align-items: center;
}
.quote-block {
    display: flex;
    gap: 18px;
    align-items: center;
}
.avatar {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-lilac));
    box-shadow: 0 18px 44px rgba(137,23,242,.28);
}
.quote-block p { margin: 0 0 10px; color: rgba(255,255,255,.88); line-height: 1.6; font-size: 15px; }
.quote-block strong { display: block; font-size: 14px; }
.quote-block span { display: block; color: rgba(255,255,255,.62); font-size: 12px; margin-top: 4px; }
.cta-block {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(16px);
}
.cta-block h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); }
.cta-block p { color: rgba(255,255,255,.68); margin-bottom: 22px; }

.contact-section {
    padding: 84px 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(137,23,242,.10), transparent 35%),
        linear-gradient(180deg, #fff, #fbf9fd);
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
    max-width: 520px;
}
.contact-cards article {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: 0 14px 30px rgba(22,7,35,.05);
}
.contact-cards .icon {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    padding: 11px;
    color: var(--vtx-purple);
    border-radius: 15px;
    background: rgba(137,23,242,.08);
}
.contact-cards strong { font-size: 14px; }
.contact-cards span { color: var(--vtx-muted); font-size: 13px; }
.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,.90);
    border: 1px solid rgba(34,14,48,.08);
    box-shadow: var(--shadow-soft);
}
.contact-form label { display: grid; gap: 8px; }
.contact-form label.full, .contact-form .full { grid-column: 1 / -1; }
.contact-form label span {
    color: var(--vtx-ink);
    font-size: 12px;
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(34,14,48,.10);
    border-radius: 15px;
    background: #fff;
    min-height: 52px;
    padding: 0 15px;
    color: var(--vtx-ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { padding: 14px 15px; resize: vertical; min-height: 128px; }
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(137,23,242,.36);
    box-shadow: 0 0 0 4px rgba(137,23,242,.08);
}
.contact-form [aria-invalid="true"] { border-color: #e64c5e; }
.form-note {
    grid-column: 1 / -1;
    min-height: 18px;
    margin: -4px 0 0;
    color: var(--vtx-purple);
    font-size: 13px;
    font-weight: 500;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,.82);
    background:
        radial-gradient(circle at 78% 8%, rgba(184,54,255,.22), transparent 26%),
        linear-gradient(180deg, #15071f 0%, #08040d 100%);
}
.footer-glow {
    position: absolute;
    inset: auto -20% -180px;
    height: 360px;
    background: radial-gradient(circle, rgba(137,23,242,.22), transparent 70%);
    pointer-events: none;
}
.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.8fr repeat(4, .86fr) 1.45fr;
    gap: 34px;
    padding: 58px 0 42px;
}
.footer-brand img { width: 185px; height: auto; margin-bottom: 20px; }
.footer-brand p {
    margin: 0 0 22px;
    max-width: 320px;
    color: rgba(255,255,255,.64);
    line-height: 1.65;
}
.socials { display: flex; gap: 10px; }
.socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.footer-col h3,
.footer-contact h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    
}
.footer-col a,
.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    margin: 0 0 10px;
    transition: color .2s ease;
}
.footer-col a:hover,
.footer-contact a:hover { color: #fff; }
.footer-contact .icon { color: var(--vtx-lilac); font-size: 17px; }
.footer-demo-card {
    margin-top: 20px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.055);
}
.footer-demo-card strong { display: block; color: #fff; font-size: 14px; line-height: 1.35; margin-bottom: 14px; }
.footer-bottom {
    position: relative;
    z-index: 1;
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.52);
    font-size: 12px;
}
.footer-bottom nav {
    display: flex;
    gap: 22px;
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom > a { justify-self: end; }

.cookie-modal {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .25s ease, transform .25s ease;
}
.cookie-modal.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-card {
    width: min(760px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(34,14,48,.10);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}
.cookie-card h3 { margin: 0 0 4px; font-size: 15px; }
.cookie-card p { margin: 0; color: var(--vtx-muted); font-size: 13px; }
.cookie-actions { display: flex; gap: 10px; }
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #1bc760, #0d9f4b);
    box-shadow: 0 18px 42px rgba(13,159,75,.28);
    transition: transform .25s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); }
.whatsapp-float .icon { font-size: 28px; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1180px) {
    .desktop-nav { display: none; }
    .nav-login { display: none; }
    .menu-toggle { display: grid; }
    .mobile-panel.is-open { display: block; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-copy { max-width: 760px; }
    .erp-window { transform: none; }
    .modules-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .benefits-grid article { border-left: 0; border-top: 1px solid rgba(34,14,48,.08); padding: 16px; }
    .benefits-grid article:first-child { border-top: 0; }
    .workflow-shell { grid-template-columns: 1fr; }
    .workflow-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-main { grid-template-columns: repeat(3, 1fr); }
    .footer-brand, .footer-contact { grid-column: span 3; }
}

@media (max-width: 820px) {
    :root { --topbar-h: 38px; }
    .container { width: min(100% - 28px, var(--container)); }
    .topbar-inner { gap: 10px; font-size: 11px; }
    .topbar-phone, .topbar-note { display: none; }
    .main-header { padding: 8px 0; }
    .nav-shell { height: 60px; padding-left: 16px; }
    .brand { min-width: 150px; }
    .brand img { width: 148px; }
    .nav-actions .btn-primary, .nav-actions .lang-switch { display: none; }
    .mobile-panel { width: min(100% - 28px, var(--container)); }
    .hero { min-height: auto; padding: 124px 0 42px; }
    .hero h1 { font-size: clamp(35px, 12vw, 35px);  }
    .hero-copy > p { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-pills { grid-template-columns: 1fr; }
    .erp-window { grid-template-columns: 1fr; min-height: auto; border-radius: 24px; }
    .erp-sidebar { display: none; }
    .erp-screen { padding: 14px; }
    .erp-screen-top { justify-content: space-between; }
    .screen-search { width: 160px; }
    .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .analytics-grid { grid-template-columns: 1fr; }
    .chart-panel { grid-column: span 1; }
    .modules-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .benefits-grid { grid-template-columns: 1fr; }
    .workflow-section, .security-section, .contact-section { padding: 56px 0; }
    .workflow-shell { padding: 22px; }
    .workflow-cards { grid-template-columns: 1fr; gap: 14px; }
    .flow-card, .flow-card:nth-of-type(3n) { transform: none; }
    .security-grid, .contact-grid, .testimonial-shell { grid-template-columns: 1fr; gap: 28px; }
    .security-visual { min-height: 360px; }
    .security-items { grid-template-columns: 1fr; }
    .testimonial-shell { text-align: left; }
    .quote-block { align-items: flex-start; }
    .contact-form { grid-template-columns: 1fr; padding: 20px; }
    .footer-main { grid-template-columns: 1fr; gap: 26px; }
    .footer-brand, .footer-contact { grid-column: auto; }
    .footer-bottom { grid-template-columns: 1fr; gap: 14px; padding: 18px 0; }
    .footer-bottom nav { flex-wrap: wrap; gap: 12px 18px; }
    .footer-bottom > a { justify-self: start; }
    .cookie-card { grid-template-columns: 38px 1fr; }
    .cookie-actions { grid-column: 1 / -1; }
    .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

@media (max-width: 460px) {
    .topbar-link span { max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
    .hero { padding-top: 116px; }
    .eyebrow { font-size: 10px; }
    .hero h1 { font-size: 35px; }
    .kpi-card strong { font-size: 16px; }
    .module-tile { min-height: 76px; }
    .quote-block { display: grid; }
}


/* Vortex ERP v2.1 — Pro premium refinement */
body { background: linear-gradient(180deg, #fcfbfe 0%, #ffffff 34%, #fbf8ff 100%); }
.top-contact-bar { background: linear-gradient(90deg, #2d1144 0%, #6f2be4 48%, #1e102b 100%); }
.topbar-link .icon,
.whatsapp-float .icon { animation: whatsappPulse 2.2s ease-in-out infinite; transform-origin: center; }
@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(255,255,255,.28)); }
}
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 1px solid rgba(37, 211, 102, .28);
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% { opacity: .8; transform: scale(.92); }
    100% { opacity: 0; transform: scale(1.2); }
}
.hero { background: linear-gradient(180deg, #fbf9fe 0%, #ffffff 72%); padding-bottom: 70px; }
.hero-bg-image {
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 42%, rgba(255,255,255,.94) 100%),
        url('../img/vortex-brand-wall.jpg') center 42%/cover no-repeat;
    opacity: .24;
}
.hero h1 { font-size: clamp(30px, 4vw, 35px) !important; font-weight: 500 !important; line-height: 1.06; }
.hero h1 strong { font-weight: 500 !important; }
.workflow-copy h2,
.security-copy h2,
.contact-copy h2,
.cta-block h2 { font-size: clamp(28px, 3.2vw, 35px) !important; font-weight: 500 !important; }
.btn,
.desktop-nav a,
.lang-switch,
.hero-pill strong,
.module-tile strong,
.benefits-grid h3,
.flow-card h3,
.footer-col h3,
.footer-contact h3 { font-weight: 500 !important; }

.hero-metrics-shell {
    margin-top: 22px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(249,244,254,.96) 100%);
    border: 1px solid rgba(140, 27, 242, .10);
    box-shadow: 0 18px 44px rgba(24, 9, 40, .08);
}
.hero-metrics-intro strong { display: block; margin-bottom: 6px; font-size: 16px; font-weight: 500; }
.hero-metrics-intro p { margin: 0; color: var(--vtx-muted); font-size: 13px; }
.hero-metrics { margin-top: 16px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.hero-metrics article { padding: 14px 12px; border-radius: 18px; background: rgba(255,255,255,.86); border: 1px solid rgba(40, 18, 66, .07); }
.hero-metrics strong { display: block; font-size: 22px; font-weight: 500; color: var(--vtx-purple); }
.hero-metrics span { display: block; margin-top: 4px; font-size: 12px; color: var(--vtx-muted); }

.erp-window {
    min-height: 640px;
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(24, 9, 40, .12);
}
.erp-sidebar { background: linear-gradient(180deg, #11091a 0%, #1b0d2b 65%, #130a1d 100%); }
.sidebar-note {
    margin-top: auto;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}
.sidebar-note strong { display: block; font-size: 13px; font-weight: 500; color: #fff; }
.sidebar-note small { display: block; margin-top: 6px; font-size: 12px; color: rgba(255,255,255,.64); }
.erp-screen-top { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.screen-badge {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 27, 242, .08);
    color: var(--vtx-purple);
    font-size: 12px;
    font-weight: 500;
}
.screen-admin small { display: block; font-size: 10px; color: var(--vtx-muted); }
.screen-highlight {
    margin-top: 16px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,240,252,.92));
    border: 1px solid rgba(140, 27, 242, .10);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}
.screen-highlight h3 { margin: 0 0 6px; font-size: 23px; font-weight: 500; }
.screen-highlight p { margin: 0; color: var(--vtx-muted); font-size: 13px; }
.highlight-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.highlight-stats span { min-width: 112px; padding: 10px 12px; border-radius: 16px; background: rgba(255,255,255,.9); border: 1px solid rgba(40, 18, 66, .06); font-size: 11px; color: var(--vtx-muted); }
.highlight-stats b { display: block; margin-bottom: 3px; font-size: 18px; font-weight: 500; color: var(--vtx-purple); }
.analytics-grid { grid-template-columns: 1.3fr .9fr .8fr; grid-auto-rows: minmax(120px, auto); gap: 12px; }
.panel, .cash-card { border-radius: 22px; }
.chart-panel { grid-column: span 2; }
.chart-svg { width: 100%; height: 180px; display: block; }
.chart-grid-lines line { stroke: rgba(40, 18, 66, .08); stroke-width: 1; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--vtx-purple); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.chart-dots circle { fill: #fff; stroke: var(--vtx-purple); stroke-width: 3; }
.chart-labels { display: flex; justify-content: space-between; gap: 8px; margin-top: 8px; font-size: 10px; color: var(--vtx-muted); }
.stock-progress { margin-top: 12px; display: grid; gap: 10px; }
.stock-progress i,
.bar-line span { display: block; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--vtx-purple), #ca82ff); width: var(--w); }
.bars-list { display: grid; gap: 12px; }
.bar-line { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: center; }
.bar-line label { font-size: 11px; color: var(--vtx-muted); }
.activity-item { display: flex; align-items: flex-start; justify-content: flex-start; gap: 10px; margin-top: 10px; }
.activity-item > span { width: 10px; height: 10px; margin-top: 5px; border-radius: 999px; background: var(--vtx-purple); box-shadow: 0 0 0 6px rgba(140, 27, 242, .10); }
.activity-item strong { display: block; font-size: 12px; font-weight: 500; }
.activity-item small { display: block; margin-top: 3px; font-size: 11px; color: var(--vtx-muted); }
.cash-trend { display: inline-flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 16px; background: rgba(255,255,255,.14); }
.cash-trend i { width: 54px; height: 8px; border-radius: 999px; background: linear-gradient(90deg, #fff, rgba(255,255,255,.3)); }
.cash-trend b { font-size: 12px; font-weight: 500; }
.modules-header { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 0; background: transparent; min-height: auto; }
.modules-header .mini-label { flex: 0 0 auto; }
.modules-header p { margin: 0; max-width: 720px; color: var(--vtx-muted); font-size: 14px; text-align: right; }
.module-tile { min-height: 170px; }
.module-tile p { margin: 8px 0 0; color: var(--vtx-muted); font-size: 13px; }
.testimonial-shell { background: linear-gradient(135deg, #2a123f 0%, #5b1ea3 48%, #6c2bdd 100%); }
.site-footer { background: linear-gradient(135deg, #12091c 0%, #231133 52%, #341451 100%); }

@media (max-width: 980px) {
    .hero-metrics,
    .highlight-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .screen-highlight { grid-template-columns: 1fr; }
    .modules-header { display: block; }
    .modules-header p { margin-top: 12px; text-align: left; }
    .erp-screen-top { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .hero-metrics,
    .highlight-stats { grid-template-columns: 1fr; }
    .analytics-grid { grid-template-columns: 1fr; }
    .chart-panel { grid-column: auto; }
}


/* ===== Vortex ERP v2.2 refinement ===== */
.hero.hero-slider {
    padding: 150px 0 38px;
    background: linear-gradient(180deg, #fcfbfe 0%, #ffffff 78%);
}
.hero-slider-shell { position: relative; z-index: 1; }
.hero-slider-stage {
    position: relative;
    min-height: 620px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(24, 9, 40, .14);
    background: #fff;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .65s ease, visibility .65s ease, transform .65s ease;
    transform: scale(1.02);
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 28%, rgba(255,255,255,.15) 72%, rgba(255,255,255,.12) 100%);
}
.hero-slide-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(620px, 58%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
}
.hero-slide-content h1 {
    margin: 18px 0 14px;
    font-size: clamp(28px, 4vw, 35px);
    line-height: 1.08;
    font-weight: 500;
    max-width: 490px;
}
.hero-slide-content p {
    margin: 0 0 24px;
    font-size: 16px;
    max-width: 500px;
    color: var(--vtx-muted);
}
.hero-slide-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.hero-slide-points span {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(140, 27, 242, .10);
    box-shadow: 0 12px 24px rgba(24, 9, 40, .05);
    font-size: 12px;
    color: var(--vtx-ink);
}
.hero-slide-points .icon { color: var(--vtx-purple); font-size: 14px; }
.hero-slider-controls {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    z-index: 3;
}
.hero-dots { display: flex; align-items: center; gap: 10px; }
.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255,255,255,.68);
    box-shadow: 0 0 0 1px rgba(40,18,66,.12) inset;
}
.hero-dot.is-active { width: 34px; border-radius: 999px; background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2)); box-shadow: none; }
.hero-arrow {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: rgba(255,255,255,.82);
    box-shadow: 0 14px 34px rgba(24, 9, 40, .09);
    color: var(--vtx-purple);
    transition: transform .22s ease, background .22s ease;
}
.hero-arrow:hover { transform: translateY(-2px); }
.hero-next .icon { transform: rotate(0deg); }
.hero-prev .icon { transform: rotate(180deg); }
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}
.hero-stat-card {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(40, 18, 66, .08);
    box-shadow: var(--vtx-shadow-soft);
}
.hero-stat-card strong,
.hero-stat-card span { display: block; }
.hero-stat-card strong { font-size: 22px; font-weight: 500; color: var(--vtx-purple); }
.hero-stat-card span { margin-top: 6px; font-size: 13px; color: var(--vtx-muted); }

.transformation-band { padding: 24px 0 0; }
.transformation-shell {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(135deg, #241136 0%, #4e198f 45%, #6b2bdd 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 24px 70px rgba(44, 18, 73, .18);
}
.transformation-copy h2 {
    margin: 16px 0 10px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.transformation-copy p {
    margin: 0 0 18px;
    font-size: 15px;
    color: rgba(255,255,255,.82);
}
.transformation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.transformation-tags span {
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 12px;
}
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.transform-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.transform-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 18px;
}
.transform-card strong,
.transform-card p { display: block; }
.transform-card strong { margin-top: 14px; font-size: 15px; font-weight: 500; }
.transform-card p { margin: 8px 0 0; font-size: 13px; color: rgba(255,255,255,.78); }

.site-footer { margin-top: 28px; padding-top: 26px; }
.footer-highlights {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.footer-highlight-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.footer-highlight-card strong,
.footer-highlight-card span { display: block; }
.footer-highlight-card strong { font-size: 14px; font-weight: 500; color: #fff; }
.footer-highlight-card span { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,.72); }
.footer-main { grid-template-columns: 1.2fr .8fr .8fr .8fr 1fr; }
.footer-brand-note {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.footer-brand-note strong,
.footer-brand-note span { display: block; }
.footer-brand-note strong { font-size: 13px; font-weight: 500; color: #fff; }
.footer-brand-note span { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,.72); }
.footer-demo-card p {
    margin: 8px 0 14px;
    font-size: 12px;
    color: rgba(255,255,255,.74);
}

@media (max-width: 1180px) {
    .hero-slide-content { width: min(640px, 66%); }
    .transformation-shell { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
    .hero-slider-stage { min-height: 600px; }
    .hero-slide-overlay { background: linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.76) 40%, rgba(255,255,255,.18) 100%); }
    .hero-slide-content { width: 100%; max-width: none; padding: 36px 32px 110px; justify-content: flex-start; }
    .hero-stats-grid, .footer-highlights, .transformation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
    .hero.hero-slider { padding-top: 140px; }
    .hero-slider-stage { min-height: 580px; }
    .hero-slide-content { padding: 26px 22px 110px; }
    .hero-slide-content p { font-size: 15px; }
    .hero-slider-controls { left: 18px; right: 18px; bottom: 18px; }
    .hero-stats-grid, .footer-highlights, .transformation-grid { grid-template-columns: 1fr; }
    .hero-arrow { width: 42px; height: 42px; }
}


/* Vortex ERP v2.3 fluid refinements */
.hero-slider-stage { min-height: 640px; }
.hero-slide-overlay { background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.84) 30%, rgba(255,255,255,.26) 72%, rgba(255,255,255,.14) 100%); }
.hero-slide-content { width: min(640px, 60%); padding: 54px; }
.hero-slide-content p { max-width: 520px; line-height: 1.6; }
.hero-slide-points span { min-height: 40px; padding-inline: 15px; }
.hero-stat-card { padding: 20px 22px; }
.transformation-shell { background: linear-gradient(135deg, #241136 0%, #5420a0 46%, #7741ea 100%); }
.transform-card { background: rgba(255,255,255,.09); }
.footer-main { gap: 18px; }
.footer-brand, .footer-contact, .footer-col { background: rgba(255,255,255,.055); }
.footer-demo-card { background: linear-gradient(135deg, rgba(140, 27, 242, .22), rgba(192, 99, 255, .18)); }
@media (max-width: 980px) {
  .hero-slide-content { width: 100%; padding: 34px 30px 105px; }
}
@media (max-width: 760px) {
  .hero-slider-stage { min-height: 560px; }
  .hero-slide-content { padding: 24px 22px 100px; }
  .hero-slide-content h1 { max-width: none; }
}


/* v2.3 micro-refinements */
.hero-slide-content .eyebrow { background: rgba(255,255,255,.88); }
.hero-slide-content { backdrop-filter: blur(1.5px); }
.transformation-shell, .contact-form, .benefits-shell { box-shadow: 0 26px 70px rgba(24,9,40,.10); }
.footer-highlight-card, .footer-brand-note, .footer-demo-card { backdrop-filter: blur(8px); }
.footer-demo-card { border: 1px solid rgba(255,255,255,.10); }


/* ===== v2.4 Premium refinement: modules, workflow, security, footer, legal pages ===== */
strong, b { font-weight: 500; }

.section-head.premium-head {
    display: grid;
    grid-template-columns: .42fr 1fr;
    gap: 26px;
    align-items: start;
    margin-bottom: 26px;
}
.section-head.premium-head h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.section-head.premium-head p {
    margin: 0;
    max-width: 760px;
    color: var(--vtx-muted);
    font-size: 15px;
}

/* Modules */
.modules-premium {
    padding: 34px 0 0;
}
.modules-premium-layout {
    display: grid;
    grid-template-columns: .9fr 1.6fr;
    gap: 18px;
    align-items: stretch;
}
.module-feature-card,
.module-card-premium {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 22px 56px rgba(24,9,40,.08);
    background: rgba(255,255,255,.92);
}
.module-feature-card {
    min-height: 420px;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 78% 20%, rgba(192,99,255,.22), rgba(192,99,255,0) 34%),
        linear-gradient(145deg, #ffffff 0%, #fbf7ff 52%, #f2e7ff 100%);
}
.module-feature-card::before {
    content: "";
    position: absolute;
    inset: 28px 28px auto auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: url('../img/vortex-icon.png') center/72px no-repeat, radial-gradient(circle, rgba(140,27,242,.14), rgba(140,27,242,0) 68%);
    opacity: .75;
}
.feature-orb {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    box-shadow: 0 18px 40px rgba(140,27,242,.22);
    font-size: 24px;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
}
.module-feature-card h3 {
    margin: 26px 0 12px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.module-feature-card p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 15px;
    position: relative;
    z-index: 1;
}
.module-feature-list {
    margin-top: 22px;
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.module-feature-list span {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(140,27,242,.10);
    font-size: 13px;
}
.module-feature-list .icon { color: var(--vtx-purple); }

.module-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.module-card-premium {
    min-height: 118px;
    border-radius: 24px;
    padding: 18px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.module-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(140,27,242,.20);
    box-shadow: 0 26px 64px rgba(24,9,40,.11);
}
.module-card-premium > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--vtx-purple);
    background: linear-gradient(145deg, rgba(140,27,242,.11), rgba(192,99,255,.06));
    font-size: 22px;
}
.module-card-premium strong {
    display: block;
    margin: 2px 0 7px;
    font-size: 15px;
    font-weight: 500;
}
.module-card-premium p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 13px;
    line-height: 1.42;
}

/* Workflow */
.workflow-premium {
    padding: 34px 0 0;
}
.workflow-premium-shell {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 24px;
    align-items: stretch;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 58% 96%, rgba(192,99,255,.22), rgba(192,99,255,0) 36%),
        linear-gradient(145deg, #ffffff 0%, #fbf8ff 100%);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 28px 72px rgba(24,9,40,.08);
}
.workflow-premium-copy h2 {
    margin: 16px 0 12px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.workflow-premium-copy h2 span {
    display: block;
    color: var(--vtx-purple);
}
.workflow-premium-copy p {
    margin: 0 0 18px;
    color: var(--vtx-muted);
    font-size: 15px;
}
.workflow-summary {
    display: grid;
    gap: 10px;
    margin: 20px 0 22px;
}
.workflow-summary span {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    background: rgba(140,27,242,.06);
    color: var(--vtx-ink);
    font-size: 13px;
}
.workflow-summary b {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    font-size: 12px;
}
.workflow-track {
    position: relative;
    display: grid;
    gap: 12px;
}
.workflow-track::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 38px;
    bottom: 38px;
    width: 2px;
    background: linear-gradient(180deg, rgba(140,27,242,.14), rgba(140,27,242,.38), rgba(140,27,242,.12));
}
.workflow-step-card {
    position: relative;
    min-height: 92px;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 18px 44px rgba(24,9,40,.06);
}
.workflow-step-number {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--vtx-purple), var(--vtx-purple-2));
    box-shadow: 0 16px 34px rgba(140,27,242,.20);
    font-size: 14px;
    font-weight: 500;
}
.workflow-step-content h3 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 500;
}
.workflow-step-content p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 13px;
}
.workflow-step-card strong {
    min-height: 38px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(21,160,92,.10);
    color: #15965a;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* Security */
.security-premium {
    padding: 34px 0 0;
}
.security-premium-shell {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 28px;
    align-items: stretch;
}
.security-console {
    position: relative;
    min-height: 470px;
    border-radius: 34px;
    overflow: hidden;
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 48%, rgba(140,27,242,.42), rgba(140,27,242,0) 34%),
        linear-gradient(145deg, #0d0617 0%, #160921 55%, #0d0617 100%);
    box-shadow: 0 30px 80px rgba(18,6,30,.22);
}
.security-console::before {
    content: "";
    position: absolute;
    inset: 68px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.09);
}
.security-console-top,
.security-console-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.security-console-top span {
    color: rgba(255,255,255,.62);
    font-size: 12px;
}
.security-console-top strong {
    font-size: 14px;
    font-weight: 500;
}
.security-core {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 210px;
    height: 210px;
    display: grid;
    place-items: center;
}
.security-core img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    animation: spinSoft 7s linear infinite;
}
.security-ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
}
.ring-a { animation: pulseRing 2.6s ease-out infinite; }
.ring-b { inset: 38px; opacity: .7; }
.security-floating-card {
    position: absolute;
    z-index: 2;
    min-width: 150px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 42px rgba(0,0,0,.12);
}
.security-floating-card strong {
    display: block;
    font-size: 25px;
    line-height: 1;
    font-weight: 500;
}
.security-floating-card span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.72);
}
.card-availability { top: 84px; left: 34px; }
.card-permissions { top: 124px; right: 34px; }
.card-logs { left: 70px; bottom: 84px; }
.security-console-footer {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}
.security-console-footer span {
    min-height: 38px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.78);
    font-size: 12px;
}
.security-premium-copy {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 26px 70px rgba(24,9,40,.08);
}
.security-premium-copy h2 {
    margin: 18px 0 12px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.security-premium-copy > p {
    margin: 0 0 22px;
    color: var(--vtx-muted);
    font-size: 15px;
}
.premium-security-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.premium-security-items span {
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(140,27,242,.07), rgba(192,99,255,.04));
}
.security-note {
    margin-top: 18px;
    padding: 20px;
    border-radius: 22px;
    background: #fbf7ff;
    border: 1px solid rgba(140,27,242,.10);
}
.security-note strong {
    display: block;
    font-size: 15px;
    font-weight: 500;
}
.security-note p {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--vtx-muted);
}

/* Footer */
.footer-premium {
    margin-top: 34px;
    padding: 34px 0 18px;
}
.footer-premium-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .92fr 1.38fr;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 22px;
}
.footer-top-copy {
    min-height: 160px;
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.09);
}
.footer-top-copy span {
    color: #e5caff;
    font-size: 12px;
}
.footer-top-copy h2 {
    margin: 12px 0 0;
    font-size: clamp(26px, 3vw, 35px);
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
}
.premium-footer-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}
.footer-premium-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr .75fr .85fr .72fr 1.08fr;
    gap: 14px;
}
.footer-premium-main > div {
    min-height: 288px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 22px;
}
.footer-brand-premium p {
    font-size: 14px;
    line-height: 1.65;
}
.footer-contact-premium .footer-demo-card {
    background: linear-gradient(135deg, rgba(140,27,242,.36), rgba(192,99,255,.20));
    border-color: rgba(255,255,255,.12);
}
.footer-bottom {
    border-top-color: rgba(255,255,255,.10);
}

/* Legal pages */
.legal-page {
    padding: 152px 0 36px;
    background:
        radial-gradient(circle at 82% 4%, rgba(192,99,255,.16), rgba(192,99,255,0) 28%),
        linear-gradient(180deg, #fbf9fe 0%, #fff 100%);
}
.legal-hero {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 26px 70px rgba(24,9,40,.08);
}
.legal-hero h1 {
    margin: 16px 0 12px;
    font-size: clamp(28px, 3.2vw, 35px);
    line-height: 1.08;
    font-weight: 500;
}
.legal-hero p {
    margin: 0;
    max-width: 840px;
    color: var(--vtx-muted);
    font-size: 15px;
}
.legal-layout {
    display: grid;
    grid-template-columns: .34fr 1fr;
    gap: 22px;
    margin-top: 22px;
}
.legal-side-card,
.legal-content-card {
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(40,18,66,.08);
    box-shadow: 0 20px 54px rgba(24,9,40,.07);
}
.legal-side-card {
    padding: 22px;
    height: max-content;
    position: sticky;
    top: 116px;
}
.legal-side-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}
.legal-side-card a {
    display: block;
    padding: 10px 0;
    color: var(--vtx-muted);
    font-size: 13px;
    border-top: 1px solid rgba(40,18,66,.06);
}
.legal-content-card {
    padding: 30px;
}
.legal-content-card section + section {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(40,18,66,.08);
}
.legal-content-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 500;
}
.legal-content-card p,
.legal-content-card li {
    color: var(--vtx-muted);
    font-size: 14px;
    line-height: 1.7;
}
.legal-content-card ul {
    padding-left: 20px;
    margin: 10px 0 0;
}
.legal-footer-mini {
    padding: 26px 0;
    background: #13091d;
    color: rgba(255,255,255,.72);
}
.legal-footer-mini .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 12px;
}
.legal-footer-mini nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1180px) {
    .section-head.premium-head,
    .modules-premium-layout,
    .workflow-premium-shell,
    .security-premium-shell,
    .footer-premium-top,
    .footer-premium-main,
    .legal-layout {
        grid-template-columns: 1fr;
    }
    .footer-premium-main > div { min-height: auto; }
}
@media (max-width: 980px) {
    .module-grid-premium,
    .premium-security-items,
    .premium-footer-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .workflow-step-card {
        grid-template-columns: 54px 1fr;
    }
    .workflow-step-card strong {
        grid-column: 2;
        justify-self: start;
    }
}
@media (max-width: 760px) {
    .section-head.premium-head,
    .modules-premium-layout,
    .module-grid-premium,
    .workflow-premium-shell,
    .security-premium-shell,
    .premium-security-items,
    .premium-footer-highlights {
        grid-template-columns: 1fr;
    }
    .workflow-premium-shell,
    .security-premium-copy,
    .legal-hero,
    .legal-content-card {
        padding: 22px;
    }
    .module-feature-card { min-height: 360px; }
    .security-console { min-height: 430px; }
    .security-floating-card { min-width: 126px; }
    .card-permissions { right: 20px; }
    .card-availability { left: 20px; }
    .card-logs { left: 40px; }
    .legal-side-card { position: relative; top: auto; }
    .legal-footer-mini .container { flex-direction: column; align-items: flex-start; }
}


/* ===== v2.5 requested refinements ===== */

/* Módulos principais: voltar ao inline premium */
.modules-inline-premium {
    padding: 30px 0 0;
}
.modules-inline-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 18px;
}
.modules-context-card {
    min-height: 58px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: end;
    max-width: 820px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(140, 27, 242, .08), rgba(192, 99, 255, .04));
    border: 1px solid rgba(140, 27, 242, .12);
    box-shadow: 0 16px 38px rgba(24, 9, 40, .06);
}
.modules-context-card > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    color: var(--vtx-purple);
    background: rgba(140, 27, 242, .10);
}
.modules-context-card p {
    margin: 0;
    color: var(--vtx-muted);
    font-size: 13px;
    line-height: 1.45;
}
.modules-row-inline {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
}
.modules-row-inline .module-tile {
    min-height: 154px;
    padding: 16px 10px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 16px 36px rgba(24, 9, 40, .055);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.modules-row-inline .module-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 27, 242, .18);
    box-shadow: 0 22px 48px rgba(24, 9, 40, .09);
}
.modules-row-inline .module-tile > span {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    border-radius: 14px;
    font-size: 19px;
}
.modules-row-inline .module-tile strong {
    margin-top: 0;
    font-size: 13px;
    font-weight: 500;
}
.modules-row-inline .module-tile p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.22;
}

/* Abordagem orientada ao crescimento: label em branco */
.transformation-shell .section-label {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
}
.transformation-shell .section-label::selection,
.transformation-shell .section-label * {
    color: #fff;
}

/* Footer mais compacto e com o mesmo background da secção de crescimento */
.footer-premium {
    margin-top: 28px;
    padding: 24px 0 14px;
    background: linear-gradient(135deg, #241136 0%, #4e198f 45%, #6b2bdd 100%) !important;
}
.footer-premium .footer-glow {
    opacity: .55;
}
.footer-premium-top {
    grid-template-columns: .78fr 1.22fr;
    gap: 14px;
    margin-bottom: 14px;
}
.footer-top-copy {
    min-height: auto;
    padding: 18px 20px;
    border-radius: 22px;
}
.footer-top-copy h2 {
    margin-top: 8px;
    font-size: clamp(20px, 2.1vw, 26px);
    line-height: 1.12;
}
.premium-footer-highlights {
    gap: 10px;
}
.footer-highlight-card {
    padding: 14px 16px;
    border-radius: 18px;
}
.footer-highlight-card strong {
    font-size: 13px;
}
.footer-highlight-card span {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.38;
}
.footer-premium-main {
    grid-template-columns: 1.15fr .7fr .82fr .62fr 1fr;
    gap: 10px;
}
.footer-premium-main > div {
    min-height: auto;
    padding: 17px;
    border-radius: 20px;
}
.footer-brand-premium p {
    margin: 12px 0;
    font-size: 13px;
    line-height: 1.55;
}
.footer-brand-note {
    margin-top: 12px;
    padding: 13px;
    border-radius: 16px;
}
.footer-brand-note strong {
    font-size: 12px;
}
.footer-brand-note span {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.38;
}
.footer-col h3,
.footer-contact h3 {
    margin-bottom: 10px;
    font-size: 12px;
}
.footer-col a,
.footer-contact a,
.footer-contact span {
    margin-top: 8px;
    font-size: 12px;
}
.footer-contact-premium .footer-demo-card {
    margin-top: 12px;
    padding: 13px;
    border-radius: 16px;
}
.footer-demo-card strong {
    margin-bottom: 8px;
    font-size: 13px;
}
.footer-demo-card p {
    margin: 6px 0 12px;
    font-size: 11px;
    line-height: 1.4;
}
.footer-bottom {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 11px;
}

@media (max-width: 1180px) {
    .modules-row-inline {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .footer-premium-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 980px) {
    .modules-inline-head {
        grid-template-columns: 1fr;
    }
    .modules-context-card {
        justify-self: stretch;
        max-width: none;
    }
    .modules-row-inline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .modules-row-inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-premium-top,
    .footer-premium-main {
        grid-template-columns: 1fr;
    }
}


/* ===== v2.6 footer compression + sitewide motion/effects ===== */

/* Darker footer, tighter structure */
.footer-compact-dark {
    background:
        radial-gradient(circle at 15% 0%, rgba(140, 27, 242, .24), rgba(140, 27, 242, 0) 34%),
        radial-gradient(circle at 92% 20%, rgba(192, 99, 255, .20), rgba(192, 99, 255, 0) 32%),
        linear-gradient(135deg, #11071d 0%, #241136 42%, #37115f 100%) !important;
}
.footer-compact-dark .footer-premium-top {
    margin-bottom: 12px;
}
.footer-compact-dark .footer-top-copy {
    padding: 15px 18px;
    background: rgba(255,255,255,.045);
}
.footer-compact-dark .footer-top-copy h2 {
    font-size: clamp(18px, 1.7vw, 22px);
}
.footer-compact-dark .footer-top-copy span {
    color: rgba(235, 213, 255, .92);
}
.footer-compact-dark .footer-highlight-card {
    padding: 12px 14px;
    min-height: 92px;
}
.footer-compact-dark .footer-premium-main {
    grid-template-columns: 1.18fr .72fr .84fr .68fr 1fr;
    gap: 9px;
}
.footer-compact-dark .footer-premium-main > div {
    min-height: 190px;
    padding: 16px 17px;
    background: linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.035));
    border-color: rgba(255,255,255,.095);
}
.footer-compact-dark .footer-brand-premium img {
    width: 158px;
}
.footer-compact-dark .footer-brand-premium p {
    margin: 12px 0 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255,255,255,.74);
}

/* Footer bullets for links */
.footer-compact-dark .footer-col a {
    position: relative;
    padding-left: 15px;
}
.footer-compact-dark .footer-col a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e9c9ff, #a936ff);
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(192,99,255,.45);
}
.footer-compact-dark .footer-col a:hover::before {
    transform: translateY(-50%) scale(1.35);
}
.footer-compact-dark .footer-col a,
.footer-compact-dark .footer-contact a,
.footer-compact-dark .footer-contact span {
    transition: color .22s ease, transform .22s ease, opacity .22s ease;
}
.footer-compact-dark .footer-col a:hover,
.footer-compact-dark .footer-contact a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Two aligned footer action cards */
.footer-action-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}
.footer-action-card {
    min-height: 104px;
    padding: 17px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.045));
    border: 1px solid rgba(255,255,255,.105);
    box-shadow: 0 16px 42px rgba(0,0,0,.08);
    backdrop-filter: blur(10px);
}
.footer-action-card strong,
.footer-action-card span,
.footer-action-card p {
    display: block;
}
.footer-action-card strong {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}
.footer-action-card span,
.footer-action-card p {
    margin: 7px 0 0;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    line-height: 1.42;
}
.footer-action-grid .footer-demo-card {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    background: linear-gradient(135deg, rgba(140,27,242,.34), rgba(192,99,255,.18));
}
.footer-action-grid .footer-demo-card p {
    margin-bottom: 0;
}
.footer-action-grid .footer-demo-card .btn {
    min-width: 184px;
}
.footer-compact-dark .footer-bottom {
    margin-top: 11px;
    padding-top: 11px;
}

/* Sitewide animations and hover refinements */
@keyframes vtxFloatSoft {
    0%, 100% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(0,-7px,0); }
}
@keyframes vtxGlowPulse {
    0%, 100% { box-shadow: 0 18px 44px rgba(140,27,242,.12); }
    50% { box-shadow: 0 24px 62px rgba(140,27,242,.22); }
}
@keyframes vtxSlideProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@keyframes vtxShineSweep {
    0% { left: -60%; opacity: 0; }
    30% { opacity: .7; }
    100% { left: 130%; opacity: 0; }
}

.hero-slider-stage {
    isolation: isolate;
}
.hero-slider-stage::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(140,27,242,.12), rgba(192,99,255,.38), rgba(140,27,242,.12));
    transform-origin: left center;
    animation: vtxSlideProgress 4.8s linear infinite;
    z-index: 4;
}
.hero-slide.is-active .hero-slide-image {
    animation: heroKenBurns 8s ease-out both;
}
@keyframes heroKenBurns {
    from { transform: scale(1.02); }
    to { transform: scale(1.07); }
}
.hero-slide-content {
    animation: vtxFloatSoft 7s ease-in-out infinite;
}
.hero-stat-card,
.module-tile,
.module-card-premium,
.flow-card,
.workflow-step-card,
.benefits-grid article,
.security-note,
.transform-card,
.contact-cards article,
.footer-highlight-card,
.footer-action-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.hero-stat-card:hover,
.module-tile:hover,
.module-card-premium:hover,
.flow-card:hover,
.workflow-step-card:hover,
.benefits-grid article:hover,
.security-note:hover,
.transform-card:hover,
.contact-cards article:hover,
.footer-highlight-card:hover,
.footer-action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192,99,255,.22);
    box-shadow: 0 26px 64px rgba(24, 9, 40, .12);
}
.security-console,
.transformation-shell,
.workflow-premium-shell {
    transition: transform .32s ease, box-shadow .32s ease;
}
.security-console:hover,
.transformation-shell:hover,
.workflow-premium-shell:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 84px rgba(24, 9, 40, .16);
}
.security-core img,
.loader-mark img {
    filter: drop-shadow(0 0 16px rgba(192,99,255,.36));
}
.security-floating-card,
.footer-demo-card,
.modules-context-card {
    position: relative;
    overflow: hidden;
}
.security-floating-card::after,
.footer-demo-card::after,
.modules-context-card::after {
    content: "";
    position: absolute;
    top: -60%;
    bottom: -60%;
    left: -60%;
    width: 34%;
    transform: rotate(22deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    pointer-events: none;
}
.security-floating-card:hover::after,
.footer-demo-card:hover::after,
.modules-context-card:hover::after {
    animation: vtxShineSweep .85s ease;
}
.btn {
    will-change: transform;
}
.btn:hover {
    box-shadow: 0 18px 44px rgba(140,27,242,.22);
}
.desktop-nav a {
    position: relative;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--vtx-purple), var(--vtx-purple-2));
    transition: transform .24s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}
.reveal {
    transition: opacity .68s cubic-bezier(.2,.8,.2,1), transform .68s cubic-bezier(.2,.8,.2,1), filter .68s ease;
    filter: blur(8px);
}
.reveal.is-visible {
    filter: blur(0);
}
.reveal.stagger-1 { transition-delay: .05s; }
.reveal.stagger-2 { transition-delay: .10s; }
.reveal.stagger-3 { transition-delay: .15s; }
.reveal.stagger-4 { transition-delay: .20s; }
.reveal.stagger-5 { transition-delay: .25s; }

/* Legal pages effects */
.legal-content-card,
.legal-side-card,
.legal-hero {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.legal-content-card:hover,
.legal-side-card:hover,
.legal-hero:hover {
    transform: translateY(-3px);
    border-color: rgba(140,27,242,.16);
    box-shadow: 0 28px 70px rgba(24,9,40,.10);
}

@media (max-width: 1180px) {
    .footer-compact-dark .footer-premium-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-action-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 760px) {
    .footer-action-grid,
    .footer-action-grid .footer-demo-card {
        grid-template-columns: 1fr;
    }
    .footer-action-grid .footer-demo-card .btn {
        min-width: 0;
        width: 100%;
    }
    .footer-compact-dark .footer-premium-main {
        grid-template-columns: 1fr;
    }
}


/* ===== v2.7 fine fixes: security overlap, staggered workflow, module zoom, banner/footer polish ===== */

/* Corrige conflito do v2.6: os cards de segurança devem ser absolutos, não relativos */
.security-console .security-floating-card {
    position: absolute !important;
    min-width: 0;
    width: 150px;
    max-width: 150px;
    padding: 14px 15px;
    border-radius: 20px;
    transform: none;
}
.security-console .security-floating-card:hover {
    transform: translateY(-5px);
}
.security-console .card-availability {
    top: 82px;
    left: 34px;
}
.security-console .card-permissions {
    top: 138px;
    right: 34px;
}
.security-console .card-logs {
    left: 54px;
    bottom: 92px;
}
.security-console .security-floating-card strong {
    font-size: 22px;
}
.security-console .security-floating-card span {
    margin-top: 7px;
    font-size: 11px;
}
.security-console .security-core {
    z-index: 1;
}
.security-console::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    pointer-events: none;
    background: radial-gradient(circle at 50% 52%, rgba(192,99,255,.08), rgba(192,99,255,0) 38%);
}

/* Aparição passo a passo do fluxo operacional */
.workflow-track .workflow-step-card {
    opacity: 0;
    transform: translateY(24px) scale(.985);
    filter: blur(7px);
    transition:
        opacity .58s cubic-bezier(.2,.8,.2,1),
        transform .58s cubic-bezier(.2,.8,.2,1),
        filter .58s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}
.workflow-track.is-visible .workflow-step-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.workflow-track.is-visible .workflow-step-card:nth-child(1) { transition-delay: .04s; }
.workflow-track.is-visible .workflow-step-card:nth-child(2) { transition-delay: .16s; }
.workflow-track.is-visible .workflow-step-card:nth-child(3) { transition-delay: .28s; }
.workflow-track.is-visible .workflow-step-card:nth-child(4) { transition-delay: .40s; }
.workflow-track.is-visible .workflow-step-card:nth-child(5) { transition-delay: .52s; }
.workflow-track.is-visible .workflow-step-card:hover {
    transform: translateY(-5px) scale(1.012);
}

/* Módulos principais: zoom suave e efeito de profundidade */
.modules-row-inline .module-tile {
    will-change: transform;
}
.modules-row-inline .module-tile:hover {
    transform: translateY(-7px) scale(1.035);
    box-shadow: 0 26px 62px rgba(24, 9, 40, .11);
}
.modules-row-inline .module-tile:hover > span {
    background: linear-gradient(135deg, rgba(140,27,242,.16), rgba(192,99,255,.10));
    box-shadow: 0 12px 26px rgba(140,27,242,.14);
}

/* Banner de crescimento mais premium */
.transformation-band {
    padding-top: 34px;
}
.transformation-shell {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 10%, rgba(255,255,255,.16), rgba(255,255,255,0) 28%),
        radial-gradient(circle at 12% 88%, rgba(192,99,255,.24), rgba(192,99,255,0) 36%),
        linear-gradient(135deg, #241136 0%, #5620a3 48%, #7d36e7 100%);
}
.transformation-shell::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.08);
    pointer-events: none;
}
.transformation-shell .section-label {
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    text-decoration: none;
}
.transformation-copy,
.transformation-grid {
    position: relative;
    z-index: 1;
}
.transformation-copy h2 {
    max-width: 560px;
}
.transform-card {
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.075));
    border-color: rgba(255,255,255,.14);
}
.transform-card:hover {
    background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.09));
}

/* Footer: cards alinhados e títulos em tom da identidade */
.footer-compact-dark .footer-col h3,
.footer-compact-dark .footer-contact h3 {
    color: #e8c6ff;
}
.footer-compact-dark .footer-top-copy span,
.footer-action-card strong,
.footer-compact-dark .footer-highlight-card strong {
    color: #f0d7ff;
}
.footer-action-grid {
    align-items: stretch;
}
.footer-action-card {
    height: 100%;
    min-height: 118px;
}
.footer-action-grid .footer-brand-note {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-action-grid .footer-demo-card {
    margin-top: 0;
    min-height: 118px;
}
.footer-action-grid .footer-demo-card > div {
    min-width: 0;
}
.footer-action-grid .footer-demo-card .btn {
    align-self: center;
}
.footer-compact-dark .footer-premium-main > div {
    display: flex;
    flex-direction: column;
}
.footer-compact-dark .footer-col a::before {
    background: linear-gradient(135deg, #f0d7ff, #b53cff);
}

/* Mobile/security refinements */
@media (max-width: 760px) {
    .security-console .security-floating-card {
        width: 128px;
        max-width: 128px;
        padding: 12px;
    }
    .security-console .card-availability { top: 78px; left: 20px; }
    .security-console .card-permissions { top: 132px; right: 20px; }
    .security-console .card-logs { left: 26px; bottom: 94px; }
    .security-console .security-floating-card strong { font-size: 19px; }
    .footer-action-card,
    .footer-action-grid .footer-demo-card {
        min-height: auto;
    }
}


/* ===== v2.8 refinements requested: workflow sequence, module hover, growth banner label/footer cards ===== */

/* 1) Módulos principais: hover mais elegante, sem zoom agressivo nem distorção */
.modules-row-inline .module-tile {
    transform-origin: center;
    transition:
        transform .26s cubic-bezier(.2,.8,.2,1),
        box-shadow .26s ease,
        border-color .26s ease,
        background .26s ease;
}
.modules-row-inline .module-tile:hover {
    transform: translateY(-5px) scale(1.012);
    border-color: rgba(176, 62, 255, .20);
    background:
        radial-gradient(circle at 50% 0%, rgba(176,62,255,.10), rgba(176,62,255,0) 48%),
        rgba(255,255,255,.96);
    box-shadow: 0 22px 54px rgba(24, 9, 40, .10);
}
.modules-row-inline .module-tile:hover > span {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(140,27,242,.14), rgba(192,99,255,.08));
    box-shadow: 0 12px 28px rgba(140,27,242,.16);
}
.modules-row-inline .module-tile > span {
    transition: transform .26s ease, box-shadow .26s ease, background .26s ease;
}
.modules-row-inline .module-tile:hover strong {
    color: var(--vtx-purple);
}

/* 2) Fluxo operacional: sequência visível de entrada, controlada por JS no scroll */
.workflow-step-card.sequence-item {
    opacity: 0 !important;
    transform: translateY(28px) scale(.985) !important;
    filter: blur(8px);
    transition:
        opacity .64s cubic-bezier(.2,.8,.2,1),
        transform .64s cubic-bezier(.2,.8,.2,1),
        filter .64s ease,
        box-shadow .28s ease,
        border-color .28s ease !important;
}
.workflow-step-card.sequence-item.is-sequence-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    filter: blur(0);
}
.workflow-step-card.sequence-item.is-sequence-visible:hover {
    transform: translateY(-5px) scale(1.006) !important;
}

/* 3) Banner de crescimento: label com cor dos subtítulos do footer e visual menos "seleccionado" */
.transformation-shell .section-label {
    color: #e8c6ff !important;
    background: rgba(232, 198, 255, .10) !important;
    border: 1px solid rgba(232, 198, 255, .18) !important;
    box-shadow: none !important;
    text-decoration: none !important;
    text-transform: uppercase;
}
.transformation-shell .section-label,
.transformation-shell .section-label * {
    color: #e8c6ff !important;
}
.transformation-shell .section-label::selection {
    background: transparent;
    color: #e8c6ff;
}
.transformation-shell {
    background:
        radial-gradient(circle at 84% 18%, rgba(255,255,255,.13), rgba(255,255,255,0) 27%),
        radial-gradient(circle at 6% 92%, rgba(192,99,255,.24), rgba(192,99,255,0) 38%),
        linear-gradient(135deg, #1b0d2c 0%, #53219c 50%, #7a35e5 100%) !important;
}
.transformation-copy h2 {
    max-width: 620px;
}
.transformation-copy p {
    max-width: 660px;
    color: rgba(255,255,255,.86);
}
.transformation-tags span {
    background: rgba(232,198,255,.10);
    border-color: rgba(232,198,255,.16);
}
.transform-card {
    border-color: rgba(232,198,255,.14);
}

/* 4) Footer: cards inferiores exactamente alinhados e subtítulos na cor da identidade */
.footer-action-grid {
    align-items: stretch !important;
}
.footer-action-card,
.footer-action-grid .footer-demo-card,
.footer-action-grid .footer-brand-note {
    min-height: 124px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
}
.footer-action-grid .footer-brand-note {
    justify-content: center;
}
.footer-action-grid .footer-demo-card {
    justify-content: space-between;
}
.footer-compact-dark .footer-col h3,
.footer-compact-dark .footer-contact h3,
.footer-compact-dark .footer-top-copy span,
.footer-compact-dark .footer-highlight-card strong,
.footer-action-card strong {
    color: #e8c6ff !important;
}
.footer-action-card span,
.footer-action-card p {
    color: rgba(255,255,255,.78);
}
.footer-compact-dark .footer-col a::before {
    background: linear-gradient(135deg, #e8c6ff, #b53cff);
}

/* 5) Segurança: mantém os cartões compactos e separados */
.security-console .security-floating-card {
    width: 142px !important;
    max-width: 142px !important;
}
.security-console .card-availability { top: 82px !important; left: 34px !important; }
.security-console .card-permissions { top: 142px !important; right: 34px !important; }
.security-console .card-logs { left: 52px !important; bottom: 92px !important; }

@media (max-width: 760px) {
    .footer-action-card,
    .footer-action-grid .footer-demo-card,
    .footer-action-grid .footer-brand-note {
        min-height: auto !important;
        height: auto !important;
        align-items: flex-start;
    }
    .security-console .security-floating-card {
        width: 124px !important;
        max-width: 124px !important;
    }
}


/* ===== v2.9 final requested tweaks ===== */

/* Label do banner sem bordas nem caixa visual */
.transformation-shell .section-label {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-height: auto !important;
    color: #e8c6ff !important;
}
.transformation-shell .section-label::before,
.transformation-shell .section-label::after {
    content: none !important;
}

/* Módulos principais: sem sombras no hover */
.modules-row-inline .module-tile:hover {
    box-shadow: none !important;
}
.modules-row-inline .module-tile:hover > span {
    box-shadow: none !important;
}

/* Sem botão Login no menu */
.nav-login {
    display: none !important;
}


/* ===== v2.9.1 fix: keep module icon perfectly centered on hover ===== */
.modules-row-inline .module-tile > span {
    display: grid !important;
    place-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
}
.modules-row-inline .module-tile:hover > span {
    transform: none !important;
    display: grid !important;
    place-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.modules-row-inline .module-tile > span .icon,
.modules-row-inline .module-tile:hover > span .icon {
    display: block;
    margin: 0 auto;
}


/* ===== v2.9.2 refinement: smoother hover + slightly stronger zoom on main module cards ===== */
.modules-row-inline .module-tile {
    transform-origin: center center;
    will-change: transform, background, border-color;
    transition:
        transform .46s cubic-bezier(.16, 1, .3, 1),
        background .46s cubic-bezier(.16, 1, .3, 1),
        border-color .46s cubic-bezier(.16, 1, .3, 1),
        color .32s ease !important;
}
.modules-row-inline .module-tile:hover {
    transform: translateY(-6px) scale(1.045) !important;
    box-shadow: none !important;
    background:
        radial-gradient(circle at 50% 4%, rgba(176, 62, 255, .115), rgba(176, 62, 255, 0) 54%),
        rgba(255,255,255,.975) !important;
    border-color: rgba(176, 62, 255, .24) !important;
}
.modules-row-inline .module-tile > span {
    transition:
        background .42s cubic-bezier(.16, 1, .3, 1),
        color .42s cubic-bezier(.16, 1, .3, 1),
        transform .42s cubic-bezier(.16, 1, .3, 1) !important;
}
.modules-row-inline .module-tile:hover > span {
    transform: scale(1.045) !important;
    box-shadow: none !important;
    display: grid !important;
    place-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.modules-row-inline .module-tile > span .icon,
.modules-row-inline .module-tile:hover > span .icon {
    display: block;
    margin: 0 auto;
}


/* ===== v2.9.3 harmonic color accents experiment ===== */
:root {
    --vtx-accent-violet: #8c1bf2;
    --vtx-accent-lilac: #bb5cff;
    --vtx-accent-fuchsia: #d94dff;
    --vtx-accent-indigo: #6757ff;
    --vtx-accent-cyan: #25b7ff;
    --vtx-accent-mint: #22c98f;
    --vtx-accent-emerald: #00a86b;
    --vtx-accent-amber: #f5a623;
    --vtx-accent-rose: #ff5f9e;
    --vtx-accent-slate: #5f6cff;
}

.modules-row-inline .module-tile > span {
    color: var(--module-color, var(--vtx-purple)) !important;
    background:
        radial-gradient(circle at 35% 25%, color-mix(in srgb, var(--module-color, var(--vtx-purple)) 24%, white), transparent 62%),
        color-mix(in srgb, var(--module-color, var(--vtx-purple)) 11%, white) !important;
    border: 1px solid color-mix(in srgb, var(--module-color, var(--vtx-purple)) 18%, white);
}
.modules-row-inline .module-tile:hover {
    border-color: color-mix(in srgb, var(--module-color, var(--vtx-purple)) 32%, white) !important;
    background:
        radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--module-color, var(--vtx-purple)) 14%, transparent), transparent 58%),
        rgba(255,255,255,.985) !important;
}
.modules-row-inline .module-tile:hover strong {
    color: var(--module-color, var(--vtx-purple)) !important;
}
.modules-row-inline .module-tile:nth-child(1) { --module-color: var(--vtx-accent-violet); }
.modules-row-inline .module-tile:nth-child(2) { --module-color: var(--vtx-accent-lilac); }
.modules-row-inline .module-tile:nth-child(3) { --module-color: var(--vtx-accent-indigo); }
.modules-row-inline .module-tile:nth-child(4) { --module-color: var(--vtx-accent-fuchsia); }
.modules-row-inline .module-tile:nth-child(5) { --module-color: var(--vtx-accent-amber); }
.modules-row-inline .module-tile:nth-child(6) { --module-color: var(--vtx-accent-cyan); }
.modules-row-inline .module-tile:nth-child(7) { --module-color: var(--vtx-accent-mint); }
.modules-row-inline .module-tile:nth-child(8) { --module-color: var(--vtx-accent-slate); }
.modules-row-inline .module-tile:nth-child(9) { --module-color: var(--vtx-accent-rose); }
.modules-row-inline .module-tile:nth-child(10) { --module-color: var(--vtx-accent-emerald); }

.workflow-step-card { --step-color: var(--vtx-accent-violet); }
.workflow-step-card:nth-child(1) { --step-color: var(--vtx-accent-violet); }
.workflow-step-card:nth-child(2) { --step-color: var(--vtx-accent-indigo); }
.workflow-step-card:nth-child(3) { --step-color: var(--vtx-accent-fuchsia); }
.workflow-step-card:nth-child(4) { --step-color: var(--vtx-accent-cyan); }
.workflow-step-card:nth-child(5) { --step-color: var(--vtx-accent-emerald); }

.workflow-step-number {
    background:
        linear-gradient(135deg, var(--step-color), color-mix(in srgb, var(--step-color) 72%, #ffffff)) !important;
    box-shadow: 0 16px 34px color-mix(in srgb, var(--step-color) 24%, transparent) !important;
}
.workflow-step-card strong {
    color: color-mix(in srgb, var(--step-color) 76%, #087a4f);
    background: color-mix(in srgb, var(--step-color) 12%, #ffffff) !important;
}
.workflow-step-card:hover {
    border-color: color-mix(in srgb, var(--step-color) 30%, white) !important;
}

.hero-stat-card:nth-child(1) strong,
.hero-metrics article:nth-child(1) strong { color: var(--vtx-accent-violet); }
.hero-stat-card:nth-child(2) strong,
.hero-metrics article:nth-child(2) strong { color: var(--vtx-accent-indigo); }
.hero-stat-card:nth-child(3) strong,
.hero-metrics article:nth-child(3) strong { color: var(--vtx-accent-mint); }
.hero-stat-card:nth-child(4) strong,
.hero-metrics article:nth-child(4) strong { color: var(--vtx-accent-fuchsia); }

.hero-stat-card:nth-child(1),
.hero-metrics article:nth-child(1) {
    background: linear-gradient(180deg, rgba(255,255,255,.94), color-mix(in srgb, var(--vtx-accent-violet) 7%, white));
}
.hero-stat-card:nth-child(2),
.hero-metrics article:nth-child(2) {
    background: linear-gradient(180deg, rgba(255,255,255,.94), color-mix(in srgb, var(--vtx-accent-indigo) 7%, white));
}
.hero-stat-card:nth-child(3),
.hero-metrics article:nth-child(3) {
    background: linear-gradient(180deg, rgba(255,255,255,.94), color-mix(in srgb, var(--vtx-accent-mint) 7%, white));
}
.hero-stat-card:nth-child(4),
.hero-metrics article:nth-child(4) {
    background: linear-gradient(180deg, rgba(255,255,255,.94), color-mix(in srgb, var(--vtx-accent-fuchsia) 7%, white));
}

.benefits-grid article:nth-child(1) > span,
.transform-card:nth-child(1) > span { --benefit-color: var(--vtx-accent-violet); }
.benefits-grid article:nth-child(2) > span,
.transform-card:nth-child(2) > span { --benefit-color: var(--vtx-accent-indigo); }
.benefits-grid article:nth-child(3) > span,
.transform-card:nth-child(3) > span { --benefit-color: var(--vtx-accent-mint); }
.benefits-grid article:nth-child(4) > span,
.transform-card:nth-child(4) > span { --benefit-color: var(--vtx-accent-fuchsia); }
.benefits-grid article:nth-child(5) > span { --benefit-color: var(--vtx-accent-amber); }

.benefits-grid article > span {
    color: var(--benefit-color, var(--vtx-purple)) !important;
    background: color-mix(in srgb, var(--benefit-color, var(--vtx-purple)) 11%, white) !important;
}
.transform-card > span {
    background: color-mix(in srgb, var(--benefit-color, #fff) 18%, rgba(255,255,255,.11)) !important;
    color: #fff !important;
}

.security-console-footer span:nth-child(1) .icon { color: #e8c6ff; }
.security-console-footer span:nth-child(2) .icon { color: #8fe5ff; }
.security-floating-card.card-availability strong { color: #fff; }
.security-floating-card.card-permissions strong { color: #f0d7ff; }
.security-floating-card.card-logs strong { color: #bdefff; }

@supports not (color: color-mix(in srgb, red 50%, white)) {
    .modules-row-inline .module-tile > span {
        background: rgba(140, 27, 242, .09) !important;
        border-color: rgba(140, 27, 242, .14);
    }
    .workflow-step-card strong {
        background: rgba(140, 27, 242, .08) !important;
        color: var(--vtx-purple);
    }
}
