:root {
    --ink: #07101f;
    --ink-soft: #34475e;
    --muted: #7b8797;
    --line: #dde3ea;
    --surface: #ffffff;
    --surface-alt: #f4f6f9;
    --navy: #101a2c;
    --navy-2: #172338;
    --sidebar: #0a3f39;
    --sidebar-deep: #052a27;
    --teal: #16c7b7;
    --teal-dark: #0b756d;
    --green: #20c987;
    --blue: #2f7dd7;
    --amber: #f5a400;
    --red: #ff4d5a;
    --shadow: 0 24px 70px rgba(7, 28, 47, 0.13);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #f7f8fb;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(calc(100% - 32px), var(--max));
    min-height: 72px;
    margin: 0 auto;
    padding: 12px 0;
    background: rgba(247, 248, 251, 0.88);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    border-bottom: 1px solid rgba(223, 231, 238, 0.8);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--ink);
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar-deep), var(--sidebar), var(--teal));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 650;
}

.site-nav a {
    padding: 10px 0;
}

.site-nav a:hover {
    color: var(--teal-dark);
}

.nav-cta {
    padding: 10px 14px !important;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink) !important;
    background: #fff;
    box-shadow: 0 10px 26px rgba(7, 16, 31, 0.08);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
    gap: 42px;
    align-items: center;
    width: min(calc(100% - 32px), var(--max));
    min-height: calc(100vh - 72px);
    margin: 0 auto;
    padding: 56px 0 66px;
}

.hero::before {
    position: absolute;
    inset: 0 calc(50% - 50vw) auto;
    z-index: -2;
    height: min(760px, 78vh);
    background:
        linear-gradient(90deg, rgba(5, 42, 39, 0.08), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(22, 199, 183, 0.18), transparent 34%);
    content: "";
    pointer-events: none;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 10px;
    border: 1px solid rgba(22, 199, 183, 0.28);
    border-radius: 8px;
    color: var(--teal-dark);
    background: rgba(22, 199, 183, 0.09);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.25;
}

p {
    color: var(--ink-soft);
    line-height: 1.7;
}

.hero-text {
    max-width: 620px;
    margin-bottom: 30px;
    font-size: 1.15rem;
}

.hero-actions,
.lead-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
    box-shadow: 0 16px 34px rgba(5, 42, 39, 0.22);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sidebar-deep), var(--teal-dark));
}

.btn-secondary {
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
}

.btn-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.18);
}

.btn-secondary .btn-icon {
    background: rgba(7, 28, 47, 0.08);
}

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

.hero-proof span {
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink-soft);
    background: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-media {
    position: relative;
}

.hero-media::before {
    position: absolute;
    inset: 7% 8% -4% 11%;
    z-index: -1;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(10, 63, 57, 0.2), rgba(22, 199, 183, 0.16));
    content: "";
    filter: blur(16px);
}

.hero-media img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(5, 42, 39, 0.17);
}

.metric-chip {
    position: absolute;
    display: grid;
    gap: 3px;
    min-width: 148px;
    padding: 14px;
    border: 1px solid rgba(22, 199, 183, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(5, 42, 39, 0.13);
    backdrop-filter: blur(16px);
}

.metric-chip strong {
    font-size: 1.25rem;
}

.metric-chip span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 750;
}

.chip-top {
    top: 7%;
    right: -2%;
}

.chip-bottom {
    left: 3%;
    bottom: 6%;
}

section {
    scroll-margin-top: 90px;
}

.pain-section,
.platform-section,
.strategic-section,
.audience-section,
.benefits-section,
.lead-section,
.thanks-section {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    padding: 86px 0;
}

.system-section,
.spotlight-section,
.integrations-section {
    width: 100%;
    padding: 88px max(16px, calc((100% - var(--max)) / 2));
}

.system-section {
    background:
        linear-gradient(120deg, rgba(22, 199, 183, 0.08), transparent 42%),
        linear-gradient(180deg, var(--navy), #080d1d);
    color: #fff;
}

.system-section p,
.system-section .section-kicker {
    color: rgba(255, 255, 255, 0.76);
}

.section-heading {
    display: grid;
    max-width: 870px;
    margin-bottom: 36px;
}

.section-heading.compact {
    max-width: 760px;
}

.pain-grid,
.feature-grid,
.strategic-grid {
    display: grid;
    gap: 14px;
}

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

.pain-grid article,
.feature-grid article,
.strategic-grid article {
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(7, 16, 31, 0.05);
}

.pill {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 9px;
    border-radius: 8px;
    color: var(--red);
    background: rgba(255, 77, 90, 0.08);
    font-size: 0.77rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.flow div {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.flow span,
.feature-grid span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--teal);
    font-weight: 900;
}

.flow p {
    margin-bottom: 0;
}

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

.feature-grid article:nth-child(4),
.feature-grid article:nth-child(5),
.feature-grid article:nth-child(7),
.feature-grid article:nth-child(8) {
    border-color: rgba(22, 199, 183, 0.34);
    background: linear-gradient(180deg, #fff, rgba(22, 199, 183, 0.055));
}

.spotlight-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 36px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(5, 42, 39, 0.08), transparent 46%),
        #edf8f6;
}

.spotlight-copy p {
    max-width: 620px;
}

.email-example {
    display: grid;
    gap: 6px;
    max-width: 500px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(22, 199, 183, 0.26);
    border-radius: 8px;
    background: #fff;
}

.email-example span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
}

.email-example strong {
    color: var(--teal-dark);
    overflow-wrap: anywhere;
}

.inbox-panel {
    padding: 16px;
    border: 1px solid rgba(22, 199, 183, 0.24);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 12px;
    border-bottom: 1px solid var(--line);
}

.panel-header span {
    color: var(--teal-dark);
    font-weight: 900;
}

.mail-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding: 16px 12px;
    border-bottom: 1px solid var(--line);
}

.mail-row:last-child {
    border-bottom: 0;
}

.mail-row p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.mail-row small {
    color: var(--muted);
    font-weight: 750;
}

.mail-dot {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
}

.mail-dot.green {
    background: var(--green);
}

.mail-dot.blue {
    background: var(--blue);
}

.mail-dot.amber {
    background: var(--amber);
}

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

.strategic-grid article {
    display: flex;
    min-height: 310px;
    flex-direction: column;
}

.feature-icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar), var(--navy));
    font-weight: 900;
}

.strategic-grid ol {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tag-list span {
    padding: 7px 9px;
    border-radius: 8px;
    background: #eff4f7;
    color: var(--ink-soft);
    font-size: 0.83rem;
    font-weight: 750;
}

.capacity-bars {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.capacity-bars span {
    display: block;
    height: 9px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--teal) var(--size), #e8eef3 var(--size));
}

.margin-meter {
    height: 12px;
    margin-top: auto;
    overflow: hidden;
    border-radius: 8px;
    background: #e8eef3;
}

.margin-meter span {
    display: block;
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--teal), var(--blue));
}

.integrations-section {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
    gap: 34px;
    align-items: center;
    background: #f3f6fa;
}

.integration-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.integration-strip span,
.integration-strip strong,
.audience-grid span,
.benefit-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(7, 16, 31, 0.04);
}

.integration-strip strong {
    color: #fff;
    border-color: var(--sidebar);
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
}

.audience-grid,
.benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefits-section {
    padding-top: 30px;
}

.lead-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
    gap: 36px;
    align-items: start;
    margin-bottom: 52px;
}

.lead-copy {
    position: sticky;
    top: 100px;
}

.lead-form,
.thanks-panel {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(7, 16, 31, 0.11);
}

.lead-form {
    display: grid;
    gap: 16px;
}

.lead-form label {
    display: grid;
    gap: 7px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 800;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    outline: none;
}

.lead-form textarea {
    resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(22, 199, 183, 0.13);
}

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

.hidden-field {
    position: absolute;
    left: -10000px;
}

.form-submit {
    width: 100%;
    margin-top: 4px;
}

.thanks-section {
    display: grid;
    min-height: 62vh;
    place-items: center;
}

.thanks-panel {
    max-width: 680px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    padding: 34px 0 46px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    margin-bottom: 10px;
}

.site-footer p {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--ink-soft);
    font-weight: 750;
}

@media (max-width: 980px) {
    .site-nav {
        position: absolute;
        top: 64px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero,
    .spotlight-section,
    .integrations-section,
    .lead-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 34px;
    }

    .pain-grid,
    .feature-grid,
    .flow,
    .strategic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lead-copy {
        position: static;
    }
}

@media (max-width: 680px) {
    .hero,
    .pain-section,
    .platform-section,
    .strategic-section,
    .audience-section,
    .benefits-section,
    .lead-section,
    .thanks-section {
        width: min(calc(100% - 24px), var(--max));
        padding: 58px 0;
    }

    .system-section,
    .spotlight-section,
    .integrations-section {
        padding: 60px 12px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .pain-grid,
    .feature-grid,
    .flow,
    .strategic-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .lead-switch,
    .btn {
        width: 100%;
    }

    .metric-chip {
        position: static;
        margin-top: 10px;
    }

    .mail-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .mail-row small {
        grid-column: 2;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* Revised commercial landing visuals */
.hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 54px;
}

h1 {
    font-size: clamp(2.7rem, 6.2vw, 5.25rem);
}

.hero-text {
    max-width: 590px;
}

.hero-concept {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(22, 199, 183, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 249, 0.88)),
        radial-gradient(circle at 80% 10%, rgba(22, 199, 183, 0.2), transparent 34%);
    box-shadow: 0 28px 90px rgba(5, 42, 39, 0.16);
    overflow: hidden;
}

.hero-concept::before {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border: 34px solid rgba(22, 199, 183, 0.12);
    border-radius: 50%;
    content: "";
}

.concept-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px;
    border: 1px solid rgba(221, 227, 234, 0.82);
    border-radius: 8px;
    background: #fff;
}

.concept-header span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.concept-header strong {
    color: var(--teal-dark);
}

.concept-metrics,
.margin-dashboard {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.concept-metrics article,
.margin-dashboard article {
    display: grid;
    gap: 8px;
    min-height: 112px;
    padding: 16px;
    border: 1px solid rgba(221, 227, 234, 0.86);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 16, 31, 0.06);
}

.concept-metrics span,
.margin-dashboard span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.concept-metrics strong,
.margin-dashboard strong {
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 1;
}

.concept-metrics article:nth-child(4) strong,
.concept-metrics article:nth-child(6) strong,
.margin-dashboard article:nth-child(4) strong,
.margin-dashboard article:nth-child(6) strong {
    color: var(--teal-dark);
}

.concept-route {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(22, 199, 183, 0.2);
    border-radius: 8px;
    background: rgba(5, 42, 39, 0.04);
}

.concept-route span {
    color: var(--sidebar-deep);
    font-size: 0.86rem;
    font-weight: 850;
}

.concept-route i {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), rgba(22, 199, 183, 0.1));
}

.scattered-map {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.scattered-map span,
.scattered-map strong {
    display: grid;
    min-height: 94px;
    place-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink-soft);
    font-weight: 850;
    box-shadow: 0 12px 34px rgba(7, 16, 31, 0.05);
}

.scattered-map strong {
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar), var(--navy));
}

.connect-flow {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.connect-flow article {
    position: relative;
    min-height: 158px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.connect-flow article:not(:last-child)::after,
.ticket-flow article:not(:last-child)::after,
.inbox-flow article:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -15px;
    z-index: 2;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--teal);
    background: #fff;
    content: "→";
    font-size: 0.84rem;
    font-weight: 900;
    transform: translateY(-50%);
}

.connect-flow span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--teal);
    font-weight: 900;
}

.connect-flow p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.spotlight-section,
.tickets-section,
.allocation-section,
.margin-section,
.final-cta-section {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    padding: 98px 0;
}

.spotlight-section {
    width: 100%;
    margin: 0;
    padding: 98px max(16px, calc((100% - var(--max)) / 2));
}

.inbox-flow,
.ticket-flow,
.allocation-grid {
    display: grid;
    gap: 14px;
}

.inbox-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ticket-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.allocation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inbox-flow article,
.ticket-flow article,
.allocation-grid article {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(7, 16, 31, 0.06);
}

.inbox-flow article span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
    font-weight: 900;
}

.inbox-flow p,
.ticket-flow p,
.allocation-grid p {
    margin-bottom: 0;
}

.tickets-section,
.margin-section {
    border-top: 1px solid rgba(221, 227, 234, 0.8);
}

.ticket-flow .feature-icon {
    margin-bottom: 8px;
}

.allocation-grid article {
    min-height: 280px;
}

.margin-section {
    width: 100%;
    margin: 0;
    padding: 100px max(16px, calc((100% - var(--max)) / 2));
    background:
        radial-gradient(circle at 12% 18%, rgba(22, 199, 183, 0.12), transparent 30%),
        #f3f7fa;
}

.margin-dashboard {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.final-cta-section {
    display: grid;
    justify-items: center;
    text-align: center;
}

.final-cta-section .section-heading {
    justify-items: center;
}

.final-cta-section p {
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 1080px) {
    .connect-flow {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .margin-dashboard {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .concept-metrics,
    .scattered-map,
    .ticket-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inbox-flow,
    .allocation-grid {
        grid-template-columns: 1fr;
    }

    .connect-flow article:not(:last-child)::after,
    .ticket-flow article:not(:last-child)::after,
    .inbox-flow article:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .concept-metrics,
    .concept-route,
    .scattered-map,
    .connect-flow,
    .ticket-flow,
    .margin-dashboard {
        grid-template-columns: 1fr;
    }

    .concept-route i {
        width: 2px;
        height: 22px;
        margin-left: 16px;
    }

    .hero-concept,
    .inbox-flow article,
    .ticket-flow article,
    .allocation-grid article {
        padding: 18px;
    }
}
/* Clear positioning revision */
.hero-clear {
    grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
    gap: 56px;
}

.hero-clear h1 {
    font-size: clamp(2.65rem, 5.8vw, 5rem);
}

.operation-visual {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(22, 199, 183, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 249, 0.9)),
        radial-gradient(circle at 82% 12%, rgba(22, 199, 183, 0.18), transparent 34%);
    box-shadow: 0 28px 90px rgba(5, 42, 39, 0.16);
    overflow: hidden;
}

.operation-visual::before {
    position: absolute;
    top: -84px;
    right: -80px;
    width: 220px;
    height: 220px;
    border: 34px solid rgba(22, 199, 183, 0.12);
    border-radius: 50%;
    content: "";
}

.operation-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px;
    border: 1px solid rgba(221, 227, 234, 0.85);
    border-radius: 8px;
    background: #fff;
}

.operation-header span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.operation-header strong {
    color: var(--teal-dark);
}

.operation-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.operation-stack article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(221, 227, 234, 0.9);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 16, 31, 0.055);
}

.operation-stack article span {
    grid-row: span 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
    font-size: 0.82rem;
    font-weight: 900;
}

.operation-stack article strong {
    font-size: 1rem;
}

.operation-stack article p {
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.pain-section .section-heading p,
.margin-section .section-heading p {
    max-width: 760px;
    font-size: 1.06rem;
}

.split-problem {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 16px;
    align-items: stretch;
}

.messy-side {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.messy-side span {
    display: grid;
    min-height: 72px;
    place-items: center;
    border: 1px dashed rgba(123, 135, 151, 0.4);
    border-radius: 8px;
    color: var(--ink-soft);
    background: var(--surface-alt);
    font-weight: 800;
}

.clean-side {
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 250px;
    padding: 28px;
    border-radius: 8px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 16%, rgba(22, 199, 183, 0.26), transparent 32%),
        linear-gradient(135deg, var(--sidebar-deep), var(--navy));
}

.clean-side span {
    width: fit-content;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.clean-side strong {
    max-width: 440px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.05;
}

.core-grid,
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.core-grid article,
.differentials-grid article {
    display: grid;
    align-content: start;
    min-height: 260px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(7, 16, 31, 0.055);
}

.core-grid p,
.differentials-grid p {
    margin-bottom: 0;
}

.simple-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.simple-flow article {
    position: relative;
    min-height: 170px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.simple-flow article:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -15px;
    z-index: 2;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--teal);
    background: #fff;
    content: "→";
    font-size: 0.84rem;
    font-weight: 900;
    transform: translateY(-50%);
}

.simple-flow span {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 8px;
    color: var(--navy);
    background: var(--teal);
    font-weight: 900;
}

.simple-flow p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.differentials-section,
.margin-section {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    padding: 98px 0;
}

.mini-flow {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    gap: 8px;
    align-items: center;
    margin-top: 22px;
}

.mini-flow span {
    color: var(--sidebar-deep);
    font-size: 0.82rem;
    font-weight: 850;
}

.mini-flow i {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), rgba(22, 199, 183, 0.12));
}

.margin-section {
    width: 100%;
    margin: 0;
    padding: 100px max(16px, calc((100% - var(--max)) / 2));
    background:
        radial-gradient(circle at 12% 18%, rgba(22, 199, 183, 0.12), transparent 30%),
        #f3f7fa;
}

.closing-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.closing-grid span {
    display: grid;
    min-height: 112px;
    place-items: center;
    padding: 16px;
    border: 1px solid rgba(221, 227, 234, 0.9);
    border-radius: 8px;
    color: var(--ink-soft);
    background: #fff;
    font-weight: 850;
    text-align: center;
    box-shadow: 0 14px 34px rgba(7, 16, 31, 0.055);
}

.lead-section {
    padding-top: 104px;
}

@media (max-width: 1080px) {
    .core-grid,
    .differentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .simple-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 980px) {
    .hero-clear,
    .split-problem {
        grid-template-columns: 1fr;
    }

    .simple-flow article:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .messy-side,
    .core-grid,
    .simple-flow,
    .differentials-grid,
    .closing-grid {
        grid-template-columns: 1fr;
    }

    .operation-visual,
    .core-grid article,
    .differentials-grid article {
        padding: 18px;
    }

    .mini-flow {
        grid-template-columns: 1fr;
    }

    .mini-flow i {
        width: 2px;
        height: 18px;
        margin-left: 12px;
    }
}
/* Client portal refinements */
.core-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.simple-flow {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.differentials-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1180px) {
    .core-grid,
    .differentials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .simple-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .core-grid,
    .differentials-grid,
    .simple-flow {
        grid-template-columns: 1fr;
    }
}
/* Simplified integrations section */
.integration-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.integration-cards article {
    display: grid;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7, 16, 31, 0.045);
}

.integration-cards span {
    width: fit-content;
    padding: 6px 9px;
    border-radius: 8px;
    color: var(--teal-dark);
    background: rgba(22, 199, 183, 0.1);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.integration-cards h3 {
    margin-bottom: 0;
}

.integration-cards p {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .integrations-section {
        grid-template-columns: 1fr;
    }
}
/* Header refinement */
.site-header {
    width: 100%;
    min-height: 72px;
    margin: 0;
    padding: 12px max(16px, calc((100% - var(--max)) / 2));
    border-bottom: 1px solid rgba(221, 227, 234, 0);
    transition: min-height 180ms ease, padding 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom-color: rgba(221, 227, 234, 0.9);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(7, 16, 31, 0.06);
}

.brand {
    flex-shrink: 0;
}

.site-nav {
    flex-wrap: nowrap;
    gap: 18px;
    white-space: nowrap;
}

.site-nav a {
    border-radius: 8px;
}

.site-nav a:not(.nav-cta) {
    padding: 9px 2px;
}

.nav-cta {
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .site-header {
        padding-right: 16px;
        padding-left: 16px;
    }

    .site-nav {
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        gap: 6px;
        white-space: normal;
    }

    .site-nav a,
    .site-nav a:not(.nav-cta) {
        padding: 12px 10px;
    }
}
/* Modern pill header */
.site-header {
    top: 14px;
    width: min(calc(100% - 32px), var(--max));
    min-height: 62px;
    margin: 0 auto;
    padding: 8px 10px 8px 14px;
    border: 1px solid rgba(221, 227, 234, 0.82);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 38px rgba(7, 16, 31, 0.07);
}

.site-header.is-scrolled {
    min-height: 58px;
    padding: 7px 9px 7px 13px;
    border-color: rgba(221, 227, 234, 0.96);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(7, 16, 31, 0.09);
}

.brand {
    gap: 9px;
    font-size: 0.98rem;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
}

.site-nav {
    gap: 4px;
    padding: 3px;
    border: 1px solid rgba(221, 227, 234, 0.72);
    border-radius: 13px;
    background: rgba(247, 248, 251, 0.76);
}

.site-nav a,
.site-nav a:not(.nav-cta) {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 8px 11px;
    border-radius: 10px;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 760;
}

.site-nav a:hover:not(.nav-cta) {
    color: var(--sidebar-deep);
    background: #fff;
}

.nav-cta {
    min-height: 36px;
    padding: 8px 13px !important;
    color: #fff !important;
    border-color: transparent;
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
    box-shadow: none;
}

.nav-cta:hover {
    color: #fff !important;
    background: linear-gradient(135deg, var(--sidebar-deep), var(--teal-dark));
}

.nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    box-shadow: none;
}

@media (max-width: 980px) {
    .site-header,
    .site-header.is-scrolled {
        top: 10px;
        width: min(calc(100% - 24px), var(--max));
        padding: 8px 10px 8px 12px;
    }

    .site-nav {
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        padding: 8px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.96);
    }

    .site-nav a,
    .site-nav a:not(.nav-cta) {
        justify-content: flex-start;
        min-height: 42px;
        padding: 11px 12px;
    }
}
/* Transparent glass header */
.site-header {
    border-color: rgba(221, 227, 234, 0.52);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 14px 38px rgba(7, 16, 31, 0.045);
    backdrop-filter: blur(22px) saturate(1.25);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.site-header.is-scrolled {
    border-color: rgba(221, 227, 234, 0.72);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 42px rgba(7, 16, 31, 0.065);
}

.site-nav {
    border-color: rgba(221, 227, 234, 0.42);
    background: rgba(255, 255, 255, 0.28);
}

.site-nav a:hover:not(.nav-cta) {
    background: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
    .site-nav {
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(22px) saturate(1.2);
        -webkit-backdrop-filter: blur(22px) saturate(1.2);
    }
}
/* iOS-style glass header refinement */
.site-header {
    border-color: rgba(255, 255, 255, 0.42);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14)),
        rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.68),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18),
        0 18px 48px rgba(7, 16, 31, 0.06);
    backdrop-filter: blur(34px) saturate(1.55);
    -webkit-backdrop-filter: blur(34px) saturate(1.55);
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.5);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18)),
        rgba(255, 255, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.76),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2),
        0 20px 54px rgba(7, 16, 31, 0.075);
}

.site-nav {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.site-nav a:hover:not(.nav-cta) {
    background: rgba(255, 255, 255, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-toggle {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

@media (max-width: 980px) {
    .site-nav {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.22)),
            rgba(255, 255, 255, 0.28);
        backdrop-filter: blur(30px) saturate(1.45);
        -webkit-backdrop-filter: blur(30px) saturate(1.45);
    }
}
/* Minimal top actions */
.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-login,
.header-start {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 0.9rem;
    font-weight: 820;
    white-space: nowrap;
}

.header-login {
    padding: 9px 13px;
    color: var(--ink-soft);
}

.header-login:hover {
    color: var(--sidebar-deep);
    background: rgba(255, 255, 255, 0.42);
}

.header-start {
    padding: 9px 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
    box-shadow: 0 10px 24px rgba(5, 42, 39, 0.16);
}

.header-start:hover {
    background: linear-gradient(135deg, var(--sidebar-deep), var(--teal-dark));
}

@media (max-width: 520px) {
    .site-header,
    .site-header.is-scrolled {
        gap: 10px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-login,
    .header-start {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 0.84rem;
    }
}
/* Nearly transparent header */
.site-header,
.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(8px) saturate(1.05);
    -webkit-backdrop-filter: blur(8px) saturate(1.05);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(221, 227, 234, 0.24);
}

.header-login {
    color: var(--ink-soft);
    background: transparent;
}

.header-login:hover {
    background: rgba(255, 255, 255, 0.22);
}
/* Fully transparent header */
.site-header,
.site-header.is-scrolled {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
/* Classic fixed white header */
.site-header,
.site-header.is-scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    min-height: 68px;
    margin: 0;
    padding: 12px max(16px, calc((100% - var(--max)) / 2));
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body {
    padding-top: 68px;
}

.header-login:hover {
    background: var(--surface-alt);
}

@media (max-width: 520px) {
    .site-header,
    .site-header.is-scrolled {
        min-height: 64px;
        padding: 10px 12px;
    }

    body {
        padding-top: 64px;
    }
}

/* Typography refinement */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
/* Modern professional motion */
:root {
    --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy,
.operation-visual {
    animation: soft-rise 620ms var(--motion-ease) both;
}

.operation-visual {
    animation-delay: 90ms;
}

.btn,
.header-login,
.header-start,
.core-grid article,
.differentials-grid article,
.integration-cards article,
.operation-stack article,
.closing-grid span,
.audience-grid span {
    transition:
        transform 220ms var(--motion-ease),
        border-color 220ms var(--motion-ease),
        box-shadow 220ms var(--motion-ease),
        background 220ms var(--motion-ease),
        color 220ms var(--motion-ease);
}

.core-grid article:hover,
.differentials-grid article:hover,
.integration-cards article:hover,
.operation-stack article:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 199, 183, 0.32);
    box-shadow: 0 20px 48px rgba(7, 16, 31, 0.08);
}

.closing-grid span:hover,
.audience-grid span:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 199, 183, 0.28);
}

.header-start,
.btn-primary {
    position: relative;
    overflow: hidden;
}

.header-start::after,
.btn-primary::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    content: "";
    transform: translateX(-120%);
    transition: transform 520ms var(--motion-ease);
}

.header-start:hover::after,
.btn-primary:hover::after {
    transform: translateX(120%);
}

.capacity-bars span,
.margin-meter span {
    background-size: 160% 100%;
    transition: background-position 380ms var(--motion-ease);
}

.capacity-bars span:hover,
.margin-meter:hover span {
    background-position: 100% 0;
}

@keyframes soft-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll reveal for cards */
.reveal-card {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition:
        opacity 460ms var(--motion-ease),
        transform 520ms var(--motion-ease),
        border-color 220ms var(--motion-ease),
        box-shadow 220ms var(--motion-ease),
        background 220ms var(--motion-ease),
        color 220ms var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
    .reveal-card {
        opacity: 1;
        transform: none;
    }
}


/* Visual storytelling images */
.operation-visual {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 249, 0.88)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.22)),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 249, 0.88));
}

.operation-visual::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(247, 248, 251, 0.84));
    content: "";
    pointer-events: none;
}

.operation-header,
.operation-stack {
    position: relative;
    z-index: 1;
}

.operation-stack article {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section-image {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 199, 183, 0.18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(7, 16, 31, 0.1);
}

.section-image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(5, 42, 39, 0.06)),
        radial-gradient(circle at 82% 16%, rgba(22, 199, 183, 0.16), transparent 28%);
    content: "";
    pointer-events: none;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.client-portal-media {
    height: clamp(260px, 34vw, 390px);
    margin: 34px 0 26px;
}

.integration-media {
    grid-column: 1 / -1;
    height: clamp(240px, 30vw, 340px);
    margin-top: 8px;
}

.integration-media img {
    object-position: center;
}

@media (min-width: 981px) {
    .differentials-section .section-heading {
        max-width: 820px;
    }

    .client-portal-media {
        margin-top: 38px;
        margin-bottom: 30px;
    }
}

@media (max-width: 680px) {
    .client-portal-media,
    .integration-media {
        height: 230px;
        margin-top: 24px;
    }

    .operation-visual {
        background-position: center top;
    }
}

/* Simplified premium hero flow */
.hero-flow-showcase {
    align-content: center;
    min-height: 560px;
    padding: 18px;
    border-color: rgba(22, 199, 183, 0.2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 250, 0.9)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 249, 0.88));
    box-shadow: 0 30px 88px rgba(5, 42, 39, 0.16);
}

.hero-flow-showcase::before {
    top: -96px;
    right: -94px;
    width: 280px;
    height: 280px;
    border-width: 40px;
    opacity: 0.58;
}

.hero-flow-showcase::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(247, 248, 251, 0.82)),
        radial-gradient(circle at 12% 86%, rgba(47, 125, 215, 0.08), transparent 32%);
}

.flow-shell,
.flow-focus,
.flow-steps,
.flow-note {
    position: relative;
    z-index: 1;
}

.flow-shell {
    display: grid;
    gap: 18px;
}

.flow-focus {
    padding: 26px 28px;
    border: 1px solid rgba(221, 227, 234, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 45px rgba(7, 16, 31, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.flow-focus span {
    display: inline-flex;
    margin-bottom: 13px;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.flow-focus h3 {
    max-width: 560px;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.08;
}

.flow-focus p {
    max-width: 590px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.flow-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-steps::before {
    position: absolute;
    top: 30px;
    right: 8%;
    left: 8%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(22, 199, 183, 0.12), rgba(22, 199, 183, 0.78), rgba(22, 199, 183, 0.12));
    content: "";
}

.flow-steps li {
    position: relative;
    display: grid;
    min-height: 116px;
    justify-items: center;
    align-content: start;
    gap: 13px;
    padding: 14px 10px 16px;
    border: 1px solid rgba(221, 227, 234, 0.84);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(7, 16, 31, 0.055);
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.flow-steps li span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 12px 22px rgba(5, 42, 39, 0.18);
}

.flow-steps li strong {
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.25;
}

.flow-note {
    display: flex;
    justify-content: center;
    padding: 14px 18px;
    border: 1px solid rgba(22, 199, 183, 0.18);
    border-radius: 8px;
    color: var(--sidebar-deep);
    background: rgba(22, 199, 183, 0.09);
    font-size: 0.92rem;
    font-weight: 800;
    text-align: center;
}

.hero-flow-showcase .operation-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

@media (max-width: 980px) {
    .hero-flow-showcase {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .hero-flow-showcase {
        padding: 14px;
    }

    .flow-focus {
        padding: 22px;
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }

    .flow-steps::before {
        top: 32px;
        bottom: 32px;
        left: 31px;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(22, 199, 183, 0.12), rgba(22, 199, 183, 0.72), rgba(22, 199, 183, 0.12));
    }

    .flow-steps li {
        min-height: 74px;
        grid-template-columns: auto 1fr;
        justify-items: start;
        align-items: center;
        gap: 14px;
        padding: 14px;
        text-align: left;
    }
}

/* People-backed platform section */
.platform-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 104px max(16px, calc((100% - var(--max)) / 2));
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 42, 39, 0.94), rgba(5, 42, 39, 0.74) 42%, rgba(7, 16, 31, 0.54)),
        linear-gradient(180deg, rgba(7, 16, 31, 0.22), rgba(7, 16, 31, 0.58)),
        url("../img/services-analysis-bg.png") center / cover no-repeat;
}

.platform-section::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 22%, rgba(22, 199, 183, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(5, 42, 39, 0.35), transparent 64%);
    content: "";
    pointer-events: none;
}

.platform-section .section-heading,
.platform-section .core-grid {
    position: relative;
    z-index: 1;
}

.platform-section .section-heading {
    max-width: 760px;
}

.platform-section .section-kicker {
    border-color: rgba(169, 255, 246, 0.26);
    color: #a9fff6;
    background: rgba(22, 199, 183, 0.12);
}

.platform-section h2 {
    color: #fff;
}

.platform-section .core-grid article {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.platform-section .core-grid article:hover {
    border-color: rgba(169, 255, 246, 0.42);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.22);
}

.platform-section .feature-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
}

@media (max-width: 760px) {
    .platform-section {
        padding-top: 84px;
        padding-bottom: 84px;
        background-position: 62% center;
    }

    .platform-section::before {
        background: linear-gradient(180deg, rgba(5, 42, 39, 0.88), rgba(5, 42, 39, 0.66));
    }
}

/* Platform card text contrast */
.platform-section .core-grid h3 {
    color: var(--ink);
}

.platform-section .core-grid p {
    color: var(--ink-soft);
}

/* Light green audience section and dark final form band */
.audience-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 104px max(16px, calc((100% - var(--max)) / 2));
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 16%, rgba(22, 199, 183, 0.2), transparent 30%),
        linear-gradient(135deg, #e9fbf7, #f5fffc 48%, #edf8f5);
}

.audience-section::before {
    position: absolute;
    inset: auto -12% -46% auto;
    width: 520px;
    height: 520px;
    border: 72px solid rgba(22, 199, 183, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.audience-section .section-heading,
.audience-section .audience-grid {
    position: relative;
    z-index: 1;
}

.audience-section .section-kicker {
    border-color: rgba(11, 117, 109, 0.2);
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.56);
}

.audience-grid span {
    border-color: rgba(11, 117, 109, 0.14);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 36px rgba(5, 42, 39, 0.075);
}

.lead-section {
    width: 100%;
    margin: 0;
    padding: 104px max(16px, calc((100% - var(--max)) / 2));
    color: #fff;
    background:
        radial-gradient(circle at 14% 18%, rgba(22, 199, 183, 0.16), transparent 28%),
        linear-gradient(180deg, var(--navy), #080d1d);
}

.lead-section .section-kicker {
    border-color: rgba(169, 255, 246, 0.24);
    color: #a9fff6;
    background: rgba(22, 199, 183, 0.1);
}

.lead-section h2 {
    color: #fff;
}

.lead-section p {
    color: rgba(255, 255, 255, 0.72);
}

.lead-section .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.lead-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.lead-form {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.lead-form p,
.lead-form label {
    color: var(--ink-soft);
}

.site-footer {
    margin-top: 0;
}

@media (max-width: 760px) {
    .audience-section,
    .lead-section {
        padding-top: 84px;
        padding-bottom: 84px;
    }
}

/* Final CTA and footer refinement */
.lead-switch-single {
    margin-top: 22px;
}

.site-footer {
    width: 100%;
    margin: 0;
    padding: 0 max(16px, calc((100% - var(--max)) / 2)) 44px;
    border-top: 0;
    color: #fff;
    background: #080d1d;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px 42px;
    align-items: start;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    max-width: 560px;
}

.footer-brand {
    margin-bottom: 14px;
    color: #fff;
}

.footer-brand .brand-mark {
    box-shadow: 0 12px 26px rgba(22, 199, 183, 0.18);
}

.site-footer p {
    max-width: 560px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links {
    justify-content: flex-end;
    gap: 10px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
}

.footer-links a,
.footer-links button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: inherit;
    background: rgba(255, 255, 255, 0.045);
    font: inherit;
    cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-links button:focus-visible {
    color: #fff;
    border-color: rgba(169, 255, 246, 0.26);
    background: rgba(22, 199, 183, 0.1);
    outline: none;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: space-between;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 760px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}


/* Definitive uTasky logo assets */
.brand-logo-link {
    display: inline-flex;
    min-width: auto;
    align-items: center;
    gap: 0;
}

.brand-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.brand-logo-icon {
    height: 44px;
}

.footer-brand {
    width: fit-content;
}

.footer-brand .brand-logo-full {
    height: 92px;
    filter: drop-shadow(0 18px 34px rgba(22, 199, 183, 0.12));
}

@media (max-width: 520px) {
    .brand-logo-icon {
        height: 38px;
    }

    .footer-brand .brand-logo-full {
        height: 78px;
    }
}


/* Strict logo sizing */
.site-header .brand-logo-link {
    flex: 0 0 auto;
    width: 42px;
    height: 45px;
    overflow: hidden;
}

.site-header .brand-logo-icon {
    width: 42px;
    height: 45px;
    max-width: 42px;
    max-height: 45px;
    object-fit: contain;
}

.footer-brand .brand-logo-full {
    width: 132px;
    height: auto;
    max-width: 132px;
    max-height: 110px;
    object-fit: contain;
}

@media (max-width: 520px) {
    .site-header .brand-logo-link {
        width: 38px;
        height: 41px;
    }

    .site-header .brand-logo-icon {
        width: 38px;
        height: 41px;
        max-width: 38px;
        max-height: 41px;
    }

    .footer-brand .brand-logo-full {
        width: 118px;
        max-width: 118px;
        max-height: 98px;
    }
}


/* SVG logo sizing */
.site-header .brand-logo-link {
    width: 50px;
    height: 51px;
}

.site-header .brand-logo-icon {
    width: 50px;
    height: 51px;
    max-width: 50px;
    max-height: 51px;
}

.footer-brand .brand-logo-full {
    width: 120px;
    height: auto;
    max-width: 120px;
    max-height: 123px;
}

@media (max-width: 520px) {
    .site-header .brand-logo-link {
        width: 44px;
        height: 45px;
    }

    .site-header .brand-logo-icon {
        width: 44px;
        height: 45px;
        max-width: 44px;
        max-height: 45px;
    }

    .footer-brand .brand-logo-full {
        width: 106px;
        max-width: 106px;
        max-height: 108px;
    }
}

/* White SVG logo treatment */
.site-header .brand-logo-link {
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #0f3d3e;
}

.site-header .brand-logo-icon {
    width: 31px;
    height: 34px;
    max-width: 31px;
    max-height: 34px;
}

.footer-brand .brand-logo-full {
    width: 148px;
    max-width: 148px;
    max-height: 150px;
}

@media (max-width: 520px) {
    .site-header .brand-logo-icon {
        width: 28px;
        height: 31px;
        max-width: 28px;
        max-height: 31px;
    }

    .footer-brand .brand-logo-full {
        width: 132px;
        max-width: 132px;
        max-height: 134px;
    }
}


/* Header green full logo */
.site-header .brand-logo-link {
    display: inline-flex;
    width: 106px;
    height: 48px;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

.site-header .brand-logo-icon {
    width: 106px;
    height: 48px;
    max-width: 106px;
    max-height: 48px;
    object-fit: contain;
}

@media (max-width: 520px) {
    .site-header .brand-logo-link {
        width: 88px;
        height: 40px;
    }

    .site-header .brand-logo-icon {
        width: 88px;
        height: 40px;
        max-width: 88px;
        max-height: 40px;
    }
}
/* Product proof landing revision */
.site-header {
    z-index: 50;
}

.header-login,
.header-start {
    min-width: max-content;
}

.hero-product {
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    gap: 44px;
    min-height: calc(100vh - 68px);
    padding-top: 52px;
}

.hero-product::before {
    height: min(720px, 76vh);
}

.hero-product h1 {
    max-width: 660px;
    font-size: clamp(2.8rem, 5.5vw, 5.1rem);
}

.hero-support {
    max-width: 560px;
    margin: -14px 0 28px;
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 700;
}

.product-shot {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(7, 28, 47, 0.16);
    border-radius: 10px;
    background: #07101f;
    box-shadow: 0 28px 90px rgba(5, 42, 39, 0.2);
}

.product-shot::before {
    display: flex;
    height: 34px;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.48);
    background: #0b1323;
    content: "●  ●  ●";
    font-size: 0.62rem;
    letter-spacing: 0.7em;
}

.product-shot img {
    width: 100%;
    height: auto;
}

.hero-shot {
    align-self: center;
}

.hero-shot figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: min(460px, calc(100% - 36px));
}

.hero-shot figcaption span {
    padding: 8px 10px;
    border: 1px solid rgba(169, 255, 246, 0.2);
    border-radius: 8px;
    color: #dffdfa;
    background: rgba(5, 42, 39, 0.72);
    font-size: 0.78rem;
    font-weight: 850;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.beta-strip {
    width: 100%;
    padding: 14px 16px;
    border-block: 1px solid rgba(22, 199, 183, 0.18);
    color: var(--sidebar-deep);
    background: #e9fbf7;
    font-weight: 850;
    text-align: center;
}

.ops-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.ops-sources {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.ops-sources span,
.ops-map strong {
    display: grid;
    min-height: 76px;
    place-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink-soft);
    font-weight: 850;
    text-align: center;
    box-shadow: 0 12px 32px rgba(7, 16, 31, 0.05);
}

.ops-map strong {
    position: relative;
    min-width: 170px;
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar-deep), var(--teal-dark));
}

.ops-map strong::before {
    position: absolute;
    right: 100%;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, rgba(22, 199, 183, 0), var(--teal));
    content: "";
}

.timeline-flow {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.timeline-flow article {
    position: relative;
    min-height: 176px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.timeline-flow article:not(:last-child)::after {
    position: absolute;
    top: 28px;
    right: -15px;
    z-index: 2;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--teal);
    background: #fff;
    content: "→";
    font-size: 0.84rem;
    font-weight: 900;
}

.timeline-flow span,
.execution-grid span,
.portal-grid span {
    display: grid;
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    place-items: center;
    border-radius: 8px;
    color: var(--navy);
    background: var(--teal);
    font-weight: 900;
}

.timeline-flow h3 {
    color: #fff;
}

.timeline-flow p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.55;
}

.product-section,
.execution-section,
.inbox-section,
.tickets-section,
.portal-section {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    padding: 98px 0;
}

.product-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    gap: 42px;
    align-items: center;
}

.margin-proof {
    grid-template-columns: minmax(520px, 1.18fr) minmax(0, 0.82fr);
}

.product-copy p {
    max-width: 640px;
    font-size: 1.04rem;
}

.benefit-points {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.benefit-points li {
    position: relative;
    padding-left: 24px;
    color: var(--ink-soft);
    font-weight: 750;
    line-height: 1.55;
}

.benefit-points li::before {
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--teal-dark);
    content: "";
}

.quote-line {
    display: block;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(22, 199, 183, 0.22);
    border-radius: 8px;
    color: var(--sidebar-deep);
    background: rgba(22, 199, 183, 0.08);
    font-size: 1.02rem;
    line-height: 1.55;
}

.knowledge-card {
    margin-top: 26px;
    padding: 20px;
    border: 1px solid rgba(22, 199, 183, 0.22);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 16, 31, 0.055);
}

.knowledge-card p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.knowledge-card strong {
    color: var(--teal-dark);
    font-size: 0.94rem;
}

.execution-section,
.portal-section {
    border-top: 1px solid rgba(221, 227, 234, 0.82);
}

.execution-grid,
.portal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.execution-grid article,
.portal-grid article {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(7, 16, 31, 0.055);
}

.execution-grid p,
.portal-grid p {
    margin-bottom: 0;
}

.inbox-section {
    width: 100%;
    padding: 98px max(16px, calc((100% - var(--max)) / 2));
    background:
        radial-gradient(circle at 85% 16%, rgba(22, 199, 183, 0.16), transparent 28%),
        #edf8f6;
}

.inbox-demo {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;
    align-items: stretch;
}

.inbox-card,
.inbox-steps {
    padding: 24px;
    border: 1px solid rgba(22, 199, 183, 0.22);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(5, 42, 39, 0.08);
}

.inbox-card {
    display: grid;
    align-content: center;
    gap: 10px;
}

.inbox-card span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.inbox-card strong {
    color: var(--ink);
    font-size: 1.45rem;
}

.inbox-card code {
    padding: 10px;
    border-radius: 8px;
    color: var(--teal-dark);
    background: rgba(22, 199, 183, 0.09);
    overflow-wrap: anywhere;
}

.inbox-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.inbox-steps span {
    position: relative;
    display: grid;
    min-height: 110px;
    place-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink-soft);
    background: var(--surface-alt);
    font-weight: 800;
    text-align: center;
}

.inbox-demo > .quote-line {
    grid-column: 1 / -1;
    margin-top: 0;
}

.ticket-path {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.ticket-path span {
    position: relative;
    display: grid;
    min-height: 128px;
    place-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink-soft);
    background: #fff;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 12px 32px rgba(7, 16, 31, 0.05);
}

.ticket-path span:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -15px;
    z-index: 2;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--teal-dark);
    content: "→";
    font-size: 0.84rem;
    font-weight: 900;
    transform: translateY(-50%);
}

.integrations-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    gap: 36px;
    align-items: center;
}

.integration-flow {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(7, 16, 31, 0.06);
}

.integration-flow > strong {
    display: grid;
    min-height: 54px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--sidebar-deep), var(--teal-dark));
    font-size: 1.2rem;
}

.tool-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-badges span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
    color: var(--ink);
    font-weight: 850;
}

.tool-badges small {
    padding: 4px 6px;
    border-radius: 999px;
    color: var(--teal-dark);
    background: rgba(22, 199, 183, 0.1);
    font-size: 0.68rem;
    font-weight: 900;
}

.tool-badges.output small {
    color: #0b6a46;
    background: rgba(32, 201, 135, 0.13);
}

.integration-flow p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.audience-cards article {
    min-height: 132px;
    padding: 20px;
    border: 1px solid rgba(11, 117, 109, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 36px rgba(5, 42, 39, 0.075);
}

.audience-cards h3 {
    margin-bottom: 8px;
}

.audience-cards p {
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.55;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trace-line {
    margin-top: 22px;
    color: #a9fff6 !important;
    font-weight: 850;
}

.optional-label,
.required-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    margin-left: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.optional-label {
    color: var(--muted);
}

.required-label {
    padding: 4px 7px;
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 999px;
    color: #075f58;
    background: #e7faf7;
}

.privacy-note {
    margin: -2px 0 0;
    color: var(--muted) !important;
    font-size: 0.82rem;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .hero-product,
    .product-section,
    .margin-proof,
    .integrations-section {
        grid-template-columns: 1fr;
    }

    .margin-proof .product-shot {
        order: 2;
    }

    .margin-proof .product-copy {
        order: 1;
    }

    .timeline-flow,
    .ops-sources,
    .execution-grid,
    .portal-grid,
    .ticket-path,
    .audience-cards,
    .benefit-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .hero-product,
    .product-section,
    .execution-section,
    .inbox-section,
    .tickets-section,
    .portal-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero-product h1 {
        font-size: 3rem;
    }

    .ops-map,
    .ops-sources,
    .timeline-flow,
    .execution-grid,
    .portal-grid,
    .inbox-demo,
    .inbox-steps,
    .ticket-path,
    .audience-cards,
    .benefit-list {
        grid-template-columns: 1fr;
    }

    .ops-map strong::before,
    .timeline-flow article::after,
    .ticket-path span::after {
        display: none !important;
    }

    .hero-shot figcaption {
        position: static;
        padding: 12px;
        background: #0b1323;
    }

    .product-shot::before {
        height: 28px;
    }

    .header-login,
    .header-start {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 0.78rem;
    }
}
/* Legal pages */
.legal-section {
    background:
        radial-gradient(circle at 82% 14%, rgba(22, 199, 183, 0.12), transparent 28%),
        #f7f8fb;
}

.legal-panel {
    display: grid;
    gap: 10px;
}

.legal-panel h1 {
    font-size: clamp(2.35rem, 5vw, 4.2rem);
}

.legal-panel a {
    color: var(--teal-dark);
    font-weight: 850;
}

/* Narrow mobile header guard */
@media (max-width: 440px) {
    .site-header .header-login {
        display: none;
    }
}

/* Executive dashboard uses a different visual crop from the hero */
.executive-section .product-shot img {
    height: clamp(360px, 42vw, 560px);
    object-fit: cover;
    object-position: center bottom;
}

@media (max-width: 760px) {
    .executive-section .product-shot img {
        height: auto;
        object-fit: contain;
    }
}
/* Refined hero carousel */
.hero-product {
    grid-template-columns: minmax(360px, 0.8fr) minmax(560px, 1.2fr);
    gap: clamp(34px, 5vw, 72px);
    min-height: calc(100svh - 68px);
    padding-top: clamp(34px, 5vw, 58px);
    padding-bottom: clamp(42px, 6vw, 70px);
}

.hero-product h1 {
    max-width: 660px;
    font-size: clamp(3.2rem, 5vw, 4.65rem);
    line-height: 0.98;
}

.hero-product .hero-text {
    max-width: 560px;
    margin-bottom: 20px;
    font-size: 1.08rem;
}

.hero-support {
    max-width: 530px;
    margin-bottom: 26px;
}

.hero-carousel {
    position: relative;
    min-width: 0;
    isolation: isolate;
    animation: soft-rise 660ms var(--motion-ease) 90ms both;
}

.hero-carousel::before,
.hero-carousel::after {
    position: absolute;
    z-index: -1;
    border-radius: 18px;
    content: "";
    pointer-events: none;
}

.hero-carousel::before {
    inset: 16% -5% -8% 10%;
    background: linear-gradient(135deg, rgba(5, 42, 39, 0.2), rgba(22, 199, 183, 0.16));
    filter: blur(30px);
}

.hero-carousel::after {
    inset: -7% 8% 22% -4%;
    border: 1px solid rgba(22, 199, 183, 0.16);
    background: rgba(255, 255, 255, 0.44);
    filter: blur(18px);
}

.carousel-stage {
    position: relative;
    aspect-ratio: 1.92 / 1;
    overflow: hidden;
    border: 1px solid rgba(7, 28, 47, 0.18);
    border-radius: 10px;
    background: #08101f;
    box-shadow:
        0 34px 90px rgba(5, 42, 39, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.carousel-stage::before {
    position: absolute;
    inset: 0 0 auto;
    z-index: 5;
    display: flex;
    height: 34px;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(180deg, #111a2d, #0b1323);
    content: "●  ●  ●";
    font-size: 0.6rem;
    letter-spacing: 0.68em;
}

.hero-slide {
    position: absolute;
    inset: 34px 0 0;
    opacity: 0;
    filter: blur(8px);
    transform: translateX(26px) scale(0.985);
    animation: hero-carousel-cycle 24s infinite;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-slide::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, rgba(8, 16, 31, 0), rgba(8, 16, 31, 0.72));
    content: "";
    pointer-events: none;
}

.slide-label {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    padding: 8px 11px;
    border: 1px solid rgba(169, 255, 246, 0.26);
    border-radius: 8px;
    color: #e9fffd;
    background: rgba(5, 42, 39, 0.72);
    font-size: 0.8rem;
    font-weight: 850;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slide-projects {
    animation-delay: 6s;
}

.slide-services {
    animation-delay: 12s;
}

.slide-billing {
    animation-delay: 18s;
}

.carousel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.carousel-meta span {
    padding: 8px 10px;
    border: 1px solid rgba(11, 117, 109, 0.14);
    border-radius: 999px;
    color: var(--sidebar-deep);
    background: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
    font-weight: 850;
    box-shadow: 0 10px 24px rgba(5, 42, 39, 0.06);
}

@keyframes hero-carousel-cycle {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateX(26px) scale(0.985);
    }
    5%,
    22% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1);
    }
    27%,
    100% {
        opacity: 0;
        filter: blur(8px);
        transform: translateX(-22px) scale(0.992);
    }
}

@media (max-width: 1180px) {
    .hero-product {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-carousel {
        width: min(100%, 920px);
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .hero-product h1 {
        font-size: clamp(2.75rem, 14vw, 3.35rem);
    }

    .carousel-stage {
        aspect-ratio: 1.34 / 1;
    }

    .carousel-meta {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        animation: none !important;
    }

    .hero-slide:not(.slide-dashboard) {
        display: none;
    }

    .slide-dashboard {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
/* Carousel depth refinement */
.hero-carousel {
    width: min(100%, 780px);
    justify-self: end;
    padding: 26px 0;
}

.carousel-stage {
    aspect-ratio: 1.46 / 1;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.carousel-stage::before {
    display: none;
}

.hero-slide {
    inset: 0 6%;
    overflow: hidden;
    border: 1px solid rgba(7, 28, 47, 0.18);
    border-radius: 12px;
    background: #08101f;
    box-shadow:
        0 30px 80px rgba(5, 42, 39, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.5) inset;
    transform-origin: center;
    animation: hero-carousel-depth 24s infinite var(--motion-ease);
    will-change: opacity, filter, transform;
}

.hero-slide::before {
    position: absolute;
    inset: 0 0 auto;
    z-index: 4;
    display: flex;
    height: 34px;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(180deg, #111a2d, #0b1323);
    content: "●  ●  ●";
    font-size: 0.6rem;
    letter-spacing: 0.68em;
}

.hero-slide img {
    position: absolute;
    inset: 34px 0 0;
    width: 100%;
    height: calc(100% - 34px);
    object-fit: cover;
    object-position: center top;
}

.hero-slide::after {
    z-index: 2;
}

.slide-label {
    z-index: 5;
}

.slide-dashboard {
    animation-delay: 0s;
}

.slide-projects {
    animation-delay: -18s;
}

.slide-services {
    animation-delay: -12s;
}

.slide-billing {
    animation-delay: -6s;
}

@keyframes hero-carousel-depth {
    0%,
    21% {
        z-index: 4;
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) translateY(0) scale(1);
    }
    25%,
    46% {
        z-index: 2;
        opacity: 0.42;
        filter: blur(7px);
        transform: translateX(-18%) translateY(10px) scale(0.86);
    }
    50%,
    71% {
        z-index: 1;
        opacity: 0;
        filter: blur(10px);
        transform: translateX(-30%) translateY(16px) scale(0.78);
    }
    75%,
    96% {
        z-index: 3;
        opacity: 0.5;
        filter: blur(6px);
        transform: translateX(18%) translateY(8px) scale(0.88);
    }
    100% {
        z-index: 4;
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) translateY(0) scale(1);
    }
}

@media (max-width: 1180px) {
    .hero-carousel {
        justify-self: center;
        width: min(100%, 860px);
    }
}

@media (max-width: 760px) {
    .hero-carousel {
        padding: 0;
    }

    .carousel-stage {
        aspect-ratio: 1.28 / 1;
        overflow: hidden;
        border-radius: 12px;
    }

    .hero-slide {
        inset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        animation: none !important;
    }
}

/* Carousel no-crop refinement */
.carousel-stage {
    aspect-ratio: 1.68 / 1;
    min-height: clamp(420px, 44vw, 590px);
}

.hero-slide {
    inset: 0 4%;
}

.hero-slide img {
    object-fit: contain;
    object-position: center center;
    background: #08101f;
}

@keyframes hero-carousel-depth {
    0%,
    21% {
        z-index: 4;
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) translateY(0) scale(1);
    }
    25%,
    46% {
        z-index: 2;
        opacity: 0.38;
        filter: blur(7px);
        transform: translateX(-14%) translateY(12px) scale(0.86);
    }
    50%,
    71% {
        z-index: 1;
        opacity: 0;
        filter: blur(10px);
        transform: translateX(-24%) translateY(18px) scale(0.78);
    }
    75%,
    96% {
        z-index: 3;
        opacity: 0.44;
        filter: blur(6px);
        transform: translateX(14%) translateY(10px) scale(0.88);
    }
    100% {
        z-index: 4;
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) translateY(0) scale(1);
    }
}

@media (max-width: 760px) {
    .carousel-stage {
        aspect-ratio: 1.18 / 1;
        min-height: 340px;
    }
}
/* Interactive carousel controls */
.hero-carousel.is-interactive .hero-slide {
    animation: none;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 420ms var(--motion-ease),
        filter 420ms var(--motion-ease),
        transform 520ms var(--motion-ease);
}

.hero-carousel.is-interactive .hero-slide.is-active {
    z-index: 4;
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
    transform: translateX(var(--drag-offset, 0)) translateY(0) scale(1);
}

.hero-carousel.is-interactive .hero-slide.is-prev {
    z-index: 2;
    opacity: 0.36;
    filter: blur(7px);
    transform: translateX(-14%) translateY(12px) scale(0.86);
}

.hero-carousel.is-interactive .hero-slide.is-next {
    z-index: 3;
    opacity: 0.44;
    filter: blur(6px);
    transform: translateX(14%) translateY(10px) scale(0.88);
}

.hero-carousel.is-interactive .hero-slide.is-hidden {
    z-index: 1;
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-24%) translateY(18px) scale(0.78);
}

.carousel-stage {
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
}

.hero-carousel.is-dragging .carousel-stage {
    cursor: grabbing;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.carousel-control,
.carousel-dots button {
    border: 1px solid rgba(11, 117, 109, 0.16);
    color: var(--sidebar-deep);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(5, 42, 39, 0.06);
    cursor: pointer;
    transition: transform 180ms var(--motion-ease), background 180ms var(--motion-ease), border-color 180ms var(--motion-ease);
}

.carousel-control {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    font-size: 1.45rem;
    line-height: 1;
}

.carousel-dots {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid rgba(11, 117, 109, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: rgba(5, 42, 39, 0.18);
    box-shadow: none;
}

.carousel-control:hover,
.carousel-control:focus-visible,
.carousel-dots button:hover,
.carousel-dots button:focus-visible {
    border-color: rgba(11, 117, 109, 0.34);
    background: #fff;
    transform: translateY(-1px);
    outline: none;
}

.carousel-dots button.is-active {
    width: 24px;
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
}

@media (max-width: 760px) {
    .carousel-controls {
        margin-top: 12px;
    }

    .carousel-meta {
        display: none;
    }
}
/* Clean hero CTA layout */
.hero-product .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-product .hero-actions .btn {
    width: auto;
    min-width: 0;
}

.hero-product .hero-text {
    margin-bottom: 28px;
}

@media (max-width: 520px) {
    .hero-product .hero-actions {
        align-items: stretch;
    }

    .hero-product .hero-actions .btn {
        flex: 1 1 0;
        min-width: 150px;
        padding-right: 12px;
        padding-left: 12px;
    }
}
/* Problem section split layout */
.pain-section .pain-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 68px);
    align-items: center;
}

.pain-section .section-heading {
    max-width: 620px;
    margin-bottom: 0;
}

.pain-section .section-heading h2 {
    font-size: clamp(2.35rem, 4.25vw, 4.55rem);
}

.pain-section .section-heading p {
    max-width: 590px;
}

.pain-section .ops-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(128px, 0.34fr);
    gap: 18px;
    align-items: stretch;
}

.pain-section .ops-sources {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.pain-section .ops-sources span {
    min-height: 92px;
    border-color: rgba(7, 28, 47, 0.12);
    background: rgba(255, 255, 255, 0.86);
}

.pain-section .ops-target {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 100%;
    place-items: center;
    padding: 22px 16px;
    border: 1px solid rgba(22, 199, 183, 0.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 72% 18%, rgba(22, 199, 183, 0.26), transparent 32%),
        linear-gradient(145deg, var(--sidebar-deep), var(--teal-dark));
    box-shadow: 0 18px 48px rgba(5, 42, 39, 0.18);
}

.pain-section .ops-target::before {
    top: 50%;
    right: 100%;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, rgba(22, 199, 183, 0), var(--teal));
    transform: translateY(-50%);
}

.pain-section .ops-target img {
    width: min(118px, 82%);
    height: auto;
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
}

@media (max-width: 980px) {
    .pain-section .pain-layout {
        grid-template-columns: 1fr;
    }

    .pain-section .section-heading {
        max-width: 760px;
        order: 1;
    }

    .pain-section .ops-map {
        order: 2;
    }
}

@media (max-width: 640px) {
    .pain-section .ops-map {
        grid-template-columns: 1fr;
    }

    .pain-section .ops-sources {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pain-section .ops-target {
        min-height: 150px;
    }

    .pain-section .ops-target::before {
        display: none;
    }
}

/* Problem section 4/8 balance */
.pain-section .pain-layout {
    grid-template-columns: minmax(320px, 0.46fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 74px);
}

.pain-section .section-heading {
    max-width: 850px;
}

.pain-section .section-heading h2 {
    max-width: 820px;
    font-size: clamp(2.6rem, 4.6vw, 5rem);
}

.pain-section .section-heading p {
    max-width: 760px;
}

.pain-section .ops-map {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 0.32fr);
    gap: 12px;
}

.pain-section .ops-sources {
    gap: 8px;
}

.pain-section .ops-sources span {
    min-height: 82px;
    padding: 12px 10px;
    font-size: 0.9rem;
}

.pain-section .ops-target {
    padding: 18px 12px;
}

.pain-section .ops-target img {
    width: min(94px, 82%);
}

@media (max-width: 980px) {
    .pain-section .pain-layout {
        grid-template-columns: 1fr;
    }

    .pain-section .section-heading h2,
    .pain-section .section-heading p {
        max-width: 760px;
    }
}

/* Problem section larger visual balance */
.pain-section .pain-layout {
    grid-template-columns: minmax(460px, 0.58fr) minmax(0, 0.92fr);
    gap: clamp(42px, 5vw, 76px);
}

.pain-section .section-heading h2 {
    max-width: 760px;
    font-size: clamp(2.55rem, 4.1vw, 4.55rem);
}

.pain-section .section-heading p {
    max-width: 720px;
}

.pain-section .ops-map {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 0.36fr);
    gap: 16px;
}

.pain-section .ops-sources {
    gap: 12px;
}

.pain-section .ops-sources span {
    min-height: 112px;
    padding: 18px 14px;
    font-size: 1rem;
}

.pain-section .ops-target {
    min-height: 100%;
    padding: 24px 16px;
}

.pain-section .ops-target img {
    width: min(126px, 86%);
}

@media (max-width: 1180px) {
    .pain-section .pain-layout {
        grid-template-columns: minmax(390px, 0.72fr) minmax(0, 1fr);
        gap: 38px;
    }

    .pain-section .ops-sources span {
        min-height: 98px;
        font-size: 0.94rem;
    }
}

@media (max-width: 980px) {
    .pain-section .pain-layout {
        grid-template-columns: 1fr;
    }
}

/* Problem cards text containment */
.pain-section .ops-map {
    grid-template-columns: minmax(360px, 1fr) minmax(132px, 0.28fr);
}

.pain-section .ops-sources span {
    min-width: 0;
    overflow: hidden;
    padding-right: 12px;
    padding-left: 12px;
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.pain-section .ops-sources span:nth-child(5),
.pain-section .ops-sources span:nth-child(6) {
    font-size: clamp(0.82rem, 1vw, 0.95rem);
}

@media (max-width: 1180px) {
    .pain-section .ops-map {
        grid-template-columns: minmax(330px, 1fr) minmax(118px, 0.3fr);
    }

    .pain-section .ops-sources span {
        font-size: 0.88rem;
    }
}

@media (max-width: 640px) {
    .pain-section .ops-map {
        grid-template-columns: 1fr;
    }

    .pain-section .ops-sources span,
    .pain-section .ops-sources span:nth-child(5),
    .pain-section .ops-sources span:nth-child(6) {
        font-size: 0.94rem;
    }
}
/* Problem section four-card diagram */
.pain-section .ops-sources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pain-section .ops-sources span {
    min-height: 128px;
    padding: 20px 16px;
    font-size: 1.05rem;
    overflow-wrap: normal;
    hyphens: manual;
}

.pain-section .ops-target {
    min-height: 100%;
}

@media (max-width: 1180px) {
    .pain-section .ops-sources span {
        min-height: 112px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .pain-section .ops-sources {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pain-section .ops-sources span {
        min-height: 96px;
        font-size: 0.94rem;
    }
}

/* Timeline arrow refinement */
.timeline-flow article:not(:last-child)::before {
    position: absolute;
    top: 35px;
    right: -12px;
    z-index: 1;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(22, 199, 183, 0.16), rgba(22, 199, 183, 0.72));
    content: "";
}

.timeline-flow article:not(:last-child)::after {
    top: 25px;
    right: -17px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(169, 255, 246, 0.28);
    color: #e9fffd;
    background: linear-gradient(135deg, var(--sidebar), var(--teal-dark));
    content: "›";
    font-size: 1.05rem;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(5, 42, 39, 0.22);
}

@media (max-width: 980px) {
    .timeline-flow article:not(:last-child)::before,
    .timeline-flow article:not(:last-child)::after {
        display: none;
    }
}

/* People-backed timeline section */
.system-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 13, 29, 0.92), rgba(8, 13, 29, 0.94));
}

.system-section::before {
    position: absolute;
    inset: -18px;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(5, 42, 39, 0.9), rgba(5, 42, 39, 0.72) 44%, rgba(8, 13, 29, 0.82)),
        url("../img/services-analysis-bg.png") center / cover no-repeat;
    content: "";
    filter: blur(3px) saturate(1.08);
    transform: scale(1.03);
}

.system-section::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(22, 199, 183, 0.22), transparent 32%),
        linear-gradient(180deg, rgba(8, 13, 29, 0.1), rgba(8, 13, 29, 0.38));
    content: "";
    pointer-events: none;
}

.system-section > * {
    position: relative;
    z-index: 1;
}

.system-section .timeline-flow article {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(13, 24, 42, 0.58);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

@media (max-width: 760px) {
    .system-section::before {
        background:
            linear-gradient(180deg, rgba(5, 42, 39, 0.92), rgba(8, 13, 29, 0.9)),
            url("../img/services-analysis-bg.png") center / cover no-repeat;
    }
}
/* Revert timeline background and move people image to executive section */
.system-section {
    position: relative;
    overflow: visible;
    background:
        linear-gradient(120deg, rgba(22, 199, 183, 0.08), transparent 42%),
        linear-gradient(180deg, var(--navy), #080d1d);
}

.system-section::before,
.system-section::after {
    display: none;
}

.system-section .timeline-flow article {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.executive-section {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 112px max(16px, calc((100% - var(--max)) / 2));
    overflow: hidden;
    color: #fff;
    background: #08101f;
}

.executive-section::before {
    position: absolute;
    inset: -22px;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(5, 42, 39, 0.92), rgba(5, 42, 39, 0.72) 46%, rgba(8, 13, 29, 0.82)),
        url("../img/services-analysis-bg.png") center / cover no-repeat;
    content: "";
    filter: blur(3px) saturate(1.08);
    transform: scale(1.035);
}

.executive-section::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(22, 199, 183, 0.24), transparent 30%),
        linear-gradient(180deg, rgba(8, 13, 29, 0.04), rgba(8, 13, 29, 0.36));
    content: "";
    pointer-events: none;
}

.executive-section .product-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.executive-section .section-kicker {
    border-color: rgba(169, 255, 246, 0.26);
    color: #a9fff6;
    background: rgba(22, 199, 183, 0.12);
}

.executive-section h2 {
    color: #fff;
}

.executive-section p,
.executive-section .benefit-points li {
    color: rgba(255, 255, 255, 0.76);
}

.executive-section .benefit-points li::before {
    background: var(--teal);
}

@media (max-width: 760px) {
    .executive-section {
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .executive-section::before {
        background:
            linear-gradient(180deg, rgba(5, 42, 39, 0.92), rgba(8, 13, 29, 0.88)),
            url("../img/services-analysis-bg.png") center / cover no-repeat;
    }
}

/* Larger product screenshots with soft green sections */
.margin-proof,
.allocation-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 112px max(16px, calc((100% - var(--max)) / 2));
    background:
        radial-gradient(circle at 12% 18%, rgba(22, 199, 183, 0.16), transparent 30%),
        linear-gradient(135deg, #edf9f6, #f7fffd 52%, #eef8f5);
}

.margin-proof {
    grid-template-columns: minmax(620px, 1.34fr) minmax(0, 0.66fr);
}

.allocation-section {
    grid-template-columns: minmax(0, 0.66fr) minmax(620px, 1.34fr);
}

.margin-proof .product-shot,
.allocation-section .product-shot {
    box-shadow: 0 34px 96px rgba(5, 42, 39, 0.18);
}

.margin-proof .product-shot img,
.allocation-section .product-shot img {
    width: 100%;
    min-height: clamp(420px, 40vw, 560px);
    object-fit: cover;
    object-position: center top;
}

.margin-proof .product-copy,
.allocation-section .product-copy {
    max-width: 520px;
}

@media (max-width: 1180px) {
    .margin-proof,
    .allocation-section {
        grid-template-columns: 1fr;
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .margin-proof .product-shot,
    .allocation-section .product-shot {
        width: min(100%, 980px);
    }

    .margin-proof .product-shot img,
    .allocation-section .product-shot img {
        min-height: 0;
        object-fit: contain;
    }
}

/* Product screenshots no-crop adjustment */
.margin-proof .product-shot,
.allocation-section .product-shot {
    background: #08101f;
}

.margin-proof .product-shot img,
.allocation-section .product-shot img {
    object-fit: contain;
    object-position: center center;
    background: #08101f;
}

/* Execution section light office background */
.execution-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 108px max(16px, calc((100% - var(--max)) / 2));
    overflow: hidden;
    border-top: 0;
    background: #f3fbf8;
}

.execution-section::before {
    position: absolute;
    inset: -18px;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(247, 255, 252, 0.92), rgba(237, 249, 246, 0.72) 45%, rgba(247, 248, 251, 0.86)),
        url("../img/service-operations-visual.png") center / cover no-repeat;
    content: "";
    filter: blur(4px) saturate(1.04);
    transform: scale(1.035);
}

.execution-section::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(22, 199, 183, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(237, 249, 246, 0.56));
    content: "";
    pointer-events: none;
}

.execution-section > * {
    position: relative;
    z-index: 1;
}

.execution-section .section-heading {
    max-width: 800px;
}

.execution-section .execution-grid article {
    border-color: rgba(11, 117, 109, 0.14);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 46px rgba(5, 42, 39, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 760px) {
    .execution-section {
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .execution-section::before {
        background:
            linear-gradient(180deg, rgba(247, 255, 252, 0.94), rgba(237, 249, 246, 0.78)),
            url("../img/service-operations-visual.png") center / cover no-repeat;
    }
}

/* Project Inbox dark section */
.inbox-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 18% 18%, rgba(22, 199, 183, 0.20), transparent 32%),
        radial-gradient(circle at 86% 12%, rgba(91, 255, 236, 0.13), transparent 28%),
        linear-gradient(180deg, #0b1324 0%, #070c1a 100%);
}

.inbox-section::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 82%);
    pointer-events: none;
}

.inbox-section::after {
    position: absolute;
    right: max(16px, calc((100% - var(--max)) / 2));
    bottom: -170px;
    width: min(520px, 42vw);
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(22, 199, 183, 0.18);
    content: "";
    filter: blur(70px);
    pointer-events: none;
}

.inbox-section > * {
    position: relative;
    z-index: 1;
}

.inbox-section .section-kicker {
    border-color: rgba(91, 255, 236, 0.24);
    background: rgba(22, 199, 183, 0.12);
    color: #8ff8ee;
}

.inbox-section .section-heading h2 {
    color: #fff;
}

.inbox-section .section-heading p {
    color: rgba(236, 247, 246, 0.72);
}

.inbox-section .inbox-card,
.inbox-section .inbox-steps {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.inbox-section .inbox-card span {
    color: rgba(236, 247, 246, 0.58);
}

.inbox-section .inbox-card strong {
    color: #fff;
}

.inbox-section .inbox-card code {
    border: 1px solid rgba(91, 255, 236, 0.18);
    background: rgba(22, 199, 183, 0.12);
    color: #a9fff6;
}

.inbox-section .inbox-steps span {
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.78);
}

.inbox-section .quote-line {
    border-color: rgba(91, 255, 236, 0.20);
    background: rgba(22, 199, 183, 0.11);
    color: #eafffd;
}

/* Tickets by email immersive section */
.tickets-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 650px;
    padding: 112px max(16px, calc((100% - var(--max)) / 2));
    color: #fff;
    background: #07101f;
}

.tickets-section::before {
    position: absolute;
    inset: -20px;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(7, 16, 31, 0.94) 0%, rgba(7, 16, 31, 0.82) 43%, rgba(7, 16, 31, 0.34) 100%),
        linear-gradient(180deg, rgba(10, 64, 60, 0.32), rgba(7, 16, 31, 0.88)),
        url("../img/service-operations-visual.png") center / cover no-repeat;
    content: "";
    filter: blur(3px) saturate(1.06);
    transform: scale(1.03);
}

.tickets-section::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 72% 22%, rgba(22, 199, 183, 0.22), transparent 32%),
        radial-gradient(circle at 20% 84%, rgba(91, 255, 236, 0.13), transparent 28%),
        linear-gradient(180deg, rgba(7, 16, 31, 0.06), rgba(7, 16, 31, 0.72));
    content: "";
    pointer-events: none;
}

.tickets-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    gap: clamp(34px, 5vw, 86px);
    align-items: center;
}

.tickets-copy {
    max-width: 600px;
}

.tickets-copy .section-kicker {
    border-color: rgba(91, 255, 236, 0.28);
    background: rgba(22, 199, 183, 0.13);
    color: #91fff4;
}

.tickets-copy h2 {
    margin: 18px 0 20px;
    color: #fff;
    font-size: clamp(2.8rem, 5.8vw, 6.1rem);
    line-height: 0.92;
    letter-spacing: 0;
}

.tickets-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(236, 247, 246, 0.76);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    line-height: 1.75;
}

.ticket-path {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 410px;
    align-content: center;
    padding: 42px 0;
}

.ticket-path::before {
    position: absolute;
    top: 50%;
    right: 12%;
    left: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(91, 255, 236, 0.82), transparent);
    content: "";
    transform: translateY(-50%);
}

.ticket-path span {
    position: relative;
    display: block;
    width: min(420px, 86%);
    min-height: auto;
    padding: 0 0 0 46px;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    box-shadow: none;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    font-weight: 850;
    line-height: 1.32;
    text-align: left;
}

.ticket-path span:nth-child(odd) {
    justify-self: start;
}

.ticket-path span:nth-child(even) {
    justify-self: end;
}

.ticket-path span + span {
    margin-top: 54px;
}

.ticket-path span::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(91, 255, 236, 0.42);
    border-radius: 50%;
    background: rgba(22, 199, 183, 0.22);
    box-shadow: 0 0 0 8px rgba(22, 199, 183, 0.08), 0 16px 34px rgba(0, 0, 0, 0.24);
    color: #9cfff5;
    content: "";
    transform: translateY(-50%);
}

.ticket-path span::after {
    position: absolute;
    top: 50%;
    left: 10px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9cfff5;
    content: "";
    transform: translateY(-50%);
}

.ticket-path span:not(:last-child)::after {
    right: auto;
    z-index: auto;
    width: 8px;
    height: 8px;
    color: transparent;
    background: #9cfff5;
    content: "";
    font-size: 0;
}

@media (max-width: 980px) {
    .tickets-content {
        grid-template-columns: 1fr;
    }

    .tickets-section {
        min-height: 0;
    }

    .ticket-path {
        min-height: 0;
        padding: 12px 0 0;
    }
}

@media (max-width: 760px) {
    .tickets-section {
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .tickets-section::before {
        background:
            linear-gradient(180deg, rgba(7, 16, 31, 0.94), rgba(7, 16, 31, 0.78)),
            url("../img/service-operations-visual.png") center / cover no-repeat;
    }

    .tickets-copy h2 {
        font-size: 3rem;
    }

    .ticket-path::before {
        top: 18px;
        bottom: 18px;
        left: 14px;
        width: 2px;
        height: auto;
        transform: none;
        background: linear-gradient(180deg, rgba(91, 255, 236, 0.8), transparent);
    }

    .ticket-path span,
    .ticket-path span:nth-child(odd),
    .ticket-path span:nth-child(even) {
        width: 100%;
        justify-self: stretch;
    }

    .ticket-path span::after {
        display: block !important;
    }

    .ticket-path span + span {
        margin-top: 30px;
    }
}

/* Tickets flow aligned icon treatment */
.ticket-path {
    width: min(560px, 100%);
    margin-left: clamp(42px, 6vw, 112px);
    padding: 32px 0 32px 12px;
}

.ticket-path::before {
    top: 42px;
    bottom: 42px;
    left: 31px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(156, 255, 245, 0.88), rgba(22, 199, 183, 0.16));
    transform: none;
}

.ticket-path span,
.ticket-path span:nth-child(odd),
.ticket-path span:nth-child(even) {
    width: 100%;
    justify-self: stretch;
    padding-left: 78px;
}

.ticket-path span + span {
    margin-top: 42px;
}

.ticket-path span::before {
    left: 0;
    width: 62px;
    height: 62px;
    border-color: rgba(156, 255, 245, 0.26);
    background: rgba(6, 87, 80, 0.54);
    box-shadow: 0 0 0 10px rgba(22, 199, 183, 0.08), 0 22px 48px rgba(0, 0, 0, 0.22);
    color: #dffffb;
    font-size: 1.18rem;
    font-weight: 900;
}

.ticket-path span:nth-child(1)::before {
    content: "\2709";
}

.ticket-path span:nth-child(2)::before {
    content: "\2699";
}

.ticket-path span:nth-child(3)::before {
    content: "\2197";
}

.ticket-path span:nth-child(4)::before {
    content: "\2713";
}

.ticket-path span::after,
.ticket-path span:not(:last-child)::after {
    display: none;
}

@media (max-width: 980px) {
    .ticket-path {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 760px) {
    .ticket-path {
        padding-top: 10px;
    }

    .ticket-path::before {
        left: 31px;
    }

    .ticket-path span,
    .ticket-path span:nth-child(odd),
    .ticket-path span:nth-child(even) {
        padding-left: 78px;
    }

    .ticket-path span::after,
    .ticket-path span:not(:last-child)::after {
        display: none !important;
    }
}

/* Tickets flow refined timeline */
.tickets-content {
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 0.86fr);
    gap: clamp(48px, 7vw, 120px);
}

.ticket-path {
    width: min(540px, 100%);
    min-height: 380px;
    justify-self: end;
    margin-left: 0;
    padding: 18px 0 18px 44px;
}

.ticket-path::before {
    top: 42px;
    bottom: 42px;
    left: 64px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(156, 255, 245, 0.88), rgba(156, 255, 245, 0.08));
    box-shadow: 0 0 30px rgba(22, 199, 183, 0.22);
    transform: none;
}

.ticket-step {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    font-weight: 850;
    line-height: 1.25;
}

.ticket-step + .ticket-step {
    margin-top: 38px;
}

.ticket-path .ticket-step span,
.ticket-path .ticket-step span:nth-child(odd),
.ticket-path .ticket-step span:nth-child(even) {
    display: inline-flex;
    width: auto;
    min-height: 0;
    justify-self: auto;
    place-items: initial;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: left;
}

.ticket-path .ticket-step span::before,
.ticket-path .ticket-step span::after,
.ticket-path .ticket-step span:not(:last-child)::after {
    display: none !important;
    content: none !important;
}

.ticket-path .ticket-icon,
.ticket-path .ticket-step .ticket-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(156, 255, 245, 0.26);
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(21, 132, 120, 0.54), rgba(4, 70, 65, 0.62));
    box-shadow: 0 0 0 7px rgba(22, 199, 183, 0.07), 0 16px 36px rgba(0, 0, 0, 0.24);
    color: #dffffb;
    font-family: "Material Symbols Rounded";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.ticket-step span:last-child {
    max-width: 360px;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

@media (min-width: 1180px) {
    .ticket-path {
        transform: translateX(42px);
    }
}

@media (max-width: 980px) {
    .tickets-content {
        grid-template-columns: 1fr;
    }

    .ticket-path {
        width: min(560px, 100%);
        justify-self: start;
        padding-left: 0;
        transform: none;
    }

    .ticket-path::before {
        left: 20px;
    }
}

@media (max-width: 760px) {
    .ticket-path {
        min-height: 0;
        padding-top: 10px;
    }

    .ticket-path::before {
        left: 20px;
    }

    .ticket-step {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 16px;
    }

    .ticket-step + .ticket-step {
        margin-top: 30px;
    }
}

/* Tickets flow final polish */
.tickets-content {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.78fr);
    gap: clamp(56px, 8vw, 136px);
}

.tickets-copy {
    max-width: 660px;
}

.tickets-copy h2 {
    max-width: 660px;
    font-size: clamp(2.7rem, 4.8vw, 5.35rem);
    line-height: 0.96;
}

.ticket-path {
    width: min(500px, 100%);
    min-height: auto;
    justify-self: end;
    margin-left: 0;
    padding: 34px 38px 34px 36px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
        rgba(4, 24, 34, 0.44);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(clamp(12px, 3.5vw, 64px));
}

.ticket-path::before {
    top: 58px;
    bottom: 58px;
    left: 59px;
    width: 1px;
    background: linear-gradient(180deg, rgba(156, 255, 245, 0.55), rgba(156, 255, 245, 0.12));
    box-shadow: none;
}

.ticket-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    min-height: 58px;
    font-size: clamp(1rem, 1.18vw, 1.1rem);
    line-height: 1.28;
}

.ticket-step + .ticket-step {
    margin-top: 24px;
}

.ticket-path .ticket-step .ticket-icon {
    display: grid !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    place-items: center !important;
    border: 1px solid rgba(156, 255, 245, 0.26) !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, rgba(20, 143, 129, 0.78), rgba(5, 88, 81, 0.86)) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), 0 0 0 6px rgba(22, 199, 183, 0.07) !important;
    color: #effffd !important;
    font-family: "Material Symbols Rounded" !important;
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    line-height: 1 !important;
}

.ticket-step span:last-child {
    display: flex !important;
    align-items: center;
    max-width: none;
    min-height: 46px;
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: none;
}

@media (min-width: 1180px) {
    .ticket-path {
        transform: translateX(clamp(24px, 4vw, 78px));
    }
}

@media (max-width: 1120px) {
    .tickets-content {
        grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.8fr);
        gap: 44px;
    }

    .ticket-path {
        transform: none;
    }
}

@media (max-width: 980px) {
    .tickets-content {
        grid-template-columns: 1fr;
    }

    .ticket-path {
        width: min(540px, 100%);
        justify-self: start;
        padding: 28px;
    }

    .ticket-path::before {
        left: 51px;
    }
}

@media (max-width: 760px) {
    .tickets-copy h2 {
        font-size: 2.95rem;
    }

    .ticket-path {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .ticket-path::before {
        left: 43px;
    }

    .ticket-step {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        min-height: 52px;
    }

    .ticket-step + .ticket-step {
        margin-top: 22px;
    }

    .ticket-path .ticket-step .ticket-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
        border-radius: 12px !important;
        font-size: 1.18rem !important;
    }
}

/* Integrations hub with real product icons */
.integrations-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 110px max(16px, calc((100% - var(--max)) / 2));
    background:
        radial-gradient(circle at 72% 18%, rgba(22, 199, 183, 0.14), transparent 34%),
        linear-gradient(180deg, #f7fbfa 0%, #edf8f6 100%);
}

.integrations-section::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 117, 109, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(11, 117, 109, 0.045) 1px, transparent 1px);
    background-size: 78px 78px;
    content: "";
    mask-image: radial-gradient(circle at 72% 48%, #000 0, transparent 68%);
    pointer-events: none;
}

.integrations-section .integration-copy,
.integrations-section .integration-map {
    position: relative;
    z-index: 1;
}

.integrations-section .integration-copy p {
    max-width: 620px;
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.72;
}

.integration-map {
    position: relative;
    min-height: 620px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 50%, rgba(22, 199, 183, 0.19), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(7, 16, 31, 0.06), transparent 58%);
}

.integration-map::before,
.integration-map::after {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(11, 117, 109, 0.13);
    border-radius: 999px;
    content: "";
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.integration-map::before {
    width: min(88%, 500px);
    aspect-ratio: 1;
}

.integration-map::after {
    width: min(62%, 350px);
    aspect-ratio: 1;
    border-color: rgba(22, 199, 183, 0.2);
}

.integration-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 178px;
    height: 178px;
    place-items: center;
    padding: 28px;
    border: 1px solid rgba(145, 255, 244, 0.18);
    border-radius: 34px;
    background: linear-gradient(135deg, #053d38, #0a786d);
    box-shadow: 0 32px 82px rgba(5, 42, 39, 0.24);
    transform: translate(-50%, -50%);
}

.integration-center img {
    display: block;
    width: 112px;
    max-height: 82px;
    object-fit: contain;
}

.integration-center span {
    margin-top: -12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.integration-node {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 128px;
    min-height: 88px;
    place-items: center;
    padding: 14px 16px 12px;
    border: 1px solid rgba(11, 117, 109, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 46px rgba(5, 42, 39, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.integration-node img {
    display: block;
    width: 46px;
    max-width: 78px;
    height: 34px;
    object-fit: contain;
}

.integration-node span {
    margin-top: 8px;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 850;
}

.node-monday img,
.node-sap img {
    width: 76px;
}

.node-jira { top: 11%; left: 39%; }
.node-monday { top: 18%; right: 7%; width: 150px; }
.node-trello { top: 43%; right: 0; }
.node-asana { right: 13%; bottom: 14%; }
.node-notion { bottom: 5%; left: 43%; }
.node-clickup { bottom: 15%; left: 8%; }
.node-airtable { top: 43%; left: 0; }
.node-calendar { top: 18%; left: 8%; }
.node-sap { top: 7%; left: 63%; }

@media (max-width: 1180px) {
    .integrations-section {
        grid-template-columns: 1fr;
    }

    .integration-map {
        width: min(100%, 760px);
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .integrations-section {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .integration-map {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        min-height: 0;
        margin-top: 28px;
        padding-top: 132px;
        background: transparent;
    }

    .integration-map::before,
    .integration-map::after {
        display: none;
    }

    .integration-center {
        top: 0;
        width: 122px;
        height: 122px;
        padding: 20px;
        border-radius: 24px;
        transform: translateX(-50%);
    }

    .integration-center img {
        width: 76px;
        max-height: 58px;
    }

    .integration-center span {
        display: none;
    }

    .integration-node,
    .node-jira,
    .node-monday,
    .node-trello,
    .node-asana,
    .node-notion,
    .node-clickup,
    .node-airtable,
    .node-calendar,
    .node-sap {
        position: static;
        width: auto;
        min-height: 82px;
    }
}

/* Integrations logo replacements */
.integration-center {
    align-content: center;
}

.integration-center img {
    width: 124px;
    max-height: 96px;
}

.node-monday img,
.node-sap img,
.node-oracle img,
.node-totvs img {
    width: 78px;
}

.node-sap {
    right: 13%;
    bottom: 14%;
}

.node-oracle {
    bottom: 15%;
    left: 8%;
}

.node-totvs {
    top: 43%;
    left: 0;
}

@media (max-width: 760px) {
    .node-sap,
    .node-oracle,
    .node-totvs {
        position: static;
        width: auto;
        min-height: 82px;
    }

    .integration-center img {
        width: 86px;
        max-height: 68px;
    }
}

/* Remove SAP integration node and rebalance map */
.node-sap {
    display: none !important;
}

.node-oracle {
    right: 13%;
    bottom: 14%;
    left: auto;
}

.node-notion {
    bottom: 6%;
    left: 43%;
}

.node-calendar {
    top: 18%;
    left: 9%;
}

@media (max-width: 760px) {
    .node-sap {
        display: none !important;
    }
}

/* HubSpot integration node */
.node-hubspot {
    right: 4%;
    bottom: 43%;
}

.node-hubspot img {
    width: 48px;
}

@media (max-width: 760px) {
    .node-hubspot {
        position: static;
        width: auto;
        min-height: 82px;
    }
}

/* HubSpot map position correction */
.node-hubspot {
    right: auto !important;
    bottom: 15% !important;
    left: 8% !important;
}

.node-oracle {
    right: 13% !important;
    bottom: 14% !important;
    left: auto !important;
}

.node-trello {
    top: 43% !important;
    right: 0 !important;
}

@media (max-width: 760px) {
    .node-hubspot {
        position: static !important;
        width: auto;
        min-height: 82px;
    }
}

/* Allocation copy refinement */
.allocation-section .product-copy {
    max-width: 620px;
}

.allocation-section .product-copy h2 {
    max-width: 580px;
    font-size: clamp(3.25rem, 5.2vw, 5.7rem);
    line-height: 0.98;
}

.allocation-section .product-copy > p {
    max-width: 560px;
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.7;
}

.allocation-points {
    max-width: 560px;
    gap: 12px;
    margin-top: 24px;
}

.allocation-points li {
    line-height: 1.45;
}

.allocation-section .knowledge-card {
    max-width: 560px;
    margin-top: 30px;
}

@media (max-width: 760px) {
    .allocation-section .product-copy h2 {
        font-size: 3rem;
    }
}

/* Allocation balanced 50/50 layout */
.allocation-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: center;
}

.allocation-section .product-copy {
    max-width: none;
}

.allocation-section .product-copy h2 {
    max-width: 660px;
    font-size: clamp(3.05rem, 4.25vw, 4.9rem);
    line-height: 1.02;
}

.allocation-section .product-copy > p,
.allocation-points,
.allocation-section .knowledge-card {
    max-width: 620px;
}

.allocation-section .product-shot {
    width: 100%;
    min-width: 0;
}

.allocation-section .product-shot img {
    min-height: clamp(360px, 34vw, 500px);
}

@media (max-width: 1180px) {
    .allocation-section {
        grid-template-columns: 1fr;
    }

    .allocation-section .product-copy h2 {
        max-width: 760px;
    }
}

@media (max-width: 760px) {
    .allocation-section .product-copy h2 {
        font-size: 2.85rem;
    }
}

/* Margin section balanced 50/50 layout */
.margin-proof {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: center;
}

.margin-proof .product-copy {
    max-width: none;
}

.margin-proof .product-copy h2 {
    max-width: 660px;
    font-size: clamp(3.05rem, 4.25vw, 4.9rem);
    line-height: 1.02;
}

.margin-proof .product-copy > p,
.margin-proof .benefit-points,
.margin-proof .quote-line {
    max-width: 620px;
}

.margin-proof .product-shot {
    width: 100%;
    min-width: 0;
}

.margin-proof .product-shot img {
    min-height: clamp(360px, 34vw, 500px);
}

@media (max-width: 1180px) {
    .margin-proof {
        grid-template-columns: 1fr;
    }

    .margin-proof .product-copy h2 {
        max-width: 760px;
    }
}

@media (max-width: 760px) {
    .margin-proof .product-copy h2 {
        font-size: 2.85rem;
    }
}

/* Product screenshot zoom and modal */
.product-shot {
    overflow: hidden;
    cursor: zoom-in;
    transition: box-shadow 260ms var(--motion-ease), transform 260ms var(--motion-ease);
}

.product-shot img {
    transition: transform 320ms var(--motion-ease), filter 320ms var(--motion-ease);
    transform-origin: center center;
    will-change: transform;
}

.product-shot:hover,
.product-shot:focus-visible {
    box-shadow: 0 42px 110px rgba(5, 42, 39, 0.24);
    transform: translateY(-2px);
}

.product-shot:hover img,
.product-shot:focus-visible img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.045);
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: clamp(18px, 3vw, 44px);
    background: rgba(5, 10, 22, 0.82);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity 220ms ease, visibility 220ms ease;
}

.image-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.image-modal__frame {
    position: relative;
    width: min(96vw, 1540px);
    max-height: 92vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: #08101f;
    box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
    transform: scale(0.965);
    transition: transform 220ms ease;
}

.image-modal.is-open .image-modal__frame {
    transform: scale(1);
}

.image-modal__frame img {
    display: block;
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    background: #08101f;
}

.image-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 16, 31, 0.78);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
}

.image-modal__close:hover,
.image-modal__close:focus-visible {
    background: rgba(11, 117, 109, 0.94);
    outline: none;
}

body.has-image-modal {
    overflow: hidden;
}

@media (max-width: 760px) {
    .product-shot:hover,
    .product-shot:focus-visible {
        transform: none;
    }

    .product-shot:hover img,
    .product-shot:focus-visible img {
        transform: scale(1.025);
    }

    .image-modal {
        padding: 12px;
    }

    .image-modal__frame {
        width: 100%;
        border-radius: 12px;
    }

    .image-modal__close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }
}

/* Hero carousel zoom and modal trigger */
.hero-carousel.is-interactive .hero-slide.is-active {
    cursor: zoom-in;
}

.hero-carousel.is-interactive .hero-slide.is-active img {
    transition: transform 320ms var(--motion-ease), filter 320ms var(--motion-ease);
    transform-origin: center center;
}

.hero-carousel.is-interactive .hero-slide.is-active:hover img,
.hero-carousel.is-interactive .hero-slide.is-active:focus-visible img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.035);
}

.hero-carousel.is-dragging .hero-slide.is-active,
.hero-carousel.is-dragging .hero-slide.is-active img {
    cursor: grabbing;
}

.hero-carousel.is-dragging .hero-slide.is-active:hover img {
    transform: none;
}

@media (max-width: 760px) {
    .hero-carousel.is-interactive .hero-slide.is-active:hover img,
    .hero-carousel.is-interactive .hero-slide.is-active:focus-visible img {
        transform: scale(1.02);
    }
}

/* Remove dark-section seam between Project Inbox and Tickets */
.inbox-section + .tickets-section {
    margin-top: -1px;
    border-top: 0 !important;
}

.tickets-section {
    border-top: 0 !important;
}



/* Footer legal modal */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 48px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.legal-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.legal-modal__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 18%, rgba(22, 199, 183, 0.18), transparent 30%),
        rgba(5, 10, 22, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.legal-modal__dialog {
    position: relative;
    width: min(900px, 100%);
    max-height: min(82vh, 760px);
    overflow: auto;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid rgba(169, 255, 246, 0.2);
    border-radius: 18px;
    color: var(--ink);
    background: linear-gradient(145deg, #ffffff 0%, #f5fbfa 100%);
    box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
    transform: translateY(10px) scale(0.98);
    transition: transform 220ms ease;
}

.legal-modal.is-open .legal-modal__dialog {
    transform: translateY(0) scale(1);
}

.legal-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(7, 28, 47, 0.12);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(7, 28, 47, 0.12);
    cursor: pointer;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.legal-modal__close:hover,
.legal-modal__close:focus-visible {
    color: #fff;
    background: var(--teal-dark);
    outline: none;
}

.legal-modal__panel {
    display: grid;
    gap: 14px;
    padding-right: 34px;
}

.legal-modal__panel[hidden] {
    display: none;
}

.legal-modal__panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.legal-modal__panel p {
    max-width: 760px;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.7;
}

.legal-modal__panel a {
    color: var(--teal-dark);
    font-weight: 850;
}

body.has-legal-modal {
    overflow: hidden;
}

@media (max-width: 760px) {
    .legal-modal {
        padding: 12px;
    }

    .legal-modal__dialog {
        max-height: 88vh;
        padding: 28px 22px 26px;
        border-radius: 14px;
    }

    .legal-modal__panel {
        padding-right: 0;
    }

    .legal-modal__close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }
}


/* Center footer logo */
.site-footer .footer-main .footer-brand {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 0 18px;
}

.site-footer .footer-main .footer-brand .brand-logo-full {
    margin-right: auto;
    margin-left: auto;
}


/* Lead submit modal */
.lead-form.is-submitting {
    cursor: wait;
}

.lead-form.is-submitting .form-submit {
    opacity: 0.72;
    cursor: wait;
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 48px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.lead-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.lead-modal__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 62% 24%, rgba(22, 199, 183, 0.22), transparent 34%),
        rgba(5, 10, 22, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lead-modal__dialog {
    position: relative;
    display: grid;
    width: min(560px, 100%);
    gap: 14px;
    justify-items: start;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid rgba(7, 95, 88, 0.12);
    border-radius: 18px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
    transform: translateY(10px) scale(0.98);
    transition: transform 220ms ease;
}

.lead-modal.is-open .lead-modal__dialog {
    transform: translateY(0) scale(1);
}

.lead-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(7, 28, 47, 0.12);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(7, 28, 47, 0.12);
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.lead-modal__close:hover,
.lead-modal__close:focus-visible {
    color: #fff;
    background: var(--teal-dark);
    outline: none;
}

.lead-modal__icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #075f58, #14b8a6);
    box-shadow: 0 18px 42px rgba(10, 127, 119, 0.18);
    font-size: 2rem;
}

.lead-modal .section-kicker {
    color: #075f58;
    border-color: rgba(20, 184, 166, 0.2);
    background: #e7faf7;
}

.lead-modal.is-error .lead-modal__icon {
    background: linear-gradient(135deg, #8a3d22, #e25d2f);
    box-shadow: 0 18px 42px rgba(226, 93, 47, 0.22);
}

.lead-modal__dialog h3 {
    max-width: 440px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.lead-modal__dialog p {
    max-width: 460px;
    margin: 0 0 8px;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.65;
}

body.has-lead-modal {
    overflow: hidden;
}

@media (max-width: 760px) {
    .lead-modal {
        padding: 12px;
    }

    .lead-modal__dialog {
        padding: 28px 22px 24px;
        border-radius: 14px;
    }

    .lead-modal__close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }
}


/* Final motion polish */
.timeline-flow article,
.execution-grid article,
.portal-grid article,
.audience-cards article,
.benefit-list span,
.inbox-card,
.inbox-steps,
.inbox-steps span,
.ticket-step,
.integration-node,
.knowledge-card,
.lead-form,
.ops-sources span,
.ops-target {
    transition:
        transform 260ms var(--motion-ease),
        border-color 260ms var(--motion-ease),
        box-shadow 260ms var(--motion-ease),
        background 260ms var(--motion-ease),
        filter 260ms var(--motion-ease);
}

.timeline-flow article:hover,
.execution-grid article:hover,
.portal-grid article:hover,
.audience-cards article:hover,
.inbox-card:hover,
.inbox-steps:hover,
.knowledge-card:hover,
.lead-form:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 199, 183, 0.34);
    box-shadow: 0 24px 62px rgba(7, 16, 31, 0.12);
}

.inbox-steps span:hover,
.ticket-step:hover,
.benefit-list span:hover,
.ops-sources span:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 199, 183, 0.28);
    box-shadow: 0 16px 34px rgba(7, 16, 31, 0.08);
}

.integration-node:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(22, 199, 183, 0.32);
    box-shadow: 0 28px 70px rgba(5, 42, 39, 0.16);
}

.ops-target:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 78px rgba(5, 42, 39, 0.22);
}

.benefit-points li::before,
.timeline-flow span,
.execution-grid span,
.portal-grid span,
.ticket-icon {
    transition: transform 260ms var(--motion-ease), background 260ms var(--motion-ease), box-shadow 260ms var(--motion-ease);
}

.benefit-points li:hover::before,
.timeline-flow article:hover span,
.execution-grid article:hover span,
.portal-grid article:hover span,
.ticket-step:hover .ticket-icon {
    transform: scale(1.12);
    box-shadow: 0 10px 24px rgba(20, 184, 166, 0.22);
}

.section-heading.reveal-card,
.product-copy.reveal-card,
.lead-copy.reveal-card,
.integration-copy.reveal-card,
.tickets-copy.reveal-card {
    transform: translateY(22px);
}

.section-heading.reveal-card.is-visible,
.product-copy.reveal-card.is-visible,
.lead-copy.reveal-card.is-visible,
.integration-copy.reveal-card.is-visible,
.tickets-copy.reveal-card.is-visible {
    transform: translateY(0);
}

.product-shot.reveal-card {
    transform: translateY(22px) scale(0.98);
}

.product-shot.reveal-card.is-visible {
    transform: translateY(0) scale(1);
}


.product-shot.reveal-card.is-visible:hover,
.product-shot.reveal-card.is-visible:focus-visible {
    transform: translateY(-2px) scale(1);
}

.integration-node.reveal-card {
    transform: translateY(18px) scale(0.94);
}

.integration-node.reveal-card.is-visible {
    transform: translateY(0) scale(1);
}

.integration-node.reveal-card.is-visible:hover {
    transform: translateY(-6px) scale(1.03);
}

.timeline-flow article.reveal-card.is-visible:nth-child(1),
.execution-grid article.reveal-card.is-visible:nth-child(1),
.portal-grid article.reveal-card.is-visible:nth-child(1),
.audience-cards article.reveal-card.is-visible:nth-child(1) {
    transition-delay: 0ms;
}

@media (prefers-reduced-motion: no-preference) {
    .integration-map::before,
    .integration-map::after {
        animation: orbit-breathe 7.5s var(--motion-ease) infinite alternate;
    }

    .integration-map::after {
        animation-delay: 1.1s;
    }

    .lead-modal.is-open .lead-modal__icon,
    .legal-modal.is-open .legal-modal__close,
    .image-modal.is-open .image-modal__close {
        animation: soft-pop 360ms var(--motion-ease) both;
    }
}

@keyframes orbit-breathe {
    from {
        opacity: 0.68;
        transform: translate(-50%, -50%) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.015);
    }
}

@keyframes soft-pop {
    from {
        opacity: 0;
        transform: scale(0.88);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .timeline-flow article:hover,
    .execution-grid article:hover,
    .portal-grid article:hover,
    .audience-cards article:hover,
    .inbox-card:hover,
    .inbox-steps:hover,
    .knowledge-card:hover,
    .lead-form:hover,
    .integration-node:hover,
    .ops-target:hover {
        transform: none;
    }
}
