
:root {
    --primary: #2a67ff;
    --primary-dark: #1f54d8;
    --navy: #0f1c35;
    --navy-soft: #152645;
    --text: #23324b;
    --muted: #6f7f96;
    --line: #d9e2ef;
    --line-strong: #bfd0ea;
    --surface: #ffffff;
    --surface-soft: #f4f7fb;
    --surface-blue: #edf3ff;
    --success: #2d8f55;
    --shadow: 0 22px 60px rgba(15, 28, 53, 0.12);
    --shadow-soft: 0 14px 35px rgba(15, 28, 53, 0.08);
    --radius: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: min(1200px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #ffffff;
    font-family: Inter, Arial, sans-serif;
    line-height: 1.65;
}

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

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

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.narrow {
    width: min(880px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
}

.header-line {
    height: 4px;
    background: linear-gradient(90deg, #2a67ff, #4dd8ff, #2a67ff);
}

.nav-shell {
    padding: 16px 0;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(15, 28, 53, 0.92);
    box-shadow: 0 14px 35px rgba(10, 19, 36, 0.25);
}

.brand {
    display: flex;
    align-items: center;
    min-width: 220px;
}

.brand-logo {
    width: clamp(170px, 20vw, 235px);
    height: auto;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navlinks a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s ease;
}

.navlinks a:hover,
.navlinks a.active {
    color: #ffffff;
}

.navlinks a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

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

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

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(180deg, #2f6cff, #2059e8);
    color: #ffffff !important;
    box-shadow: 0 16px 28px rgba(42, 103, 255, 0.22);
}

.btn-secondary {
    background: #eef4ff;
    color: var(--primary) !important;
}

.btn-sm {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
}

.hero {
    position: relative;
    padding: 64px 0 90px;
    overflow: hidden;
}

.hero-home {
    background:
        radial-gradient(circle at 10% 20%, rgba(77, 216, 255, 0.14), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(42, 103, 255, 0.22), transparent 24%),
        linear-gradient(180deg, #f5f9ff 0%, #ffffff 42%, #f8fbff 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42, 103, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 103, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
}

.hero-grid,
.page-hero-grid,
.form-layout,
.module-showcase,
.partner-band,
.cta-panel,
.note-panel {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 54px;
    align-items: center;
}

.page-hero-grid {
    gap: 40px;
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-head span,
.page-hero span,
.article-head span,
.stats-strip article strong,
.eyebrow-light {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}

.eyebrow-light {
    color: #89b0ff;
}

.hero h1,
.page-hero h1,
.article-head h1,
.section-head h2,
.module-copy h2,
.partner-band h2,
.cta-panel h2,
.note-panel h2 {
    margin: 14px 0 18px;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    max-width: 680px;
}

.page-hero h1,
.article-head h1 {
    font-size: clamp(34px, 4vw, 50px);
}

.section-head h2,
.module-copy h2,
.partner-band h2,
.cta-panel h2,
.note-panel h2 {
    font-size: clamp(30px, 3vw, 42px);
}

.hero p,
.page-hero p,
.section-head p,
.module-copy p,
.partner-band p,
.cta-panel p,
.note-panel p,
.card p,
.help-card p,
.prose {
    color: var(--muted);
}

.hero p,
.page-hero p {
    font-size: 18px;
    max-width: 720px;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-badges span,
.mini-feature-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: #425676;
    font-size: 14px;
    font-weight: 600;
}

.card-surface,
.page-hero-card,
.pricing-summary-card,
.form-card,
.info-card,
.note-panel,
.cta-panel,
.featured-agency {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.hero-dashboard {
    position: relative;
    overflow: hidden;
}

.floating-card {
    animation: floatY 6s ease-in-out infinite;
}

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

.window-top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 52px;
    padding: 0 16px;
    background: #f6f9ff;
    border-bottom: 1px solid var(--line);
}

.window-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd8ec;
}

.window-top strong {
    margin-left: 8px;
    color: var(--navy);
    font-size: 13px;
}

.window-body {
    display: grid;
    grid-template-columns: 132px 1fr;
    min-height: 430px;
}

.app-sidebar {
    padding: 18px 12px;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, #f8fbff, #f2f6fc);
}

.nav-pill {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #55657f;
    font-size: 12px;
    font-weight: 700;
}

.nav-pill.active {
    background: #e9f0ff;
    color: var(--primary);
}

.app-main {
    padding: 18px;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mini-stats article {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
}

.mini-stats small {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
}

.mini-stats strong {
    color: var(--navy);
    font-size: 16px;
}

.chart-panel {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(180deg, #fbfdff, #f4f8fd);
}

.line-graph {
    position: relative;
    height: 170px;
    border-radius: 16px;
    background:
        linear-gradient(rgba(191, 208, 234, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191, 208, 234, 0.4) 1px, transparent 1px);
    background-size: 100% 34px, 56px 100%;
    overflow: hidden;
}

.line-graph::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 24px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #a6bbff, #2a67ff);
    transform: skewY(-7deg);
    box-shadow:
        90px -14px 0 0 rgba(42, 103, 255, 0.9),
        178px -34px 0 0 rgba(42, 103, 255, 0.9),
        264px -18px 0 0 rgba(42, 103, 255, 0.9),
        344px -54px 0 0 rgba(42, 103, 255, 0.9);
}

.line-graph span {
    position: absolute;
    bottom: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2a67ff;
    animation: pulseDot 2.8s ease-in-out infinite;
}

.line-graph span:nth-child(1) { left: 84px; bottom: 48px; }
.line-graph span:nth-child(2) { left: 164px; bottom: 66px; animation-delay: 0.3s; }
.line-graph span:nth-child(3) { left: 248px; bottom: 98px; animation-delay: 0.5s; }
.line-graph span:nth-child(4) { left: 332px; bottom: 80px; animation-delay: 0.8s; }
.line-graph span:nth-child(5) { left: 416px; bottom: 122px; animation-delay: 1.1s; }

@keyframes pulseDot {
    0%,
    100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.18); opacity: 0.75; }
}

.table-skeleton {
    margin-top: 16px;
}

.table-skeleton i {
    display: block;
    height: 18px;
    margin-top: 12px;
    border-radius: 10px;
    background: linear-gradient(90deg, #eff4fb, #f9fbff, #eff4fb);
    background-size: 200% 100%;
    animation: shimmer 2.6s linear infinite;
}

.table-skeleton i:nth-child(1) { width: 100%; }
.table-skeleton i:nth-child(2) { width: 92%; }
.table-skeleton i:nth-child(3) { width: 98%; }
.table-skeleton i:nth-child(4) { width: 86%; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.floating-note {
    position: absolute;
    width: 230px;
    padding: 14px 16px;
    border: 1px solid rgba(191, 208, 234, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.floating-note b {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
}

.floating-note span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.note-one {
    left: -24px;
    bottom: 96px;
}

.note-two {
    right: -14px;
    bottom: 34px;
}

.stats-strip {
    margin-top: -24px;
    position: relative;
    z-index: 2;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 0 10px;
}

.stats-strip article {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.stats-strip article strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 18px;
    letter-spacing: 0;
}

.stats-strip article span {
    color: var(--muted);
    font-size: 14px;
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: linear-gradient(180deg, #f8fbff, #f4f8fc);
}

.section-dark {
    background: linear-gradient(180deg, #0f1c35, #132441);
    color: #ffffff;
}

.section-dark h2,
.section-dark p {
    color: #ffffff;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.cards {
    display: grid;
    gap: 22px;
}

.cards-three,
.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-lift:hover,
.card:hover,
.price-card:hover,
.download-card:hover,
.agency-card:hover,
.help-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.card-icon,
.agency-logo {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(180deg, #edf3ff, #dfeaff);
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.card h3,
.price-card h3,
.agency-card h3,
.help-card h3,
.download-card h3,
.featured-agency h2,
.info-card h2 {
    margin: 0 0 10px;
    color: var(--navy);
}

.text-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 700;
}

.module-stack {
    display: grid;
    gap: 32px;
}

.module-showcase {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.module-showcase.reverse {
    direction: rtl;
}

.module-showcase.reverse > * {
    direction: ltr;
}

.bullet-list {
    padding-left: 18px;
    color: #51627a;
}

.bullet-list li {
    margin-bottom: 8px;
}

.scene-card {
    position: relative;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7fbff, #eef4fb);
    border: 1px solid #dbe7f7;
}

.warehouse-scene {
    background:
        radial-gradient(circle at 80% 18%, rgba(42, 103, 255, 0.14), transparent 24%),
        linear-gradient(180deg, #f8fbff, #e8f1fb);
}

.warehouse-building {
    position: absolute;
    left: 40px;
    bottom: 78px;
    width: 180px;
    height: 130px;
    border-radius: 24px 24px 10px 10px;
    background: linear-gradient(180deg, #2461f4, #174dc9);
    box-shadow: inset 0 -14px 0 rgba(255, 255, 255, 0.08);
}

.warehouse-building::before {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    top: -26px;
    height: 40px;
    background: linear-gradient(180deg, #6cb7ff, #3291ff);
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.warehouse-building span {
    position: absolute;
    bottom: 18px;
    width: 26px;
    height: 46px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
}

.warehouse-building span:nth-child(1) { left: 24px; }
.warehouse-building span:nth-child(2) { left: 76px; }
.warehouse-building span:nth-child(3) { left: 128px; }

.warehouse-floor {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 54px;
    height: 10px;
    background: #d3ddee;
}

.crate {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffba54, #ef9332);
    box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.08);
}

.crate-a { left: 236px; bottom: 78px; }
.crate-b { left: 288px; bottom: 78px; }
.crate-c { left: 262px; bottom: 124px; }

.forklift {
    position: absolute;
    right: 40px;
    bottom: 64px;
    width: 180px;
    height: 120px;
    animation: forkliftMove 4.8s ease-in-out infinite;
}

@keyframes forkliftMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-18px); }
}

.forklift-body {
    position: absolute;
    left: 20px;
    bottom: 24px;
    width: 92px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(180deg, #22c4d6, #0ca3b4);
}

.forklift-cabin {
    position: absolute;
    left: 54px;
    bottom: 56px;
    width: 48px;
    height: 34px;
    border-radius: 10px 10px 4px 4px;
    background: rgba(16, 28, 52, 0.9);
}

.forklift-lift {
    position: absolute;
    left: 118px;
    bottom: 30px;
    width: 12px;
    height: 72px;
    border-radius: 999px;
    background: #203459;
}

.forklift-fork {
    position: absolute;
    left: 130px;
    bottom: 30px;
    width: 40px;
    height: 8px;
    border-radius: 999px;
    background: #203459;
}

.wheel {
    position: absolute;
    bottom: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #162543;
    box-shadow: inset 0 0 0 6px #33496f;
}

.wheel-left { left: 28px; }
.wheel-right { left: 92px; }

.finance-scene {
    background:
        radial-gradient(circle at 15% 15%, rgba(77, 216, 255, 0.2), transparent 20%),
        linear-gradient(180deg, #f6fbff, #ebf3ff);
}

.finance-panel {
    position: absolute;
    left: 36px;
    right: 36px;
    top: 42px;
    bottom: 42px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.finance-row {
    height: 14px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #edf3ff, #dfe9fb);
}

.finance-row.small {
    width: 45%;
}

.finance-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 140px;
    margin-top: 34px;
}

.finance-chart-bars span {
    flex: 1;
    border-radius: 12px 12px 6px 6px;
    background: linear-gradient(180deg, #7eb3ff, #2a67ff);
    animation: chartBounce 3.2s ease-in-out infinite;
}

.finance-chart-bars span:nth-child(1) { height: 44%; }
.finance-chart-bars span:nth-child(2) { height: 76%; animation-delay: 0.3s; }
.finance-chart-bars span:nth-child(3) { height: 58%; animation-delay: 0.6s; }
.finance-chart-bars span:nth-child(4) { height: 84%; animation-delay: 0.9s; }
.finance-chart-bars span:nth-child(5) { height: 66%; animation-delay: 1.2s; }

@keyframes chartBounce {
    0%,
    100% { transform: scaleY(1); }
    50% { transform: scaleY(0.92); }
}

.finance-bubble {
    position: absolute;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.bubble-a { right: 28px; top: 34px; }
.bubble-b { left: 26px; bottom: 24px; }

.network-scene {
    background:
        radial-gradient(circle at 85% 14%, rgba(42, 103, 255, 0.16), transparent 20%),
        linear-gradient(180deg, #f9fbff, #eef4fc);
}

.network-core,
.network-node {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.network-core {
    left: 50%;
    top: 50%;
    width: 110px;
    height: 110px;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #2a67ff, #184ccd);
    color: #ffffff;
}

.network-node {
    width: 110px;
    height: 62px;
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--navy);
    font-size: 14px;
}

.node-a { left: 50px; top: 46px; }
.node-b { right: 40px; top: 56px; }
.node-c { left: 42px; bottom: 46px; }
.node-d { right: 56px; bottom: 42px; }

.network-line {
    position: absolute;
    height: 2px;
    transform-origin: left center;
    background: linear-gradient(90deg, #abc4ff, #2a67ff);
}

.line-a { left: 154px; top: 104px; width: 132px; transform: rotate(24deg); }
.line-b { left: 252px; top: 110px; width: 124px; transform: rotate(-22deg); }
.line-c { left: 152px; top: 208px; width: 136px; transform: rotate(-21deg); }
.line-d { left: 260px; top: 208px; width: 126px; transform: rotate(22deg); }

.partner-band {
    color: #ffffff;
}

.partner-card-mini {
    display: grid;
    gap: 10px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.partner-card-mini strong {
    font-size: 22px;
}

.partner-card-mini span,
.partner-card-mini a {
    color: rgba(255, 255, 255, 0.88);
}

.cta-panel,
.note-panel {
    padding: 34px;
}

.cta-actions {
    justify-content: flex-end;
}

.page-hero {
    padding: 72px 0 58px;
    background: linear-gradient(180deg, #f6f9ff, #ffffff);
    border-bottom: 1px solid #ecf1f8;
}

.page-hero-rich {
    background:
        radial-gradient(circle at 90% 10%, rgba(42, 103, 255, 0.12), transparent 22%),
        linear-gradient(180deg, #f6f9ff, #ffffff);
}

.page-hero.compact {
    padding-bottom: 48px;
}

.page-hero-card,
.pricing-summary-card {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.pricing-summary-card {
    grid-template-columns: 1fr 1fr;
}

.pricing-summary-card.compact-card {
    padding: 22px;
}

.pricing-summary-card small {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.pricing-summary-card strong {
    display: block;
    margin: 6px 0 4px;
    color: var(--navy);
    font-size: 26px;
}

.pricing-summary-card span {
    color: var(--muted);
    font-size: 14px;
}

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

.top-info-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.top-info-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
}

.top-info-card span {
    color: var(--muted);
    font-size: 14px;
}

.feature-card .feature-body {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: #586882;
    font-size: 14px;
}

.price-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.price-card.featured {
    border: 2px solid var(--primary);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ebf2ff;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.price {
    margin: 18px 0 20px;
    color: var(--navy);
    font-size: 30px;
    font-weight: 800;
}

.features-list {
    min-height: 190px;
    color: var(--muted);
    white-space: pre-line;
}

.featured-agency {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    padding: 28px 30px;
    align-items: center;
}

.featured-agency-badge {
    padding: 12px 16px;
    border-radius: 999px;
    background: #eaf1ff;
    color: var(--primary);
    font-weight: 800;
}

.featured-agency-links {
    display: grid;
    gap: 8px;
    text-align: right;
}

.featured-agency-links a {
    color: var(--primary);
    font-weight: 700;
}

.agency-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.agency-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.agency-head small,
.help-card small,
.download-card small {
    color: var(--muted);
}

.agency-card-featured {
    border-color: #cbdaf8;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.agency-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agency-meta a {
    color: var(--primary);
    font-weight: 600;
}

.help-search {
    display: flex;
    max-width: 670px;
    margin-top: 26px;
}

.help-search input {
    flex: 1;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-right: 0;
    border-radius: 16px 0 0 16px;
    background: #ffffff;
}

.help-search button {
    min-width: 132px;
    border: 0;
    border-radius: 0 16px 16px 0;
    background: linear-gradient(180deg, #2f6cff, #2059e8);
    color: #ffffff;
    font-weight: 700;
}

.help-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
}

.help-side {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    align-self: start;
}

.help-side h3 {
    margin-top: 0;
    color: var(--navy);
}

.help-side a {
    display: block;
    padding: 10px 0;
    color: #576983;
    border-bottom: 1px solid #edf2f8;
}

.help-side a:last-child {
    border-bottom: 0;
}

.help-side a.active {
    color: var(--primary);
    font-weight: 700;
}

.help-list {
    display: grid;
    gap: 18px;
}

.help-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.help-card span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-head {
    padding: 56px 0 24px;
    background: linear-gradient(180deg, #f6f9ff, #ffffff);
}

.article-head > .container > a {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.video-box {
    aspect-ratio: 16 / 9;
    margin-bottom: 36px;
}

.video-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.prose-wide {
    max-width: 980px;
}

.prose {
    font-size: 17px;
}

.prose h2,
.prose h3 {
    color: var(--navy);
}

.prose ul {
    padding-left: 20px;
}

.download-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coming {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 12px;
    background: #eef2f7;
    color: #6c778a;
    font-weight: 700;
}

.form-layout {
    align-items: start;
}

.contact-info {
    align-self: stretch;
}

.info-card,
.form-card {
    padding: 30px;
}

.form-card label {
    display: block;
    color: #4d6078;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.form-card input,
.form-card textarea,
.form-card select {
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;
    border: 1px solid #ccd7e5;
    border-radius: 14px;
    background: #ffffff;
    color: var(--text);
    outline: none;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus,
.help-search input:focus {
    border-color: #7fa8ff;
    box-shadow: 0 0 0 4px rgba(42, 103, 255, 0.10);
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
}

.alert.success {
    background: #e9f8ee;
    color: #14653a;
}

.alert.error {
    background: #fff0f0;
    color: #9b2b2b;
}

.site-footer {
    padding: 58px 0 24px;
    background: linear-gradient(180deg, #101d37, #0c162c);
    color: #c1cde1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 36px;
}

.footer-logo {
    width: 220px;
    margin-bottom: 16px;
}

.site-footer h4 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #ffffff;
}

.site-footer a {
    display: block;
    margin: 8px 0;
}

.copyright {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

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

@media (max-width: 1100px) {
    .nav-toggle {
        display: block;
    }

    .navlinks {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        background: rgba(15, 28, 53, 0.98);
        box-shadow: 0 18px 40px rgba(10, 19, 36, 0.28);
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-wrap {
        position: relative;
    }

    .navlinks.open {
        display: flex;
    }

    .hero-grid,
    .page-hero-grid,
    .module-showcase,
    .module-showcase.reverse,
    .form-layout,
    .partner-band,
    .cta-panel,
    .note-panel,
    .featured-agency {
        grid-template-columns: 1fr;
    }

    .stats-strip-grid,
    .feature-top-grid,
    .cards-three,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-agency-links {
        text-align: left;
    }

    .floating-note {
        position: relative;
        width: 100%;
        margin-top: 16px;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

@media (max-width: 760px) {
    .container,
    .narrow {
        width: min(100% - 28px, 1200px);
    }

    .hero {
        padding: 40px 0 72px;
    }

    .window-body {
        grid-template-columns: 92px 1fr;
        min-height: 360px;
    }

    .mini-stats,
    .stats-strip-grid,
    .feature-top-grid,
    .cards-three,
    .pricing-grid,
    .footer-grid,
    .pricing-summary-card,
    .grid2 {
        grid-template-columns: 1fr;
    }

    .app-main {
        padding: 14px;
    }

    .scene-card {
        min-height: 280px;
    }

    .warehouse-building {
        width: 138px;
        height: 102px;
        left: 22px;
    }

    .forklift {
        right: 18px;
        width: 142px;
    }

    .note-panel,
    .cta-panel,
    .module-showcase,
    .form-card,
    .info-card,
    .featured-agency {
        padding: 24px;
    }

    .help-layout {
        grid-template-columns: 1fr;
    }

    .help-side {
        display: none;
    }

    .help-search {
        flex-direction: column;
        gap: 10px;
    }

    .help-search input,
    .help-search button {
        border-radius: 14px;
    }

    .help-search input {
        border-right: 1px solid var(--line);
    }
}


/* =========================
   Roster ERP v1.3 visual layer
   ========================= */
:root {
    --v13-bg: #07152c;
    --v13-bg-2: #0d2143;
    --v13-blue: #246bff;
    --v13-cyan: #42d9ff;
    --v13-purple: #6f72ff;
    --v13-white: #ffffff;
    --v13-soft: #f4f8ff;
    --v13-card: rgba(255, 255, 255, .88);
}

.hero-v13 {
    position: relative;
    overflow: hidden;
    padding: 70px 0 36px;
    background:
        radial-gradient(circle at 15% 12%, rgba(66, 217, 255, .18), transparent 24%),
        radial-gradient(circle at 84% 8%, rgba(111, 114, 255, .18), transparent 24%),
        linear-gradient(180deg, #f6f9ff 0%, #ffffff 68%, #f7faff 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .34;
    background-image:
        linear-gradient(rgba(36, 107, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 107, 255, .05) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    animation: orbFloat 9s ease-in-out infinite;
}
.orb-a { width: 220px; height: 220px; left: -80px; top: 180px; background: rgba(66, 217, 255, .12); }
.orb-b { width: 160px; height: 160px; right: 8%; top: 90px; background: rgba(36, 107, 255, .12); animation-delay: -3s; }
.orb-c { width: 120px; height: 120px; right: 25%; bottom: 20px; background: rgba(111, 114, 255, .1); animation-delay: -6s; }
@keyframes orbFloat { 50% { transform: translate3d(0, -18px, 0) scale(1.04); } }

.hero-v13-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 56px;
    align-items: center;
}

.hero-v13-copy h1 {
    margin: 18px 0 22px;
    max-width: 690px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.055em;
    color: #0b1933;
}

.hero-v13-copy p {
    max-width: 650px;
    font-size: 18px;
    color: #667892;
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg, #1c57dc, #2aa8e7 55%, #6a62ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #d4e1f5;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: #2c5fc0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.pill-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--v13-cyan), var(--v13-blue));
    box-shadow: 0 0 0 5px rgba(36,107,255,.08);
}

.btn-glow {
    color: #fff !important;
    background: linear-gradient(135deg, #2365f7, #5a5ef7);
    box-shadow: 0 18px 38px rgba(36, 107, 255, .25), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-glow:hover { box-shadow: 0 24px 50px rgba(36, 107, 255, .34), inset 0 1px 0 rgba(255,255,255,.3); }

.btn-ghost {
    color: #183157 !important;
    border: 1px solid #d5e1f1;
    background: rgba(255,255,255,.72);
    box-shadow: 0 10px 28px rgba(16,31,56,.05);
}

.hero-price-row {
    display: flex;
    gap: 36px;
    margin-top: 34px;
}

.hero-price-row div {
    position: relative;
    padding-left: 16px;
}
.hero-price-row div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 99px;
    background: linear-gradient(#36d6ff, #2b63ff);
}
.hero-price-row strong { display: block; color: #0d1c36; font-size: 19px; }
.hero-price-row span { color: #718098; font-size: 13px; }

.hero-stage {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
    perspective: 1400px;
}

.hero-ring {
    position: absolute;
    border: 1px dashed rgba(36, 107, 255, .28);
    border-radius: 50%;
    animation: spinRing 22s linear infinite;
}
.ring-one { width: 570px; height: 570px; }
.ring-two { width: 470px; height: 470px; animation-direction: reverse; animation-duration: 17s; }
@keyframes spinRing { to { transform: rotate(360deg); } }

.erp-window {
    position: relative;
    z-index: 2;
    width: min(100%, 680px);
    border: 1px solid rgba(194,210,237,.9);
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    box-shadow: 0 38px 90px rgba(23, 47, 88, .17), 0 8px 28px rgba(23,47,88,.08);
    transform-style: preserve-3d;
    transition: transform .18s ease;
}

.erp-window-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border-bottom: 1px solid #e7edf7;
    background: linear-gradient(180deg, #fbfdff, #f6f9fd);
}
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 9px; height: 9px; border-radius: 50%; background: #cbd5e5; }
.window-brand { color: #16294c; font-size: 12px; font-weight: 800; }
.window-status { justify-self: end; color: #2c9362; font-size: 11px; font-weight: 800; }
.window-status::before { content: ''; display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #34c887; box-shadow: 0 0 0 4px rgba(52,200,135,.12); }

.erp-window-body { display: grid; grid-template-columns: 128px 1fr; min-height: 430px; }
.erp-side { padding: 18px 10px; border-right: 1px solid #e9eef6; background: #f7fafe; }
.erp-side-logo { display: grid; place-items: center; width: 34px; height: 34px; margin: 0 0 18px 8px; border-radius: 10px; color: #fff; background: linear-gradient(135deg, #246bff, #5b62f7); font-weight: 900; }
.erp-side span { display: block; margin-bottom: 6px; padding: 9px 10px; border-radius: 10px; color: #687891; font-size: 11px; font-weight: 700; }
.erp-side span.active { color: #235cd2; background: #eaf1ff; }
.erp-main { padding: 20px; }
.erp-main-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.erp-main-head small { display: block; color: #8491a5; font-size: 10px; }
.erp-main-head strong { color: #152a4b; font-size: 14px; }
.erp-avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #eaf1ff; color: #2864dd; font-size: 10px; font-weight: 800; }
.erp-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.erp-kpis article { padding: 13px; border: 1px solid #e3eaf5; border-radius: 14px; background: #fff; }
.erp-kpis span, .erp-kpis small { display: block; color: #8492a5; font-size: 9px; }
.erp-kpis strong { display: inline-block; margin: 3px 4px 0 0; color: #142848; font-size: 15px; }
.erp-chart-card { margin-top: 16px; padding: 16px; border: 1px solid #e3eaf5; border-radius: 18px; background: linear-gradient(180deg,#fbfdff,#f7faff); }
.chart-title { display: flex; justify-content: space-between; color: #61718b; font-size: 10px; }
.chart-title span { color: #142848; font-weight: 800; }
.animated-bars { display: flex; gap: 11px; align-items: flex-end; height: 152px; margin-top: 14px; padding: 8px 4px 0; }
.animated-bars i { flex: 1; height: var(--h); border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg,#68b6ff,#2d63ef); transform-origin: bottom; animation: growBar 2.2s ease-in-out infinite alternate; }
.animated-bars i:nth-child(2n) { animation-delay: -.8s; }
@keyframes growBar { from { transform: scaleY(.75); opacity: .75; } to { transform: scaleY(1); opacity: 1; } }
.erp-table-lines { margin-top: 14px; display: grid; gap: 9px; }
.erp-table-lines span { height: 12px; border-radius: 99px; background: linear-gradient(90deg,#edf3fa,#f8fbff,#edf3fa); background-size: 180% 100%; animation: shimmer 2s linear infinite; }

.float-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border: 1px solid rgba(194,210,237,.92);
    border-radius: 16px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 45px rgba(30,58,102,.14);
    backdrop-filter: blur(12px);
    animation: floatCard 5s ease-in-out infinite;
}
.float-card-a { left: -24px; top: 120px; }
.float-card-b { right: -28px; bottom: 132px; animation-delay: -1.7s; }
.float-card-c { left: 54px; bottom: 44px; animation-delay: -3s; }
@keyframes floatCard { 50% { transform: translateY(-10px); } }
.float-icon { display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:#eaf2ff;color:#2661da;font-weight:900; }
.float-card small { display:block;color:#7c8ca3;font-size:10px; }
.float-card strong { color:#142848;font-size:13px; }
.float-card-c span { color:#29486f;font-size:12px;font-weight:700; }
.pulse-dot { width:9px;height:9px;border-radius:50%;background:#34c887;box-shadow:0 0 0 0 rgba(52,200,135,.45);animation:pulseGreen 1.8s infinite; }
@keyframes pulseGreen { 70% { box-shadow:0 0 0 10px rgba(52,200,135,0); } 100% { box-shadow:0 0 0 0 rgba(52,200,135,0); } }

.logo-strip { position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-top:20px;padding:18px 24px;border:1px solid #e0e8f5;border-radius:18px;background:rgba(255,255,255,.8);box-shadow:0 12px 30px rgba(30,58,102,.06); }
.logo-strip span { color:#536784;font-size:11px;font-weight:800;letter-spacing:.12em; }
.logo-strip i { width:5px;height:5px;border-radius:50%;background:#9ab7ef; }

.v13-about { background:#fff; }
.split-story { display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center; }
.story-visual { position:relative;min-height:500px; }
.story-card { border:1px solid #dce6f4;border-radius:24px;background:#fff;box-shadow:0 24px 55px rgba(21,45,85,.1); }
.story-main-card { position:absolute;inset:34px 56px 42px 30px;padding:26px; }
.story-card-head { display:flex;justify-content:space-between;color:#657792;font-size:12px; }
.story-card-head b { color:#16305a; }
.donut-wrap { position:relative;display:grid;place-items:center;width:220px;height:220px;margin:28px auto 18px; }
.donut { width:190px;height:190px;border-radius:50%;background:conic-gradient(#246bff 0 58%,#46c8f5 58% 84%,#e8eef8 84% 100%);animation:rotateDonut 14s linear infinite; }
.donut::after { content:'';position:absolute;inset:42px;border-radius:50%;background:#fff; }
@keyframes rotateDonut { to { transform:rotate(360deg); } }
.donut-center { position:absolute;display:grid;text-align:center;z-index:2; }
.donut-center strong { color:#11284b;font-size:30px; }
.donut-center span { color:#7a8aa1;font-size:11px; }
.story-list { display:grid;gap:10px; }
.story-list div { display:flex;justify-content:space-between;padding:10px 12px;border-radius:12px;background:#f7faff;color:#60728e;font-size:12px; }
.story-list strong { color:#18315a; }
.mini-story { position:absolute;padding:18px 20px; }
.mini-story span { display:block;color:#7d8ca1;font-size:11px; }
.mini-story strong { color:#16305a;font-size:14px; }
.mini-story-a { right:0;top:0;width:220px;animation:floatCard 6s ease-in-out infinite; }
.mini-story-b { left:0;bottom:0;width:160px;animation:floatCard 5s ease-in-out infinite -2s; }
.mini-story-b strong { font-size:30px; }
.story-copy h2, .warehouse-copy h2, .agency-copy h2, .faq-copy h2 { margin:16px 0 18px;color:#0d1d38;font-size:clamp(34px,4vw,52px);line-height:1.05;letter-spacing:-.04em; }
.feature-points { display:grid;gap:16px;margin:30px 0; }
.feature-points article { display:flex;gap:16px;align-items:flex-start; }
.feature-points article>b { display:grid;place-items:center;min-width:42px;height:42px;border-radius:13px;background:#eaf2ff;color:#2d63df;font-size:11px; }
.feature-points strong { display:block;color:#173058;margin-bottom:3px; }
.feature-points span { color:#75859a;font-size:14px; }
.text-arrow { display:inline-flex;gap:10px;align-items:center;color:#245fd4;font-weight:800; }
.text-arrow span { transition:transform .2s ease; }
.text-arrow:hover span { transform:translateX(4px); }

.v13-services { background:linear-gradient(180deg,#f6f9ff,#edf4ff); }
.section-head-v13 { display:flex;justify-content:space-between;align-items:end;gap:40px;margin-bottom:38px; }
.section-head-v13 h2 { max-width:750px;margin:16px 0 0;color:#0d1d38;font-size:clamp(34px,4vw,52px);line-height:1.05;letter-spacing:-.04em; }
.section-head-v13>p { max-width:420px;color:#6f8098; }
.section-head-v13.centered { justify-content:center;text-align:center; }
.services-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.service-card { padding:26px;border:1px solid #dce6f3;border-radius:22px;background:rgba(255,255,255,.86);box-shadow:0 15px 36px rgba(26,52,91,.06);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;transition-delay:var(--delay); }
.service-card:hover { transform:translateY(-7px);box-shadow:0 26px 54px rgba(26,52,91,.13);border-color:#b9cff3; }
.service-top { display:flex;justify-content:space-between;align-items:center; }
.service-icon { display:grid;place-items:center;width:50px;height:50px;border-radius:15px;background:linear-gradient(145deg,#eaf2ff,#dfeaff);color:#2860d9;font-size:22px; }
.service-top>span { color:#b3bfd1;font-size:11px;font-weight:900;letter-spacing:.1em; }
.service-card h3 { margin:22px 0 10px;color:#173058;font-size:20px; }
.service-card p { min-height:72px;color:#74849a; }
.service-card a { display:flex;justify-content:space-between;padding-top:16px;border-top:1px solid #edf1f6;color:#285fcf;font-size:13px;font-weight:800; }

.v13-warehouse { overflow:hidden;background:linear-gradient(135deg,#07152c,#0d2550 58%,#14366b);color:#fff; }
.warehouse-grid { display:grid;grid-template-columns:.85fr 1.15fr;gap:62px;align-items:center; }
.light-pill { border-color:rgba(255,255,255,.14);background:rgba(255,255,255,.07);color:#8cc8ff; }
.warehouse-copy h2 { color:#fff; }
.warehouse-copy p { color:#bac9df; }
.white-points { display:flex;flex-wrap:wrap;gap:10px;margin-top:28px; }
.white-points span { padding:9px 13px;border:1px solid rgba(255,255,255,.12);border-radius:999px;background:rgba(255,255,255,.06);font-size:12px;color:#d9e6f8; }
.warehouse-scene-v13 { position:relative;min-height:480px;border:1px solid rgba(255,255,255,.1);border-radius:30px;background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));overflow:hidden; }
.warehouse-grid-lines { position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);background-size:32px 32px;mask-image:linear-gradient(to top,black,transparent 95%); }
.warehouse-building-v13 { position:absolute;left:58px;bottom:92px;width:270px;height:180px;border-radius:24px 24px 10px 10px;background:linear-gradient(180deg,#2469ef,#1b4fae);box-shadow:inset 0 -18px 0 rgba(0,0,0,.12),0 20px 35px rgba(0,0,0,.18); }
.warehouse-roof { position:absolute;left:22px;right:22px;top:-42px;height:58px;background:linear-gradient(180deg,#3e9ef8,#2673e6);clip-path:polygon(0 100%,50% 0,100% 100%); }
.warehouse-door { position:absolute;bottom:18px;width:54px;height:78px;border-radius:8px;background:linear-gradient(180deg,#dceeff,#bcd1e9);box-shadow:inset 0 0 0 7px rgba(21,57,109,.12); }
.door-one { left:28px; }.door-two { left:108px; }.door-three { right:28px; }
.moving-forklift { position:absolute;right:48px;bottom:82px;width:190px;height:130px;animation:forkRide 5.4s ease-in-out infinite; }
@keyframes forkRide { 0%,100% { transform:translateX(0); } 50% { transform:translateX(-28px); } }
.fork-body { position:absolute;left:18px;bottom:28px;width:105px;height:50px;border-radius:16px;background:linear-gradient(180deg,#35d3d0,#0ea8b9);box-shadow:inset 0 -8px 0 rgba(0,0,0,.09); }
.fork-cabin { position:absolute;left:58px;bottom:66px;width:52px;height:40px;border-radius:10px 10px 5px 5px;background:#10284b;box-shadow:inset 0 0 0 5px #2c547d; }
.fork-arm { position:absolute;left:132px;bottom:36px;width:10px;height:84px;border-radius:8px;background:#091d36; }
.fork-prongs { position:absolute;left:140px;bottom:35px;width:48px;height:8px;border-radius:8px;background:#091d36; }
.fork-wheel { position:absolute;bottom:15px;width:32px;height:32px;border-radius:50%;background:#06172c;box-shadow:inset 0 0 0 7px #365678; }
.w1 { left:26px; }.w2 { left:96px; }
.pallet { position:absolute;width:52px;height:52px;border-radius:8px;background:linear-gradient(180deg,#ffba5b,#ee8d2e);box-shadow:inset 0 -8px 0 rgba(0,0,0,.12); }
.pallet-a { right:230px;bottom:96px; }.pallet-b { right:170px;bottom:96px; }
.warehouse-data-card { position:absolute;padding:14px 16px;border:1px solid rgba(255,255,255,.13);border-radius:16px;background:rgba(10,29,57,.68);backdrop-filter:blur(12px);box-shadow:0 18px 38px rgba(0,0,0,.18);animation:floatCard 6s ease-in-out infinite; }
.warehouse-data-card small { display:block;color:#8da7c6;font-size:10px; }.warehouse-data-card strong { color:#fff;font-size:14px; }
.data-one { right:28px;top:34px; }.data-two { left:26px;top:34px;animation-delay:-2.6s; }

.v13-agencies { background:#fff; }
.agencies-grid { display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center; }
.agency-network { position:relative;min-height:520px;display:grid;place-items:center; }
.network-orbit { position:absolute;border:1px dashed #b9cbea;border-radius:50%;animation:spinRing 24s linear infinite; }
.orbit-a { width:410px;height:410px; }.orbit-b { width:300px;height:300px;animation-direction:reverse;animation-duration:16s; }
.agency-core { position:relative;z-index:3;display:grid;place-items:center;width:126px;height:126px;border-radius:34px;background:linear-gradient(145deg,#246bff,#5b61f4);box-shadow:0 25px 55px rgba(36,107,255,.3);color:#fff; }
.agency-core span { font-size:10px;letter-spacing:.18em; }.agency-core strong { font-size:34px;line-height:1; }
.agency-node { position:absolute;z-index:4;display:grid;place-items:center;width:118px;height:62px;border:1px solid #dbe5f4;border-radius:18px;background:#fff;color:#244164;font-size:12px;font-weight:800;box-shadow:0 14px 32px rgba(25,51,88,.1);animation:floatCard 6s ease-in-out infinite; }
.an-a { left:20px;top:78px; }.an-b { right:20px;top:98px;animation-delay:-1.4s; }.an-c { left:42px;bottom:78px;animation-delay:-2.8s; }.an-d { right:46px;bottom:66px;animation-delay:-4.1s; }
.agency-copy p { color:#71829a; }
.agency-pricing-row { display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:28px 0; }
.agency-pricing-row article { padding:18px;border:1px solid #dce6f3;border-radius:16px;background:#f8fbff; }
.agency-pricing-row small { display:block;color:#7d8da4;font-size:10px; }.agency-pricing-row strong { color:#173058;font-size:21px; }
.dark-glow { margin-top:4px; }

.v13-partner { padding-top:0; }
.premium-card { position:relative;display:grid;grid-template-columns:1fr 280px;gap:40px;align-items:center;overflow:hidden;padding:42px 46px;border-radius:30px;background:linear-gradient(135deg,#10234a,#1a3f7e 58%,#1f6fe9);box-shadow:0 28px 65px rgba(21,51,103,.22); }
.premium-card::before { content:'';position:absolute;width:300px;height:300px;right:-90px;top:-120px;border-radius:50%;background:rgba(255,255,255,.08); }
.premium-kicker { color:#8dc9ff;font-size:11px;font-weight:900;letter-spacing:.16em; }
.premium-copy h2 { margin:8px 0;color:#fff;font-size:42px; }.premium-copy p { color:#c6d7ef; }
.premium-links { display:flex;gap:22px;flex-wrap:wrap;margin-top:18px; }.premium-links a { color:#fff;font-weight:800; }
.premium-badge-wrap { position:relative;display:grid;place-items:center;min-height:200px; }
.premium-ring { position:absolute;width:180px;height:180px;border:1px dashed rgba(255,255,255,.36);border-radius:50%;animation:spinRing 16s linear infinite; }
.premium-badge { position:relative;z-index:2;display:grid;place-items:center;width:108px;height:108px;border-radius:28px;background:#fff;color:#245fcc;font-size:34px;font-weight:900;box-shadow:0 20px 45px rgba(0,0,0,.2); }

.v13-pricing { background:linear-gradient(180deg,#f7faff,#eef4ff); }
.pricing-v13-grid { display:grid;grid-template-columns:1fr 1fr;gap:22px;max-width:940px;margin:0 auto; }
.pricing-v13 { padding:34px;border:1px solid #d9e4f3;border-radius:26px;background:#fff;box-shadow:0 18px 40px rgba(25,53,94,.08); }
.pricing-v13.featured { color:#fff;border-color:transparent;background:linear-gradient(145deg,#112650,#17458f 65%,#246bff);box-shadow:0 28px 65px rgba(23,68,143,.25); }
.pricing-label { font-size:10px;font-weight:900;letter-spacing:.16em;color:#2b61ca; }.featured .pricing-label { color:#8fcaff; }
.pricing-v13 h3 { margin:12px 0 22px;color:#173058;font-size:22px; }.pricing-v13.featured h3 { color:#fff; }
.price-v13 { display:flex;align-items:end;gap:10px;margin-bottom:24px; }.price-v13 strong { color:#14294d;font-size:46px;line-height:1; }.featured .price-v13 strong { color:#fff; }.price-v13 span { color:#7789a2;font-size:12px; }.featured .price-v13 span { color:#c1d2ea; }
.pricing-v13 ul { list-style:none;padding:0;margin:0 0 28px; }.pricing-v13 li { position:relative;padding:10px 0 10px 25px;border-bottom:1px solid #edf1f6;color:#61738e;font-size:14px; }.featured li { color:#d0def0;border-color:rgba(255,255,255,.1); }.pricing-v13 li::before { content:'✓';position:absolute;left:0;color:#2e68df;font-weight:900; }.featured li::before { color:#67d9ff; }
.dark-ghost { background:#f3f7fd;color:#245dc9!important; }

.v13-faq { background:#fff; }
.faq-grid { display:grid;grid-template-columns:.78fr 1.22fr;gap:70px;align-items:start; }
.faq-copy p { color:#72839b; }
.faq-list { display:grid;gap:12px; }
.faq-list details { border:1px solid #dce5f2;border-radius:18px;background:#fff;box-shadow:0 10px 25px rgba(24,50,87,.05);overflow:hidden; }
.faq-list summary { position:relative;cursor:pointer;padding:20px 54px 20px 20px;color:#18325a;font-weight:800;list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:'+';position:absolute;right:20px;top:17px;width:28px;height:28px;display:grid;place-items:center;border-radius:9px;background:#edf3ff;color:#2a62d4;font-size:20px;transition:transform .2s ease; }
.faq-list details[open] summary::after { transform:rotate(45deg); }
.faq-list details p { margin:0;padding:0 20px 20px;color:#74859b; }

.v13-final-cta { padding-top:20px; }
.final-cta { position:relative;overflow:hidden;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;padding:48px;border-radius:30px;background:linear-gradient(135deg,#0a1b39,#143c7c 60%,#246bff);box-shadow:0 30px 70px rgba(18,54,115,.24); }
.final-copy { position:relative;z-index:2; }.final-copy span { color:#8dcaff;font-size:11px;font-weight:900;letter-spacing:.16em; }.final-copy h2 { margin:8px 0 12px;color:#fff;font-size:42px; }.final-copy p { max-width:700px;color:#c4d5eb; }
.final-actions { position:relative;z-index:2;display:flex;gap:12px;flex-wrap:wrap; }
.btn-white-v13 { background:#fff;color:#174ca4!important; }.btn-outline-white { border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.06);color:#fff!important; }
.final-orb { position:absolute;border-radius:50%;background:rgba(255,255,255,.07); }.final-orb-a { width:240px;height:240px;right:-60px;top:-100px; }.final-orb-b { width:160px;height:160px;left:45%;bottom:-110px; }

@media (max-width: 1100px) {
    .hero-v13-grid,.split-story,.warehouse-grid,.agencies-grid,.faq-grid { grid-template-columns:1fr; }
    .hero-stage { min-height:560px; }
    .services-grid { grid-template-columns:repeat(2,1fr); }
    .warehouse-copy,.agency-copy { max-width:760px; }
    .story-visual { max-width:680px;width:100%;margin:auto; }
    .premium-card,.final-cta { grid-template-columns:1fr; }
}

@media (max-width: 760px) {
    .hero-v13 { padding-top:38px; }
    .hero-v13-copy h1 { font-size:46px; }
    .hero-stage { min-height:470px; }
    .hero-ring { display:none; }
    .erp-window-body { grid-template-columns:86px 1fr;min-height:380px; }
    .erp-side span { font-size:9px;padding:8px 6px; }
    .erp-kpis { grid-template-columns:1fr; }
    .erp-kpis article:nth-child(n+2) { display:none; }
    .float-card-a { left:0;top:78px; }.float-card-b { right:0;bottom:60px; }.float-card-c { display:none; }
    .hero-price-row { flex-direction:column;gap:14px; }
    .logo-strip i { display:none; }
    .logo-strip { justify-content:flex-start; }
    .services-grid,.pricing-v13-grid,.agency-pricing-row { grid-template-columns:1fr; }
    .section-head-v13 { display:block; }
    .story-visual { min-height:470px; }
    .story-main-card { inset:40px 16px 40px 16px; }
    .mini-story-a { right:0;top:0; }.mini-story-b { left:0;bottom:0; }
    .warehouse-scene-v13 { min-height:390px; }
    .warehouse-building-v13 { left:24px;width:210px;height:150px; }
    .moving-forklift { right:12px;transform:scale(.82);transform-origin:bottom right; }
    .agency-network { min-height:420px;transform:scale(.86); }
    .premium-card,.final-cta { padding:30px 24px; }
    .premium-badge-wrap { min-height:160px; }
}


/* === v1.4 page upgrades === */
.download-hero-card,
.feature-snapshot,
.system-core-card,
.pricing-calc-card,
.pricing-result-card,
.premium-partner-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: var(--shadow-soft);
}

.status-pill,
.status-chip,
.premium-partner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ebf2ff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.download-hero-card,
.premium-partner-card,
.pricing-calc-card,
.pricing-result-card,
.feature-snapshot,
.system-core-card {
    padding: 28px;
}

.compact-list {
    margin: 16px 0 24px;
}

.app-availability-grid,
.agency-benefit-grid,
.pricing-note-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.availability-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.availability-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
}

.availability-card span {
    color: var(--muted);
    font-size: 14px;
}

.download-card-top,
.feature-panel-top,
.module-catalog-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.download-card-locked {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.status-chip.locked {
    background: #eff3f8;
    color: #62748c;
}

.locked-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.request-only {
    background: #f3f6fb;
}

.agencies-hero .page-hero-grid {
    align-items: center;
}

.agencies-orbit {
    position: relative;
    min-height: 360px;
    border-radius: 28px;
    background: radial-gradient(circle at 50% 50%, rgba(42, 103, 255, 0.08), transparent 35%), linear-gradient(180deg, #ffffff, #f5f9ff);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.orbit-core,
.orbit-node {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

.orbit-core {
    left: 50%;
    top: 50%;
    width: 124px;
    height: 124px;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #2a67ff, #184ccd);
    color: #ffffff;
    font-weight: 800;
    z-index: 3;
}

.orbit-node {
    width: 94px;
    height: 94px;
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--navy);
    font-weight: 700;
    z-index: 3;
}

.node-1 { left: 50%; top: 24px; transform: translateX(-50%); }
.node-2 { right: 42px; top: 50%; transform: translateY(-50%); }
.node-3 { left: 50%; bottom: 24px; transform: translateX(-50%); }
.node-4 { left: 42px; top: 50%; transform: translateY(-50%); }

.ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1px dashed #c9d7ee;
    transform: translate(-50%, -50%);
    animation: spinRing 24s linear infinite;
}

.ring-1 { width: 250px; height: 250px; }
.ring-2 { width: 330px; height: 330px; animation-direction: reverse; opacity: 0.55; }

@keyframes spinRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.premium-partner-card {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.premium-partner-brand {
    display: grid;
    place-items: center;
    width: 180px;
    height: 120px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.factbiz-logo {
    width: 150px;
    height: auto;
}

.premium-partner-copy h2 {
    margin: 0 0 12px;
}

.premium-partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.premium-partner-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.premium-partner-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modern-agency-card {
    position: relative;
    overflow: hidden;
}

.modern-agency-card::before {
    content: '';
    position: absolute;
    left: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 103, 255, 0.12), transparent 70%);
}

.pricing-hero .page-hero-grid {
    align-items: stretch;
}

.price-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.price-highlight-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow: var(--shadow-soft);
}

.price-highlight-card.featured {
    border-color: #bcd0ff;
    box-shadow: 0 18px 36px rgba(42, 103, 255, 0.14);
}

.price-highlight-card small {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.price-highlight-card strong {
    display: block;
    color: var(--navy);
    font-size: 30px;
    margin-bottom: 6px;
}

.price-highlight-card span {
    color: var(--muted);
}

.pricing-calc-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: stretch;
}

.pricing-calc-head span {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--primary);
}

.pricing-calc-head h2 {
    margin: 12px 0 12px;
    color: var(--navy);
    font-size: 36px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.calculator-grid label,
.result-line span,
.calc-helper-item small {
    color: #4e6077;
}

.calculator-grid label,
.pricing-calc-card label {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.calculator-grid input {
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    border: 1px solid #ccd8e8;
    border-radius: 16px;
    background: #ffffff;
}

.calc-helper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.calc-helper-item {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
}

.calc-helper-item strong {
    display: block;
    color: var(--navy);
    margin-top: 5px;
}

.pricing-result-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(180deg, #0f1c35, #18284a);
    color: #ffffff;
}

.result-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.result-line span {
    color: rgba(255, 255, 255, 0.75);
}

.result-line strong {
    color: #ffffff;
    font-size: 20px;
}

.result-line.total-net strong,
.result-line.grand-total strong {
    font-size: 26px;
}

.formula-box {
    margin-top: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.formula-box small {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.7);
}

.formula-box p {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

.features-hero .page-hero-grid {
    align-items: center;
}

.feature-snapshot {
    background: linear-gradient(180deg, #0f1c35, #152848);
}

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

.snapshot-grid div {
    display: grid;
    place-items: center;
    min-height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
}

.feature-bento-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 18px;
}

.bento-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.bento-large {
    grid-row: span 2;
}

.bento-card h3,
.feature-panel h3,
.module-catalog-card h3,
.download-hero-card h3,
.pricing-result-card h2 {
    margin: 10px 0 12px;
    color: var(--navy);
}

.feature-grid-modern,
.module-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-panel,
.module-catalog-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: var(--shadow-soft);
}

.feature-panel-top span,
.module-catalog-top span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.erp-system-hero .page-hero-grid {
    align-items: center;
}

.system-core-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.system-core-center,
.system-satellite {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    font-weight: 800;
}

.system-core-center {
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #2a67ff, #184ccd);
    color: #ffffff;
    z-index: 3;
}

.system-satellite {
    width: 102px;
    height: 62px;
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--navy);
    z-index: 3;
}

.sat-1 { left: 50%; top: 20px; transform: translateX(-50%); }
.sat-2 { left: 28px; top: 112px; }
.sat-3 { right: 26px; top: 112px; }
.sat-4 { left: 56px; bottom: 42px; }
.sat-5 { right: 56px; bottom: 42px; }

.system-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #b3c9ff, #2a67ff);
    transform-origin: left center;
    z-index: 2;
}

.line-1 { left: 178px; top: 110px; width: 116px; transform: rotate(38deg); }
.line-2 { left: 128px; top: 154px; width: 110px; transform: rotate(4deg); }
.line-3 { left: 274px; top: 154px; width: 110px; transform: rotate(-4deg); }
.line-4 { left: 144px; top: 230px; width: 110px; transform: rotate(-28deg); }
.line-5 { left: 268px; top: 230px; width: 98px; transform: rotate(29deg); }

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.journey-steps {
    display: grid;
    gap: 14px;
}

.journey-step {
    position: relative;
    padding: 16px 18px 16px 44px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    color: var(--navy);
}

.journey-step::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateY(-50%);
}

@media (max-width: 1100px) {
    .app-availability-grid,
    .agency-benefit-grid,
    .pricing-note-grid,
    .feature-grid-modern,
    .module-catalog-grid,
    .feature-bento-grid,
    .pricing-calc-layout,
    .premium-partner-card,
    .journey-grid {
        grid-template-columns: 1fr 1fr;
    }

    .premium-partner-card {
        grid-template-columns: 1fr;
    }

    .premium-partner-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .app-availability-grid,
    .agency-benefit-grid,
    .pricing-note-grid,
    .price-highlight-grid,
    .feature-grid-modern,
    .module-catalog-grid,
    .feature-bento-grid,
    .pricing-calc-layout,
    .calculator-grid,
    .calc-helper-grid,
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .agencies-orbit,
    .system-core-card {
        min-height: 320px;
    }

    .premium-partner-brand {
        width: 100%;
    }

    .system-core-center {
        width: 128px;
        height: 128px;
    }

    .system-satellite {
        width: 86px;
        height: 54px;
        font-size: 12px;
    }

    .sat-2 { left: 12px; }
    .sat-3 { right: 12px; }
    .sat-4 { left: 22px; }
    .sat-5 { right: 22px; }

    .line-1, .line-2, .line-3, .line-4, .line-5 {
        opacity: 0.6;
    }
}


/* === v1.5 sales copy + pricing refinements === */
.pricing-package-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.pricing-package-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.pricing-package-card h2 {
    margin: 12px 0 14px;
    color: var(--navy);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
}

.featured-package {
    border-color: #bcd0ff;
    background: linear-gradient(180deg, #ffffff, #f4f8ff);
}

.capacity-examples {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.capacity-examples div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
}

.capacity-examples strong {
    color: var(--navy);
}

.capacity-examples span,
.capacity-note,
.partner-address {
    color: var(--muted);
}

.calculator-type-label {
    display: block;
    margin-top: 22px;
    color: #4e6077;
    font-size: 14px;
    font-weight: 700;
}

.calculator-type-label select {
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    border: 1px solid #ccd8e8;
    border-radius: 16px;
    background: #fff;
}

.agency-capacity-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #c7d8ff;
    border-radius: 18px;
    background: #eef4ff;
}

.agency-capacity-box small,
.agency-capacity-box span {
    color: #5c6f8d;
}

.agency-capacity-box strong {
    color: var(--navy);
    font-size: 18px;
}

.is-hidden {
    display: none !important;
}

.calculator-summary {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.calculator-summary strong,
.calculator-summary span {
    display: block;
}

.calculator-summary span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.partner-address {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    line-height: 1.65;
}

.partner-address strong {
    color: var(--navy);
}

.partner-address a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 900px) {
    .pricing-package-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .capacity-examples div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}
