:root {
    --bg: #eef5fb;
    --bg-strong: #dfeaf6;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --text: #1f2937;
    --muted: #5f6b7a;
    --line: rgba(31, 41, 55, 0.1);
    --primary: #096fac;
    --primary-dark: #298fcc;
    --primary-soft: #d8ecf9;
    --accent: #0b4f79;
    --accent-soft: #c7def0;
    --ink: #102033;
    --shadow: 0 24px 70px rgba(9, 111, 172, 0.16);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(41, 143, 204, 0.18), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(9, 111, 172, 0.14), transparent 26%),
        linear-gradient(180deg, #f7fbfe 0%, var(--bg) 42%, #edf4fa 100%);
}

a {
    color: inherit;
}

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

code {
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.94em;
    background: rgba(16, 32, 51, 0.06);
    padding: 0.15rem 0.42rem;
    border-radius: 999px;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.page-shell {
    position: relative;
    overflow: clip;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.page-shell::before {
    top: 8rem;
    left: -5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(41, 143, 204, 0.16);
}

.page-shell::after {
    right: -7rem;
    top: 48rem;
    width: 22rem;
    height: 22rem;
    background: rgba(9, 111, 172, 0.12);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 1rem 0;
    backdrop-filter: blur(20px);
    background: rgba(239, 246, 252, 0.76);
    border-bottom: 1px solid rgba(9, 111, 172, 0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.brand strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    font-size: 0.95rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--primary);
    transform: translateY(-1px);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-cta,
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 12px 28px rgba(9, 111, 172, 0.24);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    border: 1px solid rgba(9, 111, 172, 0.1);
}

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

.nav-toggle {
    display: none;
    justify-self: end;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(16, 32, 51, 0.08);
}

.nav-toggle span {
    position: absolute;
    width: 1rem;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:first-child {
    transform: translateY(-4px);
}

.nav-toggle span:last-child {
    transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
}

.hero {
    /* padding: 4rem 0 3rem; */
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    margin: 0 0 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.77rem;
    font-weight: 800;
    color: var(--primary);
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    color: var(--ink);
    line-height: 1.05;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.9rem);
    max-width: 12ch;
}

.hero-text,
.section-heading p,
.story-card p,
.module-card p,
.benefit-item p,
.transition-copy p,
.transition-steps p,
.faq-item p,
.trust-grid span,
.cta-panel p,
.site-footer p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.72;
}

.hero-text {
    max-width: 42rem;
    margin: 1.4rem 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0 1.4rem;
}

.hero-points {
    display: grid;
    gap: 0.72rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--ink);
    font-weight: 600;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 0 0 0.32rem rgba(9, 111, 172, 0.12);
}

.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.dashboard-window {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.window-bar {
    display: flex;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--line);
}

.window-bar span {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: rgba(16, 32, 51, 0.18);
}

.window-body {
    display: grid;
    grid-template-columns: 11rem 1fr;
    min-height: 28rem;
}

.mock-sidebar {
    padding: 1.5rem 1.1rem;
    background: linear-gradient(180deg, #0a6398, #298fcc);
    color: #fff;
}

.mock-brand {
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mock-nav {
    display: grid;
    gap: 0.7rem;
}

.mock-nav span {
    display: block;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.mock-nav .active {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.mock-main {
    padding: 1.4rem;
    background:
        linear-gradient(180deg, rgba(248, 251, 254, 0.9), rgba(255, 255, 255, 0.86)),
        linear-gradient(135deg, rgba(9, 111, 172, 0.07), rgba(41, 143, 204, 0.07));
}

.mock-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mock-overview article,
.mock-panel,
.floating-card,
.story-card,
.module-card,
.benefit-item,
.transition-steps article,
.faq-item,
.cta-panel,
.trust-grid > div {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 14px 32px rgba(16, 32, 51, 0.08);
    backdrop-filter: blur(14px);
}

.mock-overview article {
    padding: 1rem;
    border-radius: 18px;
}

.mock-overview strong {
    display: block;
    font-size: 1.8rem;
    font-family: "Sora", sans-serif;
    color: var(--primary);
}

.mock-overview span {
    color: var(--muted);
}

.mock-panels {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1rem;
    margin-top: 1rem;
}

.mock-panel {
    border-radius: 22px;
    padding: 1.2rem;
}

.mock-panel.accent {
    background: linear-gradient(180deg, rgba(9, 111, 172, 0.94), rgba(41, 143, 204, 0.88));
    color: #fff;
}

.mock-panel.accent p,
.mock-panel.accent .panel-title,
.mock-panel.accent .vote-stat span {
    color: rgba(255, 255, 255, 0.88);
}

.panel-title {
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--ink);
}

.timeline-item + .timeline-item {
    margin-top: 0.85rem;
}

.timeline-item b,
.vote-stat strong {
    display: block;
    font-size: 1rem;
}

.timeline-item small,
.vote-stat span {
    color: var(--muted);
}

.vote-stat {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 1rem;
}

.vote-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.vote-bar i {
    display: block;
    height: 0.65rem;
    border-radius: 999px;
}

.vote-bar .yes {
    width: 58%;
    background: #b8e2fb;
}

.vote-bar .no {
    width: 18%;
    background: #72bce7;
}

.vote-bar .abstain {
    width: 24%;
    background: rgba(255, 255, 255, 0.45);
}

.floating-card {
    position: absolute;
    min-width: 13.5rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
}

.floating-card span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
}

.floating-card strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 1rem;
    color: var(--ink);
}

.card-a {
    left: -1rem;
    bottom: 2.4rem;
}

.card-b {
    right: -1rem;
    top: 2.6rem;
}

.trust-strip {
    padding: 1.3rem 0 3.6rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.trust-grid > div {
    border-radius: 20px;
    padding: 1.3rem 1.2rem;
}

.trust-grid strong,
.section-heading h2,
.story-card h3,
.module-card h3,
.benefit-item h3,
.transition-steps strong,
.faq-item summary {
    color: var(--ink);
}

.trust-grid strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.section {
    padding: 3.6rem 0;
}

.section-heading {
    max-width: 42rem;
    /* margin-bottom: 2.2rem; */
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.story-grid,
.benefits-grid,
.pricing-grid,
.transition-grid {
    display: grid;
    gap: 1rem;
}

.story-cards,
.transition-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.story-card,
.module-card,
.benefit-item,
.transition-steps article,
.faq-item,
.cta-panel {
    border-radius: var(--radius-lg);
}

.story-card,
.transition-steps article {
    padding: 1.5rem;
}

.story-card h3,
.module-card h3,
.benefit-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.12rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.module-card {
    padding: 1.5rem;
}

.benefit-list {
    display: grid;
    gap: 1rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pricing-cards-single {
    grid-template-columns: minmax(0, 52rem);
}

.pricing-card {
    padding: 1.7rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 14px 32px rgba(16, 32, 51, 0.08);
    backdrop-filter: blur(14px);
}

.pricing-card-primary {
    background: linear-gradient(160deg, rgba(9, 111, 172, 0.94), rgba(41, 143, 204, 0.88));
    color: #fff;
}

.pricing-label {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(9, 111, 172, 0.1);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-card-primary .pricing-label {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.pricing-card strong {
    display: block;
    margin-top: 1rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    line-height: 1.1;
}

.pricing-card p {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}

.pricing-card-primary p {
    color: rgba(255, 255, 255, 0.88);
}

.demo-cta {
    margin-top: 0;
    flex: 0 0 auto;
    min-height: 3.2rem;
    width: fit-content;
}

.demo-request-form {
    margin-top: 1.4rem;
}

.demo-request-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-weight: 700;
    color: var(--ink);
}

.demo-request-row {
    display: flex;
    gap: 0.9rem;
    align-items: stretch;
}

.demo-request-input {
    flex: 1 1 auto;
    min-height: 3.2rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(9, 111, 172, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font: inherit;
    box-shadow: inset 0 1px 2px rgba(16, 32, 51, 0.04);
}

.demo-request-input:focus {
    outline: 2px solid rgba(9, 111, 172, 0.18);
    border-color: rgba(9, 111, 172, 0.38);
}

.demo-request-note {
    font-size: 0.94rem;
}

.pricing-card .demo-request-consent {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.demo-request-consent a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.demo-request-consent a:hover,
.demo-request-consent a:focus-visible {
    text-decoration: underline;
}

.demo-request-feedback {
    display: none;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.demo-request-feedback:not(:empty) {
    display: block;
    margin-top: 0.85rem;
}

.demo-request-feedback.is-success {
    color: #157347;
}

.demo-request-feedback.is-error {
    color: #b42318;
}

.demo-request-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.benefit-item {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.4rem 1.4rem 0.2rem 1.4rem;
}

.benefit-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-weight: 700;
}

.transition-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.transition-steps article {
    background: rgba(9, 111, 172, 0.08);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.3rem 1.4rem;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    padding-right: 2rem;
    position: relative;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -0.15rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0.9rem 0 0;
}

.cta-section {
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
}

.cta-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 14ch;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.site-footer {
    padding: 0 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
    gap: 1.5rem 2rem;
    border-top: 1px solid rgba(9, 111, 172, 0.1);
    padding-top: 1.5rem;
    align-items: center;
}

.footer-inner p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-copy {
    display: grid;
    gap: 0.9rem;
}

.footer-contact {
    display: grid;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-contact a {
    color: var(--primary);
    text-decoration: none;
}

.footer-links a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
    text-decoration: underline;
}

.footer-logo {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #153955 0%, #0f2940 100%);
    box-shadow: 0 18px 40px rgba(16, 32, 51, 0.14);
}

.footer-logo img {
    width: min(100%, 15rem);
    height: auto;
}

.footer-meta {
    grid-column: 1 / -1;
    padding-top: 0.4rem;
}

.legal-page {
    padding-bottom: 2rem;
}

.legal-hero {
    padding: 4rem 0 1rem;
}

.legal-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
}

.legal-hero-inner {
    max-width: 52rem;
}

.legal-back {
    justify-self: end;
}

.legal-hero h1 {
    margin: 0;
    font-family: "Sora", sans-serif;
    color: var(--ink);
    font-size: clamp(2.2rem, 5vw, 4.1rem);
    line-height: 1.05;
}

.legal-hero p {
    max-width: 44rem;
    margin: 1.1rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.legal-hero span {
    display: inline-flex;
    margin-top: 1.2rem;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    background: rgba(9, 111, 172, 0.1);
    color: var(--primary);
    font-weight: 800;
}

.legal-section {
    padding-top: 1.5rem;
}

.legal-card {
    padding: clamp(1.35rem, 4vw, 2.6rem);
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 14px 32px rgba(16, 32, 51, 0.08);
    backdrop-filter: blur(14px);
}

.legal-card h2 {
    margin: 2rem 0 0.75rem;
    font-family: "Sora", sans-serif;
    color: var(--ink);
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    line-height: 1.18;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}

.legal-card p {
    margin: 0.85rem 0 0;
}

.legal-card ul {
    display: grid;
    gap: 0.55rem;
    margin: 0.9rem 0 0;
    padding-left: 1.25rem;
}

.legal-card a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.legal-card a:hover,
.legal-card a:focus-visible {
    text-decoration: underline;
}

.legal-table-wrap {
    width: 100%;
    margin-top: 1rem;
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(9, 111, 172, 0.12);
    background: rgba(255, 255, 255, 0.72);
}

.legal-table {
    width: 100%;
    min-width: 44rem;
    border-collapse: collapse;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(9, 111, 172, 0.1);
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: rgba(9, 111, 172, 0.08);
    color: var(--ink);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.legal-table td {
    color: var(--muted);
    line-height: 1.62;
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

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

.reveal-delay {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

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

@media (max-width: 1080px) {
    .hero-grid,
    .transition-grid,
    .story-cards,
    .modules-grid,
    .trust-grid,
    .pricing-cards,
    .mock-panels {
        grid-template-columns: 1fr;
    }

    .window-body {
        grid-template-columns: 1fr;
    }

    .mock-sidebar {
        display: none;
    }

    .floating-card {
        position: static;
        margin-top: 1rem;
    }

    .hero h1 {
        max-width: none;
    }

    .cta-panel {
        align-items: start;
        flex-direction: column;
    }

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

    .footer-logo {
        justify-self: start;
    }
}

@media (max-width: 860px) {
    .site-header {
        padding: 0.8rem 0;
    }

    .header-inner {
        grid-template-columns: auto auto;
        grid-template-areas:
            "brand toggle"
            "nav nav"
            "cta cta";
    }

    .brand {
        grid-area: brand;
    }

    .nav-toggle {
        grid-area: toggle;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .site-nav {
        grid-area: nav;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1rem 1.1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(9, 111, 172, 0.12);
    }

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

    .header-cta {
        grid-area: cta;
        justify-self: start;
    }

    .story-cards,
    .modules-grid,
    .transition-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
         padding-top: 1rem; 
    }

    .hero-actions,
    .cta-actions,
    .demo-request-row {
        flex-direction: column;
    }

    .header-cta,
    .button {
        width: 100%;
    }

    .demo-cta {
        margin-top: 0;
    }

    .legal-hero-layout {
        grid-template-columns: 1fr;
    }

    .legal-back {
        justify-self: start;
        width: auto;
    }

    .mock-overview {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        padding: 1.4rem;
    }

    .section {
        padding: 2.5rem 0;
    }
}
