:root {
    --color-bg: #f7fafc;
    --color-surface: #ffffff;
    --color-surface-soft: #edf3f8;
    --color-text: #0d1826;
    --color-muted: #536273;
    --color-border: #d9e4ee;
    --color-blue: #0858a9;
    --color-blue-strong: #033f78;
    --color-green: #1f8f60;
    --color-green-soft: #e8f6ef;
    --color-amber: #b7791f;
    --color-amber-soft: #fff4df;
    --color-slate: #2b4056;
    --shadow-soft: 0 24px 70px rgba(13, 24, 38, 0.11);
    --shadow-subtle: 0 12px 30px rgba(13, 24, 38, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --content-width: 1240px;
    --header-height: 78px;
    color-scheme: light;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

img,
svg {
    display: block;
}

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

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

/* Skjult hjælpetekst bruges til tilgængelighed uden at påvirke layoutet. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 30;
    transform: translateY(-140%);
    border-radius: var(--radius-sm);
    background: var(--color-text);
    color: #ffffff;
    padding: 10px 14px;
    font-weight: 700;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px max(22px, calc((100% - var(--content-width)) / 2));
    border-bottom: 1px solid rgba(217, 228, 238, 0.88);
    background: rgba(247, 250, 252, 0.94);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand img {
    width: 168px;
    max-width: 42vw;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    border-radius: var(--radius-sm);
    padding: 10px 10px;
    color: var(--color-muted);
    font-size: 0.93rem;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--color-text);
    background: var(--color-surface-soft);
    outline: none;
}

.site-nav .nav-cta {
    margin-left: 4px;
    background: var(--color-text);
    color: #ffffff;
    box-shadow: var(--shadow-subtle);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
    background: var(--color-blue-strong);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-text);
    padding: 11px;
    cursor: pointer;
}

.nav-toggle__line {
    display: block;
    height: 2px;
    width: 100%;
    margin: 5px 0;
    border-radius: 999px;
    background: currentColor;
}

.section {
    padding: 92px 22px;
}

.section--tight {
    padding-top: 28px;
    padding-bottom: 28px;
}

.section--panel {
    background:
        linear-gradient(180deg, rgba(237, 243, 248, 0.65), rgba(255, 255, 255, 0.85));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Enkel brosektion mellem problem, målgruppe og den konkrete arbejdsgang. */
.section--simple {
    padding-top: 34px;
    padding-bottom: 74px;
}

.section-inner {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
}

.section[id] {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 48px;
    background:
        linear-gradient(90deg, rgba(247, 250, 252, 1) 0%, rgba(247, 250, 252, 0.94) 42%, rgba(247, 250, 252, 0.68) 100%),
        repeating-linear-gradient(90deg, rgba(8, 88, 169, 0.08) 0 1px, transparent 1px 96px),
        linear-gradient(135deg, rgba(8, 88, 169, 0.09), rgba(31, 143, 96, 0.08));
}

/* Diskret produktionslinje uden billeddata, så heroen ikke viser opdigtede skærmbilleder. */
.hero::before {
    content: "";
    position: absolute;
    right: -70px;
    bottom: 36px;
    width: 52%;
    height: 42%;
    opacity: 0.35;
    background:
        linear-gradient(var(--color-border), var(--color-border)) 0 58% / 100% 2px no-repeat,
        linear-gradient(var(--color-border), var(--color-border)) 0 72% / 90% 2px no-repeat,
        linear-gradient(90deg, var(--color-border), var(--color-border)) 14% 42% / 2px 54% no-repeat,
        linear-gradient(90deg, var(--color-border), var(--color-border)) 36% 38% / 2px 58% no-repeat,
        linear-gradient(90deg, var(--color-border), var(--color-border)) 62% 34% / 2px 62% no-repeat;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(520px, 1.02fr);
    align-items: center;
    gap: 48px;
}

.hero__copy {
    max-width: 660px;
}

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

h1 {
    margin-bottom: 22px;
    font-size: 3.78rem;
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: 2.45rem;
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.18;
    letter-spacing: 0;
}

.hero__lead,
.section-heading p,
.pricing-copy p,
.contact-band p {
    color: var(--color-muted);
    font-size: 1.08rem;
}

.hero__lead {
    max-width: 580px;
    margin-bottom: 30px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    font-weight: 800;
    line-height: 1.1;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button svg,
.text-link svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.button:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.button--primary {
    background: var(--color-blue);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(8, 88, 169, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--color-blue-strong);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.86);
    border-color: #a8bdd1;
    color: var(--color-text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
    background: #ffffff;
    border-color: var(--color-blue);
    box-shadow: var(--shadow-subtle);
}

/* Demo-login vises i heroen, så besøgende kan åbne demoen uden at lede længere nede på siden. */
.hero-demo-login {
    display: inline-grid;
    max-width: 100%;
    gap: 8px;
    margin-bottom: 26px;
    border: 1px solid #c8d6e6;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.86);
    padding: 12px 14px;
    box-shadow: var(--shadow-subtle);
}

.hero-demo-login > span {
    color: var(--color-blue);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-demo-login dl {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    min-width: 0;
    margin: 0;
}

.hero-demo-login div {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 6px;
}

.hero-demo-login dt {
    color: var(--color-muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.hero-demo-login dd {
    min-width: 0;
    margin: 0;
    color: var(--color-text);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.hero-points {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-slate);
    font-weight: 700;
}

.hero-points li {
    position: relative;
    padding-left: 26px;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--color-green);
    box-shadow: 0 0 0 5px var(--color-green-soft);
}

.hero__visual {
    min-width: 0;
}

.screen-frame {
    position: relative;
    overflow: hidden;
    min-height: 0;
    margin: 0;
    border: 1px solid #c8d6e6;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, #ffffff, #f8fbfd);
    box-shadow: var(--shadow-soft);
}

.screen-frame--hero {
    aspect-ratio: 16 / 9;
}

.screen-frame__chrome {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.86);
}

.screen-frame__chrome span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #b8c5d2;
}

.screen-frame__image {
    position: absolute;
    inset: 42px 0 0;
    width: 100%;
    height: calc(100% - 42px);
    object-fit: contain;
    opacity: 1;
}

.screen-frame.is-missing .screen-frame__image {
    display: none;
}

.screen-frame--hero .screen-frame__image,
.screen-frame--showcase .screen-frame__image {
    background: #f8fbfd;
}

.screen-placeholder {
    position: absolute;
    inset: 42px 0 0;
    display: none;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 34px;
    color: var(--color-muted);
    text-align: center;
}

.screen-frame.is-missing .screen-placeholder {
    display: grid;
}

.screen-placeholder::before {
    content: "";
    position: absolute;
    inset: 34px;
    border: 2px dashed #cbd8e5;
    border-radius: var(--radius-md);
}

.screen-placeholder strong,
.screen-placeholder small,
.screen-placeholder__icon {
    position: relative;
    z-index: 1;
}

.screen-placeholder strong {
    color: var(--color-text);
    font-size: 1.05rem;
}

.screen-placeholder small {
    max-width: 280px;
}

.screen-placeholder__icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(var(--color-blue), var(--color-blue)) 16px 18px / 26px 3px no-repeat,
        linear-gradient(var(--color-blue), var(--color-blue)) 16px 28px / 20px 3px no-repeat,
        linear-gradient(var(--color-blue), var(--color-blue)) 16px 38px / 30px 3px no-repeat,
        #e8f1fb;
    box-shadow: inset 0 0 0 1px #c7dcef;
}

.screen-placeholder__icon--tasks {
    background:
        radial-gradient(circle at 17px 19px, var(--color-green) 0 4px, transparent 5px),
        radial-gradient(circle at 17px 31px, var(--color-green) 0 4px, transparent 5px),
        linear-gradient(var(--color-blue), var(--color-blue)) 28px 18px / 16px 3px no-repeat,
        linear-gradient(var(--color-blue), var(--color-blue)) 28px 30px / 20px 3px no-repeat,
        #e8f1fb;
}

.screen-placeholder__icon--tablet {
    background:
        radial-gradient(circle at center, var(--color-green) 0 15px, transparent 16px),
        linear-gradient(#ffffff, #ffffff) center / 7px 24px no-repeat,
        linear-gradient(90deg, #ffffff, #ffffff) center / 24px 7px no-repeat,
        #e8f6ef;
}

.screen-placeholder__icon--kpi {
    background:
        linear-gradient(var(--color-blue), var(--color-blue)) 14px 35px / 7px 13px no-repeat,
        linear-gradient(var(--color-green), var(--color-green)) 26px 25px / 7px 23px no-repeat,
        linear-gradient(var(--color-amber), var(--color-amber)) 38px 15px / 7px 33px no-repeat,
        #fff4df;
}

.proof-strip {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: #ffffff;
}

.proof-strip__inner {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    align-items: center;
}

.proof-strip span {
    min-height: 64px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--color-border);
    color: var(--color-slate);
    font-weight: 800;
}

.proof-strip span:first-child {
    border-left: 1px solid var(--color-border);
}

.problem-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 54px;
    align-items: start;
}

.problem-copy {
    max-width: 780px;
}

.problem-copy p {
    color: var(--color-muted);
    font-size: 1.08rem;
}

.pain-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.pain-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--color-border);
}

.pain-item:last-child {
    border-bottom: 1px solid var(--color-border);
}

.pain-item span,
.pilot-steps span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: #e8f1fb;
    color: var(--color-blue);
    font-size: 0.82rem;
    font-weight: 900;
}

.pain-item p,
.audience-panel li,
.pilot-steps p {
    margin: 0;
    color: var(--color-slate);
    font-weight: 700;
}

.audience-panel {
    display: grid;
    gap: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 28px;
    box-shadow: var(--shadow-subtle);
}

.audience-panel h3 {
    margin-bottom: 0;
}

.audience-panel ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.audience-panel li {
    position: relative;
    padding-left: 24px;
}

.audience-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--color-green);
    box-shadow: 0 0 0 5px var(--color-green-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section--simple .section-heading {
    max-width: 900px;
    margin-bottom: 0;
    padding: 34px 0 0;
    border-top: 1px solid var(--color-border);
}

.eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--color-blue);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-heading--split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
}

.section-heading--split > div {
    max-width: 760px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-blue);
    font-weight: 800;
    white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--color-blue-strong);
    outline: none;
}

.workflow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.workflow-step,
.feature-card,
.pricing-card,
.trust-card,
.pilot-steps article {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    box-shadow: var(--shadow-subtle);
}

.workflow-step {
    position: relative;
    min-height: 280px;
    padding: 28px;
}

.step-number {
    display: inline-flex;
    margin-bottom: 34px;
    color: #7c8da0;
    font-size: 0.88rem;
    font-weight: 900;
}

.workflow-step__icon,
.feature-card__icon,
.pricing-card__icon {
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius-sm);
}

.workflow-step__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    background: #e8f1fb;
    color: var(--color-blue);
}

.workflow-step__icon--green {
    background: var(--color-green-soft);
    color: var(--color-green);
}

.workflow-step__icon--amber {
    background: var(--color-amber-soft);
    color: var(--color-amber);
}

.workflow-step__icon svg,
.feature-card__icon svg,
.pricing-card__icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-step p,
.feature-card p {
    margin-bottom: 0;
    color: var(--color-muted);
}

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

.feature-card {
    min-height: 260px;
    padding: 24px;
}

.feature-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
}

.feature-card__icon--blue {
    background: #e8f1fb;
    color: var(--color-blue);
}

.feature-card__icon--green {
    background: var(--color-green-soft);
    color: var(--color-green);
}

.feature-card__icon--amber {
    background: var(--color-amber-soft);
    color: var(--color-amber);
}

.feature-card__icon--slate {
    background: #eef2f5;
    color: var(--color-slate);
}

.screenshot-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: stretch;
}

.screenshot-stage {
    min-width: 0;
}

.screen-frame--showcase {
    aspect-ratio: 16 / 9;
    box-shadow: 0 28px 86px rgba(13, 24, 38, 0.13);
}

.showcase-caption {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--color-muted);
    font-weight: 700;
}

.screenshot-selector {
    display: grid;
    gap: 12px;
}

.screenshot-tab {
    width: 100%;
    min-height: 126px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 14px;
    align-content: start;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--color-text);
    padding: 18px;
    text-align: left;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.screenshot-tab:hover,
.screenshot-tab:focus-visible {
    border-color: #9bb5cf;
    outline: none;
    transform: translateY(-1px);
}

.screenshot-tab.is-active {
    border-color: var(--color-blue);
    background: linear-gradient(180deg, #ffffff, #f4f8fc);
    box-shadow: 0 20px 48px rgba(8, 88, 169, 0.16);
}

.screenshot-tab__number {
    grid-row: span 2;
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: #e8f1fb;
    color: var(--color-blue);
    font-size: 0.82rem;
    font-weight: 900;
}

.screenshot-tab.is-active .screenshot-tab__number {
    background: var(--color-blue);
    color: #ffffff;
}

.screenshot-tab__title {
    align-self: end;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.15;
}

.screenshot-tab__text {
    grid-column: 2;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.42;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.trust-card {
    min-height: 260px;
    padding: 24px;
}

.trust-card__icon {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
    border-radius: var(--radius-sm);
}

.trust-card__icon--blue {
    background: #e8f1fb;
    color: var(--color-blue);
}

.trust-card__icon--green {
    background: var(--color-green-soft);
    color: var(--color-green);
}

.trust-card__icon--amber {
    background: var(--color-amber-soft);
    color: var(--color-amber);
}

.trust-card__icon--slate {
    background: #eef2f5;
    color: var(--color-slate);
}

.trust-card__icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-card p {
    margin-bottom: 0;
    color: var(--color-muted);
}

.pilot-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    gap: 48px;
    align-items: center;
}

.pilot-copy {
    max-width: 720px;
}

.pilot-copy p {
    margin-bottom: 26px;
    color: var(--color-muted);
    font-size: 1.08rem;
}

.pilot-steps {
    display: grid;
    gap: 14px;
}

.pilot-steps article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 106px;
    padding: 20px;
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    align-items: center;
}

.pricing-copy {
    max-width: 760px;
}

.pricing-card {
    min-height: 270px;
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 28px;
}

.pricing-card__icon {
    width: 64px;
    height: 64px;
    background: var(--color-green-soft);
    color: var(--color-green);
}

.pricing-card strong {
    font-size: 1.4rem;
}

.pricing-card span {
    color: var(--color-muted);
}

.demo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
    align-items: center;
}

.demo-copy {
    max-width: 760px;
}

.demo-copy p,
.demo-card p {
    color: var(--color-muted);
    font-size: 1.08rem;
}

.demo-copy p {
    margin-bottom: 26px;
}

.demo-card {
    display: grid;
    gap: 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 28px;
    box-shadow: var(--shadow-subtle);
}

.demo-card__label {
    color: var(--color-blue);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

.demo-credentials {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(132px, 0.82fr);
    gap: 12px;
}

.demo-credentials div {
    display: grid;
    gap: 6px;
    min-width: 0;
    min-height: 96px;
    align-content: center;
    overflow: hidden;
    border: 1px solid #c8d6e6;
    border-radius: var(--radius-sm);
    background: #f8fbfd;
    padding: 16px;
}

.demo-credentials span {
    min-width: 0;
    color: var(--color-muted);
    font-size: 0.88rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.demo-credentials strong {
    min-width: 0;
    color: var(--color-text);
    font-size: clamp(1.08rem, 1.55vw, 1.28rem);
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.demo-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.contact-band {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    gap: 48px;
    align-items: start;
    padding: 44px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-text);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.contact-band p,
.contact-points {
    color: rgba(255, 255, 255, 0.74);
}

.contact-points {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.contact-points li {
    position: relative;
    padding-left: 24px;
    font-weight: 700;
}

.contact-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #38d996;
    box-shadow: 0 0 0 5px rgba(56, 217, 150, 0.16);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(200, 214, 230, 0.88);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--color-text);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-field {
    display: grid;
    gap: 7px;
    color: var(--color-text);
    font-weight: 800;
}

.contact-field span {
    font-size: 0.92rem;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #b9c9da;
    border-radius: var(--radius-sm);
    background: #f8fbfd;
    color: var(--color-text);
    padding: 11px 12px;
    font-size: 1rem;
    line-height: 1.35;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-field textarea {
    min-height: 134px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--color-blue);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(8, 88, 169, 0.14);
}

.contact-field--trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-consent {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--color-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-blue);
}

.contact-form .button--primary {
    width: 100%;
}

.contact-form .contact-form__note {
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 0.88rem;
}

.contact-form__note a {
    color: var(--color-blue);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.contact-form__note a:hover,
.contact-form__note a:focus-visible {
    color: var(--color-blue-strong);
    outline: none;
}

.contact-status {
    border: 1px solid #a8bdd1;
    border-radius: var(--radius-sm);
    background: #eef6ff;
    color: var(--color-blue-strong);
    padding: 12px 14px;
    font-weight: 800;
}

.contact-status.is-success {
    border-color: #9ed7bd;
    background: #e8f6ef;
    color: #176d4a;
}

.contact-status.is-error {
    border-color: #e2b5b5;
    background: #fff0f0;
    color: #8d2626;
}

.site-footer {
    border-top: 1px solid var(--color-border);
    background: #ffffff;
    color: var(--color-muted);
}

.site-footer__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 0;
}

.site-footer img {
    width: 126px;
    height: auto;
}

.site-footer__text {
    display: grid;
    gap: 4px;
    text-align: right;
}

.site-footer__text span:first-child {
    color: var(--color-slate);
    font-weight: 800;
}

.site-footer__text span:last-child {
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .site-header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: var(--color-surface);
        box-shadow: var(--shadow-soft);
    }

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

    .site-nav a {
        padding: 12px;
    }

    .site-nav .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner,
    .problem-layout,
    .pricing-layout,
    .pilot-layout,
    .demo-layout,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        gap: 42px;
    }

    .hero__copy {
        max-width: none;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.05rem;
    }

    .workflow,
    .feature-grid,
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .screenshot-showcase {
        grid-template-columns: 1fr;
    }

    .screenshot-selector {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .screenshot-tab {
        min-height: 154px;
    }

    .proof-strip__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .proof-strip span:nth-child(4) {
        border-left: 1px solid var(--color-border);
    }

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .section {
        padding: 64px 18px;
    }

    .section--tight {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .hero {
        padding-top: 30px;
        padding-bottom: 28px;
    }

    .hero__inner {
        gap: 22px;
    }

    .brand img {
        width: 138px;
    }

    h1 {
        font-size: 2.18rem;
        line-height: 1.04;
        margin-bottom: 14px;
    }

    h2 {
        font-size: 1.74rem;
    }

    .hero__lead,
    .section-heading p,
    .pricing-copy p,
    .contact-band p {
        font-size: 1rem;
    }

    .hero__lead {
        margin-bottom: 18px;
    }

    .hero__actions {
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero__actions,
    .button {
        width: 100%;
    }

    .button {
        min-height: 44px;
        padding: 10px 14px;
    }

    .hero-points {
        display: none;
    }

    .workflow,
    .feature-grid,
    .trust-grid,
    .proof-strip__inner {
        grid-template-columns: 1fr;
    }

    .screenshot-selector {
        grid-template-columns: 1fr;
    }

    .text-link {
        white-space: normal;
    }

    .proof-strip span,
    .proof-strip span:first-child,
    .proof-strip span:nth-child(4) {
        border-left: 1px solid var(--color-border);
    }

    .screen-frame {
        border-radius: var(--radius-md);
    }

    .screen-frame--hero {
        aspect-ratio: 16 / 9;
        border-radius: var(--radius-md);
    }

    .screen-frame--showcase {
        aspect-ratio: 16 / 10;
        border-radius: var(--radius-md);
    }

    .screen-frame--hero .screen-frame__chrome {
        height: 30px;
    }

    .screen-frame--hero .screen-frame__image,
    .screen-frame--hero .screen-placeholder {
        inset: 30px 0 0;
        height: calc(100% - 30px);
    }

    .screen-placeholder {
        padding: 22px;
    }

    .screen-placeholder::before {
        inset: 22px;
    }

    .workflow-step,
    .feature-card,
    .pricing-card,
    .trust-card,
    .demo-card,
    .contact-band {
        padding: 22px;
    }

    .audience-panel {
        padding: 22px;
    }

    .pain-item,
    .pilot-steps article {
        grid-template-columns: 1fr;
    }

    .demo-credentials {
        grid-template-columns: 1fr;
    }

    .contact-band {
        gap: 28px;
    }

    .contact-form {
        padding: 18px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__text {
        text-align: left;
    }
}

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

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