:root {
    --navy: #05233f;
    --navy-2: #0b3556;
    --navy-3: #102f4b;
    --teal: #007d79;
    --teal-bright: #00a79d;
    --mint: #e4fbf7;
    --mint-2: #f1fffc;
    --sky: #edf6ff;
    --amber: #f7b84b;
    --ink: #15202b;
    --muted: #5b6774;
    --line: #dce6ee;
    --line-dark: rgba(255, 255, 255, 0.13);
    --paper: #ffffff;
    --soft: #f5f8fb;
    --shadow-sm: 0 10px 30px rgba(5, 35, 63, 0.08);
    --shadow: 0 24px 70px rgba(5, 35, 63, 0.14);
    --shadow-strong: 0 35px 90px rgba(5, 35, 63, 0.25);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 78px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.menu-open {
    overflow: hidden;
}

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

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

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

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

button {
    border: 0;
}

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

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

p {
    color: var(--muted);
}

::selection {
    background: var(--mint);
    color: var(--navy);
}

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

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 20px;
    z-index: 200;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--paper);
    color: var(--navy);
    box-shadow: var(--shadow);
    font-weight: 800;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 150;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--teal-bright));
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: center;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.brand:focus-visible,
.site-footer a:focus-visible,
.menu-toggle:focus-visible,
.faq-item summary:focus-visible {
    outline: 3px solid rgba(0, 167, 157, 0.35);
    outline-offset: 4px;
}

.button-primary {
    background: var(--teal);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 125, 121, 0.22);
}

.button-primary:hover {
    background: #006e6a;
    box-shadow: 0 16px 34px rgba(0, 125, 121, 0.3);
}

.button-secondary {
    border-color: rgba(0, 125, 121, 0.28);
    background: var(--paper);
    color: var(--teal);
}

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

.button-light {
    background: #ffffff;
    color: var(--navy);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.button-light:hover {
    background: var(--mint-2);
}

.button-ghost {
    border-color: var(--line);
    background: transparent;
    color: var(--navy);
    box-shadow: none;
}

.button-sm {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.88rem;
}

.button-lg {
    min-height: 56px;
    padding: 16px 24px;
    font-size: 1rem;
}

.button-block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 800;
    transition: gap 0.2s ease;
}

.text-link:hover {
    gap: 12px;
}

.text-link-dark {
    color: var(--navy);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(220, 230, 238, 0.88);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(5, 35, 63, 0.06);
}

.header-inner {
    display: grid;
    height: 100%;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand img {
    width: 27px;
    height: 32px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.primary-nav a {
    position: relative;
    color: #3e5164;
    font-size: 0.9rem;
    font-weight: 700;
}

.primary-nav a::after {
    position: absolute;
    right: 100%;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--teal-bright);
    content: "";
    transition: right 0.2s ease;
}

.primary-nav a:hover::after {
    right: 0;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    cursor: pointer;
}

.menu-toggle > span[aria-hidden] {
    position: absolute;
    width: 19px;
    height: 2px;
    border-radius: 5px;
    background: var(--navy);
    transition: transform 0.2s ease;
}

.menu-toggle > span[aria-hidden]:nth-of-type(2) {
    transform: translateY(-4px);
}

.menu-toggle > span[aria-hidden]:nth-of-type(3) {
    transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] > span[aria-hidden]:nth-of-type(2) {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span[aria-hidden]:nth-of-type(3) {
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    padding: calc(var(--header-height) + 90px) 0 78px;
    background:
        radial-gradient(circle at 80% 14%, rgba(0, 167, 157, 0.1), transparent 29%),
        linear-gradient(180deg, #fbfefd 0%, #f4fafb 74%, #ffffff 100%);
}

.hero::before {
    position: absolute;
    inset: var(--header-height) 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 125, 121, 0.18), transparent);
    content: "";
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    top: 122px;
    right: -170px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(0, 167, 157, 0.12);
    background: rgba(228, 251, 247, 0.5);
}

.hero-orb-two {
    bottom: 70px;
    left: -190px;
    width: 380px;
    height: 380px;
    border: 80px solid rgba(237, 246, 255, 0.65);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.91fr) minmax(520px, 1.09fr);
    align-items: center;
    gap: 58px;
}

.eyebrow,
.section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--teal-bright);
}

.hero h1 {
    max-width: 710px;
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 4.7vw, 4.85rem);
    font-weight: 770;
    letter-spacing: -0.065em;
}

.hero h1 strong {
    display: block;
    color: var(--teal);
    font-weight: inherit;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: #4b6073;
    font-size: clamp(1.02rem, 1.3vw, 1.18rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 0;
    padding: 0;
    color: #4b6073;
    font-size: 0.88rem;
    font-weight: 700;
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-list span {
    display: inline-grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
    color: var(--teal);
    font-size: 0.72rem;
}

.hero-visual {
    position: relative;
    padding: 44px 0 36px;
}

.visual-glow {
    position: absolute;
    inset: 10% 10% 0;
    border-radius: 50%;
    background: rgba(0, 167, 157, 0.18);
    filter: blur(70px);
}

.product-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(5, 35, 63, 0.13);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-strong);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
    transform-origin: center left;
}

.window-bar {
    display: flex;
    height: 42px;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-bottom: 1px solid #e8eef3;
    background: #fbfcfd;
}

.window-bar > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c9d6df;
}

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

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

.window-bar > span:nth-child(3) {
    background: #4bcf8e;
}

.window-bar p {
    position: absolute;
    left: 50%;
    margin: 0;
    color: #8c9aa6;
    font-size: 0.69rem;
    font-weight: 700;
    transform: translateX(-50%);
}

.product-crop {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #f4f6f7;
}

.product-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% top;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 215px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(220, 230, 238, 0.8);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(5, 35, 63, 0.16);
    backdrop-filter: blur(12px);
}

.floating-card-top {
    top: 9px;
    right: -22px;
}

.floating-card-bottom {
    bottom: 0;
    left: -32px;
}

.floating-card p {
    margin: 0;
    line-height: 1.3;
}

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

.floating-card strong {
    color: var(--navy);
    font-size: 0.82rem;
}

.floating-card small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.68rem;
}

.mini-icon {
    display: grid;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    place-items: center;
    border-radius: 10px;
    background: var(--mint);
    color: var(--teal);
    font-weight: 900;
}

.mini-icon-alt {
    background: var(--sky);
    color: #246b9e;
}

.proof-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 84px;
    overflow: hidden;
    border: 1px solid rgba(220, 230, 238, 0.92);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.proof-strip > div {
    display: flex;
    min-height: 106px;
    flex-direction: column;
    justify-content: center;
    padding: 22px 28px;
    border-right: 1px solid var(--line);
}

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

.proof-strip strong {
    color: var(--navy);
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}

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

.section {
    padding: 112px 0;
}

.section-heading {
    max-width: 770px;
    margin-bottom: 50px;
}

.section-heading h2,
.feature-intro h2,
.faq-intro h2,
.value-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.feature-intro > p,
.faq-intro > p,
.value-copy > p {
    max-width: 690px;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-dark {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 167, 157, 0.2), transparent 28%),
        var(--navy);
}

.section-dark::after {
    position: absolute;
    right: -180px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.section-heading-light h2 {
    color: #ffffff;
}

.section-heading-light > p:last-child {
    color: #bfd1df;
}

.section-dark .section-kicker {
    color: #6bf0e5;
}

.pain-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pain-card {
    min-height: 280px;
    padding: 32px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.pain-card:hover {
    border-color: rgba(107, 240, 229, 0.3);
    background: rgba(255, 255, 255, 0.085);
    transform: translateY(-5px);
}

.card-number {
    display: inline-grid;
    width: 46px;
    height: 46px;
    margin-bottom: 48px;
    place-items: center;
    border: 1px solid rgba(107, 240, 229, 0.28);
    border-radius: 12px;
    color: #6bf0e5;
    font-size: 0.78rem;
    font-weight: 900;
}

.pain-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.35rem;
}

.pain-card p {
    margin-bottom: 0;
    color: #bfd1df;
    font-size: 0.93rem;
}

.section-benefits {
    background: #ffffff;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(5, 35, 63, 0.035);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.benefit-card-2 {
    background: linear-gradient(150deg, #f7fcff 0%, #edf7ff 100%);
}

.benefit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 54px;
}

.benefit-index {
    color: #9aa8b4;
    font-size: 0.78rem;
    font-weight: 900;
}

.benefit-tag {
    padding: 7px 11px;
    border-radius: 99px;
    background: var(--mint);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.benefit-card h3 {
    max-width: 440px;
    margin-bottom: 13px;
    font-size: 1.55rem;
}

.benefit-card p {
    max-width: 470px;
    margin-bottom: 0;
}

.benefit-line {
    position: absolute;
    right: 34px;
    bottom: 32px;
    width: 44px;
    height: 2px;
    background: var(--teal-bright);
    transition: width 0.25s ease;
}

.benefit-card:hover .benefit-line {
    width: 72px;
}

.section-care {
    overflow: hidden;
    background: var(--navy);
}

.care-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 88px;
}

.care-intro {
    position: sticky;
    top: calc(var(--header-height) + 42px);
}

.section-care .section-kicker {
    color: #6bf0e5;
}

.care-intro h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.care-intro > p:not(.section-kicker) {
    max-width: 560px;
    color: #bfd1df;
    font-size: 1.02rem;
}

.care-note {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
    margin-top: 34px;
    padding: 20px 0 20px 20px;
    border-left: 3px solid var(--teal-bright);
}

.care-note > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(107, 240, 229, 0.13);
    color: #6bf0e5;
    font-weight: 900;
}

.care-note strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 0.92rem;
}

.care-note p {
    margin: 0;
    color: #9fb7c8;
    font-size: 0.86rem;
    line-height: 1.55;
}

.care-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-dark);
    list-style: none;
}

.care-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 22px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line-dark);
    transition: transform 0.2s ease;
}

.care-item:hover {
    transform: translateX(5px);
}

.care-index {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(107, 240, 229, 0.3);
    border-radius: 8px;
    color: #6bf0e5;
    font-size: 0.76rem;
    font-weight: 900;
}

.care-item h3 {
    margin: 2px 0 9px;
    color: #ffffff;
    font-size: 1.35rem;
}

.care-item p {
    max-width: 590px;
    margin: 0;
    color: #bfd1df;
    font-size: 0.94rem;
}
.section-features {
    overflow: hidden;
    background: var(--soft);
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: 78px;
}

.feature-intro {
    position: sticky;
    top: calc(var(--header-height) + 42px);
}

.feature-intro > p {
    margin-bottom: 28px;
}

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

.feature-card {
    display: flex;
    min-height: 174px;
    align-items: flex-start;
    gap: 17px;
    padding: 26px;
    border: 1px solid rgba(220, 230, 238, 0.92);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(5, 35, 63, 0.035);
}

.feature-symbol {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--mint);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 900;
}

.feature-card h3 {
    margin: 5px 0 9px;
    font-size: 1.08rem;
    letter-spacing: -0.025em;
}

.feature-card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
}

.section-workflow {
    background: #ffffff;
}

.workflow-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-list::before {
    position: absolute;
    top: 27px;
    right: 14%;
    left: 14%;
    height: 1px;
    background: linear-gradient(90deg, var(--teal-bright), #b9d8e7, var(--teal-bright));
    content: "";
}

.workflow-item {
    position: relative;
    z-index: 2;
}

.workflow-item > span {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    place-items: center;
    border: 6px solid #ffffff;
    border-radius: 50%;
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 0 0 1px var(--line), var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 900;
}

.workflow-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.workflow-item p {
    max-width: 310px;
    margin-bottom: 0;
}

.section-value {
    background: linear-gradient(180deg, #f8fbfd 0%, #eff8f7 100%);
}

.value-card {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 70px;
    padding: 64px;
    border: 1px solid rgba(0, 125, 121, 0.14);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.value-copy ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin: 28px 0 0;
    padding: 0;
    color: #3f5365;
    font-size: 0.9rem;
    font-weight: 700;
    list-style: none;
}

.value-copy li {
    display: flex;
    gap: 9px;
}

.value-copy li span {
    color: var(--teal);
}

.price-panel {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #ffffff;
    box-shadow: var(--shadow-strong);
}

.price-panel > p {
    margin-bottom: 6px;
    color: #9feee7;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.price {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    margin-bottom: 26px;
}

.price span {
    margin: 12px 6px 0 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
}

.price strong {
    color: #ffffff;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -0.08em;
}

.price small {
    grid-column: 1 / -1;
    color: #bcd0de;
    font-size: 0.8rem;
}

.price-panel > small {
    display: block;
    margin-top: 13px;
    color: #bcd0de;
    font-size: 0.72rem;
    text-align: center;
}

.section-faq {
    background: #ffffff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 80px;
}

.faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 42px);
}

.faq-intro > p {
    margin-bottom: 24px;
}

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

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    color: var(--navy);
    font-size: 1.03rem;
    font-weight: 800;
    list-style: none;
}

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

.faq-item summary i {
    position: relative;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--teal);
    content: "";
    transform: translate(-50%, -50%);
}

.faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease;
}

.faq-item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    max-width: 690px;
    padding: 0 46px 26px 0;
}

.faq-answer p {
    margin: 0;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 12% 120%, rgba(0, 167, 157, 0.6), transparent 38%),
        linear-gradient(125deg, var(--navy) 0%, #0c3a5c 100%);
}

.final-cta::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 26px 26px;
    content: "";
    mask-image: linear-gradient(90deg, #000 0%, transparent 60%);
}

.final-orb {
    position: absolute;
    top: -230px;
    right: -120px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
}

.final-cta .section-kicker {
    justify-content: center;
    color: #6bf0e5;
}

.final-cta h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(2.25rem, 4.5vw, 4rem);
    letter-spacing: -0.06em;
}

.final-cta p {
    max-width: 670px;
    margin: 0 auto 28px;
    color: #c9dce8;
    font-size: 1.08rem;
}

.final-cta small {
    display: block;
    margin-top: 16px;
    color: #abc3d2;
}

.site-footer {
    padding: 72px 0 22px;
    background: #031929;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 0.85fr 0.85fr 1fr;
    gap: 56px;
    padding-bottom: 58px;
}

.brand-light {
    color: #ffffff;
}

.footer-brand p {
    max-width: 350px;
    margin: 20px 0 0;
    color: #9cb4c4;
    font-size: 0.9rem;
}

.footer-grid nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid strong {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 0.86rem;
}

.footer-grid nav a,
.footer-contact a,
.footer-contact span {
    color: #9cb4c4;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
    color: #6bf0e5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7691a3;
    font-size: 0.74rem;
}

.mobile-cta {
    display: none;
}

.consent-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 180;
    display: none;
    width: min(calc(100% - 44px), 640px);
    align-items: center;
    gap: 24px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(16px);
}

.consent-banner.is-visible {
    display: flex;
}

.consent-banner > div:first-child {
    flex: 1;
}

.consent-banner strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 0.9rem;
}

.consent-banner p {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.5;
}

.consent-actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 8px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

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

.js .reveal-delay {
    transition-delay: 0.12s;
}

@media (max-width: 1080px) {
    :root {
        --container: 960px;
    }

    .header-inner {
        gap: 22px;
    }

    .primary-nav {
        gap: 18px;
    }

    .primary-nav a {
        font-size: 0.84rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
        gap: 34px;
    }

    .product-crop {
        height: 390px;
    }

    .floating-card-top {
        right: -8px;
    }

    .floating-card-bottom {
        left: -12px;
    }

    .feature-layout,
    .faq-layout {
        gap: 50px;
    }

    .value-card {
        gap: 46px;
        padding: 52px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 70px;
    }

    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .menu-toggle {
        display: flex;
        grid-column: 2;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - var(--header-height));
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

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

    .primary-nav a {
        padding: 17px 24px;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav a::after {
        display: none;
    }

    .header-cta {
        grid-column: 3;
    }

    .hero {
        padding-top: calc(var(--header-height) + 62px);
    }

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

    .hero-copy {
        max-width: 760px;
        text-align: center;
    }

    .eyebrow {
        justify-content: center;
    }

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

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

    .hero-visual {
        width: min(100%, 710px);
        margin-inline: auto;
    }

    .product-window {
        transform: none;
    }

    .proof-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 54px;
    }

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

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

    .section {
        padding: 88px 0;
    }

    .feature-layout,
    .faq-layout,
    .care-layout {
        grid-template-columns: 1fr;
    }

    .feature-intro,
    .faq-intro,
    .care-intro {
        position: static;
    }

    .care-layout {
        gap: 48px;
    }

    .feature-intro {
        max-width: 700px;
    }

    .value-card {
        grid-template-columns: 1fr 320px;
        padding: 42px;
    }

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

    .footer-contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 76px;
    }

    .header-cta {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        grid-column: 2;
    }

    .hero {
        min-height: auto;
        padding-bottom: 58px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.8rem);
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .trust-list {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: start;
        text-align: left;
    }

    .hero-visual {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding-top: 26px;
    }

    .hero-visual .visual-glow,
    .hero-visual .product-window {
        grid-column: 1 / -1;
    }

    .product-crop {
        height: 310px;
    }

    .floating-card {
        min-width: 192px;
        padding: 11px 13px;
    }

    .floating-card-top {
        top: 0;
        right: -4px;
    }

    .floating-card-bottom {
        bottom: 0;
        left: -4px;
    }

    .mini-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
    }

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

    .proof-strip > div {
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .care-item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 16px;
        padding: 26px 0;
    }

    .care-index {
        width: 42px;
        height: 42px;
    }

    .care-item h3 {
        font-size: 1.16rem;
    }

    .care-note {
        grid-template-columns: 34px 1fr;
        padding-left: 16px;
    }

    .pain-grid,
    .benefit-grid,
    .feature-grid,
    .workflow-list {
        grid-template-columns: 1fr;
    }

    .pain-card {
        min-height: auto;
    }

    .card-number,
    .benefit-top {
        margin-bottom: 32px;
    }

    .benefit-card {
        min-height: 255px;
    }

    .workflow-list {
        gap: 0;
    }

    .workflow-list::before {
        top: 28px;
        right: auto;
        bottom: 40px;
        left: 27px;
        width: 1px;
        height: auto;
    }

    .workflow-item {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 20px;
        padding-bottom: 36px;
    }

    .workflow-item > span {
        margin: 0;
    }

    .workflow-item h3 {
        margin-top: 3px;
    }

    .value-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 30px 24px;
    }

    .value-copy ul {
        grid-template-columns: 1fr;
    }

    .price-panel {
        padding: 26px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 26px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-cta {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 160;
        display: block;
        padding: 10px 14px;
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -10px 30px rgba(5, 35, 63, 0.08);
        backdrop-filter: blur(16px);
    }

    .mobile-cta .button {
        min-height: 52px;
    }

    .consent-banner {
        right: 12px;
        bottom: 86px;
        width: calc(100% - 24px);
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 18px;
    }

    .consent-actions {
        flex-direction: row;
    }

    .consent-actions .button {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand {
        font-size: 1.13rem;
    }

    .hero {
        padding-top: calc(var(--header-height) + 44px);
    }

    .hero h1 {
        font-size: clamp(2.18rem, 11vw, 3rem);
    }

    .hero-lead {
        font-size: 0.98rem;
    }

    .product-crop {
        height: 240px;
    }

    .window-bar {
        height: 36px;
    }

    .floating-card {
        position: relative;
        inset: auto;
        min-width: 0;
        width: auto;
        margin: 0;
        float: none;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
    }

    .floating-card small {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading h2,
    .feature-intro h2,
    .faq-intro h2,
    .care-intro h2,
    .value-copy h2 {
        font-size: 2rem;
    }

    .pain-card,
    .benefit-card,
    .feature-card {
        padding: 24px;
    }

    .feature-card {
        min-height: auto;
    }

    .faq-item summary {
        min-height: 78px;
        font-size: 0.96rem;
    }

    .faq-answer {
        padding-right: 0;
    }

    .final-cta h2 {
        font-size: 2.25rem;
    }

    .consent-actions {
        flex-direction: column-reverse;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .mobile-cta,
    .consent-banner,
    .scroll-progress {
        display: none !important;
    }

    .hero {
        padding-top: 40px;
    }

    .section,
    .final-cta {
        padding: 42px 0;
    }
}
