/* WORKOM marketing — light theme (white + system navy) */

.wo {
    --bg: #ffffff;
    --bg-2: #f5f7fb;
    --bg-3: #e8eef6;
    --navy: #071838;
    --navy-deep: #071838;
    --line: rgba(7, 24, 56, 0.1);
    --line-strong: rgba(7, 24, 56, 0.16);
    --text: #071838;
    --muted: rgba(7, 24, 56, 0.62);
    --faint: rgba(7, 24, 56, 0.42);
    --accent: #0060aa;
    --logo: #071838;
    --logo-soft: #0060aa;
    --header-bg: #071838;
    --footer-bg: #071838;
    --surface-glow: rgba(7, 24, 56, 0.04);
    --shot-grad-a: #e8eef6;
    --shot-grad-b: #d5e0ee;
    --max: 1160px;
    --radius: 12px;
    --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
    --display: "Sora", "Source Sans 3", system-ui, sans-serif;
    --shadow-card: 0 8px 24px rgba(7, 24, 56, 0.06);

    margin: 0;
    background:
        linear-gradient(180deg, #f5f7fb 0%, #ffffff 28%, #ffffff 100%);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

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

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

.wo img {
    max-width: 100%;
    display: block;
}

.wo-skip {
    position: absolute;
    left: -999px;
    z-index: 100;
}

.wo-skip:focus {
    left: 1rem;
    top: 1rem;
    background: #fff;
    color: #000;
    padding: 0.5rem 0.75rem;
}

.wo-wrap {
    width: min(var(--max), calc(100% - 2rem));
    margin-inline: auto;
}

/* Header — navy bar so white logo stays visible */
.wo-top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, #0a2048 0%, #071838 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(7, 24, 56, 0.22);
}

.wo-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 78px;
}

.wo-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.wo-logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: left center;
}

.wo-top .wo-logo img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: left center;
}

.wo-logo-footer img,
.wo-logo.wo-logo-footer img {
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
}

.wo-tabs {
    display: none;
    align-items: center;
    gap: 0.2rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wo-tabs > a,
.wo .wo-nav-drop-trigger {
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 580;
    color: rgba(238, 243, 251, 0.72);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.wo-tabs > a:hover,
.wo .wo-nav-drop-trigger:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.wo-tabs > a.is-active,
.wo .wo-nav-drop-trigger.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.wo-nav-drop {
    position: relative;
}

.wo-nav-drop-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
}

.wo-nav-drop-trigger__label {
    flex: 1 1 auto;
}

.wo-nav-caret,
.wo-drawer-modules__caret {
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    min-width: 0.75rem;
    min-height: 0.75rem;
    max-width: 0.75rem;
    max-height: 0.75rem;
    flex: 0 0 0.75rem;
    margin-left: auto;
    opacity: 0.75;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.wo-nav-caret {
    opacity: 0.85;
}

.wo-nav-drop:hover .wo-nav-caret,
.wo-nav-drop:focus-within .wo-nav-caret,
.wo-nav-drop.is-open .wo-nav-caret {
    transform: rotate(180deg);
    opacity: 1;
}

.wo-nav-drop-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(20.5rem, calc(100vw - 2rem));
    padding: 0.55rem;
    border-radius: 16px;
    border: 1px solid rgba(7, 24, 56, 0.08);
    background: #fff;
    box-shadow:
        0 4px 12px rgba(7, 24, 56, 0.06),
        0 22px 48px rgba(7, 24, 56, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.28s ease;
    z-index: 60;
}

.wo-nav-drop-menu::before {
    content: "";
    position: absolute;
    top: -0.55rem;
    left: 0;
    right: 0;
    height: 0.55rem;
}

.wo-nav-drop:hover .wo-nav-drop-menu,
.wo-nav-drop:focus-within .wo-nav-drop-menu,
.wo-nav-drop.is-open .wo-nav-drop-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.wo-nav-drop-item {
    display: block;
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
    color: inherit;
    opacity: 0;
    transform: translateY(8px);
    transition:
        background 0.15s ease,
        opacity 0.28s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.wo-nav-drop:hover .wo-nav-drop-item,
.wo-nav-drop:focus-within .wo-nav-drop-item,
.wo-nav-drop.is-open .wo-nav-drop-item {
    opacity: 1;
    transform: translateY(0);
}

.wo-nav-drop:hover .wo-nav-drop-item:nth-child(1),
.wo-nav-drop:focus-within .wo-nav-drop-item:nth-child(1),
.wo-nav-drop.is-open .wo-nav-drop-item:nth-child(1) { transition-delay: 0.04s; }
.wo-nav-drop:hover .wo-nav-drop-item:nth-child(2),
.wo-nav-drop:focus-within .wo-nav-drop-item:nth-child(2),
.wo-nav-drop.is-open .wo-nav-drop-item:nth-child(2) { transition-delay: 0.08s; }
.wo-nav-drop:hover .wo-nav-drop-item:nth-child(3),
.wo-nav-drop:focus-within .wo-nav-drop-item:nth-child(3),
.wo-nav-drop.is-open .wo-nav-drop-item:nth-child(3) { transition-delay: 0.12s; }

.wo-nav-drop-item + .wo-nav-drop-item {
    margin-top: 0.15rem;
}

.wo-nav-drop-item:hover,
.wo-nav-drop-item.is-active {
    background: #f3f6fb;
}

.wo-nav-drop-item__title {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.wo-nav-drop-item__desc {
    display: block;
    padding-left: 0;
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgba(7, 24, 56, 0.58);
}

.wo-nav-drop-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.35rem;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    border-top: 1px solid rgba(7, 24, 56, 0.08);
    font-size: 0.88rem;
    font-weight: 650;
    color: var(--navy);
}

.wo-nav-drop-foot:hover,
.wo-nav-drop-foot.is-active {
    background: #f3f6fb;
}

.wo-drawer-sub {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0 0 0.35rem 0.85rem;
    margin: -0.15rem 0 0.35rem;
}

.wo-drawer-sub a {
    font-size: 0.92rem !important;
    opacity: 0.9;
}

.wo-back-link {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--logo);
}

.wo-back-link:hover {
    color: var(--text);
}

.wo-module-hero {
    margin-top: 0;
    padding: 0;
}

.wo-module-hero__title {
    margin: 0 0 1rem;
    font-family: var(--display);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 650;
    max-width: 16ch;
    color: var(--navy);
}

.wo-module-hero__lead {
    margin: 0 0 0.85rem;
    max-width: 40rem;
    font-size: 1.12rem;
    line-height: 1.55;
    color: var(--text);
    font-weight: 560;
}

.wo-module-hero__explain {
    margin: 0 0 1.5rem;
    max-width: 42rem;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--muted);
}

.wo-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.wo-feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.1rem, 2.2vw, 1.35rem);
    box-shadow: var(--shadow-card);
    min-height: 0;
    min-width: 0;
}

.wo-feature-card__num {
    display: block;
    margin-bottom: 0.85rem;
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent);
}

.wo-feature-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--display);
    font-size: 1.12rem;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.wo-feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.wo-module-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.wo-module-cards--hub .wo-module-card,
.wo-module-more .wo-module-card {
    min-height: 100%;
}

.wo-module-more .wo-module-cards {
    grid-template-columns: 1fr;
    max-width: none;
}

.wo-module-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: clamp(1.2rem, 2.4vw, 1.65rem) clamp(1.1rem, 2.2vw, 1.45rem);
    box-shadow: var(--shadow-card);
    min-width: 0;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wo-module-card:hover {
    border-color: rgba(7, 24, 56, 0.22);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(7, 24, 56, 0.1);
}

.wo-module-card__tag {
    display: block;
    margin-bottom: 0.85rem;
    font-family: var(--display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
}

.wo-module-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--display);
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.wo-module-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
    flex: 1;
}

.wo-module-card__points {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.wo-module-card__points li {
    position: relative;
    padding: 0.28rem 0 0.28rem 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.wo-module-card__points li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--navy);
    position: absolute;
    left: 0;
    top: 0.65rem;
}

.wo-module-card-cta {
    margin-top: 1.25rem;
    font-size: 0.92rem;
    font-weight: 650;
    color: var(--navy);
}

.wo-flow {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.wo-flow li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.15rem;
    align-items: start;
    padding: 1.35rem 1.4rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.wo-flow__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
}

.wo-flow h3 {
    margin: 0 0 0.35rem;
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--navy);
}

.wo-flow p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.wo-module-more {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.wo-module-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.wo-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.wo-show-sm {
    display: none !important;
}

.wo-btn-demo-sm {
    min-height: 36px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    border-radius: 999px;
    white-space: nowrap;
}

.wo-lang {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.wo-lang a {
    padding: 0.4rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(238, 243, 251, 0.6);
    transition: background 0.15s ease, color 0.15s ease;
}

.wo-lang a.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.wo-lang a:hover {
    color: #fff;
}

.wo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.55rem 1.15rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.wo-btn-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
}

.wo-btn-login {
    width: 42px;
    min-width: 42px;
    padding: 0;
    border-radius: 10px;
}

.wo-btn-login .wo-btn-icon {
    width: 1.2rem;
    height: 1.2rem;
    color: #0d6efd;
}

.wo-btn-login:hover .wo-btn-icon {
    color: #075fc5;
}

.wo-btn-primary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.wo-btn-primary:hover {
    background: #0c254f;
    color: #fff;
}

a.wo-btn-primary,
a.wo-btn-primary:hover,
button.wo-btn-primary,
button.wo-btn-primary:hover {
    color: #fff;
}

.wo-btn-ghost {
    background: #fff;
    border-color: rgba(7, 24, 56, 0.18);
    color: var(--text);
}

.wo-btn-ghost:hover {
    background: var(--bg-2);
    border-color: var(--navy);
}

/* Header actions on navy bar */
.wo-top .wo-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.wo-top .wo-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.wo-top .wo-btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--navy);
}

.wo-top .wo-btn-primary:hover {
    background: #e8eef6;
    border-color: #e8eef6;
    color: var(--navy);
}

.wo-top a.wo-btn-primary,
.wo-top a.wo-btn-primary:hover {
    color: var(--navy);
}

.wo-top a.wo-btn-ghost,
.wo-top a.wo-btn-ghost:hover {
    color: #fff;
}

.wo-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.wo-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.wo-menu-bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 18px;
}

.wo-menu-bars span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.wo-menu.is-open .wo-menu-bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.wo-menu.is-open .wo-menu-bars span:nth-child(2) {
    opacity: 0;
}

.wo-menu.is-open .wo-menu-bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.wo-drawer {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a1f44;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.wo-drawer.is-open {
    display: block;
}

.wo-drawer-inner {
    display: flex;
    flex-direction: column;
    padding: 0.65rem 0 1.25rem;
    gap: 0.15rem;
}

.wo-drawer a:not(.wo-btn) {
    display: block;
    padding: 0.85rem 0.85rem;
    border-radius: 10px;
    color: rgba(238, 243, 251, 0.75);
    font-weight: 560;
    font-size: 1.02rem;
}

.wo-drawer a:not(.wo-btn):hover,
.wo-drawer a:not(.wo-btn).is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.wo-drawer-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wo-drawer-cta .wo-btn {
    width: 100%;
}

.wo-drawer-cta .wo-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.wo-drawer-cta .wo-btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--navy);
}

.wo-drawer-cta a.wo-btn-primary,
.wo-drawer-cta a.wo-btn-primary:hover {
    color: var(--navy);
}

.wo-drawer-cta a.wo-btn-ghost,
.wo-drawer-cta a.wo-btn-ghost:hover {
    color: #fff;
}

body.wo-nav-open {
    overflow: hidden;
}

/* Main */
.wo-main {
    padding: 0 0 4rem;
}

.wo-label {
    display: inline-block;
    margin-bottom: 0.9rem;
    font-size: 0.98rem;
    font-weight: 650;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--accent);
}

.wo-brand-mark {
    margin: 0 0 0.85rem;
    font-family: var(--display);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--navy);
}

.wo-hero {
    padding: 2rem 0 3rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}

.wo-hero-copy h1 {
    margin: 0 0 1rem;
    font-family: var(--display);
    font-size: clamp(2.1rem, 4.2vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 650;
    max-width: 16ch;
    color: var(--navy);
}

.wo-hero-copy .lead {
    margin: 0 0 1.4rem;
    max-width: 34rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.wo-hero-visual {
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.wo-hero-mosaic {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0.15rem 0;
    min-height: 0;
    padding: 0.2rem 0.1rem 1.25rem;
}

.wo-hero-mosaic .wo-shot {
    margin: 0;
    height: auto;
    overflow: hidden;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 3px;
    box-shadow:
        0 14px 32px rgba(15, 40, 80, 0.16),
        0 3px 8px rgba(15, 40, 80, 0.08);
}

.wo-hero-mosaic__main {
    grid-column: 1;
    grid-row: 1 / 3;
    z-index: 2;
    width: 98%;
    margin-top: 2.75rem;
    margin-bottom: 1.25rem;
    aspect-ratio: 4 / 5;
    justify-self: start;
    align-self: center;
}

.wo-hero-mosaic__side--a {
    grid-column: 2;
    grid-row: 1;
    z-index: 3;
    width: 112%;
    margin-left: -22%;
    margin-top: -10rem;
    aspect-ratio: 5 / 4;
    transform: rotate(1.75deg);
}

.wo-hero-mosaic__side--b {
    grid-column: 2;
    grid-row: 2;
    z-index: 1;
    width: 118%;
    margin-left: -16%;
    margin-top: -1.85rem;
    aspect-ratio: 4 / 3.15;
    transform: rotate(-1.4deg);
}

.wo-hero-mosaic .wo-shot-body,
.wo-hero-mosaic .wo-shot-open,
.wo-hero-mosaic .wo-shot-open img {
    height: 100%;
    width: 100%;
}

.wo-hero-mosaic .wo-shot-body {
    aspect-ratio: auto;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.wo-hero-mosaic .wo-shot-open {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.wo-hero-mosaic .wo-shot-open img {
    object-fit: cover;
    object-position: center;
}

.wo-hero-visual .wo-shot {
    position: relative;
}

.wo-reveal {
    animation: wo-fade-up 0.7s ease both;
}

@keyframes wo-fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wo-animate .wo-animate-item,
.wo-animate.wo-band,
.wo-animate > .wo-label,
.wo-animate > h2,
.wo-animate > .wo-lead,
.wo-animate > .wo-steps > li,
.wo-animate .wo-prices > .wo-price {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.wo-animate.is-inview .wo-animate-item,
.wo-animate.is-inview.wo-band,
.wo-animate.is-inview > .wo-label,
.wo-animate.is-inview > h2,
.wo-animate.is-inview > .wo-lead,
.wo-animate.is-inview > .wo-steps > li,
.wo-animate.is-inview .wo-prices > .wo-price {
    opacity: 1;
    transform: translateY(0);
}

.wo-animate.is-inview .wo-animate-item:nth-child(1),
.wo-animate.is-inview > .wo-steps > li:nth-child(1),
.wo-animate.is-inview .wo-prices > .wo-price:nth-child(1) { transition-delay: 0.05s; }
.wo-animate.is-inview .wo-animate-item:nth-child(2),
.wo-animate.is-inview > .wo-steps > li:nth-child(2),
.wo-animate.is-inview .wo-prices > .wo-price:nth-child(2) { transition-delay: 0.12s; }
.wo-animate.is-inview .wo-animate-item:nth-child(3),
.wo-animate.is-inview > .wo-steps > li:nth-child(3),
.wo-animate.is-inview .wo-prices > .wo-price:nth-child(3) { transition-delay: 0.19s; }
.wo-animate.is-inview .wo-animate-item:nth-child(4),
.wo-animate.is-inview > .wo-steps > li:nth-child(4),
.wo-animate.is-inview .wo-prices > .wo-price:nth-child(4) { transition-delay: 0.26s; }
.wo-animate.is-inview .wo-animate-item:nth-child(5) { transition-delay: 0.33s; }

.wo-split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.25rem;
    align-items: center;
}

.wo-split-copy .wo-lead {
    margin-bottom: 1.25rem;
}

.wo-split-copy h2 {
    max-width: 12ch;
}

.wo-split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
    .wo-reveal,
    .wo-animate .wo-animate-item,
    .wo-animate > .wo-label,
    .wo-animate > h2,
    .wo-animate > .wo-lead,
    .wo-animate > .wo-steps > li,
    .wo-animate .wo-prices > .wo-price {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.wo-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.wo-stack {
    color: var(--faint);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Shot */
.wo-shot {
    background: transparent;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: none;
}

.wo-shot-body {
    aspect-ratio: 16 / 10;
    background: var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.wo-shot-open {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.65rem;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.wo-shot-body img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: none;
}

.wo-lazy {
    opacity: 0.35;
    filter: blur(0);
    transition: opacity 0.35s ease;
}

.wo-lazy.is-loaded {
    opacity: 1;
}

.wo-shot-open:hover img {
    transform: none;
}

.wo-shot-empty {
    text-align: center;
    padding: 1.5rem;
    color: var(--faint);
}

.wo-shot-empty strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.wo-shot-empty small {
    font-size: 0.75rem;
}

.wo-shot-caption {
    padding: 0.85rem 0.15rem 0.15rem;
}

.wo-shot-caption strong {
    display: block;
    font-family: var(--display);
    font-size: 0.98rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}

.wo-shot-caption p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 42ch;
}

.wo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(4, 10, 20, 0.88);
    backdrop-filter: blur(8px);
}

.wo-lightbox.is-open {
    display: flex;
}

.wo-lightbox-inner {
    position: relative;
    max-width: min(1200px, 96vw);
    max-height: 92vh;
    width: auto;
}

.wo-lightbox-inner img {
    display: block;
    max-width: 100%;
    max-height: 92vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    cursor: zoom-out;
    transform-origin: center center;
    transition: transform 0.2s ease;
}

.wo-lightbox-inner img.is-zoomed {
    cursor: grab;
    transform: scale(1.65);
}

.wo-lightbox-close {
    position: absolute;
    top: -0.35rem;
    right: -0.35rem;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.wo-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.wo-lightbox-label {
    margin: 0.75rem 0 0;
    text-align: center;
    color: rgba(238, 243, 251, 0.75);
    font-size: 0.85rem;
    font-weight: 600;
}

body.wo-lightbox-open {
    overflow: hidden;
}

/* Marquee — static on desktop, animated on mobile */
.wo-marquee-wrap {
    border-block: 1px solid var(--line);
    background: var(--bg-2);
    overflow: hidden;
    margin: 1.5rem 0 0;
}

.wo-marquee-label {
    text-align: center;
    padding: 1.1rem 1rem 0.35rem;
    font-size: 0.78rem;
    color: var(--faint);
}

.wo-marquee {
    display: flex;
    justify-content: center;
    padding: 0.85rem 1.25rem 1.2rem;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    animation: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.wo-marquee span {
    white-space: normal;
}

.wo-marquee span + span {
    display: none;
}

@keyframes wo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sections */
.wo-section {
    padding: 5rem 0 0;
}

.wo-section + .wo-section {
    margin-top: 0;
    padding-top: 5rem;
}

.wo-section h2 {
    margin: 0 0 0.85rem;
    font-family: var(--display);
    font-size: clamp(1.7rem, 3.4vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 650;
    max-width: 16ch;
}

.wo-section .wo-lead {
    margin: 0 0 2rem;
    color: var(--muted);
    max-width: 38rem;
    font-size: 1.05rem;
}

.wo-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.wo-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.wo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.wo-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-card);
}

.wo-card .idx {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--faint);
}

.wo-card h3 {
    margin: 0 0 0.45rem;
    font-family: var(--display);
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.wo-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.wo-card ul {
    margin: 0.9rem 0 0;
    padding: 0;
    list-style: none;
}

.wo-card li {
    padding: 0.28rem 0 0.28rem 0.85rem;
    position: relative;
    color: var(--muted);
    font-size: 0.92rem;
}

.wo-card li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--navy);
    position: absolute;
    left: 0;
    top: 0.65rem;
}

.wo-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.wo-feature:nth-of-type(even) .wo-feature-copy {
    order: 2;
}

.wo-feature-copy .idx {
    color: var(--faint);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.wo-feature-copy h3 {
    margin: 0.5rem 0 0.65rem;
    font-family: var(--display);
    font-size: 1.55rem;
    letter-spacing: -0.03em;
}

.wo-feature-copy p {
    margin: 0 0 0.85rem;
    color: var(--muted);
}

.wo-feature-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wo-feature-copy li {
    position: relative;
    padding: 0.28rem 0 0.28rem 0.85rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.wo-feature-copy li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--navy);
    position: absolute;
    left: 0;
    top: 0.65rem;
}

.wo-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wo-steps li {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.85rem 1.65rem;
    min-height: 11rem;
}

.wo-steps .idx {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--faint);
    letter-spacing: 0.08em;
}

.wo-steps h3 {
    margin: 0 0 0.65rem;
    font-family: var(--display);
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.wo-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.wo-prices-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 0.85rem;
}

.wo-prices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    padding-top: 0.35rem;
}

.wo-price {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2.1rem 1.85rem 1.85rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    box-shadow: 0 1px 0 rgba(7, 24, 56, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wo-price:hover {
    border-color: rgba(7, 24, 56, 0.18);
    box-shadow: 0 14px 36px rgba(7, 24, 56, 0.08);
    transform: translateY(-2px);
}

.wo-price.is-featured {
    background: linear-gradient(165deg, #0a2148 0%, var(--navy) 55%, #06122a 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(7, 24, 56, 0.28);
    transform: translateY(-4px);
    padding-top: 2.75rem;
}

.wo-price.is-featured:hover {
    border-color: transparent;
    box-shadow: 0 22px 48px rgba(7, 24, 56, 0.34);
    transform: translateY(-6px);
}

.wo-price-badge {
    position: absolute;
    top: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.wo-price-head {
    margin-bottom: 0.85rem;
}

.wo-price h3 {
    margin: 0 0 0.65rem;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--faint);
}

.wo-price.is-featured h3 {
    color: rgba(238, 243, 251, 0.7);
}

.wo-price-amount {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.7rem, 3.5vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--navy);
    word-break: break-word;
}

.wo-price-period {
    display: inline;
    margin-left: 0.15em;
    font-family: var(--font);
    font-size: 0.42em;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    color: var(--muted);
    vertical-align: 0.15em;
}

.wo-price.is-featured .wo-price-period {
    color: rgba(230, 240, 255, 0.72);
}

.wo-price-amount.is-text {
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.wo-price.is-featured .wo-price-amount {
    color: #fff;
}

.wo-price-desc {
    margin: 0 0 1.35rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.wo-price.is-featured .wo-price-desc {
    color: rgba(230, 240, 255, 0.72);
}

.wo-price-list {
    list-style: none;
    margin: 0 0 1.65rem;
    padding: 0;
    flex: 1;
}

.wo-price-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.35rem;
    font-size: 0.98rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.wo-price-list li:first-child {
    border-top: 0;
}

.wo-price-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
}

.wo-price.is-featured .wo-price-list li {
    color: rgba(230, 240, 255, 0.82);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.wo-price.is-featured .wo-price-list li::before {
    background: #6eb0e8;
}

.wo-price .wo-btn {
    align-self: stretch;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.wo-price.is-featured .wo-btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--navy);
}

.wo-price.is-featured .wo-btn-primary:hover {
    background: #e8eef6;
    color: var(--navy);
}

.wo-price.is-featured a.wo-btn-primary,
.wo-price.is-featured a.wo-btn-primary:hover {
    color: var(--navy);
}

.wo-faq details {
    border-top: 1px solid var(--line);
    padding: 0.15rem 0;
}

.wo-faq details:last-child {
    border-bottom: 1px solid var(--line);
}

.wo-faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 1.02rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 0;
    color: var(--text);
}

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

.wo-faq summary::after {
    content: "";
    flex-shrink: 0;
    width: 0.55rem;
    height: 0.55rem;
    margin-top: -0.15rem;
    border-right: 2px solid var(--faint);
    border-bottom: 2px solid var(--faint);
    transform: rotate(45deg);
    transition: transform 0.28s ease, border-color 0.2s ease;
}

.wo-faq details.is-open summary::after,
.wo-faq details[open]:not(.wo-faq-ready) summary::after {
    transform: rotate(225deg);
    border-color: var(--accent);
}

.wo-faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.34s ease;
}

.wo-faq details.is-open > .wo-faq-panel,
.wo-faq details[open]:not(.wo-faq-ready) > .wo-faq-panel {
    grid-template-rows: 1fr;
}

.wo-faq-panel-inner {
    overflow: hidden;
    min-height: 0;
}

.wo-faq p {
    margin: 0 0 1.05rem;
    color: var(--muted);
    max-width: 58ch;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.28s ease 0.04s, transform 0.28s ease 0.04s;
}

.wo-faq details.is-open p,
.wo-faq details[open]:not(.wo-faq-ready) p {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .wo-faq-panel,
    .wo-faq summary::after,
    .wo-faq p {
        transition: none;
    }
}

.wo-sec-list {
    display: grid;
    gap: 0.75rem;
}

.wo-sec-list article {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-2);
}

.wo-sec-list .n {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--faint);
    letter-spacing: 0.06em;
}

.wo-sec-list h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.wo-sec-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.wo-shot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wo-shot-grid .wo-shot:first-child {
    grid-column: auto;
}

.wo-band {
    margin-top: 0;
    padding: 7rem 0 0;
    border-radius: 0;
    border: 0;
    background: transparent;
}

.wo-band h2 {
    max-width: 18ch;
}

.wo-band .wo-lead {
    margin: 0 0 1.75rem;
    color: var(--muted);
    max-width: 38rem;
    font-size: 1.05rem;
}

.wo-band .wo-cta-row {
    margin-top: 0;
}

.wo-clients {
    padding-top: 5rem;
    padding-bottom: 0.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
    overflow-x: clip;
    overflow-x: hidden;
    max-width: 100%;
}

.wo-clients .wo-label {
    margin-bottom: 1.5rem;
}

.wo-logos-desktop {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: none;
    margin-inline: auto;
}

.wo-client-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.wo-client-row:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-inline: 0;
    width: 100%;
}

@media (max-width: 919px) {
    .wo-client-row,
    .wo-client-row:last-child {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }
}

.wo-client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 1rem 1.15rem;
    background: var(--navy);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wo-clients-slider {
    display: none;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 0.25rem 0;
    contain: paint;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wo-clients-slider::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.wo-clients-track {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    width: max-content;
    max-width: none;
    animation: wo-clients-scroll 32s linear infinite;
    will-change: transform;
}

.wo-clients-track .wo-client-card {
    width: 150px;
    min-height: 76px;
    flex-shrink: 0;
}

.wo-clients-track img,
.wo-logos-desktop img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

@keyframes wo-clients-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.wo-logo-slot {
    display: block;
    width: 120px;
    height: 36px;
    border-radius: 8px;
    border: 1px dashed var(--line-strong);
    background: rgba(61, 126, 196, 0.06);
}

.wo-phone-line {
    margin: 1rem 0 0;
    font-size: 0.95rem;
}

.wo-phone-line a,
.wo-phone-link {
    color: var(--logo);
    font-weight: 650;
    letter-spacing: 0.01em;
}

.wo-phone-line a:hover,
.wo-phone-link:hover {
    color: var(--text);
}

.wo-contact-direct {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0 0 1.35rem;
}

.wo-whatsapp-hint {
    font-size: 0.82rem;
    color: var(--faint);
}


.wo-footer .wo-footer-copy,
.wo-footer .wo-footer-col a,
.wo-footer .wo-footer-muted {
    color: rgba(210, 224, 242, 0.68);
}

.wo-footer .wo-footer-col h4 {
    color: rgba(238, 243, 251, 0.95);
}

.wo-footer .wo-copy,
.wo-footer .wo-footer-bottom-tag {
    color: rgba(170, 195, 225, 0.5);
}

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

.wo-price.is-featured {
    background: linear-gradient(165deg, #0a2148 0%, var(--navy) 55%, #06122a 100%);
    color: #fff;
    border-color: transparent;
}

.wo-price.is-featured .wo-price-desc,
.wo-price.is-featured .wo-price-list li {
    color: rgba(230, 240, 255, 0.82);
}

/* Footer */
.wo-footer {
    margin-top: 5.5rem;
    border-top: 1px solid var(--line);
    padding: 3.25rem 0 1.75rem;
    background: var(--footer-bg);
}

.wo-footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 2.5rem 3rem;
    align-items: start;
}

.wo-footer-brand {
    max-width: 22rem;
}

.wo-footer-copy {
    margin: 1rem 0 0;
    color: rgba(210, 224, 242, 0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

.wo-footer-col h4 {
    margin: 0.35rem 0 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(238, 243, 251, 0.95);
}

.wo-footer-col a,
.wo-footer-muted {
    display: block;
    color: rgba(210, 224, 242, 0.68);
    font-size: 0.92rem;
    margin-bottom: 0.55rem;
    line-height: 1.4;
}

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

.wo-footer-muted {
    cursor: default;
}

.wo-footer-bottom {
    margin-top: 2.75rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(120, 160, 210, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
}

.wo-copy {
    margin: 0;
    color: rgba(170, 195, 225, 0.5);
    font-size: 0.78rem;
}

.wo-footer-bottom-tag {
    margin: 0;
    color: rgba(170, 195, 225, 0.5);
    font-size: 0.78rem;
    text-align: right;
}

@media (max-width: 919px) {
    .wo-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .wo-footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wo-footer-brand {
        max-width: none;
    }

    .wo-logo-footer img,
    .wo-logo.wo-logo-footer img {
        height: 48px;
        width: auto;
        max-width: 200px;
        object-fit: contain;
    }

    .wo-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .wo-footer-bottom-tag {
        text-align: left;
    }
}

@media (min-width: 920px) {
    .wo-tabs {
        display: flex;
    }

    .wo-menu {
        display: none;
    }

    .wo-drawer {
        display: none !important;
    }
}

@media (max-width: 919px) {
    .wo-top-row {
        min-height: 72px;
        gap: 0.5rem;
    }

    .wo-logo {
        min-width: 0;
        flex-shrink: 1;
    }

    .wo-logo img,
    .wo-top .wo-logo img {
        height: 58px;
        width: auto;
        max-width: 200px;
        object-fit: contain;
        object-position: left center;
    }

    .wo-actions {
        gap: 0.35rem;
        flex-shrink: 0;
    }

    .wo-lang a {
        padding: 0.3rem 0.45rem;
        font-size: 0.68rem;
    }

    .wo-drawer {
        max-height: 0;
    }

    .wo-drawer.is-open {
        max-height: min(78dvh, calc(100dvh - 64px));
    }

    .wo-hero,
    .wo-grid-2,
    .wo-grid-3,
    .wo-grid-4,
    .wo-split-section,
    .wo-feature,
    .wo-feature:nth-of-type(even) .wo-feature-copy,
    .wo-form .row {
        grid-template-columns: 1fr;
    }

    .wo-feature:nth-of-type(even) .wo-feature-copy {
        order: initial;
    }

    .wo-hero-mosaic {
        grid-template-columns: 1.15fr 1fr;
        gap: 0.1rem 0;
        padding-bottom: 1.15rem;
        min-height: 0;
        overflow: visible;
    }

    .wo-hero-mosaic__main {
        margin-top: 2rem;
        margin-bottom: 1rem;
        width: 98%;
        align-self: center;
    }

    .wo-hero-mosaic__side--a {
        margin-left: -18%;
        width: 114%;
        transform: rotate(1.2deg);
    }

    .wo-hero-mosaic__side--b {
        margin-left: -14%;
        margin-top: -1.35rem;
        width: 116%;
        transform: rotate(-1deg);
    }

    .wo-hero-mosaic__main {
        grid-row: 1 / 3;
    }

    .wo-hide-sm {
        display: none !important;
    }

    .wo-show-sm {
        display: inline-flex !important;
    }

    .wo-section {
        padding-top: 3.75rem;
    }

    .wo-section + .wo-section {
        margin-top: 0;
        padding-top: 3.75rem;
    }

    .wo-clients {
        padding-top: 3.75rem;
        margin-top: 0;
    }

    .wo-hero {
        padding-top: 1.5rem;
    }

    .wo-hero-copy h1 {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
        max-width: none;
    }

    .wo-band {
        margin-top: 0;
        padding: 5.5rem 0 0;
    }
}

@media (min-width: 640px) {
    .wo-module-cards,
    .wo-feature-grid,
    .wo-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wo-module-more .wo-module-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 48rem;
    }

    .wo-prices {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        margin-inline: 0;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
        cursor: default;
        user-select: auto;
    }

    .wo-price {
        flex: unset;
        scroll-snap-align: unset;
        padding: 1.75rem 1.5rem;
    }

    .wo-price:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 28rem;
        justify-self: center;
        width: 100%;
    }

    .wo-animate.is-inview .wo-prices > .wo-price {
        opacity: 1;
        transform: translateY(0);
    }

    .wo-animate.is-inview .wo-prices > .wo-price.is-featured {
        transform: translateY(-4px);
    }

    .wo-client-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wo-client-row:last-child {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 100%;
    }
}

@media (min-width: 920px) {
    .wo-module-cards,
    .wo-feature-grid,
    .wo-steps,
    .wo-prices {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wo-price:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }

    .wo-shot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wo-shot-grid .wo-shot:first-child {
        grid-column: 1 / -1;
    }

    .wo-client-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .wo-client-row:last-child {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 75%;
        margin-inline: auto;
    }
}

@media (min-width: 640px) and (max-width: 919px) {
    .wo-grid-2,
    .wo-split-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 639px) {
    .wo-marquee {
        justify-content: flex-start;
        gap: 2.5rem;
        width: max-content;
        margin: 0;
        padding: 0.85rem 0 1.2rem;
        animation: wo-scroll 28s linear infinite;
        text-align: left;
    }

    .wo-marquee span {
        white-space: nowrap;
    }

    .wo-marquee span + span {
        display: inline;
    }

    .wo-prices-wrap {
        margin-inline: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding-top: 1rem;
        contain: none;
    }

    .wo-prices {
        display: flex;
        grid-template-columns: none;
        gap: 0.85rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scroll-padding-inline: 1rem;
        padding: 1.1rem 1rem 1.5rem;
        margin-inline: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        cursor: grab;
        touch-action: pan-x;
        user-select: none;
    }

    .wo-prices.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
        scroll-behavior: auto;
    }

    .wo-prices::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .wo-prices a {
        user-select: none;
        -webkit-user-drag: none;
    }

    .wo-price {
        flex: 0 0 min(82vw, 300px);
        max-width: min(82vw, 300px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        min-height: auto;
        min-width: 0;
        padding: 1.75rem 1.35rem 1.5rem;
        box-sizing: border-box;
        transition: opacity 0.35s ease, box-shadow 0.35s ease, transform 0.55s ease;
    }

    .wo-animate:not(.is-inview) .wo-prices > .wo-price {
        opacity: 0;
        transform: translateY(18px);
    }

    .wo-animate.is-inview .wo-prices > .wo-price {
        opacity: 0.7;
        transform: none;
    }

    .wo-animate.is-inview .wo-prices > .wo-price.is-featured {
        transform: none;
    }

    .wo-price.is-slide-active,
    .wo-animate.is-inview .wo-prices > .wo-price.is-slide-active {
        opacity: 1;
        transform: none;
        box-shadow: 0 14px 36px rgba(7, 24, 56, 0.28);
    }

    .wo-price.is-featured.is-slide-active,
    .wo-animate.is-inview .wo-prices > .wo-price.is-featured.is-slide-active {
        transform: none;
        box-shadow: 0 18px 42px rgba(7, 24, 56, 0.5);
    }

    #cmimet {
        overflow-x: hidden;
        max-width: 100%;
    }

    .wo-logos-desktop {
        display: none;
    }

    .wo-clients-slider {
        display: block;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        contain: paint;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .wo-clients-slider::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .wo-clients-track {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wo-marquee,
    .wo-clients-track {
        animation: none;
    }

    .wo-prices {
        scroll-behavior: auto;
    }

    .wo-price {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .wo-price.is-featured {
        transform: none;
    }
}

/* Premium light refresh */
.wo {
    --bg: #f7faff;
    --bg-2: #f1f6fc;
    --bg-3: #e4eef9;
    --navy: #092a55;
    --navy-deep: #061e40;
    --line: rgba(9, 42, 85, 0.11);
    --line-strong: rgba(9, 42, 85, 0.18);
    --text: #102b4d;
    --muted: #5d718b;
    --faint: #8b9bb0;
    --accent: #1174e6;
    --logo: #092a55;
    --logo-soft: #1174e6;
    --header-bg: rgba(255, 255, 255, 0.42);
    --footer-bg: #071f41;
    --surface-glow: rgba(17, 116, 230, 0.07);
    --shot-grad-a: #eaf3fc;
    --shot-grad-b: #d9e8f8;
    --radius: 16px;
    --shadow-card: 0 18px 45px rgba(20, 61, 105, 0.08);
    background:
        radial-gradient(circle at 93% 5%, rgba(77, 161, 244, 0.14), transparent 22rem),
        linear-gradient(180deg, #ffffff 0, #f7faff 34rem, #ffffff 100%);
    color: var(--text);
}

.wo-top {
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(9, 42, 85, 0.09);
    box-shadow: 0 8px 30px rgba(20, 61, 105, 0.07);
    backdrop-filter: blur(18px);
}

.wo-top-row {
    min-height: 84px;
}

.wo-logo img {
    height: 48px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    object-position: left center;
}

.wo-top .wo-logo img {
    height: 48px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    object-position: left center;
}

.wo-logo.wo-logo-footer img {
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
}

.wo-tabs {
    gap: 0.15rem;
    padding: 0.28rem;
    background: #f3f7fc;
    border: 1px solid rgba(9, 42, 85, 0.08);
}

.wo-tabs > a,
.wo .wo-nav-drop-trigger {
    color: #61748c;
    border-radius: 10px;
    font-size: 0.9rem;
}

.wo-tabs > a:hover,
.wo .wo-nav-drop-trigger:hover {
    color: var(--navy);
    background: #fff;
}

.wo-tabs > a.is-active,
.wo .wo-nav-drop-trigger.is-active {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 4px 12px rgba(20, 61, 105, 0.08);
}

.wo-lang {
    border-color: rgba(9, 42, 85, 0.12);
    background: #f3f7fc;
}

.wo-lang a {
    color: #71839a;
}

.wo-lang a.is-active {
    background: var(--navy);
    color: #fff;
}

.wo-top .wo-btn-ghost {
    background: #fff;
    border-color: rgba(9, 42, 85, 0.14);
    color: var(--navy);
}

.wo-top .wo-btn-ghost:hover {
    background: #f2f7fd;
    border-color: var(--accent);
    color: var(--navy);
}

.wo-top .wo-btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 8px 18px rgba(17, 116, 230, 0.2);
}

.wo-top .wo-btn-primary:hover {
    background: #075fc5;
    border-color: #075fc5;
    color: #fff;
}

.wo-top a.wo-btn-primary,
.wo-top a.wo-btn-primary:hover {
    color: #fff;
}

.wo-menu {
    border-color: rgba(9, 42, 85, 0.16);
    background: #f3f7fc;
    color: var(--navy);
}

.wo-menu:hover {
    background: #e8f1fb;
}

/* Mobile navbar redesign */
@media (max-width: 919px) {
    .wo-top {
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 28px rgba(20, 61, 105, 0.08);
    }

    .wo-top-row {
        min-height: 72px;
        gap: 0.65rem;
    }

    .wo-top .wo-logo img {
        height: 58px;
        width: auto;
        max-width: 200px;
        object-fit: contain;
    }

    .wo-actions {
        gap: 0.4rem;
    }

    .wo-lang {
        border-radius: 999px;
        border-color: rgba(9, 42, 85, 0.1);
        background: #f1f5fa;
    }

    .wo-lang a {
        padding: 0.38rem 0.55rem;
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }

    .wo-top .wo-btn-demo-sm {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
        box-shadow: 0 6px 16px rgba(9, 42, 85, 0.18);
    }

    .wo-menu {
        width: 40px;
        min-height: 40px;
        border-radius: 12px;
        border: 1px solid rgba(9, 42, 85, 0.12);
        background: #fff;
        color: var(--navy);
        box-shadow: 0 4px 12px rgba(20, 61, 105, 0.06);
    }

    .wo-menu-bars {
        gap: 4.5px;
        width: 16px;
    }

    .wo-menu.is-open .wo-menu-bars span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .wo-menu.is-open .wo-menu-bars span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .wo-drawer {
        display: block;
        position: relative;
        z-index: 2;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: translateY(-10px);
        border-top: 1px solid transparent;
        background:
            linear-gradient(180deg, #f7faff 0%, #ffffff 40%);
        box-shadow: none;
        pointer-events: none;
        transition:
            max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.32s ease,
            transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0.42s,
            border-color 0.2s ease,
            box-shadow 0.32s ease;
    }

    .wo-drawer.is-open,
    .wo-drawer.is-closing {
        overflow: hidden;
        pointer-events: none;
        -webkit-overflow-scrolling: touch;
    }

    .wo-drawer.is-open {
        max-height: min(78dvh, calc(100dvh - 64px));
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        transform: translateY(0);
        border-top-color: rgba(9, 42, 85, 0.08);
        box-shadow: 0 24px 48px rgba(9, 42, 85, 0.12);
        pointer-events: auto;
        transition:
            max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.32s ease,
            transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s,
            border-color 0.2s ease,
            box-shadow 0.32s ease;
    }

    .wo-drawer.is-closing {
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        border-top-color: transparent;
        box-shadow: none;
        transition:
            max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0.34s,
            border-color 0.2s ease,
            box-shadow 0.28s ease;
    }

    .wo-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1;
        border: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.32s ease,
            visibility 0.32s ease;
    }

    .wo-nav-backdrop:not([hidden]) {
        display: block;
    }

    body.wo-nav-open .wo-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.wo-nav-open .wo-top {
        z-index: 50;
    }

    .wo-drawer-inner {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0 1.35rem;
        min-height: min(70dvh, calc(100dvh - 80px));
    }

    .wo-drawer-nav > *,
    .wo-drawer-cta {
        opacity: 0;
        transform: translateY(10px);
        transition:
            opacity 0.28s ease,
            transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .wo-drawer.is-open .wo-drawer-nav > *,
    .wo-drawer.is-open .wo-drawer-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .wo-drawer.is-open .wo-drawer-nav > *:nth-child(1) { transition-delay: 0.05s; }
    .wo-drawer.is-open .wo-drawer-nav > *:nth-child(2) { transition-delay: 0.09s; }
    .wo-drawer.is-open .wo-drawer-nav > *:nth-child(3) { transition-delay: 0.13s; }
    .wo-drawer.is-open .wo-drawer-nav > *:nth-child(4) { transition-delay: 0.17s; }
    .wo-drawer.is-open .wo-drawer-nav > *:nth-child(5) { transition-delay: 0.21s; }
    .wo-drawer.is-open .wo-drawer-cta { transition-delay: 0.26s; }

    .wo-drawer.is-closing .wo-drawer-nav > *,
    .wo-drawer.is-closing .wo-drawer-cta {
        opacity: 0;
        transform: translateY(8px);
        transition-delay: 0s;
    }

    .wo-drawer-nav {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        flex: 1;
    }

    .wo-drawer a:not(.wo-btn) {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.95rem 1rem;
        border-radius: 14px;
        color: var(--navy);
        font-weight: 600;
        font-size: 1.05rem;
        background: transparent;
    }

    .wo-drawer a:not(.wo-btn):hover,
    .wo-drawer a:not(.wo-btn).is-active {
        color: var(--navy);
        background: #eaf2fb;
    }

    .wo-drawer-modules {
        margin: 0.15rem 0;
        padding: 0;
        border-radius: 14px;
        background: transparent;
        border: 0;
    }

    .wo-drawer-modules__trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        list-style: none;
        cursor: pointer;
        padding: 0.95rem 1rem;
        border-radius: 14px;
        color: var(--navy);
        font-weight: 600;
        font-size: 1.05rem;
        user-select: none;
    }

    .wo-drawer-modules__label {
        flex: 1 1 auto;
        min-width: 0;
    }

    .wo-drawer-modules__caret {
        margin-left: auto;
        opacity: 0.7;
        transform: rotate(0deg);
        transform-origin: 50% 50%;
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
    }

    .wo-drawer-modules.is-open .wo-drawer-modules__caret {
        transform: rotate(180deg);
        opacity: 1;
    }

    .wo-drawer-modules__trigger::-webkit-details-marker {
        display: none;
    }

    .wo-drawer-modules__trigger::marker {
        display: none;
        content: "";
        font-size: 0;
    }

    .wo-drawer-modules__trigger:hover,
    .wo-drawer-modules.is-open .wo-drawer-modules__trigger {
        background: #eaf2fb;
    }

    .wo-drawer-sub {
        display: grid;
        gap: 0.35rem;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0 0.35rem;
        margin: 0;
        transition:
            max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            padding 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .wo-drawer-modules.is-open .wo-drawer-sub {
        max-height: 14rem;
        opacity: 1;
        padding: 0.35rem 0.35rem 0.55rem;
    }

    .wo-drawer-modules.is-closing .wo-drawer-sub {
        max-height: 0;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .wo-drawer-sub a {
        padding: 0.75rem 0.8rem !important;
        font-size: 0.95rem !important;
        background: #f3f7fc;
        border: 1px solid rgba(9, 42, 85, 0.06);
        border-radius: 12px !important;
        opacity: 0;
        transform: translateY(8px);
        transition:
            opacity 0.26s ease,
            transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
            background 0.15s ease,
            border-color 0.15s ease,
            box-shadow 0.15s ease;
    }

    .wo-drawer-modules.is-open .wo-drawer-sub a {
        opacity: 1;
        transform: translateY(0);
    }

    .wo-drawer-modules.is-open .wo-drawer-sub a:nth-child(1) { transition-delay: 0.05s; }
    .wo-drawer-modules.is-open .wo-drawer-sub a:nth-child(2) { transition-delay: 0.1s; }
    .wo-drawer-modules.is-open .wo-drawer-sub a:nth-child(3) { transition-delay: 0.15s; }

    .wo-drawer-modules.is-closing .wo-drawer-sub a {
        opacity: 0;
        transform: translateY(6px);
        transition-delay: 0s;
    }

    .wo-drawer-sub a.is-active,
    .wo-drawer-sub a:hover {
        background: #fff !important;
        border-color: rgba(17, 116, 230, 0.28);
        box-shadow: 0 6px 16px rgba(17, 116, 230, 0.08);
    }

    .wo-drawer-cta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        margin-top: auto;
        padding: 1rem 0 0;
        border-top: 1px solid rgba(9, 42, 85, 0.08);
        position: sticky;
        bottom: 0;
        background: linear-gradient(180deg, transparent, #fff 28%);
    }

    .wo-drawer-cta .wo-btn {
        width: 100%;
        min-height: 48px;
        border-radius: 14px;
        font-size: 0.98rem;
    }

    .wo-drawer-cta .wo-btn-ghost {
        background: #fff;
        border-color: rgba(9, 42, 85, 0.16);
        color: var(--navy);
    }

    .wo-drawer-cta .wo-btn-primary {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
        box-shadow: 0 10px 24px rgba(9, 42, 85, 0.2);
    }

    .wo-drawer-cta a.wo-btn-primary,
    .wo-drawer-cta a.wo-btn-primary:hover {
        color: #fff;
    }

    .wo-drawer-cta a.wo-btn-ghost,
    .wo-drawer-cta a.wo-btn-ghost:hover {
        color: var(--navy);
    }
}

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

@keyframes wo-drawer-item-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wo-nav-drop-menu {
        transition: none;
    }

    .wo-nav-drop:hover .wo-nav-drop-menu,
    .wo-nav-drop:focus-within .wo-nav-drop-menu,
    .wo-nav-drop.is-open .wo-nav-drop-menu {
        transform: translateX(-50%);
    }

    .wo-nav-drop-item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    @media (max-width: 919px) {
        .wo-nav-backdrop {
            transition: none;
        }

        .wo-drawer,
        .wo-drawer.is-open,
        .wo-drawer.is-closing {
            transition: none;
            transform: none;
        }

        .wo-drawer-nav > *,
        .wo-drawer-cta,
        .wo-drawer.is-open .wo-drawer-nav > *,
        .wo-drawer.is-open .wo-drawer-cta,
        .wo-drawer.is-closing .wo-drawer-nav > *,
        .wo-drawer.is-closing .wo-drawer-cta,
        .wo-drawer-modules.is-open .wo-drawer-sub a,
        .wo-drawer-modules.is-closing .wo-drawer-sub a,
        .wo-nav-drop:hover .wo-nav-drop-item,
        .wo-nav-drop:focus-within .wo-nav-drop-item,
        .wo-nav-drop.is-open .wo-nav-drop-item {
            animation: none;
            opacity: 1;
            transform: none;
            transition: none;
        }

        .wo-drawer-sub,
        .wo-drawer-modules.is-open .wo-drawer-sub,
        .wo-drawer-modules.is-closing .wo-drawer-sub {
            max-height: none;
            transition: none;
        }
    }
}

.wo-hero {
    min-height: 0;
    padding: 2.25rem 0 3.5rem;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 4rem;
}

.wo-brand-mark,
.wo-label {
    color: var(--accent);
}

.wo-brand-mark {
    margin-bottom: 1.15rem;
    font-size: 0.82rem;
    letter-spacing: 0.17em;
}

.wo-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 5.2vw, 4.65rem);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.wo-hero-copy .lead {
    margin-top: 1.4rem;
    max-width: 31rem;
    font-size: 1.15rem;
    line-height: 1.65;
}

.wo-cta-row {
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.wo-btn {
    min-height: 48px;
    padding: 0.65rem 1.3rem;
    border-radius: 11px;
}

.wo-btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 10px 24px rgba(17, 116, 230, 0.2);
}

.wo-btn-primary:hover {
    background: #075fc5;
    border-color: #075fc5;
}

.wo-btn-ghost {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(9, 42, 85, 0.17);
}

.wo-btn-ghost:hover {
    background: #fff;
    border-color: var(--accent);
}

.wo-hero-visual {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.wo-hero-mosaic {
    gap: 0.15rem 0;
    padding-bottom: 1.35rem;
}

.wo-hero-mosaic .wo-shot {
    border-radius: 3px;
    box-shadow:
        0 16px 36px rgba(15, 40, 80, 0.18),
        0 3px 8px rgba(15, 40, 80, 0.08);
}

.wo-section {
    padding-top: 5.25rem;
}

.wo-section + .wo-section {
    padding-top: 5.25rem;
}

.wo-section h2,
.wo-module-hero__title {
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    letter-spacing: -0.05em;
}

.wo-module-hero {
    margin-top: 2rem;
    padding: 0;
    max-width: 52rem;
}

.wo-module-hero__lead {
    font-size: 1.2rem;
    line-height: 1.65;
}

.wo-module-hero__explain {
    color: var(--muted);
}

.wo-module-card,
.wo-feature-card,
.wo-flow li,
.wo-steps li,
.wo-price {
    border-color: rgba(9, 42, 85, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.wo-module-card {
    position: relative;
    overflow: hidden;
    padding: 1.8rem 1.6rem;
    background: rgba(255, 255, 255, 0.85);
}

.wo-module-card::after {
    content: "";
    position: absolute;
    width: 8rem;
    height: 8rem;
    right: -3.5rem;
    top: -3.5rem;
    border-radius: 50%;
    background: rgba(17, 116, 230, 0.08);
}

.wo-module-card:hover {
    border-color: rgba(17, 116, 230, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(20, 61, 105, 0.14);
}

.wo-module-card__tag,
.wo-feature-card__num {
    color: var(--accent);
}

.wo-module-card-cta {
    color: var(--accent);
}

.wo-steps li,
.wo-feature-card {
    background: rgba(241, 246, 252, 0.72);
}

.wo-flow li {
    background: #fff;
}

.wo-flow__num {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
    background: var(--accent);
    box-shadow: 0 8px 16px rgba(17, 116, 230, 0.2);
}

.wo-price {
    background: rgba(255, 255, 255, 0.9);
}

.wo-price.is-featured {
    background: linear-gradient(155deg, #116fd4, #092a55 78%);
    box-shadow: 0 24px 50px rgba(9, 42, 85, 0.25);
}

.wo-price-badge {
    background: #65b2ff;
    color: #06244a;
}

.wo-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 920px) {
    .wo-contact-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 4rem;
    }
}

.wo-form {
    padding: 1.8rem;
    border-radius: 18px;
    background: rgba(241, 246, 252, 0.78);
    box-shadow: var(--shadow-card);
}

.wo-form input,
.wo-form select,
.wo-form textarea {
    border-color: rgba(9, 42, 85, 0.14);
    border-radius: 10px;
    min-height: 46px;
}

.wo-form input:focus,
.wo-form select:focus,
.wo-form textarea:focus {
    outline: 3px solid rgba(17, 116, 230, 0.14);
    border-color: var(--accent);
}

.wo-band {
    margin-top: 6.75rem;
    margin-bottom: 0;
    padding: 4.5rem clamp(1.4rem, 5vw, 5rem) 3.25rem;
    border: 1px solid rgba(17, 116, 230, 0.18);
    border-radius: 24px;
    background: linear-gradient(135deg, #e9f4ff, #f8fbff 68%);
}

.wo-band--product {
    margin-top: 0;
}

.wo-wrap:has(> .wo-module-hero) .wo-band {
    margin-top: 0;
}

.wo-wrap:has(> .wo-module-hero) .wo-module-more {
    margin-top: 0;
}

.wo-section--flow {
    margin-bottom: 5.5rem;
}

.wo-clients {
    padding-top: 5.25rem;
    margin-bottom: 7rem;
    overflow-x: clip;
    overflow-x: hidden;
    max-width: 100%;
}

.wo-client-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(34, 129, 231, 0.24), transparent 45%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 13px),
        linear-gradient(145deg, #0d3970, #071f41 76%);
    border: 1px solid rgba(116, 190, 255, 0.22);
    box-shadow: 0 14px 30px rgba(9, 42, 85, 0.15);
}

.wo-client-card::before {
    content: "";
    position: absolute;
    inset: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    pointer-events: none;
}

.wo-logos-desktop img,
.wo-clients-track img {
    position: relative;
    z-index: 1;
}

.wo-contact-links {
    padding: 1.8rem;
    border-radius: 20px;
    background: linear-gradient(145deg, #eaf4ff, #f8fbff 70%);
    border: 1px solid rgba(17, 116, 230, 0.16);
    box-shadow: var(--shadow-card);
}

.wo-contact-links__intro {
    margin-bottom: 1rem;
}

.wo-contact-links__eyebrow {
    color: var(--navy);
    font-family: var(--display);
    font-size: 1.02rem;
    font-weight: 700;
}

.wo-contact-links__intro p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.wo-contact-list {
    display: grid;
    gap: 0.65rem;
}

.wo-contact-link {
    display: grid;
    grid-template-columns: 2.7rem 1fr auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem;
    border: 1px solid rgba(9, 42, 85, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.82);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wo-contact-link:hover {
    transform: translateX(4px);
    border-color: rgba(17, 116, 230, 0.4);
    box-shadow: 0 10px 22px rgba(20, 61, 105, 0.09);
}

.wo-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 10px;
    color: #fff;
    font-size: 1.05rem;
}

.wo-contact-link--email .wo-contact-icon { background: #1174e6; }
.wo-contact-link--phone .wo-contact-icon { background: #092a55; }
.wo-contact-link--whatsapp .wo-contact-icon { background: #19a66a; }

.wo-contact-link small {
    display: block;
    margin-bottom: 0.12rem;
    color: var(--faint);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wo-contact-link strong {
    display: block;
    color: var(--navy);
    font-size: 0.94rem;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.wo-contact-arrow {
    color: var(--accent);
    font-size: 1.2rem;
}

.wo-social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.wo-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(9, 42, 85, 0.12);
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
    font-size: 1rem;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.wo-social-links a:hover {
    transform: translateY(-3px);
    background: var(--navy);
    color: #fff;
}

.wo-footer .wo-social-links {
    margin-top: 1.35rem;
}

.wo-footer .wo-social-links a {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.wo-footer .wo-social-links a:hover {
    background: #fff;
    color: var(--navy);
}

@media (min-width: 920px) {
    .wo-footer-col--end {
        text-align: end;
    }

    .wo-footer-col--end nav a {
        margin-left: auto;
    }
}

.wo-footer {
    margin-top: 3.25rem;
    background: linear-gradient(145deg, #092a55, #061b38);
    border-top: 0;
}

@media (max-width: 919px) {
    .wo-top-row {
        min-height: 72px;
    }

    .wo-logo img,
    .wo-top .wo-logo img {
        height: 58px;
        width: auto;
        max-width: 200px;
        object-fit: contain;
    }

    .wo-hero {
        min-height: 0;
        padding: 1.75rem 0 2.5rem;
        gap: 2.8rem;
    }

    .wo-hero-copy h1 {
        font-size: clamp(2.6rem, 11vw, 4rem);
    }

    .wo-hero-visual {
        transform: none;
    }

    .wo-section,
    .wo-section + .wo-section,
    .wo-clients {
        padding-top: 4rem;
    }

    .wo-band {
        margin-top: 4.5rem;
        margin-bottom: 0;
        padding: 3rem 1.25rem 2.25rem;
    }

    .wo-wrap:has(> .wo-module-hero) .wo-band {
        margin-top: 0;
    }
}

@media (max-width: 639px) {
    .wo-hero {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .wo-hero-copy {
        display: contents;
    }

    .wo-hero .wo-brand-mark {
        order: 1;
    }

    .wo-hero h1 {
        order: 2;
    }

    .wo-hero .lead {
        order: 3;
        margin-bottom: 0;
    }

    .wo-hero-visual {
        order: 4;
    }

    .wo-hero .wo-cta-row {
        order: 5;
    }

    .wo-hero-mosaic {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        min-height: 0;
        padding: 0;
        overflow: visible;
    }

    .wo-hero-mosaic__main,
    .wo-hero-mosaic__side--a,
    .wo-hero-mosaic__side--b {
        display: block;
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        margin: 0;
        aspect-ratio: 16 / 10;
        transform: none;
        z-index: auto;
    }
}

/* Responsive guardrails */
.wo-main,
.wo-wrap,
.wo-section,
.wo-contact-links,
.wo-contact-link,
.wo-module-card,
.wo-feature-card,
.wo-price {
    min-width: 0;
}

.wo-contact-link > span:nth-child(2) {
    min-width: 0;
}

.wo-contact-link strong {
    word-break: break-word;
}

.wo-hero-visual,
.wo-band,
.wo-contact-links,
.wo-form {
    max-width: 100%;
}

@media (max-width: 919px) {
    .wo-wrap {
        width: min(var(--max), calc(100% - 2rem));
    }

    .wo-top-row {
        width: min(var(--max), calc(100% - 1.25rem));
    }

    .wo-hero {
        grid-column: auto;
    }

    .wo-contact-links {
        padding: clamp(1.1rem, 4vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .wo-wrap,
    .wo-top-row {
        width: calc(100% - 1.25rem);
    }

    .wo-top .wo-logo img {
        height: 54px;
        width: auto;
        max-width: 192px;
        object-fit: contain;
    }

    .wo-hero {
        padding-top: 1.35rem;
    }

    .wo-hero-copy h1 {
        font-size: clamp(2.25rem, 12vw, 3.2rem);
    }

    .wo-hero-mosaic {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        min-height: 0;
        padding: 0;
    }

    .wo-hero-mosaic__main,
    .wo-hero-mosaic__side--a,
    .wo-hero-mosaic__side--b {
        display: block;
        width: 100%;
        margin: 0;
        aspect-ratio: 16 / 10;
        transform: none;
    }

    .wo-contact-link {
        grid-template-columns: 2.35rem minmax(0, 1fr) auto;
        gap: 0.55rem;
        padding: 0.65rem;
    }

    .wo-contact-icon {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 0.9rem;
    }

    .wo-contact-link strong {
        font-size: 0.83rem;
    }

    .wo-contact-link small {
        font-size: 0.64rem;
    }

    .wo-contact-arrow {
        font-size: 1rem;
    }

    .wo-social-links {
        flex-wrap: wrap;
    }

    .wo-band {
        padding-inline: 1rem;
    }
}

/* Bootstrap rows are not loaded on marketing — keep CSS Grid in control. */
.wo-module-cards.row,
.wo-feature-grid.row,
.wo-steps.row,
.wo-flow.row,
.wo-shot-grid.row {
    display: grid;
}

.wo-module-card.col,
.wo-module-card.col-12,
.wo-module-card.col-md-6,
.wo-module-card.col-lg-4,
.wo-feature-card.col,
.wo-steps .col,
.wo-flow .col-12,
.wo-shot.col-12,
.wo-shot.col-lg-6 {
    width: auto;
    max-width: none;
    flex: unset;
    padding-left: 0;
    padding-right: 0;
}

@media (hover: none) {
    .wo-module-card:hover,
    .wo-feature-card:hover,
    .wo-price:hover,
    .wo-steps li:hover,
    .wo-client-card:hover {
        transform: none;
    }
}

@media (max-width: 639px) {
    .wo-module-card,
    .wo-feature-card,
    .wo-steps li,
    .wo-flow li,
    .wo-price {
        border-radius: 12px;
    }

    .wo-price-amount {
        font-size: clamp(2rem, 9vw, 2.45rem);
    }

    .wo-price-amount.is-text {
        font-size: clamp(1.25rem, 5.5vw, 1.45rem);
    }

    .wo-clients-slider {
        display: block;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        contain: paint;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .wo-clients-track {
        max-width: none;
    }
}
