@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500 800;
    font-display: swap;
    src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("/assets/fonts/roboto-latin.woff2") format("woff2");
}

:root {
    --navy: #171717;
    --navy-soft: #262626;
    --blue: #f26322;
    --blue-dark: #d84b13;
    --accent-text: #b94312;
    --cyan: #f7b733;
    --lime: #f7bf3d;
    --ink: #181818;
    --muted: #656565;
    --line: #e7e1dc;
    --surface: #fff8f2;
    --white: #fff;
    --shadow: 0 24px 70px rgba(68, 34, 12, .13);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}

body {
    color: var(--ink);
    background: var(--white);
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: "Montserrat", Arial, sans-serif;
}

h1,
h2,
h3 {
    letter-spacing: -.035em;
}

h2 {
    color: var(--navy);
    font-size: clamp(2.15rem, 4.3vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
}

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

a {
    text-decoration: none;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 1rem;
    z-index: 9999;
    padding: .65rem 1rem;
    color: var(--white);
    background: var(--navy);
    border-radius: 0 0 .5rem .5rem;
}

.skip-link:focus {
    top: 0;
}

.top-note {
    padding: .42rem 0;
    color: #f1ede9;
    background: var(--navy);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--lime);
    border-radius: 100%;
    box-shadow: 0 0 0 4px rgba(247, 183, 51, .16);
}

.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(24, 24, 24, .08);
    backdrop-filter: blur(14px);
    transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(24, 24, 24, .08);
}

.navbar {
    min-height: 78px;
}

.navbar-brand img {
    display: block;
    width: 190px;
    height: auto;
}

.navbar .nav-link {
    padding: .65rem .75rem !important;
    color: #3f3f3f;
    font-size: .9rem;
    font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--blue);
}

.btn {
    border-radius: 10px;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.btn-primary {
    background: linear-gradient(110deg, var(--blue), #f47d22);
    border-color: var(--blue);
    box-shadow: 0 10px 28px rgba(242, 99, 34, .24);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.nav-cta {
    padding: .72rem 1.15rem !important;
    color: var(--white) !important;
    font-size: .86rem;
}

.hero {
    position: relative;
    min-height: 880px;
    padding: 110px 0 250px;
    color: var(--ink);
    background:
        radial-gradient(circle at 92% 20%, rgba(247, 183, 51, .2), transparent 31%),
        radial-gradient(circle at 8% 12%, rgba(242, 99, 34, .09), transparent 28%),
        linear-gradient(120deg, #ffffff 0%, #fffaf5 58%, #fff4e6 100%);
    overflow: hidden;
}

.hero::after {
    position: absolute;
    right: -8%;
    bottom: -25%;
    width: 780px;
    height: 780px;
    content: "";
    border: 1px solid rgba(242, 99, 34, .1);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(242, 99, 34, .025),
        0 0 0 160px rgba(247, 183, 51, .025);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.hero-glow-one {
    top: 80px;
    left: -160px;
    width: 340px;
    height: 340px;
    background: rgba(242, 99, 34, .09);
}

.hero-glow-two {
    top: 30%;
    right: 12%;
    width: 190px;
    height: 190px;
    background: rgba(247, 183, 51, .14);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.25rem;
    color: var(--accent-text);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 24px;
    height: 2px;
    background: currentColor;
}

.eyebrow-light {
    color: var(--cyan);
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 1.6rem;
    color: var(--ink);
    font-size: clamp(3.1rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: .99;
}

.hero h1 em {
    color: var(--blue);
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 2rem;
    color: #5f5f5f;
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    line-height: 1.65;
}

.hero .btn-lg {
    min-height: 56px;
    padding: .86rem 1.35rem;
    font-size: .94rem;
}

.hero .btn-light {
    color: var(--white);
    background: linear-gradient(110deg, var(--blue), #f47d22);
    border-color: var(--blue);
    box-shadow: 0 12px 30px rgba(242, 99, 34, .24);
}

.btn-ghost {
    color: var(--ink);
    border: 1px solid rgba(24, 24, 24, .18);
    background: rgba(255, 255, 255, .75);
}

.btn-ghost:hover,
.btn-ghost:focus {
    color: var(--blue-dark);
    border-color: rgba(242, 99, 34, .45);
    background: var(--white);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1.5rem;
    margin-top: 2rem;
    color: #515151;
    font-size: .84rem;
}

.hero-points i {
    display: inline-grid;
    width: 20px;
    height: 20px;
    margin-right: .35rem;
    color: var(--navy);
    background: var(--cyan);
    border-radius: 50%;
    font-size: .7rem;
    font-style: normal;
    place-items: center;
}

.hero-visual {
    position: relative;
    z-index: 1;
    min-height: 470px;
}

.hero-person-wrap {
    position: absolute;
    right: 5%;
    bottom: -18px;
    width: 280px;
    height: 480px;
    overflow: hidden;
}

.hero-person {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .28));
}

.hero-person-wrap::after {
    position: absolute;
    right: 15px;
    bottom: -48px;
    width: 245px;
    height: 245px;
    content: "";
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 50%;
    z-index: -1;
}

.metric-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .8rem;
    min-width: 205px;
    padding: .85rem 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 13px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

.metric-card strong,
.metric-card small {
    display: block;
}

.metric-card strong {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .82rem;
}

.metric-card small {
    color: var(--muted);
    font-size: .68rem;
}

.metric-icon {
    display: grid;
    width: 36px;
    height: 36px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #f47d22);
    border-radius: 9px;
    place-items: center;
}

.metric-icon-green {
    color: var(--navy);
    background: var(--lime);
}

.metric-card-top {
    top: 80px;
    left: -12px;
}

.metric-card-bottom {
    right: -25px;
    bottom: 145px;
}

.dashboard-float {
    position: absolute;
    right: 12px;
    bottom: -430px;
    left: 12px;
    z-index: 4;
    max-width: 1120px;
    margin: auto;
    padding: 10px;
    background: #efefef;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 18px;
    box-shadow:
        0 0 0 8px rgba(255, 250, 245, .96),
        0 38px 85px rgba(0, 0, 0, .24);
}

.dashboard-float img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 0 11px 11px;
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 9px;
}

.window-bar span {
    width: 8px;
    height: 8px;
    background: #aaa;
    border-radius: 50%;
}

.window-bar span:first-child {
    background: #ff6b63;
}

.window-bar span:nth-child(2) {
    background: #ffbd45;
}

.window-bar span:nth-child(3) {
    background: #42c765;
}

.window-bar small {
    margin-left: auto;
    color: #6b6b6b;
    font-size: .64rem;
}

.proof-strip {
    padding: 64px 0 42px;
    background: var(--white);
}

.proof-item {
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--line);
}

.proof-item:last-child {
    border-right: 0;
}

.proof-item strong,
.proof-item span {
    display: block;
}

.proof-icon {
    display: grid !important;
    width: 54px;
    height: 54px;
    margin: 0 auto 1rem;
    color: #0d0d0d !important;
    background: linear-gradient(135deg, var(--blue), #f47d22);
    border-radius: 15px;
    box-shadow: 0 12px 26px rgba(242, 99, 34, .18);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.45rem !important;
    font-weight: 900;
    line-height: 1;
    opacity: 1;
    place-items: center;
    -webkit-text-fill-color: #0d0d0d;
}

.proof-icon-gold {
    color: #0d0d0d !important;
    background: linear-gradient(135deg, var(--cyan), #ffd05a);
    box-shadow: 0 12px 26px rgba(247, 183, 51, .2);
}

.proof-item strong {
    color: var(--navy);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.08rem;
}

.proof-item span {
    color: var(--muted);
    font-size: .76rem;
}

.section-space {
    padding: 84px 0;
}

.section-heading {
    max-width: 810px;
}

.section-heading > p:last-child,
.section-intro {
    color: var(--muted);
    font-size: 1.08rem;
}

.problem-section {
    background: var(--surface);
}

.problem-card {
    position: relative;
    padding: 2.25rem;
    background: var(--white);
    border: 1px solid #ebe4df;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.problem-card:hover {
    border-color: rgba(242, 99, 34, .3);
    box-shadow: 0 24px 55px rgba(40, 24, 14, .09);
    transform: translateY(-6px);
}

.problem-card .number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #f3ede8;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 5.4rem;
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .9;
    pointer-events: none;
}

.line-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 1.4rem;
    color: var(--blue);
    background: #fff0e5;
    border-radius: 14px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    place-items: center;
}

.problem-card h3 {
    position: relative;
    z-index: 1;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
}

.problem-card p {
    color: var(--muted);
}

.problem-card ul {
    margin: 1.25rem 0 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.problem-card li {
    position: relative;
    margin: .4rem 0;
    padding-left: 1.25rem;
    color: #4e4e4e;
    font-size: .87rem;
}

.problem-card li::before {
    position: absolute;
    top: .7em;
    left: 0;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--blue);
    border-radius: 50%;
}

.clarity-section {
    background: var(--white);
}

.image-stage {
    position: relative;
    padding: 2.5rem 1.5rem;
    background:
        linear-gradient(rgba(255, 255, 255, .94), rgba(255, 255, 255, .94)),
        repeating-linear-gradient(0deg, transparent, transparent 29px, #e5dfdb 30px),
        repeating-linear-gradient(90deg, transparent, transparent 29px, #e5dfdb 30px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-stage-label {
    position: absolute;
    top: 17px;
    left: 20px;
    padding: .35rem .65rem;
    color: var(--blue);
    background: #fff0e5;
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.image-stage img {
    margin-top: 1.5rem;
}

.benefit-list {
    margin-top: 2rem;
}

.benefit-list > div {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.benefit-list b {
    flex: 0 0 38px;
    color: var(--accent-text);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .78rem;
}

.benefit-list span {
    color: var(--muted);
    font-size: .92rem;
}

.benefit-list strong {
    display: block;
    margin-bottom: .15rem;
    color: var(--navy);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
}

.system-section {
    position: relative;
    color: #d3d3d3;
    background:
        radial-gradient(circle at 50% 35%, rgba(242, 99, 34, .18), transparent 35%),
        var(--navy);
    overflow: hidden;
}

.system-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 48px 48px;
}

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

.system-section h2 {
    color: var(--white);
}

.system-section h2 em {
    color: var(--cyan);
}

.system-section .section-heading > p:last-child {
    color: #a9a9a9;
}

.system-dashboard {
    max-width: 960px;
    margin: 3rem auto 2rem;
    padding: 8px;
    background: #e4e4e4;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    box-shadow: 0 38px 75px rgba(0, 0, 0, .35);
}

.system-dashboard img {
    display: block;
    border-radius: 10px;
}

.feature-card {
    padding: 1.6rem;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    transition: background-color .25s ease, transform .25s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-4px);
}

.feature-icon {
    display: grid;
    width: 40px;
    height: 40px;
    margin-bottom: 1.1rem;
    color: var(--cyan);
    background: rgba(242, 99, 34, .13);
    border-radius: 10px;
    font-size: 1.15rem;
    place-items: center;
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    color: #aaa;
    font-size: .83rem;
    line-height: 1.6;
}

.process-section {
    background: var(--surface);
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
}

.process-line::before {
    position: absolute;
    top: 29px;
    right: 15%;
    left: 15%;
    height: 1px;
    content: "";
    background: var(--line);
}

.process-line article {
    position: relative;
    text-align: center;
}

.process-number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 1.5rem;
    color: var(--white);
    background: var(--blue);
    border: 8px solid var(--surface);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--line);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
    place-items: center;
}

.process-line small {
    color: var(--accent-text);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.process-line h3 {
    margin-top: .35rem;
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 800;
}

.process-line p {
    max-width: 290px;
    margin: 0 auto;
    color: var(--muted);
    font-size: .9rem;
}

.results-section {
    background: var(--white);
}

.quote-card {
    display: flex;
    flex-direction: column;
    padding: 1.8rem;
    background: var(--surface);
    border: 1px solid #e8e2de;
    border-radius: 18px;
}

.quote-card:nth-child(even) {
    background: #fff4e8;
}

.quote-mark {
    height: 40px;
    color: var(--blue);
    font-family: Georgia, serif;
    font-size: 3.4rem;
    line-height: 1;
}

.quote-card > p {
    flex-grow: 1;
    color: #494949;
    font-size: .94rem;
    font-weight: 500;
}

.quote-card > div:last-child {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.quote-card strong,
.quote-card span {
    display: block;
}

.quote-card strong {
    color: var(--navy);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .88rem;
}

.quote-card span {
    color: var(--muted);
    font-size: .76rem;
}

.pricing-section {
    padding: 0 0 84px;
}

.pricing-card {
    padding: 2.75rem;
    color: #d0d0d0;
    background:
        radial-gradient(circle at 5% 0%, rgba(242, 99, 34, .28), transparent 34%),
        linear-gradient(130deg, #151515, #292929);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.pricing-card h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.45rem);
}

.price-box {
    padding: 2rem;
    color: var(--ink);
    background: var(--white);
    border-radius: 18px;
}

.price-box > small,
.price-box > span {
    display: block;
    color: var(--muted);
}

.price-box > div {
    display: flex;
    align-items: flex-start;
    margin: .2rem 0 -.2rem;
    color: var(--navy);
}

.price-box sup {
    top: .65rem;
    margin-right: .25rem;
    color: var(--blue);
    font-size: 1.2rem;
    font-weight: 700;
}

.price-box strong {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 3.5rem;
    letter-spacing: -.06em;
    line-height: 1;
}

.price-box p {
    margin: 1.2rem 0;
    padding-top: 1rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: .82rem;
}

.faq-section {
    background: var(--surface);
}

.text-link {
    display: inline-flex;
    gap: .45rem;
    color: var(--accent-text);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--line);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: var(--blue);
}

.accordion-button {
    padding: 1.5rem 0;
    color: var(--navy);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.accordion-body {
    padding: 0 2rem 1.5rem 0;
    color: var(--muted);
    font-size: .92rem;
}

.demo-section {
    padding: 84px 0;
    background: var(--white);
}

.demo-shell {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(30, 20, 14, .14);
}

.demo-copy {
    padding: 2.75rem;
    color: #d1d1d1;
    background:
        radial-gradient(circle at 15% 10%, rgba(242, 99, 34, .24), transparent 35%),
        var(--navy);
}

.demo-copy h2 {
    color: var(--white);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.demo-copy ul {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.demo-copy li {
    margin: .75rem 0;
    font-size: .9rem;
}

.demo-copy li i {
    display: inline-grid;
    width: 22px;
    height: 22px;
    margin-right: .55rem;
    color: var(--navy);
    background: var(--lime);
    border-radius: 50%;
    font-size: .72rem;
    font-style: normal;
    place-items: center;
}

.contact-mini {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-mini small,
.contact-mini a {
    display: block;
}

.contact-mini small {
    margin-bottom: .4rem;
    color: #aaa;
}

.contact-mini a {
    color: var(--white);
    font-weight: 600;
}

.demo-form-wrap {
    height: 100%;
    padding: 2.75rem;
    background: #faf8f5;
}

.form-heading {
    margin-bottom: 1.7rem;
}

.form-heading small {
    color: var(--accent-text);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.form-heading h3 {
    margin-top: .35rem;
    color: var(--navy);
    font-size: 1.7rem;
    font-weight: 800;
}

.form-label {
    margin-bottom: .35rem;
    color: #484848;
    font-size: .78rem;
    font-weight: 700;
}

.form-label span {
    color: #8a8a8a;
    font-weight: 400;
}

.form-control {
    min-height: 49px;
    padding: .7rem .85rem;
    border-color: #ddd7d2;
    border-radius: 9px;
    font-size: .9rem;
}

textarea.form-control {
    min-height: 94px;
}

.form-control:focus,
.form-check-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 .2rem rgba(242, 99, 34, .11);
}

.form-check-label {
    color: var(--muted);
    font-size: .76rem;
}

.form-check-label a {
    color: var(--accent-text);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-alert {
    display: none;
    margin-bottom: 1rem;
    padding: .7rem .85rem;
    border-radius: 8px;
    font-size: .82rem;
}

.form-alert.is-success,
.form-alert.is-error {
    display: block;
}

.form-alert.is-success {
    color: #24581c;
    background: #e9f6e3;
}

.form-alert.is-error {
    color: #8d2b28;
    background: #fdebea;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    padding: 60px 0 26px;
    color: #aaa;
    background: #101010;
}

.footer-ff-logo {
    max-width: 190px;
    height: auto;
    margin-bottom: 1.25rem;
    padding: .35rem .5rem;
    background: var(--white);
    border-radius: 8px;
}

.site-footer p {
    max-width: 390px;
    font-size: .88rem;
}

.footer-cta {
    color: var(--cyan);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer .col-lg-2 > a,
.site-footer .col-lg-3 > a {
    display: block;
    margin: .45rem 0;
    color: #aaa;
    font-size: .83rem;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer address {
    font-size: .82rem;
    font-style: normal;
}

.lyb-logo {
    width: 145px;
    height: auto;
    opacity: .8;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.35rem;
    color: #858585;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .74rem;
}

.legal-header {
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
}

.legal-back-link {
    color: var(--ink);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .84rem;
    font-weight: 700;
}

.legal-back-link:hover,
.legal-back-link:focus {
    color: var(--blue);
}

.legal-main {
    background: #fffdfb;
}

.legal-hero {
    padding: 64px 0 56px;
    background:
        radial-gradient(circle at 88% 10%, rgba(247, 183, 51, .2), transparent 27%),
        linear-gradient(120deg, #fff 0%, #fff8f2 100%);
    border-bottom: 1px solid var(--line);
}

.legal-kicker {
    margin-bottom: .9rem;
    color: var(--accent-text);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.legal-hero h1 {
    max-width: 900px;
    margin-bottom: 1rem;
    color: var(--ink);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1;
}

.legal-intro {
    max-width: 760px;
    margin-bottom: 1.25rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.legal-updated {
    margin: 0;
    color: #777;
    font-size: .82rem;
    font-weight: 500;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(210px, 280px) minmax(0, 760px);
    gap: clamp(3rem, 8vw, 7rem);
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 76px;
}

.legal-summary {
    align-self: start;
    position: sticky;
    top: 28px;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid #f1ded0;
    border-radius: 16px;
}

.legal-summary strong {
    display: block;
    margin-bottom: .55rem;
    color: var(--ink);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .9rem;
}

.legal-summary p {
    margin-bottom: .8rem;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.55;
}

.legal-summary a,
.legal-content a {
    color: var(--accent-text);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(185, 67, 18, .3);
    text-underline-offset: 3px;
}

.legal-summary a {
    font-size: .82rem;
    overflow-wrap: anywhere;
}

.legal-content section + section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin-bottom: 1rem;
    color: var(--ink);
    font-size: clamp(1.35rem, 2.3vw, 1.8rem);
    letter-spacing: -.03em;
    line-height: 1.25;
}

.legal-content p,
.legal-content li,
.legal-content address {
    color: #4f4f4f;
    font-size: .98rem;
    line-height: 1.8;
}

.legal-content address {
    padding-left: 1rem;
    border-left: 3px solid var(--cyan);
    font-style: normal;
}

.legal-content ul {
    padding-left: 1.25rem;
}

.legal-content li + li {
    margin-top: .45rem;
}

.legal-footer {
    padding: 28px 0;
    color: #aaa;
    background: #101010;
    font-size: .78rem;
}

.legal-footer a {
    color: #d7d7d7;
}

.legal-footer a:hover,
.legal-footer a:focus {
    color: var(--white);
}

.analytics-settings {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.analytics-settings:hover,
.analytics-settings:focus {
    color: var(--white);
}

.analytics-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1080;
    width: min(430px, calc(100vw - 32px));
    padding: 1.25rem;
    color: #e8e8e8;
    background: rgba(18, 18, 18, .98);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .35);
}

.analytics-consent[hidden] {
    display: none;
}

.analytics-consent strong {
    display: block;
    margin-bottom: .35rem;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .94rem;
}

.analytics-consent p {
    margin-bottom: 1rem;
    color: #bdbdbd;
    font-size: .82rem;
    line-height: 1.55;
}

.analytics-consent a {
    color: var(--cyan);
    font-weight: 700;
}

.analytics-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.analytics-consent .btn {
    padding: .55rem .9rem;
    font-size: .76rem;
}

.analytics-consent .btn-outline-light:hover {
    color: var(--ink);
}

@media (max-width: 767.98px) {
    .legal-header .navbar {
        min-height: 70px;
    }

    .legal-header .navbar-brand img {
        width: 155px;
    }

    .legal-back-link {
        font-size: .75rem;
    }

    .legal-hero {
        padding: 48px 0 44px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 36px;
        padding-bottom: 52px;
    }

    .legal-summary {
        position: static;
    }

    .legal-content section + section {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .analytics-consent {
        right: 16px;
        bottom: 16px;
    }
}

.error-page {
    min-height: 100vh;
    padding: 3rem 0;
    background: var(--surface);
}

@media (max-width: 1199.98px) {
    .hero {
        min-height: 820px;
    }

    .metric-card-top {
        left: -25px;
    }

    .metric-card-bottom {
        right: -10px;
        bottom: 135px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0 1.25rem;
        border-top: 1px solid var(--line);
    }

    .navbar .nav-link {
        padding: .7rem 0 !important;
    }

    .nav-cta {
        display: block;
        margin-top: .5rem;
        text-align: center;
    }

    .hero {
        min-height: 1260px;
        padding: 85px 0 260px;
        text-align: center;
    }

    .hero-copy,
    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero .eyebrow,
    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .hero-visual {
        max-width: 450px;
        min-height: 470px;
        margin: 0 auto;
    }

    .metric-card-bottom {
        bottom: 75px;
    }

    .dashboard-float {
        bottom: -500px;
    }

    .proof-strip {
        padding-top: 72px;
    }

    .proof-item:nth-child(2) {
        border-right: 0;
    }

    .proof-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .process-line {
        gap: 2rem;
    }

    .pricing-card,
    .demo-copy,
    .demo-form-wrap {
        padding: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .top-note {
        font-size: .68rem;
    }

    .navbar {
        min-height: 68px;
    }

    .navbar-brand img {
        width: 162px;
    }

    .section-space,
    .demo-section {
        padding: 62px 0;
    }

    .hero {
        min-height: 1130px;
        padding: 70px 0 220px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
    }

    .hero-actions {
        display: grid !important;
    }

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

    .hero-visual {
        min-height: 410px;
    }

    .hero-person-wrap {
        right: 50%;
        width: 240px;
        height: 410px;
        transform: translateX(50%);
    }

    .metric-card {
        min-width: 185px;
        padding: .7rem;
    }

    .metric-card-top {
        top: 65px;
        left: 0;
    }

    .metric-card-bottom {
        right: 0;
        bottom: 45px;
    }

    .dashboard-float {
        right: 18px;
        bottom: -400px;
        left: 18px;
    }

    .proof-strip {
        padding-top: 56px;
    }

    .problem-card {
        padding: 1.75rem;
    }

    .process-line {
        display: block;
        margin-top: 2.5rem;
    }

    .process-line::before {
        display: none;
    }

    .process-line article + article {
        margin-top: 2rem;
    }

    .pricing-section {
        padding-bottom: 62px;
    }

    .pricing-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .demo-shell {
        border-radius: 20px;
    }
}

@media (max-width: 479.98px) {
    .hero {
        min-height: 1090px;
    }

    .hero-points {
        display: grid;
        justify-content: start;
        max-width: 260px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .metric-card {
        min-width: 165px;
    }

    .metric-card strong {
        font-size: .72rem;
    }

    .metric-card small {
        font-size: .6rem;
    }

    .dashboard-float {
        bottom: -335px;
    }

    .proof-strip {
        padding-top: 48px;
    }

    .demo-copy,
    .demo-form-wrap {
        padding: 1.65rem;
    }
}

@media (min-width: 992px) {
    .hero {
        min-height: 0;
        padding-top: 64px;
        padding-bottom: 750px;
    }

    .dashboard-float {
        top: calc(100% + 56px);
        bottom: auto;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .hero {
        padding-bottom: 690px;
    }

    .dashboard-float {
        max-width: 1000px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
