:root {
    --ink: #102c3a;
    --ink-soft: #526873;
    --teal: #0b8f80;
    --teal-dark: #087267;
    --teal-light: #dff8f3;
    --aqua: #89ded2;
    --blue: #3577f1;
    --warm: #f4b84a;
    --violet: #8f6ee8;
    --green: #34a270;
    --cream: #f8fbfa;
    --line: #dce7e5;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(16, 44, 58, 0.13);
    --radius: 24px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(11, 143, 128, 0.35);
    outline-offset: 4px;
    border-radius: 8px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(220, 231, 229, 0.82);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.brand-logo {
    display: block;
    width: auto;
    height: 34px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.main-nav a,
.text-link {
    color: #35515d;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a:hover,
.text-link:hover {
    color: var(--teal);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-small {
    min-height: 42px;
    padding: 10px 18px;
    color: var(--white);
    background: var(--ink);
}

.button-primary {
    color: var(--white);
    background: var(--teal-dark);
    box-shadow: 0 14px 28px rgba(11, 143, 128, 0.22);
}

.button-primary:hover {
    background: #065f56;
    box-shadow: 0 18px 34px rgba(11, 143, 128, 0.27);
}

.button-secondary {
    border-color: #cddcda;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.8);
}

.button-secondary:hover {
    border-color: var(--teal);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 106px;
    background:
        radial-gradient(circle at 92% 5%, rgba(137, 222, 210, 0.32), transparent 30%),
        radial-gradient(circle at 4% 76%, rgba(244, 184, 74, 0.12), transparent 25%),
        linear-gradient(180deg, #fbfefd 0%, #f5fbf9 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -280px;
    top: -260px;
    border: 1px solid rgba(11, 143, 128, 0.13);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(11, 143, 128, 0.025), 0 0 0 160px rgba(11, 143, 128, 0.02);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
    align-items: start;
    gap: 70px;
}

.eyebrow,
.section-label {
    margin: 0 0 18px;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 12px;
    border: 1px solid rgba(11, 143, 128, 0.18);
    border-radius: 999px;
    background: rgba(223, 248, 243, 0.72);
    letter-spacing: 0.06em;
    text-transform: none;
}

.eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(11, 143, 128, 0.12);
}

.hero h1 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(44px, 5.3vw, 72px);
    font-weight: 850;
    letter-spacing: -0.065em;
    line-height: 1.02;
}

.hero h1 em {
    color: var(--teal);
    font-style: normal;
}

.hero-lead {
    max-width: 590px;
    margin: 26px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 22px 0 0;
    padding: 0;
    color: #58707a;
    font-size: 12px;
    font-weight: 650;
    list-style: none;
}

.trust-list span {
    color: var(--teal);
    font-weight: 900;
}

.hero-visual {
    position: relative;
    min-width: 0;
    padding: 60px 0 24px;
}

.dashboard-shot {
    position: relative;
    width: 100%;
    min-width: 0;
    margin: 0;
}

.dashboard-shot::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 12% 8% 2%;
    border-radius: 50%;
    background: rgba(11, 143, 128, 0.22);
    filter: blur(55px);
}

.dashboard-shot img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(16, 44, 58, 0.1);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 34px 80px rgba(16, 44, 58, 0.18);
}

.dashboard-shot figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #58707a;
    font-size: 11px;
    font-weight: 700;
}

.dashboard-shot figcaption span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.proof-strip {
    border-block: 1px solid var(--line);
    background: var(--white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-block: 28px;
}

.proof-grid > div {
    display: grid;
    padding-inline: 28px;
    border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
    padding-left: 0;
}

.proof-grid > div:last-child {
    border-right: 0;
}

.proof-grid strong {
    font-size: 15px;
}

.proof-grid span {
    color: var(--ink-soft);
    font-size: 12px;
}

.section {
    padding: 112px 0;
}

.section-heading {
    max-width: 730px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2,
.workflow-copy h2,
.owner-copy h2,
.pricing-copy h2,
.faq-heading h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 830;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.section-heading > p:last-child,
.workflow-copy > p,
.owner-copy > p,
.pricing-copy > p,
.faq-heading > p {
    color: var(--ink-soft);
}

.section-heading > p:last-child {
    max-width: 640px;
    margin: 20px auto 0;
}

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

.feature-card {
    grid-column: span 4;
    min-height: 282px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fcfefd;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(16, 44, 58, 0.08);
}

.feature-card-large {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 582px;
    background: linear-gradient(140deg, #edf9f6, #fcfefd 68%);
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--teal-dark);
    background: var(--teal-light);
    font-size: 14px;
    font-weight: 900;
}

.feature-icon-blue {
    color: #245fc5;
    background: #e7efff;
}

.feature-icon-warm {
    color: #9c6903;
    background: #fff1d1;
}

.feature-icon-violet {
    color: #6e4ac9;
    background: #eee8ff;
}

.feature-icon-green {
    color: #187c55;
    background: #dff7eb;
}

.feature-card h3 {
    margin: 24px 0 10px;
    font-size: 21px;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.feature-card-large h3 {
    font-size: 29px;
}

.pos-preview {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 12px;
    margin-top: 34px;
    padding: 18px;
    border: 1px solid #d9e9e6;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 38px rgba(16, 44, 58, 0.08);
}

.pos-services {
    display: grid;
    gap: 9px;
}

.pos-services > span {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    column-gap: 10px;
    padding: 10px;
    border: 1px solid #e4ecea;
    border-radius: 11px;
    color: #3f5863;
    font-size: 11px;
    font-weight: 750;
}

.pos-services .selected {
    border-color: var(--teal);
    background: #f3fbf9;
}

.pos-services i {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--teal-dark);
    background: var(--teal-light);
    font-size: 8px;
    font-style: normal;
}

.pos-services small {
    color: #8a9ca1;
    font-size: 8px;
    font-weight: 500;
}

.pos-total {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border-radius: 14px;
    color: var(--white);
    background: var(--ink);
}

.pos-total span,
.pos-total small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
}

.pos-total strong {
    margin: 8px 0 15px;
    font-size: 24px;
    letter-spacing: -0.05em;
}

.mini-tracker {
    display: flex;
    align-items: center;
    margin-top: 38px;
}

.mini-tracker span {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    border: 3px solid #d9e4e2;
    border-radius: 50%;
    background: var(--white);
}

.mini-tracker .done {
    border-color: var(--teal);
    background: var(--teal);
}

.mini-tracker .active {
    border-color: var(--teal);
    box-shadow: 0 0 0 5px var(--teal-light);
}

.mini-tracker i {
    height: 2px;
    flex: 1;
    background: #d9e4e2;
}

.sparkline {
    height: 70px;
    display: flex;
    align-items: end;
    gap: 8px;
    margin-top: 26px;
}

.sparkline i {
    width: 100%;
    border-radius: 6px 6px 2px 2px;
    background: #ffe7ad;
}

.sparkline i:nth-child(1) { height: 35%; }
.sparkline i:nth-child(2) { height: 48%; }
.sparkline i:nth-child(3) { height: 42%; }
.sparkline i:nth-child(4) { height: 67%; }
.sparkline i:nth-child(5) { height: 58%; }
.sparkline i:nth-child(6) { height: 82%; }
.sparkline i:nth-child(7) { height: 73%; background: var(--warm); }

.workflow-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    color: var(--white);
    background: var(--ink);
}

.workflow-section::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -180px;
    bottom: -330px;
    border: 1px solid rgba(137, 222, 210, 0.17);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(137, 222, 210, 0.025), 0 0 0 160px rgba(137, 222, 210, 0.02);
}

.workflow-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 120px;
}

.section-label-light {
    color: var(--aqua);
}

.workflow-copy > p {
    margin: 22px 0 0;
    color: #bfd0d5;
}

.workflow-steps {
    display: grid;
    gap: 0;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.workflow-steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.workflow-steps li > span {
    color: var(--aqua);
    font-size: 11px;
    font-weight: 850;
}

.workflow-steps li div {
    display: grid;
}

.workflow-steps strong {
    font-size: 15px;
}

.workflow-steps small {
    color: #91a8b0;
}

.tracking-demo {
    max-width: 470px;
    margin-left: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 27px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 34px 75px rgba(0, 0, 0, 0.25);
}

.tracking-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 25px;
    border-bottom: 1px solid var(--line);
}

.tracking-header > div {
    display: grid;
}

.tracking-header small {
    color: var(--ink-soft);
    font-size: 11px;
}

.tracking-logo {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-block;
    border-radius: 12px;
    background: var(--teal);
}

.tracking-logo i {
    position: absolute;
    display: block;
    border: 2px solid var(--white);
    border-radius: 50%;
}

.tracking-logo i:nth-child(1) { width: 14px; height: 14px; left: 8px; bottom: 7px; }
.tracking-logo i:nth-child(2) { width: 8px; height: 8px; right: 6px; top: 7px; }
.tracking-logo i:nth-child(3) { width: 5px; height: 5px; left: 7px; top: 6px; }

.tracking-order {
    display: grid;
    padding: 24px 25px;
    border-bottom: 1px solid var(--line);
    background: #f7fbfa;
}

.tracking-order span,
.tracking-order small {
    color: var(--ink-soft);
    font-size: 11px;
}

.tracking-order strong {
    margin: 2px 0 8px;
    font-size: 25px;
    letter-spacing: -0.04em;
}

.tracking-progress {
    padding: 24px 25px 18px;
}

.tracking-item {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 13px;
    min-height: 74px;
}

.tracking-item::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 44px;
    left: 14px;
    top: 30px;
    background: #dce7e5;
}

.tracking-item:last-child::after {
    display: none;
}

.tracking-item > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 2px solid #d9e4e2;
    border-radius: 50%;
    color: transparent;
    background: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.tracking-item.complete > span {
    border-color: var(--teal);
    color: var(--white);
    background: var(--teal);
}

.tracking-item.current > span {
    border: 8px solid var(--teal-light);
    background: var(--teal);
    box-shadow: 0 0 0 2px var(--teal);
}

.tracking-item > div {
    display: grid;
    align-content: start;
    padding-top: 2px;
}

.tracking-item strong {
    font-size: 13px;
}

.tracking-item small {
    color: #80939a;
    font-size: 11px;
}

.tracking-footer {
    padding: 13px 25px;
    color: #5f777f;
    background: var(--teal-light);
    font-size: 11px;
}

.tracking-footer span {
    color: var(--teal);
    font-weight: 900;
}

.owner-section {
    background: var(--cream);
}

.owner-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 110px;
}

.owner-visual {
    position: relative;
    padding: 35px;
    border-radius: 36px;
    background: linear-gradient(140deg, #d8f4ee, #edf9f6);
}

.report-card {
    overflow: hidden;
    border: 1px solid rgba(16, 44, 58, 0.08);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.report-header {
    display: grid;
    padding: 25px 28px 8px;
}

.report-header span,
.report-header small {
    color: var(--ink-soft);
    font-size: 11px;
}

.report-header strong {
    margin-top: 7px;
    font-size: 30px;
    letter-spacing: -0.05em;
}

.report-lines {
    height: 180px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 25px 28px 0;
    background: repeating-linear-gradient(to bottom, #edf3f2 0 1px, transparent 1px 46px);
}

.report-lines i {
    width: 100%;
    height: var(--line);
    display: block;
    border-radius: 8px 8px 0 0;
    background: #bce9e1;
}

.report-lines i:nth-child(6) {
    background: var(--teal);
}

.report-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 22px 28px;
    border-top: 1px solid var(--line);
}

.report-summary > span {
    display: grid;
}

.report-summary > span + span {
    padding-left: 25px;
    border-left: 1px solid var(--line);
}

.report-summary small {
    color: var(--ink-soft);
}

.report-summary strong {
    font-size: 19px;
}

.owner-badge {
    position: absolute;
    right: 7px;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(16, 44, 58, 0.16);
}

.owner-badge > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--white);
    background: var(--green);
    font-weight: 900;
}

.owner-badge > div {
    display: grid;
}

.owner-badge strong {
    font-size: 12px;
}

.owner-badge small {
    color: var(--ink-soft);
    font-size: 10px;
}

.owner-copy > p {
    margin: 20px 0 0;
}

.check-list {
    display: grid;
    gap: 20px;
    margin: 32px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 13px;
}

.check-list li > span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--teal-dark);
    background: var(--teal-light);
    font-size: 12px;
    font-weight: 900;
}

.check-list li > div {
    display: grid;
}

.check-list small {
    color: var(--ink-soft);
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 850;
}

.inline-link:hover span {
    transform: translateX(3px);
}

.pricing-section {
    padding: 112px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 120px;
}

.pricing-copy > p {
    margin: 22px 0 0;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 27px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--ink-soft);
    background: var(--cream);
    font-size: 12px;
}

.price-note span {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--teal-dark);
    background: var(--teal-light);
    font-size: 11px;
    font-weight: 900;
}

.price-card {
    position: relative;
    max-width: 520px;
    padding: 42px;
    border: 1px solid rgba(11, 143, 128, 0.22);
    border-radius: 28px;
    background: linear-gradient(145deg, #f3fbf9, #ffffff 65%);
    box-shadow: var(--shadow);
}

.popular-pill {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--teal-dark);
    background: var(--teal-light);
    font-size: 11px;
    font-weight: 850;
}

.price {
    display: flex;
    align-items: baseline;
    margin-top: 18px;
    letter-spacing: -0.05em;
}

.price sup {
    align-self: flex-start;
    margin-top: 14px;
    font-size: 17px;
    font-weight: 850;
}

.price strong {
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1;
}

.price > span {
    margin-left: 7px;
    color: var(--ink-soft);
    font-size: 14px;
    letter-spacing: 0;
}

.price-card > p {
    max-width: 390px;
    margin: 16px 0 26px;
    color: var(--ink-soft);
}

.price-card ul {
    display: grid;
    gap: 13px;
    margin: 0 0 29px;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.price-card li {
    display: flex;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

.price-card li span {
    color: var(--teal);
    font-weight: 900;
}

.button-block {
    width: 100%;
}

.price-card > small {
    display: block;
    margin-top: 13px;
    color: var(--ink-soft);
    text-align: center;
}

.faq-section {
    border-top: 1px solid var(--line);
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 110px;
}

.faq-heading {
    position: sticky;
    top: 110px;
}

.faq-heading > p {
    margin: 20px 0 24px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 23px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    list-style: none;
}

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

.faq-list summary span {
    color: var(--teal);
    font-size: 22px;
    font-weight: 500;
    transition: transform 160ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    margin: 0;
    padding: 0 23px 22px;
    color: var(--ink-soft);
    font-size: 14px;
}

.final-cta {
    padding: 40px 0;
    background: var(--cream);
}

.final-cta-inner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 58px 64px;
    border-radius: 30px;
    color: var(--white);
    background: var(--teal);
}

.final-cta-inner::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -160px;
    top: -210px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.04), 0 0 0 110px rgba(255, 255, 255, 0.025);
}

.final-cta-inner > * {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(34px, 4vw, 48px);
}

.final-cta p:not(.section-label) {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button-light {
    color: var(--teal-dark);
    background: var(--white);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.48);
    color: var(--white);
}

.site-footer {
    padding: 74px 0 26px;
    color: #c3d1d5;
    background: #0c242f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.65fr 0.65fr;
    gap: 70px;
    padding-bottom: 55px;
}

.brand-footer {
    color: var(--white);
}

.footer-grid > div p {
    max-width: 430px;
    margin: 19px 0 0;
    color: #8fa6ae;
}

.footer-grid nav {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-grid nav strong {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 13px;
}

.footer-grid nav a {
    color: #8fa6ae;
    font-size: 13px;
}

.footer-grid nav a:hover {
    color: var(--aqua);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #78919a;
    font-size: 11px;
}

@media (max-width: 1060px) {
    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-copy {
        max-width: 710px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .trust-list {
        justify-content: center;
    }

    .hero-visual {
        max-width: 720px;
        margin-inline: auto;
        padding-top: 0;
    }

    .workflow-grid,
    .owner-grid,
    .pricing-grid,
    .faq-grid {
        gap: 65px;
    }

    .feature-card,
    .feature-card-large {
        grid-column: span 6;
    }

    .feature-card-large {
        grid-row: auto;
        min-height: 500px;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .section,
    .workflow-section,
    .pricing-section {
        padding-block: 84px;
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proof-grid > div {
        padding: 18px 20px;
        border-bottom: 1px solid var(--line);
    }

    .proof-grid > div:nth-child(2) {
        border-right: 0;
    }

    .proof-grid > div:nth-child(3),
    .proof-grid > div:nth-child(4) {
        border-bottom: 0;
    }

    .proof-grid > div:first-child {
        padding-left: 20px;
    }

    .workflow-grid,
    .owner-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .workflow-grid,
    .owner-grid,
    .pricing-grid,
    .faq-grid {
        gap: 50px;
    }

    .tracking-demo {
        max-width: 520px;
        margin-inline: auto;
    }

    .owner-copy {
        grid-row: 1;
    }

    .faq-heading {
        position: static;
    }

    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px 38px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 0.8fr 0.8fr;
        gap: 35px;
    }
}

@media (max-width: 620px) {
    .site-header {
        position: static;
    }

    .nav-wrap {
        min-height: 68px;
    }

    .brand {
        font-size: 20px;
    }

    .brand-logo {
        height: 30px;
    }

    .nav-actions .text-link {
        display: none;
    }

    .button-small {
        min-height: 39px;
        padding: 9px 14px;
        font-size: 12px;
    }

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

    .hero h1 {
        font-size: clamp(38px, 11.5vw, 52px);
        letter-spacing: -0.055em;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .trust-list {
        display: grid;
        justify-content: start;
        max-width: 260px;
        margin-inline: auto;
        text-align: left;
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        padding-block: 14px 4px;
        transform: none;
    }

    .dashboard-shot img {
        border-radius: 15px;
    }

    .dashboard-shot figcaption {
        font-size: 10px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        padding-block: 12px;
    }

    .proof-grid > div,
    .proof-grid > div:first-child,
    .proof-grid > div:nth-child(3) {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        text-align: center;
    }

    .proof-grid > div:last-child {
        border-bottom: 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading h2,
    .workflow-copy h2,
    .owner-copy h2,
    .pricing-copy h2,
    .faq-heading h2,
    .final-cta h2 {
        font-size: 36px;
    }

    .feature-card,
    .feature-card-large {
        grid-column: 1 / -1;
        min-height: auto;
        padding: 25px;
    }

    .feature-card-large h3 {
        font-size: 24px;
    }

    .pos-preview {
        grid-template-columns: 1fr;
    }

    .pos-total {
        min-height: 130px;
    }

    .workflow-steps small {
        font-size: 12px;
    }

    .tracking-header,
    .tracking-order,
    .tracking-progress {
        padding-inline: 20px;
    }

    .owner-visual {
        padding: 20px;
    }

    .report-lines {
        height: 140px;
        padding-inline: 18px;
        gap: 7px;
    }

    .owner-badge {
        right: 4px;
        bottom: -17px;
    }

    .price-card {
        padding: 29px 23px;
    }

    .price strong {
        font-size: 47px;
    }

    .final-cta {
        padding: 20px 0;
    }

    .final-cta-inner {
        padding: 40px 25px;
    }

    .final-actions,
    .final-actions .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
