/* Ecocys POS public landing — isolated from internal POS */

.pos-landing-page {
    --ink: #111827;
    --muted: #64748B;
    --brand: #004CC0;
    --brand-deep: #002B70;
    --brand-hover: #003DA3;
    --brand-soft: #EAF2FF;
    --accent: #F97316;
    --surface: #FFFFFF;
    --surface-alt: #F8FAFC;
    --line: #E2E8F0;
    --radius: 10px;
    --radius-lg: 14px;
    --header-h: 64px;
    --display: clamp(2.25rem, 5vw, 3.5rem);
    --section: clamp(1.65rem, 3vw, 2.25rem);
    background: var(--surface);
    color: var(--ink);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.pos-landing-page h1,
.pos-landing-page h2,
.pos-landing-page h3,
.pos-landing-page .pos-logo {
    font-family: "Manrope", "Inter", sans-serif;
    letter-spacing: -0.03em;
}

/* ===== Header ===== */
.pos-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.pos-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 2px 16px rgba(0, 43, 112, 0.07);
}
.pos-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
}
.pos-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    flex-shrink: 0;
}
.pos-logo-text { text-transform: lowercase; color: var(--brand); }
.pos-logo-divider { color: var(--line); font-weight: 400; }
.pos-logo-product { color: var(--brand-deep); font-weight: 800; letter-spacing: 0.04em; font-size: 0.85rem; }
.pos-logo-img { width: 32px; height: 32px; object-fit: contain; }
.pos-nav { display: flex; align-items: center; gap: 1.5rem; }
.pos-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.pos-nav a:hover { color: var(--brand); }
.pos-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.pos-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    min-height: 2.45rem;
    padding: 0.4rem 0.95rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
    white-space: nowrap;
}
.pos-header-btn--ghost {
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
}
.pos-header-btn--ghost:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-soft); }
.pos-header-btn--primary {
    color: #fff;
    background: var(--brand);
    border: 1px solid var(--brand);
}
.pos-header-btn--primary:hover,
.pos-header-btn--primary:hover i {
    color: #fff;
    background: var(--brand-hover);
    border-color: var(--brand-hover);
    transform: translateY(-1px);
}
.pos-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    font-size: 1.25rem;
}
.pos-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid var(--line);
    background: var(--surface);
}
.pos-nav-mobile.is-open { display: flex; }
.pos-nav-mobile a {
    padding: 0.65rem 0.5rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
}
.pos-nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

/* ===== Buttons ===== */
.pos-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 2.75rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.pos-btn--primary {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}
.pos-btn--primary:hover,
.pos-btn--primary:hover i {
    color: #fff;
    background: var(--brand-hover);
    border-color: var(--brand-hover);
    transform: translateY(-1px);
}
.pos-btn--secondary {
    color: var(--brand-deep);
    background: var(--surface);
    border-color: var(--line);
}
.pos-btn--secondary:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.pos-btn--light {
    color: var(--brand-deep);
    background: #fff;
    border-color: #fff;
}
.pos-btn--light:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
.pos-btn--outline-light {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
}
.pos-btn--outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.pos-landing-page .pos-final-cta a.pos-btn--outline-light:hover,
.pos-landing-page .pos-final-cta a.pos-btn--outline-light:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
}

/* ===== Hero ===== */
.pos-hero--scene {
    position: relative;
    background: #F2F8FF;
}

.pos-hero-scene-stage {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    max-height: 440px;
    background: #F2F8FF;
}

.pos-hero-visual-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 37%;
    z-index: 0;
    overflow: visible;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding-right: 1rem;
}

.pos-hero-scene-inner {
    position: relative;
    z-index: 3;
    min-height: 420px;
    max-height: 440px;
    display: flex;
    align-items: center;
}

.pos-hero-scene-row {
    width: 100%;
    min-height: 420px;
}

.pos-hero-copy-col {
    position: relative;
    z-index: 2;
    padding-right: clamp(1rem, 2vw, 2rem);
}

.pos-hero-copy {
    width: 100%;
    max-width: 500px;
    padding: 0.65rem 0;
}

.pos-hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pos-hero-showcase-image {
    display: block;
    height: 100%;
    max-height: 440px;
    width: auto;
    max-width: 100%;
    margin-left: 0;
    object-fit: contain;
    object-position: center right;
    transform: translateX(20px);
    opacity: 1;
    filter: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 6%, rgba(0, 0, 0, 0.82) 10%, #000 17%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 6%, rgba(0, 0, 0, 0.82) 10%, #000 17%, #000 100%);
}

.pos-hero-visual-accent {
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 2;
    margin: 0;
    font-family: "Caveat", "Segoe Script", cursive;
    font-size: clamp(1.35rem, 2vw, 1.95rem);
    font-weight: 700;
    color: var(--brand);
    line-height: 1.08;
    transform: rotate(-4deg);
    pointer-events: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.92);
}

.pos-hero-visual-accent::after {
    content: "";
    display: block;
    width: 74%;
    height: 3px;
    margin-top: 3px;
    margin-left: 6%;
    background: var(--accent);
    border-radius: 3px;
    transform: rotate(-2deg);
}

.pos-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--brand);
    margin-bottom: 0.65rem;
}

.pos-hero-title {
    font-size: clamp(3rem, 3.9vw, 3.5rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 0.75rem;
    color: var(--brand-deep);
    letter-spacing: -0.02em;
}

.pos-hero-title-line { display: block; }
.pos-hero-title-line--accent { color: var(--brand); }

.pos-hero-subhead {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    font-weight: 600;
    color: var(--brand-deep);
    margin-bottom: 0.55rem;
    line-height: 1.35;
}

.pos-hero-lead {
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 1rem;
    font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
    line-height: 1.5;
}

.pos-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.pos-hero--scene .pos-hero-cta .pos-btn {
    min-width: 10.625rem;
    min-height: 2.75rem;
    padding-inline: 1.1rem;
    border-radius: 9px;
}

.pos-hero--scene .pos-btn--hero-secondary {
    color: var(--brand);
    background: #fff;
    border-color: rgba(0, 76, 192, 0.38);
}

.pos-landing-page .pos-hero--scene a.pos-btn--hero-secondary:hover,
.pos-landing-page .pos-hero--scene a.pos-btn--hero-secondary:focus-visible {
    color: var(--brand);
    background: var(--brand-soft);
    border-color: var(--brand);
}

.pos-hero-micro {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.45;
}

/* Hero feature bar */
.pos-hero-features {
    position: relative;
    z-index: 1;
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 1.15rem 0 1.25rem;
}
.pos-hero-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    align-items: stretch;
}
.pos-hero-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    text-align: left;
    border-right: 1px solid var(--line);
}
.pos-hero-feature:last-child {
    border-right: none;
}
.pos-hero-feature-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: var(--brand);
    font-size: 1.35rem;
    line-height: 1;
}
.pos-hero-feature strong {
    display: block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--brand-deep);
    line-height: 1.3;
    margin-bottom: 0.1rem;
}
.pos-hero-feature span:last-child {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.35;
}
.pos-section-showcase-image {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 43, 112, 0.1);
    border: 1px solid rgba(0, 76, 192, 0.08);
    object-fit: contain;
}
.pos-section-showcase-image--wide {
    max-width: 100%;
}

/* ===== Value strip ===== */
.pos-value-strip {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}
.pos-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.pos-value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.pos-value-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.1rem;
    font-weight: 700;
}
.pos-value-item strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--brand-deep);
    margin-bottom: 0.15rem;
}
.pos-value-item span:last-child {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.45;
}

/* ===== Sections ===== */
.pos-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.pos-section--alt { background: var(--surface-alt); }
.pos-section--blue {
    background: var(--brand-soft);
    color: var(--brand-deep);
}
.pos-section--blue p { color: var(--muted); }
.pos-section-head {
    max-width: 640px;
    margin-bottom: 2.5rem;
}
.pos-section-head h2 {
    font-size: var(--section);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.65rem;
}
.pos-section-head p { color: var(--muted); margin: 0; }
.pos-section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brand);
    margin-bottom: 0.5rem;
}
#features .pos-section-eyebrow {
    margin-top: -1.35rem;
}

/* ===== POS UI screenshots ===== */
.pos-ui-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(0, 43, 112, 0.08);
    object-fit: contain;
    object-position: center top;
}
.pos-payments-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(0, 43, 112, 0.08);
    object-fit: contain;
    object-position: center top;
}

/* ===== Workflow section ===== */
.pos-section--workflow {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 8vw, 6.25rem) 0;
    background: #F8FAFC;
}
.pos-workflow-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.pos-workflow-bg::before,
.pos-workflow-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 76, 192, 0.07) 0%, transparent 70%);
}
.pos-workflow-bg::before {
    width: min(520px, 55vw);
    height: min(520px, 55vw);
    top: -12%;
    left: -8%;
}
.pos-workflow-bg::after {
    width: min(480px, 50vw);
    height: min(480px, 50vw);
    bottom: -18%;
    right: -6%;
}

.pos-workflow-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
}
.pos-workflow-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto clamp(2.25rem, 4.5vw, 3rem);
}
.pos-workflow-eyebrow {
    margin: -1.35rem 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
}
.pos-workflow-head h2 {
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 0.75rem;
    color: var(--brand-deep);
    letter-spacing: -0.02em;
}
.pos-workflow-accent {
    display: block;
    color: var(--brand);
}
.pos-workflow-head p {
    color: var(--muted);
    margin: 0;
    font-size: 1.0625rem;
}

.pos-workflow-track {
    width: 100%;
    container-type: inline-size;
}
.pos-workflow-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(0.4rem, 1vw, 0.85rem);
    width: 100%;
}

.pos-wf-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 240px;
    text-align: center;
    transition: transform 0.25s ease;
}
.pos-wf-card:hover {
    transform: translateY(-3px);
}
.pos-wf-card--emphasis .pos-wf-frame {
    box-shadow: 0 10px 32px rgba(0, 76, 192, 0.14);
    border-color: rgba(0, 76, 192, 0.16);
}
.pos-wf-card--complete .pos-wf-frame {
    border-color: rgba(0, 76, 192, 0.12);
}

.pos-wf-frame {
    margin-bottom: 1rem;
    padding: 0.5rem;
    aspect-ratio: 861 / 1024;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid rgba(0, 76, 192, 0.1);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 43, 112, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pos-wf-card:hover .pos-wf-frame {
    box-shadow: 0 14px 36px rgba(0, 43, 112, 0.12);
}
.pos-wf-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
}

.pos-wf-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}
.pos-wf-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.pos-wf-meta h3 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--ink);
}
.pos-wf-card > p {
    font-size: 0.8125rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.45;
    padding: 0 0.25rem;
}

.pos-wf-arrow {
    flex: 0 0 auto;
    align-self: flex-start;
    padding-top: 0;
    margin-top: calc(0.5rem + (17cqi - 1rem) * 512 / 861);
    color: var(--brand);
    font-size: 1.15rem;
    line-height: 1;
    opacity: 0.55;
    transition: opacity 0.2s, transform 0.2s;
}
.pos-workflow-row:hover .pos-wf-arrow {
    opacity: 0.75;
}
.pos-wf-card:hover + .pos-wf-arrow {
    transform: translateX(3px);
    opacity: 0.9;
}

/* ===== Feature cards ===== */
.pos-feature-card {
    height: 100%;
    padding: 1.35rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.25s, transform 0.25s;
}
.pos-feature-card:hover {
    box-shadow: 0 12px 32px rgba(0, 43, 112, 0.08);
    transform: translateY(-2px);
}
.pos-feature-card--icon {
    padding-top: 1.5rem;
}
.pos-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.2rem;
}
.pos-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.pos-feature-card p {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
}

/* ===== Pillars ===== */
.pos-pillar-card {
    height: 100%;
    padding: 1.35rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.pos-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.pos-pillar-card h3 {
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--brand-deep);
    margin-bottom: 0.4rem;
}
.pos-pillar-card p {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
}

/* ===== Compare ===== */
.pos-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
}
.pos-compare-col {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface);
}
.pos-compare-col--legacy { opacity: 0.85; }
.pos-compare-col--ecocys {
    border-color: rgba(0, 76, 192, 0.25);
    background: var(--brand-soft);
}
.pos-compare-col h3 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    text-align: center;
}
.pos-compare-vs {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--muted);
}

/* ===== Flow lists ===== */
.pos-flow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pos-flow-list li span {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: var(--radius);
    background: var(--surface-alt);
    border: 1px solid var(--line);
}
.pos-flow-list--brand li span {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.pos-flow-list--muted li span {
    color: var(--muted);
}
.pos-flow-list--center { text-align: center; }
.pos-flow-connector {
    width: 2px;
    height: 1.25rem;
    margin: 0.25rem auto;
    background: var(--line);
}
.pos-flow-connector--brand { background: var(--brand); opacity: 0.5; }
.pos-flow-list--inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.pos-flow-list--compact li span { padding: 0.4rem 0.85rem; }
.pos-flow-arrow-inline { color: var(--brand); font-size: 0.9rem; }

/* ===== Fashion ===== */
.pos-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}
.pos-category-tags li {
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--brand-deep);
    background: var(--brand-soft);
    border-radius: 999px;
}

/* ===== Payments ===== */
.pos-pay-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.pos-pay-methods span {
    padding: 0.4rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
}

/* ===== Ecocys connect ===== */
.pos-ecocys-connect {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface-alt);
}
.pos-ecocys-connect-copy { max-width: 480px; }
.pos-ecocys-connect-copy h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.pos-ecocys-connect-copy p { color: var(--muted); margin: 0; }

/* ===== Support ===== */
.pos-support-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface);
}
.pos-support-card h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}
.pos-support-card p { color: var(--muted); margin: 0; max-width: 520px; }

/* ===== Final CTA ===== */
.pos-final-cta {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
    color: #fff;
}
.pos-final-cta-inner { text-align: center; }
.pos-final-cta h2 {
    font-size: var(--section);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.pos-final-cta > .container > p,
.pos-final-cta-inner > p:first-of-type {
    opacity: 0.9;
    margin-bottom: 1.25rem;
}
.pos-final-cta .pos-hero-cta { justify-content: center; }
.pos-final-micro {
    font-size: 0.8125rem;
    opacity: 0.75;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ===== Footer ===== */
.pos-footer {
    padding: 2.5rem 0 1.5rem;
    background: var(--surface-alt);
    border-top: 1px solid var(--line);
}
.pos-footer-brand {
    font-family: "Manrope", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
}
.pos-footer-tagline {
    color: var(--muted);
    font-size: 0.875rem;
    margin: 0.5rem 0 0;
}
.pos-footer h6 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.pos-footer ul li { margin-bottom: 0.35rem; }
.pos-footer ul a {
    font-size: 0.875rem;
    color: var(--muted);
    text-decoration: none;
}
.pos-footer ul a:hover { color: var(--brand); }
.pos-footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    font-size: 0.8125rem;
    color: var(--muted);
}

/* ===== Reveal animations ===== */
[data-pos-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-pos-reveal="scale"] {
    transform: translateY(12px) scale(0.97);
}
[data-pos-reveal].is-visible {
    opacity: 1;
    transform: none;
}
[data-pos-reveal="scale"].is-visible {
    transform: none;
}

.pos-hero--scene .pos-hero-showcase-image[data-pos-reveal="scale"] {
    transform: translateY(12px) translateX(20px);
}

.pos-hero--scene .pos-hero-showcase-image[data-pos-reveal="scale"].is-visible {
    transform: translateX(20px);
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .pos-wf-card {
        max-width: 220px;
    }
}

@media (max-width: 1023.98px) {
    .pos-workflow-track {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        margin: 0 calc(-1 * var(--bs-gutter-x, 0.75rem));
        padding: 0 var(--bs-gutter-x, 0.75rem) 0.75rem;
    }
    .pos-workflow-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 1rem;
        width: max-content;
        min-width: 100%;
        padding-bottom: 0.25rem;
    }
    .pos-wf-card {
        flex: 0 0 min(78vw, 240px);
        max-width: none;
        scroll-snap-align: start;
    }
    .pos-wf-arrow {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .pos-hero-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pos-hero-feature:nth-child(3) {
        border-right: none;
    }
    .pos-hero-feature:nth-child(4),
    .pos-hero-feature:nth-child(5) {
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 991.98px) {
    .pos-value-grid { grid-template-columns: repeat(2, 1fr); }
    .pos-hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pos-hero-feature {
        border-right: none;
        border-bottom: 1px solid var(--line);
        justify-content: flex-start;
        padding: 1rem 1.25rem;
    }
    .pos-hero-feature:nth-child(odd) {
        border-right: 1px solid var(--line);
    }
    .pos-hero-feature:nth-child(5) {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: none;
        justify-content: center;
    }
    .pos-compare { grid-template-columns: 1fr; }
    .pos-compare-vs { text-align: center; }
}

@media (max-width: 991.98px) {
    .pos-hero-scene-stage {
        display: flex;
        flex-direction: column;
        min-height: 0;
        max-height: none;
        background: #F2F8FF;
    }
    .pos-hero-scene-inner,
    .pos-hero-scene-row {
        min-height: 0;
        max-height: none;
    }
    .pos-hero-scene-inner {
        order: 1;
    }
    .pos-hero-copy-col {
        padding-right: 0;
    }
    .pos-hero-visual-panel {
        position: relative;
        inset: auto;
        order: 2;
        left: auto;
        width: 100%;
        min-height: 0;
        max-height: none;
        padding: 0.25rem 0 1.25rem;
    }
    .pos-hero-visual {
        height: auto;
    }
    .pos-hero-showcase-image {
        width: 100%;
        height: auto;
        min-width: 0;
        max-width: 100%;
        max-height: 280px;
        margin-left: 0;
        object-position: center center;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 6%, #000 15%, #000 100%);
        mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 6%, #000 15%, #000 100%);
    }
    .pos-hero-visual-accent {
        right: 2%;
        top: -0.25rem;
    }
}

@media (max-width: 767.98px) {
    .pos-value-grid { grid-template-columns: 1fr; }
    .pos-ecocys-connect { flex-direction: column; align-items: flex-start; }
    .pos-hero-copy {
        width: 100%;
        max-width: none;
        padding: 1.35rem 0 0.75rem;
    }
    .pos-hero--scene .pos-hero-cta .pos-btn {
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 0;
    }
}

@media (max-width: 430px) {
    .pos-hero--scene .pos-hero-cta {
        flex-direction: column;
    }
    .pos-hero--scene .pos-hero-cta .pos-btn {
        width: 100%;
        flex: none;
    }
    .pos-hero-title {
        font-size: clamp(2.25rem, 10vw, 2.75rem);
    }
}

@media (min-width: 1200px) {
    .pos-hero-copy-col {
        padding-left: clamp(0.5rem, 1.5vw, 1.25rem);
    }
    .pos-hero-visual-panel {
        left: 36%;
        padding-right: 1.25rem;
    }
    .pos-hero-showcase-image {
        max-height: 440px;
        transform: translateX(20px);
    }
}

@media (max-width: 575.98px) {
    .pos-hero-features-grid {
        grid-template-columns: 1fr;
    }
    .pos-hero-feature,
    .pos-hero-feature:nth-child(odd) {
        border-right: none;
    }
    .pos-hero-feature:last-child {
        border-bottom: none;
    }
    .pos-header-btn--primary span,
    .pos-header-btn--primary { font-size: 0.8125rem; padding-inline: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
    [data-pos-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .pos-btn:hover,
    .pos-header-btn--primary:hover,
    .pos-feature-card:hover {
        transform: none;
    }
}
