:root {
    --green: #049e38;
    --green-dark: #03762b;
    --green-deep: #063f2d;
    --green-ink: #052f24;
    --mint: #dff5e7;
    --mint-soft: #eef8f1;
    --ink: #101914;
    --muted: #52635a;
    --line: #c9d7ce;
    --paper: #f4f7f5;
    --white: #ffffff;
    --navy: #071e27;
    --navy-soft: #0b2d34;
    --warning: #f2d25f;
    --danger: #a62323;
    --success: #075d2d;
    --shadow: 10px 10px 0 rgba(2, 60, 29, 0.16);
    --container: 1180px;
    --header-height: 86px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    border-radius: 0 !important;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
}

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

.line-icon {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    text-decoration-thickness: 2px;
}

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

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

:focus-visible {
    outline: 3px solid #ffcf33;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px var(--ink) !important;
}

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

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(2.5rem, 4.45vw, 4rem);
    -webkit-hyphens: none;
    hyphens: none;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
}

h2 {
    margin-bottom: 1.2rem;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    -webkit-hyphens: none;
    hyphens: none;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
}

h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    overflow-wrap: break-word;
    hyphens: auto;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 0.8rem 1rem;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
}

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

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0.82rem 1.25rem;
    border: 2px solid var(--green-dark);
    color: var(--white);
    background: var(--green-dark);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    border-color: var(--green-deep);
    background: var(--green-deep);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
    transform: translate(-2px, -2px);
}

.button-small {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
}

.button-primary {
    min-height: 56px;
    padding-inline: 1.55rem;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.45rem;
    color: var(--green-dark);
    font-weight: 800;
}

.text-link-light {
    color: #a8ffd0;
}

.eyebrow,
.strip-kicker,
.authority-label {
    margin-bottom: 0.75rem;
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: grid;
    height: 100%;
    grid-template-columns: minmax(150px, 210px) 1fr auto;
    align-items: center;
    gap: 2rem;
}

.brand-link {
    display: flex;
    width: 100%;
    height: 70px;
    align-items: center;
}

.brand-link img {
    width: auto;
    max-width: 170px;
    max-height: 68px;
    object-fit: contain;
}

.header-facts {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.header-facts span + span {
    position: relative;
}

.header-facts span + span::before {
    position: absolute;
    top: 50%;
    left: -1rem;
    width: 1px;
    height: 22px;
    background: var(--line);
    content: "";
    transform: translateY(-50%);
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(2, 15, 12, 0.98) 0%, rgba(3, 26, 21, 0.94) 43%, rgba(3, 27, 27, 0.58) 72%, rgba(3, 25, 36, 0.48) 100%),
        url("../img/hero-security-hud.svg") center / cover no-repeat,
        var(--navy);
}

.hero::after {
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(126, 255, 191, 0.16);
    content: "";
    transform: rotate(45deg);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.26;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 680px;
    grid-template-columns: 1fr;
    align-items: center;
    padding-block: clamp(4.8rem, 9vw, 8rem);
}

.hero-copy {
    width: 66.666667%;
    max-width: none;
    justify-self: start;
}

.hero-copy .eyebrow {
    color: #95f4bc;
}

.hero-title-accent {
    color: #85efb1;
}

.hero-title-nowrap {
    white-space: nowrap;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 1.7rem;
    color: #dbe9e2;
    font-size: clamp(1.12rem, 2vw, 1.36rem);
    line-height: 1.55;
}

.hero-benefits {
    display: grid;
    gap: 0.72rem;
    max-width: 740px;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.hero-benefits li {
    position: relative;
    padding-left: 1.8rem;
    color: #eaf4ee;
}

.hero-benefits li::before {
    position: absolute;
    top: 0.53em;
    left: 0;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #8df4b7;
    content: "";
    transform: rotate(45deg);
}

.hero-benefits strong {
    color: var(--white);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.4rem;
}

.hero-proof {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(151, 245, 192, 0.22);
    border-inline: 1px solid rgba(151, 245, 192, 0.14);
}

.hero-proof div {
    display: grid;
    padding: 1.2rem 1.4rem;
    border-right: 1px solid rgba(151, 245, 192, 0.18);
    background: rgba(3, 28, 23, 0.74);
}

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

.hero-proof strong {
    color: #9ff4c2;
    font-size: 1.18rem;
}

.hero-proof span {
    color: #c8ddd2;
    font-size: 0.86rem;
}

.legal-strip {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.legal-strip-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.25fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
    padding-block: 3.25rem;
}

.legal-strip h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.legal-strip-copy p:last-child {
    margin-bottom: 0;
}

.deadline {
    padding: 1rem 1.1rem;
    border-left: 5px solid var(--warning);
    background: #fff9df;
}

.legal-source {
    color: var(--muted);
    font-size: 0.88rem;
}

.legal-source a {
    color: var(--green-dark);
    font-weight: 750;
}

.section {
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 3rem;
}

.section-heading.compact {
    margin-bottom: 0;
}

.section-heading > p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.split-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
}

.section-audience {
    background: var(--paper);
}

.audience-cards {
    display: grid;
    gap: 1rem;
}

.audience-card {
    position: relative;
    padding: 1.75rem 2rem 1.75rem 5.7rem;
    border: 1px solid var(--line);
    background: var(--white);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.audience-card:hover {
    border-color: var(--green);
    box-shadow: 7px 7px 0 rgba(4, 158, 56, 0.12);
    transform: translate(-2px, -2px);
}

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

.card-icon {
    position: absolute;
    top: 1.35rem;
    left: 1.35rem;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #a9d7b9;
    color: var(--green-dark);
    background: var(--mint-soft);
}

.card-icon .line-icon {
    width: 26px;
    height: 26px;
}

.section-outcomes {
    color: var(--white);
    background: var(--green-ink);
}

.section-heading-light > p:not(.eyebrow) {
    color: #c6d8cf;
}

.section-heading-light .eyebrow {
    color: #8ff0b6;
}

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

.outcome-card {
    padding: 2rem;
    border: 1px solid rgba(148, 239, 185, 0.25);
    background: rgba(255, 255, 255, 0.045);
}

.outcome-card p {
    margin-bottom: 0;
    color: #c9d9d1;
}

.icon-box {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 1.6rem;
    place-items: center;
    border: 1px solid rgba(152, 244, 190, 0.42);
    background: rgba(4, 158, 56, 0.14);
}

.icon-box svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #a1f4c4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.section-method {
    overflow: hidden;
    background: var(--mint-soft);
}

.method-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.method-visual {
    position: relative;
    min-height: 520px;
    border: 1px solid #a9cdb7;
    background:
        linear-gradient(rgba(4, 158, 56, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 158, 56, 0.05) 1px, transparent 1px),
        radial-gradient(circle at center, #ffffff 0, #edf8f1 52%, #dff1e6 100%);
    background-size: 30px 30px, 30px 30px, auto;
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(4, 158, 56, 0.34);
    transform: translate(-50%, -50%) rotate(45deg);
}

.radar-ring-one {
    width: 290px;
    height: 290px;
}

.radar-ring-two {
    width: 410px;
    height: 410px;
    border-style: dashed;
    opacity: 0.6;
}

.method-core {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 176px;
    height: 176px;
    place-content: center;
    border: 3px solid var(--green);
    color: var(--white);
    background: var(--green-deep);
    text-align: center;
    transform: translate(-50%, -50%);
}

.method-core span {
    color: #9cf2bf;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.method-core strong {
    margin-top: 0.65rem;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
}

.method-node {
    position: absolute;
    z-index: 3;
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid #9bc9ac;
    background: var(--white);
    box-shadow: 5px 5px 0 rgba(4, 158, 56, 0.13);
    font-size: 0.84rem;
    font-weight: 800;
}

.method-node-icon {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    color: var(--green-dark);
}

.method-node-icon .line-icon {
    width: 24px;
    height: 24px;
}

.method-node-one {
    top: 68px;
    left: 32px;
}

.method-node-two {
    top: 210px;
    right: 25px;
}

.method-node-three {
    bottom: 62px;
    left: 48px;
}

.method-copy h2 {
    max-width: 590px;
}

.method-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.check-list {
    display: grid;
    gap: 0.78rem;
    margin: 1.65rem 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
}

.check-list li::before {
    position: absolute;
    top: 0.38em;
    left: 0;
    width: 0.84rem;
    height: 0.5rem;
    border-bottom: 3px solid var(--green);
    border-left: 3px solid var(--green);
    content: "";
    transform: rotate(-45deg);
}

.section-curriculum {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(4, 158, 56, 0.09), transparent 52%),
        var(--navy);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.module-card {
    padding: clamp(1.55rem, 3vw, 2.3rem);
    border: 1px solid rgba(140, 226, 181, 0.24);
    background: rgba(255, 255, 255, 0.045);
}

.module-card-accent {
    background: rgba(4, 158, 56, 0.11);
}

.module-card-wide {
    grid-column: 1 / -1;
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(148, 233, 185, 0.22);
    color: #a3edc1;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.module-header strong {
    text-align: right;
}

.module-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
}

.module-card h3 {
    max-width: 620px;
}

.module-card p {
    max-width: 780px;
    color: #c7d9d0;
}

.module-card p:last-child {
    margin-bottom: 0;
}

.module-result {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(148, 233, 185, 0.16);
    font-size: 0.92rem;
}

.module-result strong {
    color: #a1f0c0;
}

.instructor-line {
    margin: 1.5rem 0 0;
    padding: 1.1rem 1.3rem;
    border-left: 4px solid var(--green);
    color: #d5e5dd;
    background: rgba(255, 255, 255, 0.05);
}

.section-completion {
    background: var(--white);
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-grid li {
    position: relative;
    min-height: 290px;
    padding: 2rem;
    border: 1px solid var(--line);
    border-right: 0;
}

.step-grid li:last-child {
    border-right: 1px solid var(--line);
}

.step-grid li > .step-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 3rem;
    place-items: center;
    border: 1px solid #9bcdae;
    color: var(--green-dark);
    background: var(--mint);
}

.step-icon .line-icon {
    width: 28px;
    height: 28px;
}

.step-grid li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 3.45rem;
    right: -0.55rem;
    width: 1rem;
    height: 1rem;
    border-top: 2px solid var(--green);
    border-right: 2px solid var(--green);
    background: var(--white);
    content: "";
    transform: rotate(45deg);
}

.step-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.exam-note {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1.2rem;
    padding: 1.4rem 1.6rem;
    color: var(--white);
    background: var(--green-deep);
}

.exam-note strong {
    color: #a0f0bf;
    font-size: 1.2rem;
}

.exam-note p {
    margin-bottom: 0;
    color: #d4e5dc;
}

.section-authority {
    background: var(--paper);
}

.authority-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(2.5rem, 7vw, 7rem);
}

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

.authority-card {
    padding: 2rem;
    border: 1px solid var(--line);
    background: var(--white);
}

.authority-card p:last-child {
    margin-bottom: 0;
}

.authority-card-dark {
    color: var(--white);
    background: var(--green-deep);
}

.authority-card-dark .authority-label {
    color: #9cf1bd;
}

.authority-card-dark > p:not(.authority-label) {
    color: #d3e4db;
}

.registry {
    padding-top: 0.9rem;
    border-top: 1px solid rgba(164, 235, 195, 0.2);
    font-size: 0.84rem;
}

.section-pricing {
    background: var(--mint-soft);
}

.pricing-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.72fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
}

.pricing-copy > p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
}

.pricing-points {
    display: grid;
    gap: 0.85rem;
    margin: 1.7rem 0 0;
    padding: 0;
    list-style: none;
}

.pricing-points li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-points li > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid #9bcdae;
    color: var(--green-dark);
    background: var(--white);
}

.pricing-points .line-icon {
    width: 23px;
    height: 23px;
}

.price-card {
    padding: clamp(2rem, 4vw, 3rem);
    border-top: 6px solid var(--green);
    color: var(--white);
    background: var(--green-deep);
    box-shadow: var(--shadow);
}

.price-card-label {
    margin-bottom: 0.35rem;
    color: #a4f3c2;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.price-current {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    margin-bottom: 0;
    line-height: 1;
}

.price-current strong {
    font-size: clamp(2.75rem, 5vw, 4.6rem);
    letter-spacing: -0.055em;
}

.price-current span {
    color: #bcebd0;
    font-size: 1.2rem;
    font-weight: 800;
}

.price-list {
    margin: 0.8rem 0 1.6rem;
    color: #c8ded3;
    font-weight: 700;
}

.price-list del {
    text-decoration-color: #8ff0b6;
    text-decoration-thickness: 2px;
}

.price-card .button {
    width: 100%;
    border-color: var(--green);
    background: var(--green);
}

.price-legal {
    margin: 1.25rem 0 0;
    color: #c6dacf;
    font-size: 0.76rem;
    line-height: 1.55;
}

.section-faq {
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
}

.faq-layout .section-heading a {
    color: var(--green-dark);
    font-weight: 800;
}

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

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

.faq-list summary {
    position: relative;
    padding: 1.35rem 3.4rem 1.35rem 0;
    font-size: 1.05rem;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 0.65rem;
    width: 17px;
    height: 2px;
    background: var(--green-dark);
    content: "";
    transition: transform 160ms ease;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary::after {
    transform: rotate(0deg);
}

.faq-list details p {
    max-width: 780px;
    margin: -0.2rem 3.4rem 1.45rem 0;
    color: var(--muted);
}

.faq-steps {
    display: grid;
    gap: 0.72rem;
    max-width: 780px;
    margin: -0.2rem 3.4rem 1.45rem 0;
    padding-left: 1.35rem;
    color: var(--muted);
}

/* A fix AI Helpdesk közvetlenül a gyakori kérdések része. */
.faq-layout {
    row-gap: 36px;
}

#ai-helpdesk-title,
.section-faq .ai-chat-panel {
    grid-column: 1 / -1;
}

#ai-helpdesk-title {
    margin: 28px 0 0;
    padding: 48px 300px 0 0;
    border-top: 0;
}

.ai-chat-panel {
    position: relative;
    border: 1px solid rgba(4, 158, 56, 0.38);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
}

.ai-chat-messages {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 260px;
    max-height: 430px;
    padding: 24px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(4, 158, 56, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 158, 56, 0.035) 1px, transparent 1px),
        #f8fbf9;
    background-size: 28px 28px;
    scroll-behavior: smooth;
}

.ai-chat-agent-image {
    position: absolute;
    right: 10px;
    bottom: 100%;
    z-index: 2;
    display: block;
    width: 266px;
    max-width: 30%;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.ai-chat-message {
    width: min(88%, 620px);
    padding: 15px 17px;
    border: 1px solid var(--line);
    border-radius: 15px !important;
    background: var(--white);
}

.ai-chat-message-assistant {
    position: relative;
    width: min(calc(88% - 68px), 620px);
    margin-left: 68px;
}

.ai-chat-avatar {
    position: absolute;
    top: 50%;
    left: -60px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50% !important;
    color: var(--green);
    background: var(--white);
    box-shadow: 0 6px 16px rgba(4, 35, 19, 0.16);
    font-size: 17px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 1;
    transform: translateY(-50%);
    user-select: none;
}

.ai-chat-message-user {
    justify-self: end;
    border-color: var(--green);
    background: var(--mint);
}

.ai-chat-speaker {
    display: block;
    margin-bottom: 5px;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ai-chat-message p {
    margin: 0;
    white-space: pre-wrap;
}

.ai-chat-message.is-pending p {
    color: var(--muted);
}

.ai-chat-message.is-pending p::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    background: var(--green);
    content: "";
    animation: ai-chat-pulse 1s ease-in-out infinite alternate;
}

.ai-chat-message.is-error {
    border-color: var(--danger);
    background: #fff0f0;
}

.ai-chat-form {
    padding: 22px 24px 18px;
}

.ai-chat-form .form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
}

.ai-human-check {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.ai-human-check p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.ai-human-check.is-verified {
    display: none;
}

.ai-chat-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.ai-chat-form textarea {
    display: block;
    width: 100%;
    min-height: 96px;
    padding: 13px 14px;
    resize: vertical;
    border: 1px solid #98aa9f;
    color: var(--ink);
    background: var(--white);
}

.ai-chat-form textarea:disabled {
    background: var(--paper);
    cursor: not-allowed;
}

.ai-chat-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
}

.ai-chat-status {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.ai-chat-actions .button:disabled {
    cursor: wait;
    opacity: 0.62;
}

.ai-chat-disclaimer {
    margin: 0;
    padding: 0 24px 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

@keyframes ai-chat-pulse {
    from { opacity: 0.28; transform: scale(0.82); }
    to { opacity: 1; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .ai-chat-message.is-pending p::after {
        animation: none;
    }
}

.section-form {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(130deg, rgba(4, 158, 56, 0.25), transparent 48%),
        var(--green-ink);
}

.section-form::before {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(168, 255, 207, 0.45) 1px, transparent 0);
    background-size: 28px 28px;
    content: "";
    mask-image: linear-gradient(90deg, black, transparent 62%);
}

.form-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
}

.form-copy {
    position: static;
    align-self: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.form-copy .eyebrow {
    color: #91edb5;
}

.form-copy > p:not(.eyebrow) {
    color: #caddd3;
    font-size: 1.07rem;
}

.form-assurances {
    display: grid;
    gap: 0.72rem;
    margin: 1.6rem 0;
    padding: 0;
    list-style: none;
}

.form-assurances > div {
    display: grid;
    gap: 0.12rem;
    padding-left: 1.6rem;
    color: #dceae3;
    position: relative;
}

.form-assurances > div::before {
    position: absolute;
    top: 0.46em;
    left: 0;
    width: 0.62rem;
    height: 0.62rem;
    background: var(--green);
    content: "";
}

.form-assurances strong {
    color: var(--white);
}

.form-card {
    padding: clamp(1.35rem, 4vw, 2.5rem);
    border-top: 6px solid var(--green);
    color: var(--ink);
    background: var(--white);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.23);
}

.form-alert,
.error-summary {
    margin-bottom: 1.4rem;
    padding: 1rem 1.1rem;
    border-left: 5px solid;
}

.form-alert-success {
    border-color: var(--green);
    color: var(--success);
    background: #eaf8ef;
}

.form-alert-error,
.error-summary {
    border-color: var(--danger);
    color: #6d1717;
    background: #fff0f0;
}

.form-fields {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.form-unavailable {
    margin: 0 0 1.4rem;
}

.error-summary ul {
    margin: 0.55rem 0 0;
    padding-left: 1.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.field {
    min-width: 0;
}

.field-wide {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 0.38rem;
    font-size: 0.88rem;
    font-weight: 820;
}

.optional {
    color: var(--muted);
    font-size: 0.79rem;
    font-weight: 600;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0.75rem 0.82rem;
    border: 1px solid #98aa9f;
    color: var(--ink);
    background: var(--white);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(4, 158, 56, 0.16);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border: 2px solid var(--danger);
}

.field-error {
    margin: 0.35rem 0 0;
    color: var(--danger);
    font-size: 0.82rem;
    font-weight: 700;
}

.consent-field {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0.7rem;
    align-items: start;
    margin-top: 1.4rem;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
}

.consent-field-error {
    border: 2px solid var(--danger);
}

.consent-field input {
    width: 20px;
    height: 20px;
    margin: 0.12rem 0 0;
    accent-color: var(--green);
}

.consent-field label {
    font-size: 0.9rem;
}

.consent-copy {
    min-width: 0;
}

.consent-field a {
    color: var(--green-dark);
    font-weight: 750;
}

.button-submit {
    width: 100%;
    min-height: 56px;
    margin-top: 1.15rem;
}

.button-submit:disabled {
    border-color: #789185;
    background: #789185;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.form-footnote {
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    color: #d5e4dc;
    background: #061713;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 1.05rem 0.85rem;
}

.footer-organization {
    max-width: 440px;
    margin: 0;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.35;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.3rem 1rem;
    font-size: 0.82rem;
}

.site-footer a {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 0.65rem;
    border-top: 1px solid rgba(197, 226, 211, 0.17);
    color: #9fb3a9;
    font-size: 0.78rem;
}

.footer-bottom a {
    color: #b8cbc1;
}

.mobile-cta {
    display: none;
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 480ms ease, transform 480ms ease;
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.legal-page {
    background: var(--paper);
}

.site-header-simple .header-inner {
    grid-template-columns: minmax(150px, 220px) 1fr;
}

.back-link {
    justify-self: end;
    color: var(--green-dark);
    font-weight: 800;
}

.legal-content {
    padding-block: 4.5rem 6rem;
}

.legal-content-inner {
    max-width: 860px;
    padding: clamp(1.4rem, 5vw, 4rem);
    border: 1px solid var(--line);
    background: var(--white);
}

.legal-content h1 {
    font-size: clamp(2rem, 4.4vw, 3.5rem);
}

.legal-content h2 {
    margin-top: 2.5rem;
    font-size: 1.35rem;
}

.legal-content .lead {
    color: var(--muted);
    font-size: 1.1rem;
}

.legal-content a,
.legal-content code {
    overflow-wrap: anywhere;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

.imprint-list {
    margin: 1.25rem 0 0;
    border-top: 1px solid var(--line);
}

.imprint-list div {
    display: grid;
    grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.25fr);
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
}

.imprint-list dt {
    color: var(--muted);
    font-weight: 750;
}

.imprint-list dd {
    margin: 0;
    font-weight: 650;
}

.legal-notice {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--warning);
    background: #fff7dc;
}

.legal-notice p {
    margin-bottom: 0;
}

@media (min-width: 901px) {
    .split-intro h2,
    .authority-layout h2,
    .faq-layout h2,
    .form-layout h2 {
        font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    }
}

@media (max-width: 1080px) {
    .header-facts {
        display: none;
    }

    .header-inner {
        grid-template-columns: minmax(150px, 1fr) auto;
    }

    .hero-layout {
        min-height: auto;
    }

    .method-layout {
        grid-template-columns: minmax(320px, 0.8fr) 1fr;
        gap: 3rem;
    }

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

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

    .legal-strip-layout,
    .split-intro,
    .method-layout,
    .pricing-panel,
    .faq-layout,
    .form-layout {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        padding-block: 4.5rem 3rem;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-proof div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(151, 245, 192, 0.18);
    }

    .section-heading.compact {
        margin-bottom: 2rem;
    }

    .outcome-grid,
    .step-grid {
        grid-template-columns: 1fr;
    }

    .outcome-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 1.2rem;
    }

    .outcome-card .icon-box {
        grid-row: span 2;
        margin: 0;
    }

    .step-grid li {
        min-height: 0;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .step-grid li:last-child {
        border-bottom: 1px solid var(--line);
    }

    .step-grid li > .step-icon {
        margin-bottom: 1.5rem;
    }

    .step-grid li:not(:last-child)::after {
        top: auto;
        right: 2rem;
        bottom: -0.55rem;
        transform: rotate(135deg);
    }

    .authority-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-copy {
        position: static;
    }
}

@media (max-width: 680px) {
    #ai-helpdesk-title {
        padding-right: 0;
    }

    .section-faq .ai-chat-panel {
        margin-top: 100px;
    }

    .ai-chat-messages {
        min-height: 230px;
        padding: 16px;
    }

    .ai-chat-agent-image {
        width: 180px;
        max-width: 55%;
    }

    .ai-chat-message {
        width: 94%;
    }

    .ai-chat-message-assistant {
        width: calc(100% - 50px);
        margin-left: 50px;
    }

    .ai-chat-avatar {
        left: -46px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .ai-chat-form {
        padding: 18px 16px 14px;
    }

    .ai-chat-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ai-chat-actions .button {
        width: 100%;
    }

    .ai-chat-disclaimer {
        padding: 0 16px 16px;
    }

    h1 {
        font-size: clamp(1.5rem, 7vw, 2.55rem);
    }

    h2 {
        font-size: clamp(1.35rem, 6.4vw, 1.95rem);
    }

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

    body {
        padding-bottom: 58px;
    }

    .site-header .button-small {
        display: none;
    }

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

    .brand-link {
        width: 168px;
    }

    .brand-link img {
        width: auto;
        max-width: 150px;
        max-height: 58px;
    }

    .hero {
        background-position: 62% center;
    }

    .hero::after {
        display: none;
    }

    .hero-layout {
        padding-top: 3.7rem;
    }

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

    .hero-actions .button,
    .hero-actions .text-link {
        width: 100%;
        justify-content: center;
    }

    .pricing-points li {
        align-items: flex-start;
    }

    .hero-proof {
        width: 100%;
        border-inline: 0;
    }

    .hero-proof div {
        padding: 1rem;
    }

    .section {
        padding-block: 4rem;
    }

    .audience-card {
        padding: 1.45rem 1.35rem 1.45rem 4.6rem;
    }

    .card-icon {
        left: 1rem;
    }

    .outcome-card {
        display: block;
    }

    .outcome-card .icon-box {
        margin-bottom: 1.2rem;
    }

    .method-visual {
        min-height: 430px;
    }

    .radar-ring-one {
        width: 220px;
        height: 220px;
    }

    .radar-ring-two {
        width: 310px;
        height: 310px;
    }

    .method-core {
        width: 145px;
        height: 145px;
    }

    .method-node {
        min-height: 48px;
        font-size: 0.73rem;
    }

    .method-node-one {
        top: 38px;
        left: 15px;
    }

    .method-node-two {
        top: 188px;
        right: 12px;
    }

    .method-node-three {
        bottom: 38px;
        left: 18px;
    }

    .module-grid,
    .authority-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .module-card-wide,
    .field-wide {
        grid-column: auto;
    }

    .exam-note {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
        padding-block: 0.85rem 0.7rem;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-wrap: wrap;
        gap: 0.2rem 1rem;
    }

    .mobile-cta {
        position: fixed;
        z-index: 90;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        min-height: 58px;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        color: var(--white);
        background: var(--green-dark);
        box-shadow: 0 -5px 18px rgba(0, 0, 0, 0.25);
        font-weight: 850;
        text-decoration: none;
        transition: transform 180ms ease;
    }

    .mobile-cta.is-hidden {
        transform: translateY(110%);
        visibility: hidden;
        pointer-events: none;
    }

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

    .back-link {
        font-size: 0.82rem;
    }

    .imprint-list div {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
}

@media (max-width: 520px) {
    .method-visual {
        display: grid;
        min-height: 0;
        gap: 0.65rem;
        padding: 1rem;
    }

    .method-visual .radar-ring {
        display: none;
    }

    .method-core {
        position: static;
        width: 100%;
        height: auto;
        min-height: 120px;
        transform: none;
    }

    .method-node,
    .method-node-one,
    .method-node-two,
    .method-node-three {
        position: static;
        width: 100%;
        max-width: none;
    }
}

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

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

    .hero-proof div,
    .hero-proof div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(151, 245, 192, 0.18);
    }

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

}

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

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

    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .mobile-cta,
    .hero-actions,
    .section-form {
        display: none !important;
    }

    body {
        padding: 0;
        color: #000;
        background: #fff;
    }

    .hero,
    .section-outcomes,
    .section-curriculum,
    .site-footer {
        color: #000;
        background: #fff;
    }

    .hero-layout {
        min-height: 0;
        padding-block: 2rem;
    }

    .hero-copy {
        width: 100%;
    }

    .outcome-card,
    .module-card,
    .price-card,
    .authority-card-dark {
        color: #000;
        background: #fff;
        box-shadow: none;
    }

    .hero *,
    .section-outcomes *,
    .section-curriculum *,
    .authority-card-dark *,
    .site-footer * {
        color: #000 !important;
        text-shadow: none !important;
    }
}
