:root {
    --navy: #0d2b58;
    --navy-soft: #244c7f;
    --gold: #d99a1c;
    --gold-soft: #f2c15a;
    --ink: #23313b;
    --muted: #66727b;
    --cream: #f7f3eb;
    --paper: #fffdf9;
    --line: #ded7ca;
    --green: #27704f;
    --red: #9e2230;
    --shadow: 0 18px 50px rgba(31, 43, 54, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

body.modal-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

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

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

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

.container {
    width: min(1480px, calc(100% - 40px));
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

.site-header {
    position: sticky;
    z-index: 900;
    top: 0;
    background: rgba(255, 253, 249, 0.96);
    border-bottom: 1px solid rgba(222, 215, 202, 0.8);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 70px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--navy);
}

.brand-logo {
    display: block;
    width: clamp(175px, 16vw, 220px);
    height: auto;
}

.footer-brand .brand-logo {
    width: min(100%, 240px);
}

.main-nav {
    justify-self: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
    color: #3d454b;
    font-weight: 650;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.main-nav__admin {
    position: relative;
}

.main-nav__admin summary {
    position: relative;
    padding: 12px 18px 12px 0;
    color: #3d454b;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.main-nav__admin summary::-webkit-details-marker {
    display: none;
}

.main-nav__admin summary::after {
    content: "\25BE";
    position: absolute;
    top: 50%;
    right: 0;
    color: var(--gold);
    transform: translateY(-50%);
}

.main-nav .main-nav__submenu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 6px);
    right: 0;
    display: none;
    min-width: 230px;
    gap: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.main-nav__admin details[open] > .main-nav__submenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.main-nav .main-nav__submenu a {
    display: block;
    padding: 9px 11px;
    border-radius: 8px;
    white-space: nowrap;
}

.main-nav .main-nav__submenu a::after {
    display: none;
}

.main-nav .main-nav__submenu a:hover,
.main-nav .main-nav__submenu a:focus-visible {
    background: #f5f2ec;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav__fiok-muveletek {
    display: none;
}

.fiok-osszefoglalo {
    padding: 10px 0 0;
}

.fiok-osszefoglalo__belso {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 16px;
    color: var(--navy);
    background: #eee9e1;
    border: 1px solid #ded6ca;
    border-radius: 14px;
}

.fiok-osszefoglalo--tmp .fiok-osszefoglalo__belso {
    background: #fff4df;
    border-color: #ead2a3;
}

.fiok-osszefoglalo__belso > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fiok-osszefoglalo__belso span {
    font-size: 0.84rem;
}

.fiok-osszefoglalo__statisztika,
.fiok-osszefoglalo__muveletek {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.fiok-osszefoglalo__muveletek .button {
    min-height: 34px;
    padding: 5px 12px;
    font-size: 0.8rem;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 18px;
    color: #fff;
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 11px;
    cursor: pointer;
    font-weight: 750;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
    background: var(--navy-soft);
    box-shadow: 0 9px 24px rgba(13, 43, 88, 0.2);
    transform: translateY(-2px);
}

.button-outline {
    color: var(--navy);
    background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
    color: #fff;
    background: var(--navy);
}

.button-gold {
    color: #2a2417;
    background: var(--gold-soft);
    border-color: var(--gold-soft);
}

.button-gold:hover,
.button-gold:focus-visible {
    color: #19140b;
    background: #ffd071;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: var(--navy);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
}

.hero-section {
    padding: 22px 0 0;
    background: linear-gradient(180deg, #fbf8f2 0%, #fff 100%);
}

.hero {
    position: relative;
    height: clamp(360px, 26vw, 440px);
    overflow: hidden;
    background-color: #f4efe8;
    background-image: url("img/banner_01.jpg");
    background-position: center;
    background-size: cover;
    border: 1px solid #e6dfd3;
    border-radius: 30px;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.84) 32%, rgba(255,255,255,0.05) 65%);
}

.hero-content {
    width: min(650px, 53%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 4vw, 58px);
}

.hero h1 {
    max-width: 630px;
    margin: 0;
    color: #171b20;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.05rem, 3.2vw, 3.65rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-copy {
    max-width: 590px;
    margin: 18px 0 0;
    color: #45515a;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
    color: #5d6870;
    font-size: 0.9rem;
    font-weight: 650;
}

.hero-meta span::before {
    content: "✓";
    margin-right: 7px;
    color: var(--green);
    font-weight: 900;
}

.banner-controls {
    position: absolute;
    right: 18px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    background: rgba(19, 31, 43, 0.34);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    box-shadow: none;
    opacity: 0.68;
    backdrop-filter: blur(5px);
    transition: opacity 160ms ease, background 160ms ease;
}

.banner-controls:hover,
.banner-controls:focus-within {
    background: rgba(19, 31, 43, 0.58);
    opacity: 1;
}

.banner-control {
    width: 30px;
    height: 30px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 800;
}

.banner-control:hover,
.banner-control:focus-visible {
    background: rgba(255,255,255,0.2);
}

.banner-dots {
    display: flex;
    gap: 7px;
}

.banner-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgba(255,255,255,0.58);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.banner-dot.active {
    width: 24px;
    background: var(--gold);
    border-radius: 10px;
}

.process-section {
    padding: 72px 0 80px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.2vw, 3.55rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading p:last-child {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    padding: 30px 20px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 15px 44px rgba(34, 44, 50, 0.08);
}

.process-step {
    min-width: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 12px;
    appearance: none;
    cursor: pointer;
    font: inherit;
    text-align: center;
}

.process-step img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: contain;
    transition: transform 180ms ease;
}

.process-step:hover img,
.process-step:focus-visible img {
    transform: translateY(-6px);
}

.process-step:focus-visible {
    outline: 3px solid rgba(190, 139, 34, 0.45);
    outline-offset: 4px;
}

.process-step p {
    margin: 10px auto 0;
    color: #536069;
    font-size: 0.93rem;
}

.news-section {
    padding: 78px 0 90px;
    background: var(--cream);
    border-top: 1px solid #eee6da;
    border-bottom: 1px solid #eee6da;
}

.text-link {
    color: var(--navy);
    font-weight: 800;
}

.text-link::after {
    content: " →";
    color: var(--gold);
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.8fr);
    gap: 24px;
}

.feature-card,
.news-card,
.topic-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2dbcf;
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(45, 49, 51, 0.08);
}

.feature-image,
.news-image {
    width: 100%;
    object-fit: cover;
}

.feature-image {
    height: clamp(280px, 32vw, 480px);
    object-position: 68% center;
}

.feature-body {
    padding: 28px 30px 32px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 12px;
    color: #7b6541;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-card h3,
.news-card h3 {
    margin: 0;
    color: #1d2b35;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.1;
}

.feature-card h3 {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.feature-card p,
.news-card p {
    color: var(--muted);
}

.side-news {
    display: grid;
    gap: 24px;
}

.news-card {
    display: grid;
    grid-template-columns: 40% 1fr;
    min-height: 210px;
}

.news-image {
    height: 100%;
    min-height: 210px;
    object-position: 74% center;
}

.news-body {
    align-self: center;
    padding: 22px;
}

.news-card h3 {
    font-size: 1.35rem;
}

.news-card p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.topics-section {
    padding: 80px 0 90px;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.topic-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    color: #fff;
    background: var(--navy);
    isolation: isolate;
}

.topic-card:nth-child(2) {
    background: var(--green);
}

.topic-card:nth-child(3) {
    color: #2a261d;
    background: var(--gold-soft);
}

.topic-card:nth-child(4) {
    background: #693f74;
}

.topic-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -38px;
    bottom: -50px;
    width: 170px;
    height: 170px;
    border: 3px dashed rgba(255,255,255,0.22);
    border-radius: 28px;
    transform: rotate(17deg);
}

.topic-card:nth-child(3)::after {
    border-color: rgba(42,38,29,0.2);
}

.topic-icon {
    display: block;
    margin-bottom: 38px;
    font-size: 2.3rem;
}

.topic-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.topic-card p {
    margin-bottom: 0;
    opacity: 0.82;
}

.cta-section {
    padding: 0 0 90px;
}

.cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(34px, 5vw, 68px);
    color: #fff;
    background: var(--navy);
    border-radius: 26px;
}

.cta::after {
    content: "";
    position: absolute;
    right: -60px;
    width: 320px;
    height: 320px;
    border: 4px solid rgba(217,154,28,0.42);
    border-radius: 50%;
}

.cta-copy {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.2vw, 3.7rem);
    font-weight: 500;
    line-height: 1.05;
}

.cta p {
    margin: 18px 0 0;
    color: #dbe5f2;
}

.cta .button {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.site-footer {
    color: #26363b;
    background: #ddd3c2;
    border-top: 1px solid #cfc3af;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 50px;
    padding: 58px 0 42px;
}

.footer-brand p {
    max-width: 380px;
    color: #526066;
}

.footer-column h3 {
    margin: 0 0 18px;
    font-size: 1rem;
}

.footer-column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--navy);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    color: #5d686c;
    border-top: 1px solid rgba(82, 96, 102, 0.22);
    font-size: 0.88rem;
}

.cookie-panel {
    position: fixed;
    z-index: 1200;
    right: 24px;
    bottom: 16px;
    left: 24px;
    max-width: 1440px;
    margin: 0 auto;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 16px;
    color: #fff;
    background: rgba(19, 31, 43, 0.92);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
}

.cookie-panel.visible {
    display: flex;
}

.cookie-panel p {
    flex: 1 1 auto;
    margin: 0;
    color: #dbe3e9;
    font-size: 0.88rem;
}

.cookie-panel strong {
    display: inline;
    margin-right: 8px;
    color: #fff;
}

.cookie-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cookie-actions .button {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 0.82rem;
}

.cookie-secondary {
    color: #fff;
    background: transparent;
    border-color: #8695a1;
}

.modal-backdrop {
    position: fixed;
    z-index: 1400;
    inset: 0;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(10, 22, 35, 0.64);
    backdrop-filter: blur(5px);
}

.modal-backdrop.visible {
    display: grid;
}

.modal-card {
    width: min(520px, 100%);
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.32);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    color: #1f2529;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.modal-header h2 {
    margin: 0;
    color: #1f2529;
    font-size: 1.25rem;
}

.modal-close {
    width: 36px;
    height: 36px;
    padding: 0;
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
}

.modal-body {
    padding: 26px 24px;
    color: #4c5962;
}

.modal-information {
    margin: 16px 0 0;
    padding: 12px 14px;
    color: #9f1f2f;
    background: #fff0f2;
    border: 1px solid #e9a8b0;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 24px 24px;
}

.modal-footer [hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid #4e9deb;
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .menu-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        display: none;
        padding-bottom: 18px;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav__admin {
        width: 100%;
        text-align: center;
    }

    .main-nav__admin summary {
        display: inline-block;
    }

    .main-nav .main-nav__submenu {
        position: static;
        width: min(100%, 320px);
        margin: 4px auto 0;
        box-shadow: none;
    }

    .header-actions {
        position: absolute;
        top: 13px;
        right: 80px;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
    }

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

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

    .main-nav__fiok-muveletek {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 8px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav__fiok-muveletek .button {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 0.86rem;
    }

    .hero {
        height: 470px;
        background-position: 72% center;
    }

    .hero::before {
        background: linear-gradient(0deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.93) 48%, rgba(255,255,255,0.08) 80%);
    }

    .hero-content {
        width: 100%;
        justify-content: flex-end;
        padding: 34px 28px 48px;
    }

    .hero .eyebrow {
        color: #6d4b0d;
    }

    .hero h1 {
        max-width: 680px;
        font-size: clamp(2.05rem, 7vw, 3.1rem);
    }

    .banner-controls {
        top: 14px;
        right: 14px;
        bottom: auto;
    }

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

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

    .feature-image {
        height: 320px;
    }

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

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

@media (max-width: 620px) {
    .fiok-osszefoglalo__belso {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .container {
        width: min(100% - 24px, 1480px);
    }

    .header-inner {
        min-height: 64px;
        gap: 10px;
    }

    .brand {
        gap: 8px;
    }

    .brand-logo {
        width: 160px;
    }

    .header-actions {
        top: 12px;
        right: 65px;
    }

    .header-actions .button {
        min-height: 40px;
        padding: 8px 11px;
        font-size: 0.82rem;
    }

    .main-nav ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-section {
        padding-top: 12px;
    }

    .hero {
        height: 450px;
        border-radius: 20px;
    }

    .hero::before {
        background: linear-gradient(
            0deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.97) 64%,
            rgba(255,255,255,0.64) 86%,
            rgba(255,255,255,0.18) 100%
        );
    }

    .hero-content {
        padding: 24px 20px 36px;
    }

    .hero h1 {
        color: #0b1721;
        font-weight: 600;
        text-shadow: 0 1px 0 rgba(255,255,255,0.98), 0 0 18px rgba(255,255,255,0.92);
    }

    .hero-copy {
        margin-top: 16px;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .hero-actions .button {
        flex: 1 1 100%;
    }

    .hero-meta {
        display: none;
    }

    .banner-dots {
        display: none;
    }

    .process-section,
    .news-section,
    .topics-section {
        padding: 56px 0;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 22px 16px;
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-image {
        height: 190px;
        min-height: 0;
    }

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

    .footer-bottom,
    .cookie-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.hero-section--small {
    padding-top: 12px;
}

.hero--small {
    height: 150px;
    min-height: 0;
    border-radius: 20px;
}

.hero--small .hero-content {
    width: min(760px, 72%);
    height: 100%;
    justify-content: center;
    padding: 10px 24px;
}

.hero--small .eyebrow {
    margin-bottom: 3px;
    color: #6d4b0d;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
}

.hero--small h1 {
    max-width: 720px;
    font-size: clamp(1.45rem, 2.25vw, 2.15rem);
    font-weight: 600;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(255,255,255,0.95), 0 0 14px rgba(255,255,255,0.78);
}

.hero--small .hero-copy {
    max-width: 680px;
    margin-top: 5px;
    font-size: 0.82rem;
    line-height: 1.35;
}

.hero--small .hero-meta {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    font-size: 0.68rem;
}

.hero--small .hero-meta span::before {
    margin-right: 4px;
}

@media (max-width: 620px) {
    .hero--small {
        height: 150px;
    }

    .hero--small .hero-content {
        width: 100%;
        padding: 8px 12px;
    }

    .hero--small h1 {
        font-size: clamp(1.2rem, 5.2vw, 1.55rem);
    }

    .hero--small .hero-copy {
        margin-top: 4px;
        font-size: 0.72rem;
    }

    .hero--small .hero-meta {
        gap: 6px;
        margin-top: 4px;
        font-size: 0.6rem;
    }
}

.process-grid--small {
    width: min(100%, 790px);
    height: 100px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 14px;
    border-radius: 14px;
}

.process-grid--small .process-step {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-grid--small .process-step img {
    width: 100%;
    height: 100%;
    max-height: 76px;
    aspect-ratio: auto;
    object-fit: contain;
}

.process-grid--small .process-step:hover img,
.process-grid--small .process-step:focus-visible img {
    transform: translateY(-3px);
}

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

    #div_folyamatban .preloader {
        animation-duration: 1568ms !important;
        animation-iteration-count: infinite !important;
    }

    #div_folyamatban .spinner-layer {
        animation-duration: 5332ms !important;
        animation-iteration-count: infinite !important;
    }

    #div_folyamatban .circle-clipper .circle {
        animation-duration: 1333ms !important;
        animation-iteration-count: infinite !important;
    }
}
