:root {
    --landing-bg: #edf7f2;
    --landing-alt: #f4faf8;
    --landing-text: #142f3f;
    --landing-muted: #5f7884;
    --landing-green: #22a85b;
    --landing-cyan: #0788a7;
    --landing-gradient: linear-gradient(135deg, #22c55e, #0891b2);
    --landing-radius: 20px;
    --landing-shadow: 0 14px 40px rgba(21, 84, 75, 0.11);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--landing-text);
    background: var(--landing-bg);
    font-family: Prompt, Tahoma, sans-serif;
}
a {
    color: inherit;
}
.landing-container {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}
.landing-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid #fff;
    backdrop-filter: blur(14px);
}
.landing-nav__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.landing-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}
.landing-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.landing-brand strong {
    display: block;
    font:
        700 1.25rem Outfit,
        sans-serif;
}
.landing-brand small {
    display: block;
    color: var(--landing-cyan);
    font-size: 0.58rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.landing-nav__links {
    display: flex;
    gap: 2px;
    margin-left: auto;
}
.landing-nav__links a {
    padding: 8px 11px;
    border-radius: 8px;
    color: var(--landing-muted);
    font-size: 0.85rem;
    text-decoration: none;
}
.landing-nav__links a:hover {
    color: var(--landing-cyan);
    background: #eaf8f6;
}
.landing-nav__actions,
.landing-button-group {
    display: flex;
    gap: 10px;
}
.landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font:
        600 0.86rem Prompt,
        sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.landing-button:hover {
    transform: translateY(-2px);
}
.landing-button--primary {
    color: #fff;
    background: var(--landing-gradient);
    box-shadow: 0 7px 18px rgba(8, 145, 178, 0.25);
}
.landing-button--outline {
    color: var(--landing-cyan);
    border-color: rgba(8, 145, 178, 0.4);
    background: #fff;
}
.landing-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--landing-cyan);
    font-size: 1.2rem;
}
.landing-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: calc(100svh - 72px);
    padding: 76px 0;
    background: linear-gradient(135deg, #c9ead9, #d9eef7 52%, #d4d9f1);
}
.landing-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 80, 60, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 80, 60, 0.045) 1px, transparent 1px);
    background-size: 55px 55px;
}
.landing-hero__content {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    width: min(1140px, calc(100% - 40px));
    gap: 56px;
}
.landing-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 15px;
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--landing-green);
    font-size: 0.78rem;
    font-weight: 600;
}
.landing-hero h1,
.section-heading h2,
.problem-solution h2,
.attendance-copy h2,
.about-section h2,
.landing-contact h2 {
    margin: 18px 0;
    font-family: Outfit, Prompt, sans-serif;
    line-height: 1.18;
}
.landing-hero h1 {
    max-width: 590px;
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    letter-spacing: -0.04em;
}
.landing-hero h1 span {
    background: var(--landing-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.landing-hero p {
    max-width: 540px;
    color: var(--landing-muted);
    line-height: 1.9;
}
.product-window {
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 18px;
    background: #f8fcfb;
    box-shadow: 0 25px 62px rgba(0, 70, 90, 0.22);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}
.product-window__bar {
    display: flex;
    gap: 6px;
    padding: 15px;
    border-bottom: 1px solid #e4edef;
    background: #fff;
}
.product-window__bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f87171;
}
.product-window__bar i:nth-child(2) {
    background: #f59e0b;
}
.product-window__bar i:last-child {
    background: #34d399;
}
.product-window__body {
    display: grid;
    grid-template-columns: 112px 1fr;
    min-height: 305px;
}
.product-window aside {
    padding: 17px 11px;
    background: #123f4d;
    color: #cce3e2;
    font-size: 0.58rem;
}
.product-window aside strong {
    display: block;
    margin: 0 0 20px 4px;
    color: #fff;
    font:
        600 1rem Outfit,
        sans-serif;
}
.product-window aside span {
    display: block;
    margin: 5px 0;
    padding: 8px 6px;
    border-radius: 6px;
}
.product-window aside .is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}
.product-window__dashboard {
    padding: 18px;
    background: #f8fbfc;
}
.dashboard-heading {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #78909a;
}
.dashboard-heading b {
    color: var(--landing-text);
    font-size: 0.9rem;
}
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 14px 0;
}
.dashboard-stats div,
.dashboard-chart {
    padding: 10px;
    border: 1px solid #e5eef0;
    border-radius: 9px;
    background: #fff;
}
.dashboard-stats small,
.dashboard-chart small {
    color: #78909a;
    font-size: 0.55rem;
}
.dashboard-stats b {
    display: block;
    margin-top: 5px;
    color: var(--landing-cyan);
    font:
        700 1rem Outfit,
        sans-serif;
}
.dashboard-chart div {
    display: flex;
    align-items: end;
    gap: 9px;
    height: 88px;
    margin-top: 8px;
}
.dashboard-chart i {
    width: 12%;
    height: var(--chart-height);
    border-radius: 5px 5px 0 0;
    background: var(--landing-gradient);
}
.landing-section {
    padding: 84px 0;
}
.landing-section--alt {
    background: var(--landing-alt);
}
.section-heading {
    max-width: 700px;
    margin: 0 auto 38px;
    text-align: center;
}
.section-heading h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.35rem);
}
.section-heading p,
.feature-card p,
.support-grid p,
.about-section p {
    color: var(--landing-muted);
    font-size: 0.88rem;
    line-height: 1.8;
}
.problem-solution,
.attendance-section,
.about-section,
.landing-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.problem-solution h2,
.attendance-copy h2,
.about-section h2 {
    font-size: 2rem;
}
.problem-solution__lead {
    max-width: 560px;
    margin: -5px 0 22px;
    color: var(--landing-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}
.problem-list {
    display: grid;
    gap: 11px;
    padding: 0;
    list-style: none;
}
.problem-solution__problems .problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.problem-list li {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e3eeea;
    border-radius: 14px;
    background: #fff;
    color: var(--landing-muted);
    font-size: 0.8rem;
}
.problem-list i {
    flex: 0 0 30px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    color: #d95d57;
    background: #fff0ee;
}
.problem-list b {
    display: block;
    color: var(--landing-text);
    line-height: 1.5;
}
.solution-card,
.attendance-copy {
    padding: 32px;
    border-radius: var(--landing-radius);
    color: #fff;
    background: linear-gradient(135deg, #0d7181, #1ca76a);
    box-shadow: var(--landing-shadow);
}
.solution-card h3 {
    margin: 0;
    font:
        700 1.5rem Outfit,
        sans-serif;
}
.solution-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 15px;
    color: #b9f6df;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.solution-card p,
.attendance-copy p {
    color: #d6f0ec;
    line-height: 1.8;
}
.solution-card li,
.attendance-copy li {
    margin: 10px 0;
    font-size: 0.83rem;
}
.solution-card li i {
    margin-right: 7px;
    color: #9cf4d0;
}
.solution-card__footer {
    display: grid;
    gap: 3px;
    margin-top: 25px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.solution-card__footer strong {
    font-size: 0.95rem;
}
.solution-card__footer span {
    color: #c7ebe5;
    font-size: 0.75rem;
}
.attendance-copy ul {
    padding: 0;
    list-style: none;
}
.attendance-copy li i {
    margin-right: 7px;
    color: #9cf4d0;
}
.attendance-phone {
    max-width: 290px;
    margin: auto;
    padding: 32px 18px;
    border: 8px solid #173f4a;
    border-radius: 34px;
    background: linear-gradient(160deg, #e5faf2, #e7f6fb);
    box-shadow: var(--landing-shadow);
}
.attendance-phone small {
    display: block;
    margin-top: 4px;
    color: var(--landing-muted);
}
.attendance-phone > div {
    margin-top: 25px;
    padding: 16px;
    border-radius: 15px;
    background: #fff;
}
.attendance-phone > div > i {
    display: grid;
    height: 88px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #b5e3d3, #8ed1e2);
    font-size: 2rem;
}
.attendance-phone p {
    color: var(--landing-muted);
    font-size: 0.75rem;
}
.attendance-phone button {
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--landing-gradient);
    font-family: inherit;
}
.feature-grid,
.pricing-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.feature-card,
.pricing-card,
.support-grid article {
    padding: 23px 20px;
    border: 1px solid #e1eeea;
    border-radius: var(--landing-radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(21, 84, 75, 0.07);
}
.feature-card > i,
.support-grid i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 15px;
    border-radius: 13px;
    color: var(--landing-cyan);
    background: #e7f7f4;
}
.feature-card h3,
.support-grid h3 {
    margin: 0;
    font-size: 1rem;
}
.pricing-slider {
    max-width: 800px;
    margin: 0 auto 34px;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--landing-shadow);
}
.pricing-slider label,
.pricing-slider > div {
    display: flex;
    justify-content: space-between;
}
.pricing-slider output {
    color: var(--landing-cyan);
    font:
        700 1.1rem Outfit,
        sans-serif;
}
.pricing-slider input {
    width: 100%;
    margin: 15px 0 5px;
    accent-color: #169d76;
}
.pricing-slider > div {
    color: var(--landing-muted);
    font-size: 0.7rem;
}
.pricing-card {
    position: relative;
}
.pricing-card.is-recommended {
    border: 2px solid #17a879;
}
.recommended-label {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    border-radius: 99px;
    color: #fff;
    background: var(--landing-gradient);
    font-size: 0.66rem;
    white-space: nowrap;
}
.pricing-card h3 {
    margin: 0;
    font:
        700 1.25rem Outfit,
        sans-serif;
}
.pricing-card > p {
    min-height: 40px;
    color: var(--landing-muted);
    font-size: 0.76rem;
}
.pricing-card__price {
    margin: 16px 0 3px;
    font:
        800 1.7rem Outfit,
        sans-serif;
}
.pricing-card small {
    color: var(--landing-muted);
}
.pricing-card ul {
    min-height: 112px;
    padding-left: 16px;
    font-size: 0.75rem;
    line-height: 1.9;
}
.pricing-card .landing-button {
    width: 100%;
}
.pricing-notice {
    max-width: 860px;
    margin: 22px auto 0;
    color: var(--landing-muted);
    font-size: 0.73rem;
    text-align: center;
}
.support-grid {
    grid-template-columns: repeat(3, 1fr);
}
.support-grid article {
    text-align: center;
}
.support-grid i {
    margin-inline: auto;
}
.about-section__logo {
    display: grid;
    min-height: 240px;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #e0f6eb, #dceff7);
}
.about-section__logo img {
    width: min(220px, 70%);
}
.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.value-tags span {
    padding: 7px 10px;
    border-radius: 99px;
    color: #177362;
    background: #eaf8f4;
    font-size: 0.75rem;
}
.landing-contact {
    padding: 84px 0;
    color: #fff;
    background: linear-gradient(135deg, #0e6473, #168c78);
}
.landing-contact p {
    color: #d7f0ec;
    line-height: 1.8;
}
.landing-contact ul {
    padding: 0;
    list-style: none;
    color: #e0f7f3;
    font-size: 0.85rem;
}
.landing-contact li {
    margin: 12px 0;
}
.landing-contact li::before {
    content: "✓";
    margin-right: 9px;
    color: #9cf4d0;
}
.lead-form-card {
    padding: 27px;
    border-radius: 21px;
    color: var(--landing-text);
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 42, 48, 0.25);
}
.lead-form-card h3 {
    margin: 0;
    font:
        700 1.35rem Outfit,
        sans-serif;
}
.lead-form-card > p {
    margin: 3px 0 17px;
    color: var(--landing-muted);
    font-size: 0.78rem;
}
.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.lead-form-grid label {
    display: grid;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 600;
}

.lead-form-grid .field-error {
    margin-top: -2px;
    color: #b43d3d;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.4;
}

.lead-form-grid input[aria-invalid="true"],
.lead-form-grid select[aria-invalid="true"],
.lead-form-grid textarea[aria-invalid="true"] {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.lead-form-grid .is-full {
    grid-column: 1 / -1;
}
.lead-form-turnstile {
    min-width: 0;
}
.lead-form-grid input,
.lead-form-grid select,
.lead-form-grid textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d7e7e2;
    border-radius: 9px;
    font:
        400 0.8rem Prompt,
        sans-serif;
}
.lead-form-grid textarea {
    min-height: 78px;
    resize: vertical;
}
.lead-form-card button {
    width: 100%;
    margin-top: 16px;
}

.lead-form-card button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}
.form-status {
    display: none;
    margin-top: 12px;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.78rem;
}

.form-status-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.form-status.is-visible {
    display: block;
}
.form-status.is-loading {
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #f59e0b;
}
.form-status.is-success {
    color: #177347;
    background: #e5f7eb;
}
.form-status.is-error {
    color: #b43d3d;
    background: #fff0f0;
}
.landing-footer {
    padding: 34px 0;
    color: #cbe2df;
    background: #123f4d;
}
.landing-footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.landing-footer .landing-brand {
    color: #fff;
}
.landing-footer p {
    margin: 10px 0 0;
    font-size: 0.75rem;
}
.landing-footer nav {
    display: flex;
    gap: 15px;
}
.landing-footer nav a {
    color: #cbe2df;
    font-size: 0.78rem;
    text-decoration: none;
}
@media (max-width: 900px) {
    .landing-menu-toggle {
        display: block;
        margin-left: auto;
    }
    .landing-nav__links {
        display: none;
        position: absolute;
        top: 64px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        padding: 9px;
        border-radius: 14px;
        background: #fff;
        box-shadow: var(--landing-shadow);
    }
    .landing-nav__links.is-open {
        display: flex;
    }
    .landing-nav__actions {
        display: none;
    }
    .landing-hero__content,
    .problem-solution,
    .attendance-section,
    .about-section,
    .landing-contact__grid {
        grid-template-columns: 1fr;
    }
    .product-window {
        max-width: 680px;
        margin: auto;
    }
    .feature-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .support-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .landing-container {
        width: min(100% - 28px, 1140px);
    }
    .landing-nav__inner {
        min-height: 64px;
    }
    .landing-brand img {
        width: 34px;
        height: 34px;
    }
    .landing-brand strong {
        font-size: 1.1rem;
    }
    .landing-hero {
        min-height: calc(100svh - 64px);
        padding: 60px 0;
    }
    .landing-hero h1 {
        font-size: 2.45rem;
    }
    .landing-button-group,
    .lead-form-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .landing-button-group .landing-button {
        width: 100%;
    }
    .product-window__body {
        grid-template-columns: 78px 1fr;
    }
    .product-window aside {
        padding: 13px 6px;
    }
    .product-window__dashboard {
        padding: 12px;
    }
    .dashboard-stats {
        gap: 5px;
    }
    .landing-section {
        padding: 60px 0;
    }
    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .problem-solution__problems .problem-list {
        grid-template-columns: 1fr;
    }
    .solution-card,
    .attendance-copy {
        padding: 25px;
    }
    .lead-form-grid .is-full {
        grid-column: auto;
    }
    .landing-footer > div {
        align-items: flex-start;
        flex-direction: column;
    }
    .landing-footer nav {
        flex-wrap: wrap;
    }
}

.pricing-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.pricing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(38, 74, 87, 0.14);
}
.pricing-section__action {
    display: flex;
    justify-content: center;
    margin: 28px auto 0;
    text-align: center;
}

/* Pricing slider */
.pricing-slider {
    max-width: 860px;
    margin: 0 auto 36px;
    padding: 24px 28px 20px;
    border: 1px solid rgba(32, 159, 128, 0.16);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f3fbf8 100%);
    box-shadow: 0 14px 34px rgba(21, 84, 75, 0.09);
}

.pricing-slider__header,
.pricing-slider__scale {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-slider__header label {
    display: block;
    margin-top: 3px;
    color: #163d48;
    font-size: 1.05rem;
    font-weight: 700;
}

.pricing-slider__eyebrow {
    display: block;
    color: #159879;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-slider__value {
    min-width: 96px;
    padding: 9px 14px;
    border: 1px solid rgba(18, 165, 162, 0.22);
    border-radius: 999px;
    color: #087f87;
    background: #e6f8f3;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.pricing-slider__control {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.pricing-slider__icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, #18ae78, #079bb0);
    font-size: 0.82rem;
}

.pricing-slider__control input {
    --range-progress: 0%;
    height: 7px;
    margin: 0;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(
        90deg,
        #18ae78 0%,
        #079bb0 var(--range-progress),
        #dce8e7 var(--range-progress),
        #dce8e7 100%
    );
    cursor: pointer;
}

.pricing-slider__control input::-webkit-slider-thumb {
    width: 23px;
    height: 23px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #079bb0;
    box-shadow: 0 3px 10px rgba(7, 155, 176, 0.34);
    appearance: none;
}

.pricing-slider__control input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #079bb0;
    box-shadow: 0 3px 10px rgba(7, 155, 176, 0.34);
}

.pricing-slider__scale {
    position: relative;
    min-height: 1.25em;
    margin-top: 10px;
    margin-left: 48px;
    color: #78929a;
    font-size: 0.68rem;
}

.pricing-slider__scale span {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    white-space: nowrap;
}

.pricing-slider__scale span:first-child {
    left: 0;
    transform: none;
}

.pricing-slider__scale span:last-child {
    left: 100%;
    transform: translateX(-100%);
}

.pricing-slider__scale span:nth-child(2) { left: 11.111111%; }
.pricing-slider__scale span:nth-child(3) { left: 22.222222%; }
.pricing-slider__scale span:nth-child(4) { left: 33.333333%; }
.pricing-slider__scale span:nth-child(5) { left: 44.444444%; }
.pricing-slider__scale span:nth-child(6) { left: 55.555556%; }
.pricing-slider__scale span:nth-child(7) { left: 66.666667%; }
.pricing-slider__scale span:nth-child(8) { left: 77.777778%; }
.pricing-slider__scale span:nth-child(9) { left: 88.888889%; }

@media (max-width: 600px) {
    .pricing-slider {
        padding: 20px 18px 17px;
    }

    .pricing-slider__header {
        align-items: flex-start;
        gap: 12px;
    }

    .pricing-slider__value {
        min-width: 84px;
        padding: 8px 10px;
        font-size: 0.88rem;
    }

    .pricing-slider__scale {
        margin-left: 48px;
        font-size: 0.6rem;
    }

    .pricing-slider__scale span:nth-child(2),
    .pricing-slider__scale span:nth-child(4),
    .pricing-slider__scale span:nth-child(6),
    .pricing-slider__scale span:nth-child(8),
    .pricing-slider__scale span:nth-child(9) {
        visibility: hidden;
    }
}

/* Pricing comparison cards: each tier makes the next capability step explicit. */
.pricing-grid--comparison {
    align-items: stretch;
}
.pricing-card--starter {
    border-top: 5px solid #61c965;
}
.pricing-card--business {
    border-top: 5px solid #62aef0;
}
.pricing-card--enterprise {
    border-top: 5px solid #ff9d4d;
}
.pricing-card--custom {
    border-top: 5px solid #7e8eea;
}
.pricing-card--business.is-recommended {
    border-color: #62aef0;
}
.pricing-card__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--landing-cyan);
    font:
        800 1.45rem Outfit,
        Prompt,
        sans-serif;
}
.pricing-card--starter .pricing-card__heading {
    color: #42b95e;
}
.pricing-card--business .pricing-card__heading {
    color: #438fd7;
}
.pricing-card--enterprise .pricing-card__heading {
    color: #ed873c;
}
.pricing-card--custom .pricing-card__heading {
    color: #6877d3;
}
.pricing-card__heading i {
    font-size: 0.9rem;
    opacity: 0.65;
}
.pricing-card h3 {
    min-height: 48px;
}
.pricing-card__increment {
    margin: 16px 0 7px;
    padding-top: 14px;
    border-top: 1px solid #e5efec;
    color: var(--landing-text);
    font-size: 0.76rem;
    font-weight: 700;
}
.pricing-card__increment::before {
    content: "＋";
    margin-right: 4px;
    color: var(--landing-green);
}
.pricing-card ul {
    min-height: 0;
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.pricing-card li {
    display: flex;
    gap: 7px;
    margin: 7px 0;
    color: var(--landing-muted);
    line-height: 1.55;
}
.pricing-card li i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--landing-green);
    font-size: 0.63rem;
}
.pricing-card__fit {
    min-height: 72px;
    margin-top: 18px;
    color: var(--landing-muted);
    font-size: 0.72rem;
    line-height: 1.65;
}
.pricing-card__fit strong {
    display: block;
    margin-bottom: 3px;
    color: var(--landing-text);
}
@media (max-width: 600px) {
    .pricing-card h3 {
        min-height: 0;
    }
    .pricing-card__fit {
        min-height: 0;
    }
}

/* Refined public navigation */
.landing-nav {
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.landing-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(20, 63, 75, 0.12);
}
.landing-nav__inner {
    min-height: 78px;
}
.landing-brand {
    gap: 12px;
}
.landing-brand img {
    width: auto;
    height: 55px;
    max-width: none;
    object-fit: contain;
    image-rendering: auto;
}
.landing-brand strong {
    color: var(--landing-text);
    letter-spacing: -0.02em;
}
.landing-brand small {
    margin-top: 2px;
    color: var(--landing-cyan);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}
.landing-nav__links {
    align-items: center;
    gap: 4px;
    padding: 5px;
    border: 1px solid rgba(20, 63, 75, 0.06);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}
.landing-nav__links a {
    position: relative;
    padding: 9px 13px;
    border-radius: 999px;
    color: #587581;
    font-size: 0.9rem;
    font-weight: 500;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}
.landing-nav__links a:hover,
.landing-nav__links a.is-active {
    color: #08820e;
    background: #e8f8f4;
}
.landing-nav__links a:hover {
    transform: translateY(-1px);
}
.landing-nav__actions {
    align-items: center;
    margin-left: 4px;
    padding-left: 16px;
}
.landing-nav__actions .landing-button {
    padding: 10px 16px;
    font-size: 1rem;
}
.landing-nav__actions .landing-button--outline {
    border-color: rgba(8, 145, 178, 0.24);
    background: rgba(255, 255, 255, 0.74);
}
.landing-nav__actions .landing-button--primary {
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.22);
}
.landing-menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(8, 145, 178, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 14px rgba(8, 145, 178, 0.1);
}
.landing-menu-toggle:focus-visible,
.landing-nav a:focus-visible {
    outline: 3px solid rgba(8, 145, 178, 0.25);
    outline-offset: 2px;
}

@media (max-width: 1100px) and (min-width: 901px) {
    .landing-nav__links a {
        padding-inline: 8px;
        font-size: 0.72rem;
    }
    .landing-nav__actions .landing-button {
        padding-inline: 12px;
    }
}

@media (max-width: 900px) {
    .landing-nav__inner {
        min-height: 70px;
    }
    .landing-nav__links {
        top: 78px;
        left: 20px;
        right: 20px;
        gap: 3px;
        padding: 10px;
        border: 1px solid #e5f0ed;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
    }
    .landing-nav__links a {
        padding: 12px 14px;
        border-radius: 11px;
        font-size: 0.84rem;
    }
    .landing-nav__links a.is-active {
        box-shadow: inset 3px 0 0 var(--landing-cyan);
    }
}

@media (max-width: 600px) {
    .landing-brand img {
        height: 36px;
        max-width: none;
    }
    .landing-nav__links {
        top: 70px;
        left: 14px;
        right: 14px;
    }
}

/* Desktop links stay text-led, while the mobile menu keeps its card surface. */
@media (min-width: 901px) {
    .landing-nav__links {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }
    .landing-nav__links a:hover,
    .landing-nav__links a.is-active {
        background: transparent;
    }
    .landing-nav__links a.is-active::after {
        content: "";
        position: absolute;
        right: 13px;
        bottom: 1px;
        left: 13px;
        height: 2px;
        border-radius: 2px;
        background: var(--landing-green);
    }
}

/* Public navigation theme */
.landing-nav {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(77, 184, 72, 0.18);
}
.landing-nav__links {
    gap: 6px;
}
.landing-nav__links a {
    padding: 8px 14px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}
.landing-nav__links a:hover,
.landing-nav__links a.is-active {
    color: #3a9a36;
    font-weight: 700;
}
.landing-nav__actions {
    gap: 8px;
    padding-left: 18px;
    border-left: 1px solid rgba(20, 63, 75, 0.12);
}
.landing-nav__actions .landing-button {
    padding: 9px 18px;
    font-size: 0.9rem;
    font-weight: 600;
}
.landing-nav__actions .landing-button--outline {
    color: #0284a8;
    border-color: rgba(8, 145, 178, 0.5);
    background: transparent;
}
.landing-nav__actions .landing-button--outline:hover {
    color: #0284a8;
    background: rgba(8, 145, 178, 0.08);
}
.landing-nav__actions .landing-button--primary {
    color: #fff;
    background: linear-gradient(135deg, #22c55e 0%, #0891b2 100%);
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.22);
}
.landing-nav__actions .landing-button--primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #0891b2 0%, #22c55e 100%);
    transform: translateY(-1px);
}

@media (max-width: 1100px) and (min-width: 901px) {
    .landing-nav__links a {
        padding-inline: 9px;
        font-size: 0.82rem;
    }
}

@media (max-width: 900px) {
    .landing-nav__links a {
        padding: 12px 14px;
        border-radius: 11px;
        font-size: 0.84rem;
    }
    .landing-nav__links a.is-active {
        box-shadow: inset 3px 0 0 var(--landing-cyan);
    }
}

/* Scrolling capability chips. */
.capabilities-marquee {
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.55);
}

.capabilities-marquee__track {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    gap: 14px;
    will-change: transform;
    animation: capabilities-marquee-scroll 42s linear infinite;
}

.capabilities-marquee:hover .capabilities-marquee__track {
    animation-play-state: paused;
}

.capability-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    color: var(--landing-muted);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 3px 10px rgba(22, 84, 75, 0.07);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.capability-chip i {
    color: var(--landing-cyan);
}

@keyframes capabilities-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Footer: brand column plus System, Features, and Contact columns. */
.landing-footer {
    padding: 48px 0 22px;
    color: #4f7380;
    background: linear-gradient(135deg, #c7eadc 0%, #d9eff4 52%, #cad8f2 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
}

.landing-footer__grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(4, 1fr);
    gap: 36px;
}

.landing-footer > .landing-container {
    display: block;
}

.landing-footer .landing-brand {
    color: #143f4b;
}
.landing-footer .landing-brand small {
    color: #087c8a;
}
.landing-footer__brand p {
    max-width: 315px;
    margin: 14px 0 0;
    font-size: 0.8rem;
    line-height: 1.8;
}
.landing-footer__column h3 {
    margin: 4px 0 14px;
    color: #143f4b;
    font-size: 0.9rem;
}
.landing-footer__column a {
    display: block;
    width: fit-content;
    margin: 0 0 10px;
    color: #537583;
    font-size: 0.8rem;
    text-decoration: none;
}
.landing-footer__column p {
    max-width: 240px;
    margin: 0 0 10px;
    color: #537583;
    font-size: 0.8rem;
    line-height: 1.75;
}
.landing-footer__column a:hover {
    color: #0788a7;
}
.landing-footer__column i {
    width: 17px;
    color: #0788a7;
}
.landing-footer__bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(20, 63, 75, 0.18);
    color: #557382;
    font-size: 0.75rem;
    text-align: center;
}

.landing-footer__back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 14px;
    color: #087c8a;
    font-weight: 600;
    text-decoration: none;
}
.landing-footer__bottom a {
    color: #087c8a;
    font-weight: 600;
    text-decoration: none;
}

.privacy-policy-card {
    padding: 28px;
    color: var(--landing-text);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(28, 81, 91, 0.12);
    line-height: 1.9;
}
.privacy-policy-card h2 {
    margin: 24px 0 6px;
    color: #143f4b;
    font: 700 1.05rem Outfit, Prompt, sans-serif;
}
.privacy-policy-card h2:first-child {
    margin-top: 0;
}
.privacy-policy-card p {
    margin: 0;
    color: #537583;
    font-size: 0.88rem;
}
.privacy-policy-card a {
    color: #087c8a;
    font-weight: 600;
}
.privacy-policy-container {
    max-width: 1120px;
}
.privacy-policy-hero {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}
.privacy-policy-hero h1 {
    margin: 16px 0 10px;
    color: #143f4b;
    font: 700 clamp(2rem, 4vw, 3.2rem) Outfit, Prompt, sans-serif;
}
.privacy-policy-hero p {
    margin: 0 auto;
    color: #537583;
    font-size: 0.95rem;
    line-height: 1.9;
}
.privacy-policy-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-top: 18px;
    color: #537583;
    font-size: 0.75rem;
}
.privacy-policy-meta i {
    margin-right: 5px;
    color: #0788a7;
}
.privacy-policy-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 34px clamp(20px, 4vw, 48px);
}
.privacy-policy-content section {
    scroll-margin-top: 100px;
    padding: 0 0 24px;
    margin: 0 0 24px;
    border-bottom: 1px solid #e1efeb;
}
.privacy-policy-content section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.privacy-policy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 24px;
    margin-bottom: 7px;
    color: #087c8a;
    background: #dff8f0;
    border-radius: 999px;
    font: 700 0.7rem Outfit, sans-serif;
}
.privacy-policy-content h2 {
    margin: 0 0 8px;
    font-size: 1.12rem;
}
.privacy-policy-content ul {
    margin: 8px 0 0;
    padding-left: 20px;
    color: #537583;
    font-size: 0.88rem;
    line-height: 1.85;
}
.privacy-policy-table-wrap {
    margin: 16px 0 18px;
    overflow-x: auto;
    border: 1px solid #e1efeb;
    border-radius: 12px;
}
.privacy-policy-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    color: #537583;
    font-size: 0.82rem;
    line-height: 1.65;
}
.privacy-policy-table th {
    color: #143f4b;
    background: #e8f8f3;
    font-weight: 700;
    text-align: left;
}
.privacy-policy-table th,
.privacy-policy-table td {
    padding: 12px 14px;
    vertical-align: top;
    border-bottom: 1px solid #e1efeb;
}
.privacy-policy-table tr:last-child td {
    border-bottom: 0;
}
.privacy-policy-table td + td,
.privacy-policy-table th + th {
    border-left: 1px solid #e1efeb;
}
.privacy-contact-card {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 16px 18px;
    color: #537583;
    background: #f0fdfa;
    border-left: 4px solid #14b8a6;
    border-radius: 10px;
    font-size: 0.85rem;
}
.privacy-contact-card strong {
    color: #143f4b;
}
.privacy-contact-card a {
    width: fit-content;
}

@media (max-width: 900px) {
    .landing-footer__grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
    .landing-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .landing-footer {
        padding-top: 38px;
    }
    .landing-footer__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .landing-footer__brand {
        grid-column: auto;
    }
    .landing-footer__bottom {
        margin-top: 28px;
        text-align: left;
    }

    .landing-footer__back-to-top {
        display: flex;
        margin: 0 0 12px;
    }
}
