/*
|--------------------------------------------------------------------------
| Einfach NOY - Hauptgestaltung
|--------------------------------------------------------------------------
| Farbwerte im Stil Projekt "Website Andreas Kapeller"
|--------------------------------------------------------------------------
*/

:root {
    --noy-primary: #00578b;
    --noy-primary-dark: #003f66;
    --noy-accent: #169cd3;
    --noy-background: #f3f3f3;
    --noy-white: #ffffff;
    --noy-text: #1f2933;
    --noy-muted: #5f6f7a;
    --noy-border: #dce5eb;
    --noy-footer: #102231;

    --noy-font: Arial, Helvetica, sans-serif;

    --noy-container: 1420px;
    --noy-wide: 1500px;

    --noy-space-xs: 8px;
    --noy-space-sm: 14px;
    --noy-space-md: 24px;
    --noy-space-lg: 40px;
    --noy-space-xl: 72px;
    --noy-space-xxl: 128px;

    --noy-radius-sm: 8px;
    --noy-radius-md: 16px;
    --noy-radius-lg: 28px;

    --noy-shadow-soft: 0 16px 42px rgba(0, 87, 139, 0.08);
    --noy-shadow-card: 0 10px 28px rgba(0, 87, 139, 0.09);

    --noy-transition: 180ms ease;
}

/* ----------------------------------------------------------------------
   Basis
---------------------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--noy-font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--noy-text);
    background: var(--noy-background);
}

body.admin-bar .site-header {
    top: 32px;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--noy-text);
    line-height: 1.18;
}

h1 {
    font-size: clamp(2.35rem, 4vw, 3.9rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: clamp(1.18rem, 2vw, 1.45rem);
}

::selection {
    background: var(--noy-primary);
    color: var(--noy-white);
}

/* ----------------------------------------------------------------------
   WordPress Layout
---------------------------------------------------------------------- */

.wp-site-blocks {
    min-height: 100vh;
}

.alignwide {
    max-width: var(--noy-wide);
}

.alignfull {
    width: 100%;
}

.wp-block-post-content > * {
    margin-block-start: 0;
}

.wp-block-post-content > * + * {
    margin-block-start: 1.5rem;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 999;
    padding: 10px 14px;
    background: var(--noy-primary);
    color: var(--noy-white);
    border-radius: var(--noy-radius-sm);
    transform: translateY(-160%);
    transition: transform var(--noy-transition);
}

.skip-link:focus {
    transform: translateY(0);
}

/* ----------------------------------------------------------------------
   Wiederverwendbare Klassen
---------------------------------------------------------------------- */

.noy-container {
    max-width: var(--noy-container);
    margin-inline: auto;
    padding-inline: 40px;
}

.noy-section {
    padding-top: var(--noy-space-xxl);
    padding-bottom: var(--noy-space-xxl);
}

.noy-section--white {
    background: var(--noy-white);
}

.noy-section--soft {
    background:
        radial-gradient(circle at 12% 10%, rgba(22, 156, 211, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff, var(--noy-background));
}

.noy-section--after-band {
    padding-top: calc(var(--noy-space-xxl) + 16px);
}

.noy-section--more-space {
    padding-top: calc(var(--noy-space-xxl) + 42px);
    padding-bottom: calc(var(--noy-space-xxl) + 42px);
}

.noy-section-heading {
    max-width: 780px;
    margin: 0 auto var(--noy-space-xl);
    text-align: center;
}

.noy-section-heading p {
    color: var(--noy-muted);
    font-size: 1.08rem;
}

.noy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--noy-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.noy-lead {
    color: var(--noy-muted);
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    max-width: 620px;
}

.noy-card {
    background: var(--noy-white);
    border: 1px solid var(--noy-border);
    border-radius: var(--noy-radius-md);
    box-shadow: var(--noy-shadow-card);
}

.noy-muted {
    color: var(--noy-muted);
}

/* ----------------------------------------------------------------------
   Buttons
---------------------------------------------------------------------- */

.noy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: var(--noy-radius-sm);
    font-weight: 800;
    line-height: 1.2;
    border: 1px solid transparent;
    transition:
        background-color var(--noy-transition),
        color var(--noy-transition),
        border-color var(--noy-transition),
        transform var(--noy-transition);
}

.noy-btn:hover,
.noy-btn:focus-visible {
    transform: translateY(-1px);
}

.noy-btn--primary {
    background: var(--noy-primary);
    color: var(--noy-white);
    border-color: var(--noy-primary);
}

.noy-btn--primary:hover,
.noy-btn--primary:focus-visible {
    background: var(--noy-primary-dark);
    border-color: var(--noy-primary-dark);
}

.noy-btn--secondary {
    background: transparent;
    color: var(--noy-primary);
    border-color: var(--noy-primary);
}

.noy-btn--secondary:hover,
.noy-btn--secondary:focus-visible {
    background: rgba(0, 87, 139, 0.06);
    color: var(--noy-primary-dark);
}

/* ----------------------------------------------------------------------
   Header
---------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(220, 229, 235, 0.9);
    backdrop-filter: blur(12px);
    transition:
        box-shadow var(--noy-transition),
        background-color var(--noy-transition);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 28px rgba(0, 87, 139, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 78px;
    max-width: var(--noy-container);
    margin-inline: auto;
    padding-inline: 40px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    color: var(--noy-primary);
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
}

.site-logo:hover,
.site-logo:focus-visible {
    color: var(--noy-primary-dark);
}

.site-logo__image {
    display: block;
    width: auto;
    height: 34px;
    max-width: 180px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.site-nav a {
    position: relative;
    color: var(--noy-text);
    font-size: 0.95rem;
    font-weight: 800;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--noy-accent);
    transition: width var(--noy-transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    width: 100%;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    background: var(--noy-primary);
    color: var(--noy-white);
    border-radius: var(--noy-radius-sm);
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
    background: var(--noy-primary-dark);
}

.mobile-nav {
    display: none;
    margin-left: auto;
    position: relative;
}

.mobile-nav summary {
    list-style: none;
    cursor: pointer;
    padding: 10px 14px;
    background: var(--noy-white);
    border: 1px solid var(--noy-border);
    border-radius: var(--noy-radius-sm);
    color: var(--noy-primary);
    font-weight: 800;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(280px, calc(100vw - 28px));
    display: grid;
    gap: 12px;
    padding: 18px;
    background: var(--noy-white);
    border: 1px solid var(--noy-border);
    border-radius: var(--noy-radius-md);
    box-shadow: var(--noy-shadow-soft);
}

.mobile-nav__panel a {
    color: var(--noy-text);
    font-weight: 800;
}

.mobile-nav__panel a:hover,
.mobile-nav__panel a:focus-visible {
    color: var(--noy-primary);
}

/* ----------------------------------------------------------------------
   Hero
---------------------------------------------------------------------- */

.noy-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 16%, rgba(22, 156, 211, 0.10), transparent 34%),
        linear-gradient(135deg, var(--noy-white), #edf6fb);
}

.noy-hero::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.96) 34%,
            rgba(255, 255, 255, 0.72) 48%,
            rgba(255, 255, 255, 0.10) 64%,
            rgba(255, 255, 255, 0.00) 100%
        );
    pointer-events: none;
}

.noy-hero__visual {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(58vw, 900px);
    margin: 0;
    overflow: hidden;
}

.noy-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.noy-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 58px;
    padding-bottom: 92px;
}

.noy-hero__content {
    width: min(100%, 640px);
}

.noy-hero__content h1 {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: clamp(2.25rem, 3.25vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.noy-hero__content .noy-lead {
    max-width: 610px;
    margin-bottom: 0;
}

.noy-hero__points {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.noy-hero__points li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--noy-text);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.25;
}

.noy-hero__points li::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid var(--noy-accent);
    border-radius: 999px;
    background:
        linear-gradient(135deg, transparent 45%, var(--noy-accent) 46%, var(--noy-accent) 54%, transparent 55%);
    flex: 0 0 auto;
}

.noy-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

/* ----------------------------------------------------------------------
   Klarheitsband
---------------------------------------------------------------------- */

.noy-clarity-band {
    position: relative;
    z-index: 5;
    margin-top: -46px;
    padding-bottom: 48px;
}

.noy-clarity-band__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(220, 229, 235, 0.95);
    border-radius: 0;
    box-shadow: 0 10px 28px rgba(0, 87, 139, 0.05);
    overflow: hidden;
}

.noy-clarity-item {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 28px 34px;
}

.noy-clarity-item + .noy-clarity-item {
    border-left: 1px solid var(--noy-border);
}

.noy-clarity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.noy-clarity-icon svg {
    display: block;
    width: 42px;
    height: 42px;
}

.noy-clarity-item h3 {
    margin-bottom: 4px;
    color: var(--noy-text);
    font-size: 1.03rem;
    font-weight: 800;
}

.noy-clarity-item p {
    color: var(--noy-muted);
    font-size: 0.91rem;
    line-height: 1.35;
}

/* ----------------------------------------------------------------------
   Karten
---------------------------------------------------------------------- */

.noy-difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.noy-topic-grid,
.noy-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.noy-difference-card,
.noy-topic-card,
.noy-for-card {
    position: relative;
    min-height: 300px;
    padding: 38px 34px 36px;
    background: var(--noy-white);
    border: 1px solid var(--noy-border);
    border-radius: var(--noy-radius-md);
    box-shadow: var(--noy-shadow-card);
    overflow: hidden;
}

.noy-difference-card::before,
.noy-topic-card::before,
.noy-for-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--noy-primary), var(--noy-accent));
}

.noy-difference-card h3,
.noy-topic-card h3,
.noy-for-card h3 {
    margin-bottom: 14px;
    color: var(--noy-text);
    font-size: clamp(1.2rem, 1.55vw, 1.55rem);
}

.noy-difference-card p,
.noy-for-card p {
    color: var(--noy-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.noy-difference-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 26px;
    color: var(--noy-primary);
    background: #eef7fb;
    border: 1px solid rgba(22, 156, 211, 0.24);
    border-radius: 18px;
}

.noy-difference-icon svg {
    display: block;
    width: 48px;
    height: 48px;
}

.noy-topic-card {
    min-height: 260px;
    padding: 34px 28px 30px;
    background: rgba(255, 255, 255, 0.92);
}

.noy-for-card {
    min-height: 280px;
    padding: 34px 28px 32px;
}

.noy-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.noy-pill-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    background: #f7fbfd;
    border: 1px solid rgba(0, 87, 139, 0.14);
    border-radius: 999px;
    color: var(--noy-primary);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ----------------------------------------------------------------------
   Erfahrungen
---------------------------------------------------------------------- */

.noy-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.noy-testimonial-card {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 36px 30px 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 229, 235, 0.95);
    border-radius: var(--noy-radius-md);
    box-shadow: var(--noy-shadow-card);
    overflow: hidden;
}

.noy-testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--noy-primary), var(--noy-accent));
}

.noy-testimonial-card--accent {
    background:
        linear-gradient(135deg, rgba(0, 87, 139, 0.96), rgba(22, 156, 211, 0.88));
    border-color: rgba(255, 255, 255, 0.18);
}

.noy-testimonial-card--accent::before {
    background: rgba(255, 255, 255, 0.7);
}

.noy-quote-mark {
    display: block;
    margin-bottom: 18px;
    color: var(--noy-accent);
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.72;
    opacity: 0.78;
}

.noy-testimonial-card--accent .noy-quote-mark {
    color: var(--noy-white);
    opacity: 0.9;
}

.noy-testimonial-text {
    color: var(--noy-text);
    font-size: 0.98rem;
    line-height: 1.68;
}

.noy-testimonial-card--accent .noy-testimonial-text {
    color: var(--noy-white);
    font-size: 1.08rem;
}

.noy-testimonial-meta {
    margin-top: auto;
    padding-top: 24px;
    display: grid;
    gap: 2px;
}

.noy-testimonial-meta strong {
    color: var(--noy-primary);
    font-size: 0.98rem;
}

.noy-testimonial-meta span {
    color: var(--noy-muted);
    font-size: 0.9rem;
}

.noy-testimonial-card--accent .noy-testimonial-meta strong,
.noy-testimonial-card--accent .noy-testimonial-meta span {
    color: var(--noy-white);
}

/* ----------------------------------------------------------------------
   Ueber Andreas
---------------------------------------------------------------------- */

.noy-about {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
}

.noy-about__image {
    position: relative;
    margin: 0;
    border-radius: var(--noy-radius-lg);
    overflow: hidden;
    background: var(--noy-background);
    box-shadow: var(--noy-shadow-soft);
}

.noy-about__image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: inherit;
    pointer-events: none;
}

.noy-about__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 87, 139, 0.02), rgba(0, 87, 139, 0.12));
    pointer-events: none;
}

.noy-about__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.noy-about__content {
    max-width: 760px;
}

.noy-about__content h2 {
    margin-bottom: 10px;
}

.noy-about__subtitle {
    margin-bottom: 28px;
    color: var(--noy-primary);
    font-size: clamp(1.12rem, 1.45vw, 1.32rem);
    font-weight: 800;
}

.noy-about__content p {
    color: var(--noy-muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.noy-about__highlight {
    display: grid;
    gap: 8px;
    margin-top: 32px;
    padding: 26px 28px;
    background: #eef7fb;
    border-left: 4px solid var(--noy-accent);
    border-radius: var(--noy-radius-md);
}

.noy-about__highlight strong {
    color: var(--noy-primary);
    font-size: 1.08rem;
}

.noy-about__highlight span {
    color: var(--noy-muted);
    line-height: 1.65;
}

.noy-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* ----------------------------------------------------------------------
   Popup / Modal
---------------------------------------------------------------------- */

.noy-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--noy-transition),
        visibility var(--noy-transition);
}

.noy-modal:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.noy-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 34, 49, 0.74);
    backdrop-filter: blur(6px);
}

.noy-modal__panel {
    position: relative;
    z-index: 2;
    width: min(960px, 100%);
    max-height: calc(100vh - 56px);
    overflow: auto;
    padding: clamp(32px, 5vw, 58px);
    background:
        radial-gradient(circle at 92% 8%, rgba(22, 156, 211, 0.08), transparent 30%),
        var(--noy-white);
    border: 1px solid rgba(220, 229, 235, 0.95);
    border-radius: var(--noy-radius-lg);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.noy-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef7fb;
    border: 1px solid rgba(22, 156, 211, 0.24);
    border-radius: 999px;
    color: var(--noy-primary);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
}

.noy-modal__close:hover,
.noy-modal__close:focus-visible {
    background: var(--noy-primary);
    color: var(--noy-white);
}

.noy-modal__panel h2 {
    margin-bottom: 24px;
    color: var(--noy-text);
}

.noy-modal__content {
    display: grid;
    gap: 18px;
}

.noy-modal__content p {
    color: var(--noy-muted);
    font-size: 1.04rem;
    line-height: 1.78;
}

.noy-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* ----------------------------------------------------------------------
   FAQ
---------------------------------------------------------------------- */

.noy-faq {
    max-width: 980px;
    margin-inline: auto;
    display: grid;
    gap: 14px;
}

.noy-faq-item {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(220, 229, 235, 0.95);
    border-radius: var(--noy-radius-md);
    box-shadow: 0 8px 22px rgba(0, 87, 139, 0.05);
    overflow: hidden;
}

.noy-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 22px 72px 22px 28px;
    color: var(--noy-text);
    font-size: clamp(1.05rem, 1.4vw, 1.24rem);
    font-weight: 800;
    line-height: 1.3;
    cursor: pointer;
    list-style: none;
}

.noy-faq-item summary::-webkit-details-marker {
    display: none;
}

.noy-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 26px;
    top: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    background: #eef7fb;
    border: 1px solid rgba(22, 156, 211, 0.24);
    border-radius: 999px;
    color: var(--noy-primary);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.noy-faq-item[open] summary {
    color: var(--noy-primary);
}

.noy-faq-item[open] summary::after {
    content: "-";
    background: var(--noy-primary);
    color: var(--noy-white);
    border-color: var(--noy-primary);
}

.noy-faq-content {
    padding: 0 28px 28px;
}

.noy-faq-content p {
    max-width: 820px;
    color: var(--noy-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ----------------------------------------------------------------------
   Rechtlicher Hinweisbereich
---------------------------------------------------------------------- */

.noy-legal-section {
    padding-top: 92px;
    padding-bottom: 92px;
    background:
        radial-gradient(circle at 88% 12%, rgba(22, 156, 211, 0.18), transparent 30%),
        linear-gradient(135deg, var(--noy-footer), #0b1b28);
    color: var(--noy-background);
}

.noy-legal-box {
    max-width: 1040px;
    margin-inline: auto;
}

.noy-legal-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(243, 243, 243, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.noy-legal-box h2 {
    max-width: 900px;
    margin-bottom: 28px;
    color: var(--noy-background);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.noy-legal-box p {
    max-width: 980px;
    color: rgba(243, 243, 243, 0.86);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.78;
}

.noy-legal-box p + p {
    margin-top: 20px;
}

/* ----------------------------------------------------------------------
   Kontaktbereich
---------------------------------------------------------------------- */

.noy-contact-section {
    padding-top: calc(var(--noy-space-xxl) + 18px);
    padding-bottom: calc(var(--noy-space-xxl) + 18px);
    background:
        radial-gradient(circle at 12% 8%, rgba(22, 156, 211, 0.08), transparent 32%),
        linear-gradient(180deg, var(--noy-white), var(--noy-background));
}

.noy-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(42px, 6vw, 92px);
    align-items: start;
}

.noy-contact-intro {
    position: sticky;
    top: 120px;
}

.noy-contact-intro h2 {
    margin-bottom: 24px;
}

.noy-contact-intro p {
    max-width: 640px;
    color: var(--noy-muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.noy-contact-steps {
    display: grid;
    gap: 14px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.noy-contact-steps li {
    color: var(--noy-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.noy-contact-steps strong {
    color: var(--noy-text);
    font-weight: 900;
}

.noy-contact-steps span {
    color: var(--noy-muted);
}

.noy-contact-card {
    padding: clamp(30px, 4vw, 46px);
    background: var(--noy-white);
    border: 1px solid var(--noy-border);
    border-radius: var(--noy-radius-lg);
    box-shadow: var(--noy-shadow-soft);
}

.noy-form-message {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: var(--noy-radius-sm);
    font-weight: 700;
}

.noy-form-message--success {
    background: #eef8f2;
    border: 1px solid #c7ead5;
    color: #1d6b3a;
}

.noy-form-message--error {
    background: #fff2f2;
    border: 1px solid #f2caca;
    color: #9c2020;
}

.noy-contact-form {
    display: grid;
    gap: 18px;
}

.noy-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.noy-form-field {
    display: grid;
    gap: 8px;
}

.noy-form-field label {
    color: var(--noy-text);
    font-size: 0.94rem;
    font-weight: 800;
}

.noy-form-field input,
.noy-form-field select,
.noy-form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    background: #f9fbfc;
    border: 1px solid var(--noy-border);
    border-radius: var(--noy-radius-sm);
    color: var(--noy-text);
    font: inherit;
    outline: none;
    transition:
        border-color var(--noy-transition),
        box-shadow var(--noy-transition),
        background-color var(--noy-transition);
}

.noy-form-field textarea {
    min-height: 160px;
    resize: vertical;
}

.noy-form-field input:focus,
.noy-form-field select:focus,
.noy-form-field textarea:focus {
    background: var(--noy-white);
    border-color: var(--noy-accent);
    box-shadow: 0 0 0 4px rgba(22, 156, 211, 0.12);
}

.noy-form-consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--noy-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.noy-form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.noy-form-consent a {
    color: var(--noy-primary);
    font-weight: 800;
}

.noy-form-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.noy-form-submit {
    margin-top: 6px;
}

.noy-contact-smallnote {
    margin-top: 20px;
    color: var(--noy-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ----------------------------------------------------------------------
   Standardseiten
---------------------------------------------------------------------- */

.noy-page-main {
    padding: var(--noy-space-xxl) 20px;
    background:
        linear-gradient(180deg, var(--noy-white), var(--noy-background));
}

.noy-content-box {
    max-width: 860px;
    margin-inline: auto;
    padding: clamp(32px, 5vw, 64px);
    background: var(--noy-white);
    border: 1px solid var(--noy-border);
    border-radius: var(--noy-radius-lg);
    box-shadow: var(--noy-shadow-soft);
}

.noy-content-box a {
    color: var(--noy-primary);
    font-weight: 700;
}

.noy-content-box a:hover,
.noy-content-box a:focus-visible {
    color: var(--noy-primary-dark);
}

/* ----------------------------------------------------------------------
   404
---------------------------------------------------------------------- */

.noy-intro {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 82% 18%, rgba(22, 156, 211, 0.14), transparent 34%),
        linear-gradient(135deg, var(--noy-white), #edf6fb);
}

.noy-intro__box {
    max-width: 900px;
    margin-inline: auto;
    padding: clamp(32px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(220, 229, 235, 0.85);
    border-radius: var(--noy-radius-lg);
    box-shadow: var(--noy-shadow-soft);
}

.noy-404 {
    text-align: center;
}

.noy-404 .noy-lead {
    margin-inline: auto;
}

.noy-404__actions {
    display: flex;
    justify-content: center;
    margin-top: var(--noy-space-lg);
}

/* ----------------------------------------------------------------------
   Footer
---------------------------------------------------------------------- */

.site-footer {
    background: var(--noy-footer);
    color: var(--noy-white);
}

.site-footer__inner {
    max-width: var(--noy-container);
    margin-inline: auto;
    padding: 42px 40px;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--noy-space-md);
    flex-wrap: wrap;
}

.site-footer__brand {
    margin: 0;
    color: var(--noy-white);
}

.site-footer__brand span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: var(--noy-white);
}

.site-footer__copy {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

/* ----------------------------------------------------------------------
   Responsive
---------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .noy-hero__visual {
        width: 54vw;
    }

    .noy-hero__content {
        width: min(100%, 580px);
    }

    .noy-hero__content h1 {
        font-size: clamp(2.15rem, 3.15vw, 3.15rem);
    }

    .noy-difference-grid,
    .noy-topic-grid,
    .noy-for-grid,
    .noy-testimonial-grid {
        gap: 22px;
    }

    .noy-topic-grid,
    .noy-for-grid,
    .noy-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    :root {
        --noy-space-xxl: 92px;
        --noy-space-xl: 56px;
    }

    body.admin-bar .site-header {
        top: 0;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .site-nav--desktop,
    .site-header__cta {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .noy-hero {
        min-height: auto;
        display: block;
        padding-bottom: 0;
    }

    .noy-hero::before {
        display: none;
    }

    .noy-hero__inner {
        padding-top: 72px;
        padding-bottom: 40px;
    }

    .noy-hero__content {
        width: min(100%, 760px);
    }

    .noy-hero__visual {
        position: relative;
        inset: auto;
        width: 100%;
        height: min(54vw, 480px);
        min-height: 320px;
        margin: 0;
    }

    .noy-clarity-band {
        margin-top: 0;
        padding-bottom: 38px;
    }

    .noy-clarity-band__inner {
        grid-template-columns: 1fr;
    }

    .noy-clarity-item + .noy-clarity-item {
        border-left: 0;
        border-top: 1px solid var(--noy-border);
    }

    .noy-difference-grid,
    .noy-topic-grid,
    .noy-for-grid,
    .noy-testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 780px;
        margin-inline: auto;
    }

    .noy-about {
        grid-template-columns: 1fr;
        max-width: 860px;
        margin-inline: auto;
    }

    .noy-about__image {
        max-width: 520px;
        margin-inline: auto;
    }

    .noy-contact-layout {
        grid-template-columns: 1fr;
        max-width: 860px;
        margin-inline: auto;
    }

    .noy-contact-intro {
        position: static;
    }
}

@media (max-width: 720px) {
    :root {
        --noy-space-xxl: 76px;
        --noy-space-xl: 44px;
    }

    .noy-container,
    .site-header__inner {
        padding-inline: 18px;
    }

    .site-footer__inner {
        padding-inline: 18px;
    }

    .site-logo__image {
        height: 30px;
        max-width: 150px;
    }

    .noy-hero__inner {
        padding-top: 54px;
        padding-bottom: 34px;
    }

    .noy-hero__content h1 {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .noy-hero__points {
        gap: 9px;
    }

    .noy-hero__actions,
    .noy-about__actions,
    .noy-modal__actions {
        flex-direction: column;
    }

    .noy-btn {
        width: 100%;
    }

    .noy-hero__visual {
        height: 360px;
        min-height: 360px;
    }

    .noy-clarity-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
        padding: 24px 22px;
    }

    .noy-clarity-icon,
    .noy-clarity-icon svg {
        width: 36px;
        height: 36px;
    }

    .noy-difference-card,
    .noy-topic-card,
    .noy-for-card,
    .noy-testimonial-card {
        min-height: auto;
        padding: 34px 28px 32px;
    }

    .noy-about__highlight {
        padding: 22px 22px;
    }

    .noy-modal {
        padding: 16px;
    }

    .noy-modal__panel {
        max-height: calc(100vh - 32px);
        padding: 34px 22px 28px;
    }

    .noy-modal__close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .noy-faq-item summary {
        min-height: 68px;
        padding: 20px 62px 20px 22px;
    }

    .noy-faq-item summary::after {
        right: 20px;
        width: 30px;
        height: 30px;
    }

    .noy-faq-content {
        padding: 0 22px 24px;
    }

    .noy-legal-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .noy-legal-box h2 {
        font-size: clamp(1.85rem, 9vw, 2.65rem);
    }

    .noy-contact-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .noy-form-row {
        grid-template-columns: 1fr;
    }

    .noy-contact-card {
        padding: 28px 22px;
    }

    .noy-contact-steps {
        gap: 12px;
    }

    .noy-contact-steps li {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .site-footer__top {
        align-items: flex-start;
    }

    .site-footer__links {
        flex-direction: column;
        gap: 10px;
    }
}