:root {
    --qisutu-petrol: #015068;
    --qisutu-petrol-dark: #003d4f;
    --qisutu-petrol-soft: #e9f4f6;
    --qisutu-vanilla: #fff7d6;
    --qisutu-coral: #f06d3c;
    --qisutu-green: #0f8a6a;
    --page-bg: #f1f5f7;
    --surface: #ffffff;
    --surface-soft: #f7fafb;
    --border: #d8e2e7;
    --border-strong: #c5d2d9;
    --text: #1d2a34;
    --muted: #61717e;
    --sidebar-expanded: 268px;
    --sidebar-collapsed: 82px;
    --content-width: 1370px;
    --radius: 14px;
    --shadow: 0 16px 40px rgba(25, 50, 64, 0.08);
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--page-bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

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

a {
    color: var(--qisutu-petrol);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--qisutu-petrol-dark);
}

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

:focus-visible {
    outline: 3px solid rgba(240, 109, 60, 0.4);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 4000;
    padding: 10px 14px;
    border-radius: 9px;
    background: var(--surface);
    color: var(--qisutu-petrol);
    font-weight: 800;
    box-shadow: var(--shadow);
    transform: translateY(-180%);
    transition: transform var(--transition);
}

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

.site-layout {
    min-height: 100vh;
}

/* Sidebar: explicit widths avoid the broken collapsed state caused by inherited custom properties. */
.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1200;
    width: var(--sidebar-expanded);
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: linear-gradient(180deg, #015068 0%, #00465b 100%);
    color: #ffffff;
    box-shadow: 10px 0 28px rgba(1, 44, 58, 0.14);
    transition: width var(--transition);
}

.sidebar-header {
    position: relative;
    min-height: 88px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand {
    min-width: 0;
    width: auto;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #ffffff;
    text-decoration: none;
}

.brand:hover {
    color: #ffffff;
    text-decoration: none;
}

.sidebar-github-link {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-grid;
    place-items: center;
    margin-left: 8px;
    border-radius: 50%;
    color: #ffffff;
    opacity: 0.82;
    transition: background var(--transition), opacity var(--transition), transform var(--transition);
}

.sidebar-github-link:hover,
.sidebar-github-link:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    opacity: 1;
    transform: translateY(-1px);
}

.sidebar-github-icon {
    width: 25px;
    height: 25px;
    display: block;
}

.brand-logo {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    object-fit: contain;
    filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.18));
}

.brand-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.brand-name {
    font-size: 1.28rem;
    line-height: 1;
    letter-spacing: 0.01em;
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    line-height: 1.2;
}

.sidebar-toggle {
    position: absolute;
    /* Align the toggle with the bottom divider of the header instead of vertically centering it in the whole header. */
    top: calc(100% - 1px);
    right: -14px;
    z-index: 10;
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(1, 80, 104, 0.28);
    border-radius: 50%;
    background: #ffffff;
    color: var(--qisutu-petrol);
    box-shadow: 0 5px 14px rgba(15, 35, 45, 0.2);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.sidebar-toggle:hover {
    background: var(--qisutu-vanilla);
    color: var(--qisutu-petrol-dark);
}

.sidebar-toggle-icon {
    display: block;
    margin-top: -2px;
    font-size: 23px;
    line-height: 1;
}

.sidebar-nav {
    min-height: 0;
    flex: 1 1 auto;
    padding: 20px 11px 14px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.nav-list {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
    list-style: none;
}

.nav-list > li {
    min-width: 0;
    max-height: 43px;
}

.nav-link {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 11px;
    overflow: hidden;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.91);
    font-weight: 750;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
    text-decoration: none;
}

.nav-link.active {
    background: #ffffff;
    color: var(--qisutu-petrol);
    box-shadow: 0 7px 18px rgba(0, 35, 48, 0.15);
}

.nav-letter {
    width: 34px;
    height: 32px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.nav-link.active .nav-letter {
    background: rgba(1, 80, 104, 0.1);
}

.nav-text {
    min-width: 0;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.sidebar-meta-anfrage {
    flex: 0 0 auto;
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0px 0px 0px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.07);
}

.sidebar-meta {
    flex: 0 0 auto;
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 8px 11px 14px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.07);
}

.sidebar-meta-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.62rem;
    font-weight: 900;
}

.sidebar-meta-text {
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    line-height: 1.4;
    opacity: 1;
    visibility: visible;
    transition: opacity var(--transition), visibility var(--transition);
}

.page-shell {
    min-height: 100vh;
    margin-left: var(--sidebar-expanded);
    display: flex;
    flex-direction: column;
    transition: margin-left var(--transition);
}

body.sidebar-collapsed .sidebar {
    width: var(--sidebar-collapsed);
}

body.sidebar-collapsed .page-shell {
    margin-left: var(--sidebar-collapsed);
}

/* In the collapsed state, labels must be removed from the layout completely.
   Merely hiding them with opacity/visibility keeps their nowrap width and lets
   the active navigation item protrude beyond the sidebar. */
body.sidebar-collapsed .brand-copy,
body.sidebar-collapsed .nav-text,
body.sidebar-collapsed .sidebar-meta-text {
    display: none;
}

body.sidebar-collapsed .sidebar-github-link {
    display: none;
}

body.sidebar-collapsed .sidebar-header {
    padding-inline: 11px;
}

body.sidebar-collapsed .brand {
    width: 100%;
    justify-content: center;
}

body.sidebar-collapsed .brand-logo {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
}

body.sidebar-collapsed .sidebar-nav {
    padding-inline: 11px;
}

body.sidebar-collapsed .nav-list,
body.sidebar-collapsed .nav-list > li,
body.sidebar-collapsed .nav-link {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

body.sidebar-collapsed .nav-list > li {
    overflow: hidden;
}

body.sidebar-collapsed .nav-link {
    justify-content: center;
    gap: 0;
    padding-inline: 0;
    background: transparent;
    box-shadow: none;
}

body.sidebar-collapsed .nav-link:hover,
body.sidebar-collapsed .nav-link:focus-visible,
body.sidebar-collapsed .nav-link.active {
    background: transparent;
    box-shadow: none;
}

body.sidebar-collapsed .nav-letter {
    width: 40px;
    height: 36px;
    flex: 0 0 40px;
}

body.sidebar-collapsed .nav-link:hover .nav-letter,
body.sidebar-collapsed .nav-link:focus-visible .nav-letter {
    background: rgba(255, 255, 255, 0.22);
}

body.sidebar-collapsed .nav-link.active .nav-letter,
body.sidebar-collapsed .nav-link.active:hover .nav-letter,
body.sidebar-collapsed .nav-link.active:focus-visible .nav-letter {
    background: #ffffff;
    color: var(--qisutu-petrol);
    box-shadow: 0 7px 18px rgba(0, 35, 48, 0.18);
}

body.sidebar-collapsed .sidebar-meta {
    display: none;
}

.main-content {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 30px;
    flex: 1 0 auto;
}

.hero,
.page-hero,
.section-block,
.split-section,
.history-teaser,
.cta-band,
.pricing-section,
.contact-panel,
.story-section,
.values-band,
.empty-state,
.legal-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(370px, 0.94fr);
    gap: 38px;
    align-items: center;
    padding: clamp(28px, 4vw, 54px);
}

.eyebrow,
.section-kicker,
.plan-label {
    margin: 0;
    color: var(--qisutu-petrol);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.split-copy h2,
.history-copy h2,
.cta-band h2,
.contact-panel h2,
.story-copy h2,
.empty-state h2,
.legal-card h2 {
    margin: 0;
    color: var(--text);
    line-height: 1.13;
    letter-spacing: -0.028em;
}

.hero h1 {
    margin-top: 13px;
    font-size: clamp(2.35rem, 4.2vw, 4.7rem);
}

.hero-text {
    max-width: 67ch;
    margin: 19px 0 0;
    color: var(--muted);
    font-size: 1.09rem;
}

.hero-actions {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.button-primary {
    background: var(--qisutu-petrol);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(1, 80, 104, 0.2);
}

.button-primary:hover {
    background: var(--qisutu-petrol-dark);
    color: #ffffff;
}

.button-secondary,
.button-outline {
    border-color: var(--border-strong);
    background: #ffffff;
    color: var(--qisutu-petrol);
}

.button-secondary:hover,
.button-outline:hover {
    border-color: var(--qisutu-petrol);
    color: var(--qisutu-petrol-dark);
}

.button-light {
    background: #ffffff;
    color: var(--qisutu-petrol);
}

.button-light:hover {
    background: var(--qisutu-vanilla);
    color: var(--qisutu-petrol-dark);
}

.guide-hero {
    min-height: min(560px, calc(100vh - 190px));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.guide-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.guide-button {
    min-height: 58px;
    gap: 11px;
    padding: 15px 27px;
    border-radius: 12px;
    font-size: 1.05rem;
}

.guide-button-icon {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform var(--transition);
}

.guide-button:hover .guide-button-icon {
    transform: translate(2px, -2px);
}

.hero-facts {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}

.hero-facts li {
    min-width: 0;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-soft);
}

.hero-facts strong,
.hero-facts span {
    display: block;
}

.hero-facts strong {
    color: var(--qisutu-petrol);
    font-size: 0.88rem;
}

.hero-facts span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.77rem;
    line-height: 1.45;
}

.hero-visual {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-soft);
    box-shadow: 0 14px 35px rgba(21, 40, 52, 0.11);
}

.page-hero {
    padding: clamp(30px, 4vw, 54px);
}

.page-hero h1 {
    max-width: 940px;
    margin-top: 12px;
    font-size: clamp(2.25rem, 4vw, 4.2rem);
}

.page-hero > p:last-child,
.page-hero > div > p:last-child {
    max-width: 78ch;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.page-hero-centered {
    text-align: center;
}

.page-hero-centered h1,
.page-hero-centered > p:last-child {
    margin-left: auto;
    margin-right: auto;
}

.section-block,
.split-section,
.history-teaser,
.pricing-section,
.story-section,
.values-band,
.empty-state,
.contact-panel,
.legal-card {
    margin-top: 22px;
}

.section-block,
.pricing-section {
    padding: clamp(26px, 3.4vw, 42px);
}

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

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.split-copy h2,
.history-copy h2,
.contact-panel h2,
.story-copy h2,
.empty-state h2,
.legal-card h2 {
    margin-top: 8px;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.section-heading > p:last-child,
.split-copy > p,
.history-copy > p,
.story-copy > p,
.contact-panel p,
.empty-state p,
.legal-card p,
.legal-card address {
    color: var(--muted);
}

.section-heading > p:last-child {
    max-width: 72ch;
    margin: 13px 0 0;
}

.card-grid {
    display: grid;
    gap: 16px;
    margin-top: 25px;
}

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

.card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card {
    min-width: 0;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-soft);
}

.content-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.14rem;
    line-height: 1.28;
}

.content-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.card-number {
    width: 35px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 15px;
    border-radius: 8px;
    background: var(--qisutu-petrol-soft);
    color: var(--qisutu-petrol);
    font-size: 0.76rem;
    font-weight: 900;
}

.text-link {
    display: inline-block;
    font-weight: 800;
}

.inline-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 34px;
    align-items: center;
    padding: clamp(26px, 3.4vw, 42px);
}

.split-copy > p:not(.section-kicker) {
    max-width: 69ch;
    margin: 14px 0 0;
}

.principle-list {
    display: grid;
    gap: 10px;
}

.principle-list > div {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--surface-soft);
}

.principle-list strong,
.principle-list span {
    display: block;
}

.principle-list strong {
    color: var(--qisutu-petrol);
}

.principle-list span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.9rem;
}

.history-teaser {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 32px;
    align-items: center;
    padding: clamp(26px, 3.4vw, 42px);
}

.history-symbol {
    min-height: 280px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 13px;
    background: linear-gradient(145deg, #e8f6f8, #fff8dd);
}

.history-symbol img {
    width: min(88%, 360px);
    filter: drop-shadow(0 13px 19px rgba(20, 45, 58, 0.16));
}

.history-copy > p:not(.section-kicker) {
    margin: 13px 0 0;
}

.history-copy .text-link {
    margin-top: 10px;
}

.cta-band {
    margin-top: 22px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-color: transparent;
    background: var(--qisutu-petrol);
    color: #ffffff;
}

.cta-band .section-kicker,
.cta-band h2 {
    color: #ffffff;
}

.cta-band h2 {
    margin-top: 5px;
    font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.check-list,
.mini-list,
.plan-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.mini-list li,
.plan-list li {
    position: relative;
    padding-left: 23px;
}

.check-list li + li,
.mini-list li + li,
.plan-list li + li {
    margin-top: 8px;
}

.check-list li::before,
.mini-list li::before,
.plan-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--qisutu-green);
    font-weight: 900;
}

.mini-list {
    color: var(--muted);
    font-size: 0.92rem;
}

.step-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

.step-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 13px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--surface-soft);
}

.step-list li > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--qisutu-petrol);
    color: #ffffff;
    font-weight: 900;
}

.step-list strong {
    display: block;
}

.step-list p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
    align-items: stretch;
}

.price-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--qisutu-green);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(25, 50, 64, 0.07);
}

.price-card.featured {
    border-top-color: var(--qisutu-coral);
    box-shadow: 0 18px 38px rgba(25, 50, 64, 0.13);
    transform: translateY(-8px);
}

.recommendation {
    position: absolute;
    top: 0;
    right: 18px;
    padding: 5px 10px;
    border-radius: 0 0 8px 8px;
    background: var(--qisutu-coral);
    color: #ffffff;
    font-size: 0.69rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-card-head {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.price-card-head h3 {
    margin: 8px 0 0;
    font-size: 1.3rem;
}

.price {
    margin: 15px 0 0;
    color: var(--text);
    font-size: 1.22rem;
    font-weight: 850;
}

.price-card-head > span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.86rem;
}

.plan-list {
    flex: 1 1 auto;
    color: var(--muted);
    font-size: 0.91rem;
}

.plan-note {
    margin: 20px 0;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.82rem;
}

.price-card .button {
    width: 100%;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: clamp(26px, 3.4vw, 42px);
}

.contact-panel p {
    max-width: 66ch;
    margin: 13px 0 0;
}

.contact-details {
    min-width: 240px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 11px;
    background: var(--surface-soft);
}

.contact-details a {
    font-weight: 800;
}

.contact-details span {
    color: var(--muted);
}

.empty-state {
    min-height: 280px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: left;
}

.empty-state-mark {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--qisutu-petrol-soft);
    color: var(--qisutu-petrol);
    font-size: 2rem;
    font-weight: 900;
}

.empty-state h2 {
    font-size: 1.55rem;
}

.empty-state p {
    margin: 8px 0 0;
}

.history-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
    gap: 30px;
    align-items: center;
}

.history-header img {
    width: min(100%, 390px);
    justify-self: center;
    filter: drop-shadow(0 14px 22px rgba(20, 45, 58, 0.18));
}

.story-section {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 34px;
    padding: clamp(26px, 3.4vw, 42px);
}

.story-label {
    align-self: start;
    padding: 10px 13px;
    border-radius: 9px;
    background: var(--qisutu-petrol-soft);
    color: var(--qisutu-petrol);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
}

.story-copy p:not(.section-kicker) {
    max-width: 82ch;
    margin: 13px 0 0;
}

.values-band {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    background: var(--qisutu-petrol);
    border-color: transparent;
}

.values-band > div {
    padding: 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

.values-band strong,
.values-band span {
    display: block;
}

.values-band strong {
    color: #ffffff;
}

.values-band span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.legal-card {
    padding: clamp(26px, 3.4vw, 42px);
}

.legal-card h2 {
    margin-top: 28px;
    font-size: 1.45rem;
}

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

.legal-card address {
    font-style: normal;
}

.legal-note {
    margin-top: 26px !important;
    padding: 16px;
    border-left: 4px solid var(--qisutu-coral);
    border-radius: 0 9px 9px 0;
    background: #fff6f1;
    font-size: 0.9rem;
}

.empty-main {
    min-height: calc(100vh - 130px);
}

.site-footer {
    width: min(calc(100% - 60px), calc(var(--content-width) - 60px));
    margin: 0 auto 26px;
    padding: 15px 20px 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 9px 24px rgba(25, 50, 64, 0.06);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    gap: 26px;
    align-items: center;
}

.footer-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: var(--qisutu-petrol);
}

.footer-brand span {
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-nav,
.footer-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.84rem;
    font-weight: 750;
}

.footer-bottom {
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.76rem;
    text-align: right;
}

@media (max-width: 1180px) {
    .hero,
    .split-section,
    .history-teaser,
    .history-header {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 860px;
    }

    .history-header img {
        max-width: 330px;
        justify-self: start;
    }

    .card-grid-3,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-card.featured {
        transform: none;
    }

    .values-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .sidebar {
        width: var(--sidebar-collapsed);
    }

    .page-shell {
        margin-left: var(--sidebar-collapsed);
    }

    .brand-copy,
    .nav-text,
    .sidebar-meta-text {
        display: none;
    }

    .sidebar-header {
        padding-inline: 17px;
    }

    .brand,
    .nav-link,
    .sidebar-meta {
        justify-content: center;
    }

    .nav-link {
        gap: 0;
        padding-inline: 8px;
    }

    .sidebar-toggle {
        display: none;
    }

    .sidebar-github-link {
        display: none;
    }

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

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

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

@media (max-width: 720px) {
    :root {
        --sidebar-collapsed: 70px;
    }

    .sidebar-header {
        min-height: 76px;
        padding-inline: 11px;
    }

    .brand-logo,
    body.sidebar-collapsed .brand-logo {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .sidebar-nav {
        padding-inline: 8px;
    }

    .nav-letter,
    body.sidebar-collapsed .nav-letter {
        width: 36px;
        height: 32px;
        flex-basis: 36px;
    }

    .sidebar-meta {
        display: none;
    }

    .main-content {
        padding: 18px;
    }

    .hero,
    .page-hero,
    .section-block,
    .split-section,
    .history-teaser,
    .pricing-section,
    .contact-panel,
    .story-section,
    .values-band,
    .legal-card {
        border-radius: 12px;
    }

    .hero,
    .page-hero,
    .section-block,
    .split-section,
    .history-teaser,
    .pricing-section,
    .contact-panel,
    .story-section,
    .legal-card {
        padding: 22px;
    }

    .hero-facts,
    .card-grid-3,
    .card-grid-2,
    .pricing-grid,
    .values-band,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .story-section {
        gap: 18px;
    }

    .story-label {
        justify-self: start;
    }

    .cta-band {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

    .footer-nav,
    .footer-contact {
        gap: 11px 16px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        text-align: left;
    }

    .site-footer {
        width: calc(100% - 36px);
        margin-bottom: 18px;
    }

    .empty-state {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px;
    }
}

@media (max-width: 480px) {
    :root {
        --sidebar-collapsed: 62px;
    }

    .main-content {
        padding: 14px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.1rem;
    }

    .hero-actions,
    .inline-links {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .site-footer {
        width: calc(100% - 28px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ==========================================================================
   Supportseite: Support-Pakete S, M, L und XL
   ========================================================================== */

.support-pricing-section {
    margin-top: 22px;
    padding: clamp(26px, 3.4vw, 42px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.support-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
    align-items: stretch;
}

.support-price-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: 4px solid var(--qisutu-green);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(25, 50, 64, 0.08);
}

.support-price-card.featured {
    border-top-color: var(--qisutu-coral);
    box-shadow: 0 18px 38px rgba(25, 50, 64, 0.13);
}

.support-price-card-header {
    min-height: 143px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 20px 22px;
    text-align: center;
}

.support-price-card-header h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.34rem;
    line-height: 1.25;
}

.support-price {
    margin: 12px 0 0;
    color: var(--text);
    font-size: 1.18rem;
    line-height: 1.4;
}

.support-price span {
    font-size: 0.9em;
    font-weight: 400;
}

.support-features {
    flex: 1 1 auto;
    margin: 0;
    padding: 0 26px 22px;
    list-style: none;
}

.support-feature {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 2px;
    color: var(--muted);
    text-align: center;
    line-height: 1.35;
}

.support-feature:not(.support-feature-check):not(:last-child) {
    border-bottom: 1px solid rgba(15, 138, 106, 0.85);
}

.support-feature:nth-child(4) {
    min-height: 126px;
}

.support-feature strong {
    color: #4b5963;
    font-weight: 800;
}

.support-feature-check {
    min-height: 42px;
    justify-content: flex-start;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: left;
}

.support-feature-check::before {
    content: "✓";
    flex: 0 0 auto;
    margin-right: 9px;
    color: var(--qisutu-green);
    font-weight: 900;
}

.support-feature-check + .support-feature:not(.support-feature-check) {
    margin-top: 8px;
    border-top: 1px solid rgba(15, 138, 106, 0.85);
}

.support-price-card-footer {
    margin-top: auto;
    padding: 0 26px 26px;
}

.support-price-card-footer .button {
    width: 100%;
    min-height: 50px;
}

.support-package-note {
    max-width: 900px;
    margin: 22px auto 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.92rem;
}

@media (max-width: 1250px) {
    .support-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .support-pricing-section {
        padding: 22px;
        border-radius: 12px;
    }

    .support-pricing-grid {
        grid-template-columns: 1fr;
    }

    .support-price-card-header {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .support-pricing-section {
        padding: 18px;
    }

    .support-features {
        padding-right: 20px;
        padding-left: 20px;
    }

    .support-price-card-footer {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* ==========================================================================
   Allgemeine Hilfsklassen
   ========================================================================== */

.visually-hidden {
    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;
}

/* ==========================================================================
   Hostingseite: Hosting-Pakete M, L und XL
   ========================================================================== */

.hosting-pricing-section {
    margin-top: 22px;
    padding: clamp(26px, 3.4vw, 42px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hosting-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
    align-items: stretch;
}

.hosting-price-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: 4px solid var(--qisutu-green);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(25, 50, 64, 0.08);
}

.hosting-price-card.featured {
    border-top-color: var(--qisutu-coral);
    box-shadow: 0 18px 38px rgba(25, 50, 64, 0.13);
}

.hosting-price-card-header {
    min-height: 143px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 20px 22px;
    text-align: center;
}

.hosting-price-card-header h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.34rem;
    line-height: 1.25;
}

.hosting-price {
    margin: 12px 0 0;
    color: var(--text);
    font-size: 1.18rem;
    line-height: 1.4;
}

.hosting-price span {
    font-size: 0.9em;
    font-weight: 400;
}

.hosting-features {
    flex: 1 1 auto;
    margin: 0;
    padding: 0 28px 22px;
    list-style: none;
}

.hosting-feature {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 2px;
    color: var(--muted);
    text-align: center;
    line-height: 1.35;
}

.hosting-feature:not(.hosting-feature-check):not(:last-child) {
    border-bottom: 1px solid rgba(15, 138, 106, 0.85);
}

.hosting-feature:nth-child(4) {
    min-height: 126px;
}

.hosting-feature strong {
    color: #4b5963;
    font-weight: 800;
}

.hosting-feature-check {
    min-height: 42px;
    justify-content: flex-start;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: left;
}

.hosting-feature-check::before {
    content: "✓";
    flex: 0 0 auto;
    margin-right: 9px;
    color: var(--qisutu-green);
    font-weight: 900;
}

.hosting-addon {
    min-height: 94px;
    margin-top: 8px;
    border-top: 1px solid rgba(15, 138, 106, 0.85);
}

.hosting-hardware {
    min-height: 330px;
    align-items: flex-start;
    padding-top: 22px;
    padding-bottom: 22px;
}

.hosting-price-card-footer {
    margin-top: auto;
    padding: 0 28px 28px;
}

.hosting-price-card-footer .button {
    width: 100%;
    min-height: 50px;
}

.hosting-package-note {
    max-width: 900px;
    margin: 22px auto 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.92rem;
}

@media (max-width: 1180px) {
    .hosting-pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hosting-pricing-section {
        padding: 22px;
        border-radius: 12px;
    }

    .hosting-price-card-header {
        min-height: auto;
    }

    .hosting-hardware {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hosting-pricing-section {
        padding: 18px;
    }

    .hosting-features {
        padding-right: 20px;
        padding-left: 20px;
    }

    .hosting-price-card-footer {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* ========================================================================== 
   Cookie- und Einwilligungsverwaltung
   ========================================================================== */

[hidden] {
    display: none !important;
}

.cookie-modal-open,
.cookie-modal-open body {
    overflow: hidden;
}

.footer-cookie-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--qisutu-petrol);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.footer-cookie-link:hover {
    color: var(--qisutu-petrol-dark);
}

.cookie-consent {
    position: fixed;
    right: 22px;
    bottom: 22px;
    left: max(22px, calc(var(--sidebar-collapsed) + 22px));
    z-index: 5000;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 22px 65px rgba(13, 38, 51, 0.24);
}

.cookie-consent-copy h2,
.cookie-settings-dialog h2 {
    margin: 2px 0 8px;
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1.25;
}

.cookie-consent-copy p {
    max-width: 78ch;
    margin: 0 0 6px;
    color: var(--muted);
    line-height: 1.5;
}

.cookie-consent-copy a {
    font-size: 0.88rem;
    font-weight: 750;
}

.cookie-consent-kicker {
    margin: 0 !important;
    color: var(--qisutu-green) !important;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cookie-consent-actions,
.cookie-settings-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-consent-actions .button,
.cookie-settings-actions .button {
    min-width: 142px;
    cursor: pointer;
}

.cookie-settings {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: grid;
    place-items: center;
    padding: 22px;
}

.cookie-settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 28, 38, 0.66);
}

.cookie-settings-dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100vh - 44px);
    overflow: auto;
    padding: 28px;
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(5, 25, 35, 0.34);
}

.cookie-settings-dialog > p {
    margin: 0 0 20px;
    color: var(--muted);
}

.cookie-settings-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.cookie-settings-close {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--qisutu-petrol);
    cursor: pointer;
    font-size: 1.65rem;
    line-height: 1;
}

.cookie-setting-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-soft);
}

.cookie-setting-row strong,
.cookie-setting-row span {
    display: block;
}

.cookie-setting-row strong {
    color: var(--text);
}

.cookie-setting-row span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.cookie-setting-status {
    margin: 0 !important;
    color: var(--qisutu-green) !important;
    font-weight: 800;
    white-space: nowrap;
}

.cookie-setting-selectable {
    cursor: pointer;
}

.cookie-setting-selectable:hover {
    border-color: var(--qisutu-petrol);
}

.cookie-setting-selectable input {
    width: 24px;
    height: 24px;
    margin: 0;
    accent-color: var(--qisutu-petrol);
    cursor: pointer;
}

.cookie-settings-actions {
    margin-top: 22px;
}

@media (min-width: 901px) {
    body:not(.sidebar-collapsed) .cookie-consent {
        left: max(22px, calc(var(--sidebar-expanded) + 22px));
    }
}

@media (max-width: 900px) {
    .cookie-consent {
        left: 18px;
        right: 18px;
        bottom: 18px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cookie-consent-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .cookie-consent,
    .cookie-settings-dialog {
        padding: 20px;
    }

    .cookie-consent {
        right: 10px;
        bottom: 10px;
        left: 10px;
        max-height: calc(100vh - 20px);
        overflow: auto;
    }

    .cookie-consent-actions,
    .cookie-settings-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .cookie-consent-actions .button,
    .cookie-settings-actions .button {
        width: 100%;
    }

    .cookie-setting-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cookie-setting-selectable input {
        justify-self: start;
    }
}

/* Language selector */
.language-picker-item {
    margin-top: 2px;
}

.language-picker {
    cursor: default;
}

.language-icon-wrap {
    padding: 0;
    overflow: hidden;
}

.language-globe {
    display: block;
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.language-select {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.language-select option {
    color: #102638;
    background: #ffffff;
}

body.sidebar-collapsed .language-picker {
    justify-content: center;
}

body.sidebar-collapsed .language-select {
    position: absolute;
    width: 36px;
    height: 36px;
    opacity: 0;
}

/* AddOn cards and module detail pages */
.content-card {
    display: flex;
    flex-direction: column;
}

.content-card-featured {
    grid-column: 1 / -1;
    background:
        linear-gradient(135deg, rgba(1, 80, 104, 0.06), rgba(239, 126, 108, 0.08)),
        var(--surface);
    border-color: rgba(1, 80, 104, 0.22);
}

.card-actions {
    margin-top: auto;
    padding-top: 22px;
}

.module-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--qisutu-petrol);
    font-weight: 800;
    text-decoration: none;
}

.module-card-link span {
    transition: transform 160ms ease;
}

.module-card-link:hover span,
.module-card-link:focus-visible span {
    transform: translateX(4px);
}

.module-card-link:focus-visible,
.module-breadcrumb a:focus-visible {
    outline: 3px solid rgba(239, 126, 108, 0.55);
    outline-offset: 4px;
    border-radius: 4px;
}

.module-detail {
    --module-border: rgba(1, 80, 104, 0.14);
}

.module-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.module-breadcrumb a {
    color: var(--qisutu-petrol);
    font-weight: 800;
    text-decoration: none;
}

.module-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(28px, 6vw, 80px);
    overflow: hidden;
}

.module-hero > div:first-child {
    max-width: 880px;
}

.module-hero-mark {
    display: grid;
    place-items: center;
    width: clamp(116px, 15vw, 184px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    color: #ffffff;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(239, 126, 108, 0.3));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-size: clamp(1.75rem, 3.7vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.06em;
}

.module-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 20px;
    border: 1px solid var(--module-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 38, 56, 0.06);
}

.module-facts > div {
    min-width: 0;
    padding: 20px 22px;
}

.module-facts > div + div {
    border-left: 1px solid var(--module-border);
}

.module-facts span,
.module-facts strong {
    display: block;
}

.module-facts span {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.module-facts strong {
    color: var(--text);
    line-height: 1.35;
}

.module-section {
    margin-top: 26px;
}

.module-section-tinted {
    background: linear-gradient(145deg, rgba(1, 80, 104, 0.045), rgba(239, 126, 108, 0.055));
}

.module-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.module-feature-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--module-border);
    border-radius: 16px;
    background: #ffffff;
}

.module-feature-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--qisutu-petrol);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.module-feature-card p {
    margin: 2px 0 0;
    color: var(--text);
    line-height: 1.65;
}

.module-list,
.module-check-list,
.module-steps {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.module-list-columns {
    columns: 2;
    column-gap: 36px;
}

.module-list li {
    position: relative;
    break-inside: avoid;
    margin: 0 0 13px;
    padding: 0 0 13px 25px;
    border-bottom: 1px solid var(--module-border);
    color: var(--text);
    line-height: 1.62;
}

.module-list li::before {
    position: absolute;
    top: 0.52em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--qisutu-coral);
    content: "";
}

.module-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.module-panel {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--module-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(16, 38, 56, 0.05);
}

.module-panel h2 {
    margin: 5px 0 12px;
    color: var(--text);
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.module-panel > p:not(.section-kicker) {
    color: var(--muted);
    line-height: 1.65;
}

.module-panel-dark {
    color: #ffffff;
    background: linear-gradient(150deg, #015068, #063b52);
}

.module-panel-dark h2,
.module-panel-dark .section-kicker,
.module-panel-dark > p:not(.section-kicker) {
    color: #ffffff;
}

.module-panel-dark > p:not(.section-kicker) {
    opacity: 0.84;
}

.module-steps {
    counter-reset: module-step;
}

.module-steps li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--module-border);
}

.module-steps li:last-child {
    border-bottom: 0;
}

.module-steps span {
    color: var(--qisutu-coral);
    font-size: 0.8rem;
    font-weight: 900;
}

.module-steps p {
    margin: 0;
    color: var(--text);
    line-height: 1.58;
}

.module-check-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    line-height: 1.55;
}

.module-check-list li::before {
    position: absolute;
    top: 11px;
    left: 0;
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--qisutu-coral);
    content: "✓";
    font-size: 0.72rem;
    font-weight: 900;
}

.module-panel-dark .module-check-list li {
    color: rgba(255, 255, 255, 0.92);
}

.module-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.button-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.58);
    color: #ffffff;
    background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
    color: var(--qisutu-petrol);
    background: #ffffff;
}

@media (max-width: 1050px) {
    .module-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .module-facts > div + div {
        border-left: 0;
    }

    .module-facts > div:nth-child(even) {
        border-left: 1px solid var(--module-border);
    }

    .module-facts > div:nth-child(n + 3) {
        border-top: 1px solid var(--module-border);
    }
}

@media (max-width: 760px) {
    .module-hero,
    .module-two-column,
    .module-feature-grid {
        grid-template-columns: 1fr;
    }

    .module-hero-mark {
        display: none;
    }

    .module-list-columns {
        columns: 1;
    }

    .module-cta-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .module-facts {
        grid-template-columns: 1fr;
    }

    .module-facts > div:nth-child(even) {
        border-left: 0;
    }

    .module-facts > div + div {
        border-top: 1px solid var(--module-border);
    }

    .module-feature-card {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 17px;
    }

    .module-feature-number {
        width: 36px;
        height: 36px;
    }
}
