:root {
    --zp-brand: #ffa300;
    --zp-brand-soft: #ffcb66;
    --zp-black: #000;
    --zp-white: #fff;
    --zp-success: #b2ff66;
    --zp-danger: #ff7575;
    --zp-info: #cccccc;
    --zp-warning: #ffcb66;

    --zp-bg-page: #020508;
    --zp-bg-soft: #071018;
    --zp-card: rgba(6, 10, 15, 0.88);
    --zp-card-strong: rgba(6, 10, 15, 0.97);

    --zp-border: rgba(255, 255, 255, 0.14);
    --zp-border-soft: rgba(255, 255, 255, 0.08);
    --zp-border-brand: rgba(255, 163, 0, 0.46);

    --zp-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.48);
    --zp-shadow-brand: 0 1rem 2rem rgba(255, 163, 0, 0.22);

    --zp-radius-sm: 0.75rem;
    --zp-radius-md: 1rem;
    --zp-radius-lg: 1.4rem;

    --zp-container: min(100% - 4rem, 118rem);
    --zp-nav-width: min(23rem, 86vw);
    --zp-transition: 220ms ease;
}

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

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 20rem;
    color: var(--zp-white);
    background:
        radial-gradient(circle at top right, rgba(255, 163, 0, 0.08), transparent 22rem),
        linear-gradient(180deg, #020508 0%, #03070b 100%);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body.zp-menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

.zp-shell {
    width: var(--zp-container);
    margin-inline: auto;
}

/* NAV OVERLAY */

.zp-nav-overlay[hidden] {
    display: none;
}

.zp-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(0.35rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--zp-transition);
}

.zp-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* HEADER */

.zp-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(1, 4, 7, 0.92);
    backdrop-filter: blur(1rem);
    border-bottom: 0.0625rem solid var(--zp-border-soft);
}

.zp-site-header__inner {
    min-height: 5.2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.zp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 900;
}

.zp-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zp-brand);
    font-size: 2rem;
    line-height: 1;
}

.zp-brand__text {
    color: var(--zp-white);
    font-size: 1rem;
    line-height: 1;
}

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

.zp-main-nav__close,
.zp-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    aspect-ratio: 1;
    border: 0.0625rem solid var(--zp-border);
    border-radius: var(--zp-radius-sm);
    color: var(--zp-brand);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.zp-main-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1rem, 1.45vw, 1.8rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.zp-main-nav__list a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    font-weight: 800;
    transition: color var(--zp-transition);
}

.zp-main-nav__list a:hover,
.zp-main-nav__list a.is-active {
    color: var(--zp-brand);
}

.zp-main-nav__cart {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.zp-main-nav__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.1rem;
    min-height: 1.1rem;
    padding-inline: 0.2rem;
    border-radius: 999rem;
    background: var(--zp-brand);
    color: #050505;
    font-size: 0.72rem;
    font-weight: 900;
}

.zp-header-cta,
.zp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 3.2rem;
    padding-inline: 1.35rem;
    border-radius: var(--zp-radius-sm);
    font-weight: 900;
    transition:
        transform var(--zp-transition),
        border-color var(--zp-transition),
        color var(--zp-transition),
        background var(--zp-transition),
        box-shadow var(--zp-transition);
}

.zp-header-cta:hover,
.zp-btn:hover {
    transform: translateY(-0.1rem);
}

.zp-header-cta {
    border: 0.0625rem solid var(--zp-brand);
    background: linear-gradient(135deg, var(--zp-brand), var(--zp-brand-soft));
    color: #090909;
    box-shadow: var(--zp-shadow-brand);
}

.zp-header-cta--nav {
    display: none;
}

.zp-btn {
    border: 0.0625rem solid transparent;
}

.zp-btn--primary {
    background: linear-gradient(135deg, var(--zp-brand), var(--zp-brand-soft));
    color: #060606;
    box-shadow: var(--zp-shadow-brand);
}

.zp-btn--ghost {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(0, 0, 0, 0.26);
    color: var(--zp-white);
}

.zp-btn--ghost:hover {
    border-color: var(--zp-brand);
    color: var(--zp-brand);
}

.zp-btn--wide {
    min-width: 18rem;
}

/* HERO */

.zp-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 25%, rgba(255, 163, 0, 0.2), transparent 25rem),
        radial-gradient(circle at 22% 20%, rgba(30, 74, 108, 0.12), transparent 28rem),
        linear-gradient(115deg, #020508 0%, #071018 47%, #020508 100%);
    border-bottom: 0.0625rem solid var(--zp-border-soft);
}

.zp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0.0625rem, transparent 0.0625rem),
        linear-gradient(rgba(255, 255, 255, 0.02) 0.0625rem, transparent 0.0625rem);
    background-size: 4.8rem 4.8rem;
    opacity: 0.42;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.zp-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 37rem;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(36rem, 1.22fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    padding-block: 2.6rem 0;
}

.zp-hero__content {
    position: relative;
    z-index: 5;
    padding-bottom: 2.5rem;
}

.zp-hero__eyebrow {
    width: fit-content;
    max-width: 100%;
    margin: 0 0 1.35rem;
    padding: 0.48rem 0.9rem;
    border: 0.0625rem solid var(--zp-border-brand);
    border-radius: 999rem;
    background: rgba(0, 0, 0, 0.35);
    color: var(--zp-white);
    font-size: 0.74rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.zp-hero__title {
    max-width: 42rem;
    margin: 0;
    color: var(--zp-white);
    font-size: clamp(3rem, 4.4vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
    font-weight: 950;
}

.zp-hero__title span {
    display: block;
    color: var(--zp-brand);
}

.zp-hero__lead {
    max-width: 38rem;
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
}

.zp-hero__lead p {
    margin: 0 0 0.45rem;
}

.zp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.zp-hero__visual {
    position: relative;
    min-height: 36rem;
    margin: 0;
    align-self: stretch;
    overflow: visible;
}

.zp-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0 8% 0 18%;
    z-index: 0;
    background: radial-gradient(circle at 50% 46%, rgba(255, 163, 0, 0.26), transparent 42%);
    filter: blur(1.1rem);
}

.zp-code-card,
.zp-dashboard-card,
.zp-proof-card,
.zp-service-card,
.zp-mini-card {
    border: 0.0625rem solid var(--zp-border);
    background: var(--zp-card);
    box-shadow: var(--zp-shadow);
}

.zp-code-card {
    position: absolute;
    top: 8%;
    left: 0;
    z-index: 1;
    width: 22rem;
    min-height: 16rem;
    padding: 1rem 1.1rem;
    border-radius: var(--zp-radius-md);
    backdrop-filter: blur(1rem);
    opacity: 0.72;
}

.zp-code-card__dots {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.zp-code-card__dots span {
    width: 0.55rem;
    aspect-ratio: 1;
    border-radius: 50%;
}

.zp-code-card__dots span:nth-child(1) {
    background: #ff9b54;
}

.zp-code-card__dots span:nth-child(2) {
    background: #ffd166;
}

.zp-code-card__dots span:nth-child(3) {
    background: #6ecf8d;
}

.zp-code-card pre {
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.75);
    font-family: "JetBrains Mono", Consolas, monospace;
    font-size: 0.76rem;
    line-height: 1.55;
}

.zp-code-card code {
    white-space: pre-line;
}

.zp-dashboard-card {
    position: absolute;
    top: 15%;
    right: -0.3rem;
    z-index: 1;
    width: 19rem;
    min-height: 14rem;
    padding: 1rem;
    border-radius: var(--zp-radius-md);
    transform: rotate(5deg);
    backdrop-filter: blur(1rem);
}

.zp-dashboard-card__top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.zp-dashboard-card__top article {
    padding: 0.8rem 0.75rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.06);
}

.zp-dashboard-card__top strong,
.zp-dashboard-card__top span {
    display: block;
}

.zp-dashboard-card__top strong {
    color: var(--zp-white);
    font-size: 1rem;
    line-height: 1;
}

.zp-dashboard-card__top span {
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.72rem;
}

.zp-dashboard-card__chart {
    position: relative;
    height: 7rem;
    margin-top: 1rem;
}

.zp-line {
    position: absolute;
    bottom: 2rem;
    display: block;
    height: 0.28rem;
    background: #2f6eea;
    border-radius: 999rem;
    transform-origin: left center;
}

.zp-line--1 {
    left: 0.5rem;
    width: 3rem;
    transform: rotate(-12deg);
}

.zp-line--2 {
    left: 3.15rem;
    width: 3rem;
    transform: rotate(16deg);
}

.zp-line--3 {
    left: 5.75rem;
    width: 3rem;
    transform: rotate(-24deg);
}

.zp-line--4 {
    left: 8.4rem;
    width: 3.2rem;
    transform: rotate(26deg);
}

.zp-line--5 {
    left: 11.25rem;
    width: 2.9rem;
    transform: rotate(-21deg);
}

.zp-line--6 {
    left: 13.7rem;
    width: 3rem;
    transform: rotate(-3deg);
}

.zp-hero__person {
    position: absolute;
    z-index: 3;
    left: 46%;
    bottom: 0;
    width: auto;
    height: clamp(31rem, 36vw, 36rem);
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
    pointer-events: none;
    transform: translateX(-50%);
    filter:
        drop-shadow(0 2rem 2.5rem rgba(0, 0, 0, 0.62))
        drop-shadow(0 0 3rem rgba(255, 163, 0, 0.18));
}

.zp-proof-card {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 4.5rem;
    width: min(23rem, 38%);
    min-height: 6.8rem;
    padding: 1rem 1.1rem;
    border-radius: var(--zp-radius-md);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
    background: rgba(6, 10, 15, 0.94);
}

.zp-proof-card i {
    color: var(--zp-brand);
    font-size: 2.4rem;
    line-height: 1;
}

.zp-proof-card strong,
.zp-proof-card span,
.zp-proof-card small {
    display: block;
}

.zp-proof-card strong {
    font-size: 0.98rem;
    line-height: 1.35;
}

.zp-proof-card span {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}

.zp-proof-card small {
    margin-top: 0.55rem;
    color: var(--zp-info);
    font-size: 0.88rem;
    font-weight: 700;
}

.zp-hero-highlights {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 0.0625rem solid var(--zp-border-soft);
    background: rgba(3, 7, 11, 0.74);
}

.zp-hero-highlights__item {
    min-height: 5.2rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 0.95rem 1.5rem;
    border-right: 0.0625rem solid var(--zp-border-soft);
}

.zp-hero-highlights__item:last-child {
    border-right: 0;
}

.zp-hero-highlights__item i {
    color: var(--zp-brand);
    font-size: 2rem;
    line-height: 1;
}

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

.zp-hero-highlights__item strong {
    font-size: 1rem;
}

.zp-hero-highlights__item span {
    color: var(--zp-info);
    font-size: 0.9rem;
}

/* SERVICES */

.zp-services,
.zp-value-process,
.zp-cta-section,
.zp-site-footer {
    background: linear-gradient(180deg, rgba(2, 5, 8, 0.96), rgba(3, 7, 11, 0.98));
}

.zp-services {
    padding-block: 2.8rem 2rem;
}

.zp-section-head {
    margin-bottom: 1.8rem;
    text-align: center;
}

.zp-section-head--left {
    text-align: left;
}

.zp-section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    line-height: 1.1;
    font-weight: 900;
}

.zp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 0.0625rem solid var(--zp-border-soft);
    border-bottom: 0.0625rem solid var(--zp-border-soft);
}

.zp-service-card {
    min-height: 14rem;
    padding: 1.75rem 1.5rem;
    border: 0;
    border-right: 0.0625rem solid var(--zp-border-soft);
    background: transparent;
    box-shadow: none;
}

.zp-service-card:last-child {
    border-right: 0;
}

.zp-service-card i {
    color: var(--zp-brand);
    font-size: 2.35rem;
    line-height: 1;
}

.zp-service-card h3 {
    margin: 1rem 0 0.7rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.zp-service-card p {
    margin: 0;
    color: var(--zp-info);
    font-size: 0.96rem;
    line-height: 1.55;
}

.zp-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.05rem;
    color: var(--zp-brand);
    font-weight: 700;
}

/* VALUE / PROCESS */

.zp-value-process {
    padding-block: 1.5rem 2.4rem;
}

.zp-value-process__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.zp-mini-card {
    min-height: 11rem;
    padding: 1.35rem 1.2rem;
    border-radius: var(--zp-radius-md);
}

.zp-mini-card i {
    color: var(--zp-success);
    font-size: 2rem;
    line-height: 1;
}

.zp-mini-card h3 {
    margin: 0.9rem 0 0.55rem;
    font-size: 1.12rem;
    font-weight: 800;
}

.zp-mini-card p {
    margin: 0;
    color: var(--zp-info);
    font-size: 0.92rem;
}

.zp-process__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zp-process__item {
    padding: 1.2rem 0.6rem;
    text-align: center;
    border-top: 0.0625rem dashed rgba(255, 163, 0, 0.45);
}

.zp-process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 0.0625rem solid rgba(255, 163, 0, 0.45);
    color: var(--zp-brand);
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.zp-process__item h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 800;
}

.zp-process__item p {
    margin: 0;
    color: var(--zp-info);
    font-size: 0.88rem;
    line-height: 1.45;
}

/* CTA */

.zp-cta-section {
    padding-block: 2rem 2.6rem;
}

.zp-cta-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.6rem 1.8rem;
    border-radius: var(--zp-radius-lg);
    border: 0.0625rem solid var(--zp-border);
    background:
        radial-gradient(circle at 82% 50%, rgba(255, 163, 0, 0.16), transparent 18rem),
        rgba(7, 11, 16, 0.86);
    box-shadow: var(--zp-shadow);
}

.zp-cta-copy h2 {
    margin: 0 0 0.35rem;
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 900;
}

.zp-cta-copy p {
    margin: 0;
    color: var(--zp-info);
}

.zp-cta-points {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--zp-white);
    font-weight: 700;
}

.zp-cta-points li {
    position: relative;
    padding-left: 1.2rem;
}

.zp-cta-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.45rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--zp-success);
}

/* FOOTER */

.zp-site-footer {
    padding-top: 2.4rem;
    border-top: 0.0625rem solid var(--zp-border-soft);
}

.zp-site-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr 0.8fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.zp-footer-brand p,
.zp-footer-contact ul,
.zp-footer-nav ul,
.zp-footer-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zp-footer-brand p {
    margin-top: 1rem;
    max-width: 18rem;
    color: var(--zp-info);
}

.zp-footer-brand strong {
    display: block;
    margin-top: 0.8rem;
    color: var(--zp-brand);
    font-size: 0.96rem;
}

.zp-footer-nav h2,
.zp-footer-contact h2,
.zp-footer-social h2 {
    margin: 0 0 0.9rem;
    font-size: 1rem;
    font-weight: 800;
}

.zp-footer-nav li + li,
.zp-footer-contact li + li {
    margin-top: 0.55rem;
}

.zp-footer-nav a,
.zp-footer-contact a {
    color: var(--zp-info);
    transition: color var(--zp-transition);
}

.zp-footer-nav a:hover,
.zp-footer-contact a:hover {
    color: var(--zp-brand);
}

.zp-footer-contact {
    font-style: normal;
}

.zp-footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--zp-info);
}

.zp-footer-contact i {
    color: var(--zp-brand);
}

.zp-footer-social ul {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.zp-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 0.0625rem solid var(--zp-border);
    color: var(--zp-brand);
    background: rgba(255, 255, 255, 0.02);
    transition:
        transform var(--zp-transition),
        border-color var(--zp-transition),
        color var(--zp-transition);
}

.zp-footer-social a:hover {
    transform: translateY(-0.1rem);
    border-color: var(--zp-brand);
    color: var(--zp-white);
}

.zp-site-footer__bottom {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1rem 1.4rem;
    border-top: 0.0625rem solid var(--zp-border-soft);
}

.zp-site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.zp-site-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.zp-site-footer__bottom nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

/* TABLET + MOBILE NAV */

@media (max-width: 90rem) {
    :root {
        --zp-container: min(100% - 2rem, 118rem);
    }

    .zp-site-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 4.4rem;
        padding-block: 0.7rem;
    }

    .zp-header-cta--desktop {
        display: none;
    }

    .zp-menu-toggle,
    .zp-main-nav__close {
        display: inline-flex;
    }

    .zp-menu-toggle {
        position: relative;
        z-index: 1200;
    }

    .zp-main-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1100;
        width: var(--zp-nav-width);
        padding: 1rem;
        display: grid;
        grid-template-rows: auto auto auto;
        align-content: start;
        gap: 1.2rem;
        border-right: 0.0625rem solid var(--zp-border);
        background:
            radial-gradient(circle at top left, rgba(255, 163, 0, 0.16), transparent 15rem),
            rgba(3, 7, 11, 0.985);
        box-shadow: 1.5rem 0 4rem rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(1rem);
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform var(--zp-transition);
    }

    .zp-main-nav.is-open {
        transform: translateX(0);
    }

    .zp-main-nav__close {
        justify-self: end;
    }

    .zp-main-nav__list {
        display: grid;
        gap: 0.35rem;
    }

    .zp-main-nav__list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 2.9rem;
        padding: 0.7rem 0.85rem;
        border-radius: 0.65rem;
        font-size: 0.95rem;
        background: transparent;
    }

    .zp-main-nav__list a:hover,
    .zp-main-nav__list a.is-active {
        background: rgba(255, 163, 0, 0.08);
    }

    .zp-header-cta--nav {
        display: inline-flex;
        width: 100%;
    }

    .zp-hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .zp-hero__content {
        padding-bottom: 1rem;
    }

    .zp-hero__visual {
        min-height: 34rem;
    }

    .zp-code-card {
        left: 2%;
    }

    .zp-dashboard-card {
        right: 2%;
    }

    .zp-hero__person {
        left: 48%;
        height: clamp(25rem, 42vw, 31rem);
    }

    .zp-proof-card {
        right: 2%;
        bottom: 3rem;
        width: min(22rem, 42%);
    }

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

    .zp-hero-highlights__item:nth-child(2) {
        border-right: 0;
    }

    .zp-hero-highlights__item:nth-child(-n + 2) {
        border-bottom: 0.0625rem solid var(--zp-border-soft);
    }

    .zp-services-grid,
    .zp-value-process__grid,
    .zp-site-footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .zp-process__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .zp-cta-section__inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

/* MOBILE */

@media (max-width: 60rem) {
    :root {
        --zp-container: min(100% - 1.25rem, 118rem);
    }

    .zp-brand__mark {
        font-size: 1.65rem;
    }

    .zp-brand__text {
        font-size: 0.9rem;
    }

    .zp-hero__inner {
        gap: 0;
        padding-block: 1.6rem 0;
    }

    .zp-hero__eyebrow {
        font-size: 0.62rem;
        white-space: normal;
    }

    .zp-hero__title {
        font-size: clamp(2.45rem, 12vw, 4.2rem);
        letter-spacing: -0.06em;
    }

    .zp-hero__lead {
        font-size: 0.92rem;
    }

    .zp-hero__actions {
        display: grid;
        gap: 0.75rem;
    }

    .zp-btn {
        width: 100%;
    }

    .zp-hero__visual {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        min-height: 0;
        margin-top: 1.5rem;
        padding-bottom: 1rem;
    }

    .zp-hero__visual::before {
        inset: 14% 0 18%;
    }

    .zp-code-card,
    .zp-dashboard-card,
    .zp-hero__person,
    .zp-proof-card {
        position: relative;
        inset: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
    }

    .zp-code-card {
        order: 1;
        min-height: auto;
        padding: 0.85rem;
    }

    .zp-code-card pre {
        max-height: 10rem;
        overflow: hidden;
        font-size: 0.62rem;
        line-height: 1.45;
    }

    .zp-dashboard-card {
        order: 2;
        min-height: auto;
        padding: 0.85rem;
    }

    .zp-dashboard-card__top {
        gap: 0.45rem;
    }

    .zp-dashboard-card__top article {
        padding: 0.65rem 0.55rem;
    }

    .zp-dashboard-card__top strong {
        font-size: 0.88rem;
    }

    .zp-dashboard-card__top span {
        font-size: 0.62rem;
    }

    .zp-dashboard-card__chart {
        height: 4.5rem;
        margin-top: 0.8rem;
    }

    .zp-hero__person {
        order: 3;
        justify-self: center;
        width: min(70%, 17rem);
        height: auto;
        object-fit: contain;
        object-position: center bottom;
        margin-top: -1rem;
    }

    .zp-proof-card {
        order: 4;
        min-height: auto;
        padding: 0.85rem;
    }

    .zp-proof-card i {
        font-size: 1.9rem;
    }

    .zp-proof-card strong {
        font-size: 0.9rem;
    }

    .zp-proof-card span,
    .zp-proof-card small {
        font-size: 0.8rem;
    }

    .zp-hero-highlights,
    .zp-services-grid,
    .zp-value__items,
    .zp-process__list,
    .zp-site-footer__inner,
    .zp-value-process__grid {
        grid-template-columns: 1fr;
    }

    .zp-hero-highlights__item,
    .zp-service-card {
        border-right: 0;
        border-bottom: 0.0625rem solid var(--zp-border-soft);
    }

    .zp-hero-highlights__item:last-child,
    .zp-service-card:last-child {
        border-bottom: 0;
    }

    .zp-section-head,
    .zp-section-head--left {
        text-align: left;
    }

    .zp-section-head h2 {
        font-size: 1.8rem;
    }

    .zp-process__item {
        text-align: left;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 0.9rem;
        align-items: start;
    }

    .zp-process__number {
        grid-row: span 2;
        margin-bottom: 0;
    }

    .zp-process__item h3 {
        margin-top: 0;
    }

    .zp-cta-section__inner {
        padding: 1.2rem;
    }

    .zp-cta-copy h2 {
        font-size: 1.7rem;
    }

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

@media (max-width: 30rem) {
    .zp-main-nav {
        width: min(21rem, 88vw);
    }

    .zp-hero__title {
        font-size: clamp(2.2rem, 13vw, 3.4rem);
    }

    .zp-hero__person {
        width: min(78%, 15rem);
    }

    .zp-dashboard-card__top {
        grid-template-columns: 1fr;
    }

    .zp-dashboard-card__chart {
        display: none;
    }
}@media (max-width: 90rem) {
    .zp-main-nav {
        visibility: hidden;
        pointer-events: none;
    }

    .zp-main-nav.is-open {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .zp-menu-toggle {
        display: inline-flex;
    }
}@media (max-width: 90rem) {
    .zp-nav-overlay {
        top: 4.4rem;
        z-index: 900;
    }

    .zp-main-nav {
        position: fixed;
        top: 5rem;
        right: 1rem;
        left: auto;
        bottom: auto;
        z-index: 1100;

        width: min(24rem, calc(100vw - 2rem));
        max-height: calc(100dvh - 6rem);
        padding: 1rem;

        display: grid;
        grid-template-rows: auto auto auto;
        align-content: start;
        gap: 1rem;

        border: 0.0625rem solid var(--zp-border);
        border-radius: var(--zp-radius-md);

        background:
            radial-gradient(circle at top right, rgba(255, 163, 0, 0.16), transparent 14rem),
            rgba(3, 7, 11, 0.985);

        box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(1rem);

        overflow-y: auto;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-0.75rem);
        transition:
            opacity var(--zp-transition),
            visibility var(--zp-transition),
            transform var(--zp-transition);
    }

    .zp-main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .zp-main-nav__close {
        display: none;
    }

    .zp-main-nav__list {
        display: grid;
        gap: 0.35rem;
    }

    .zp-main-nav__list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 2.9rem;
        padding: 0.75rem 0.9rem;
        border-radius: 0.65rem;
    }

    .zp-header-cta--nav {
        width: 100%;
    }
}

@media (max-width: 30rem) {
    .zp-main-nav {
        top: 4.8rem;
        right: 0.625rem;
        width: calc(100vw - 1.25rem);
    }
}/* =========================================================
   MOBILE HERO / ARÁNYRENDSZER JAVÍTÁS
   ========================================================= */

@media (max-width: 60rem) {
    .zp-hero__inner {
        gap: 1rem;
        padding-block: 1.25rem 1.5rem;
    }

    .zp-hero__content {
        padding-bottom: 0;
    }

    .zp-hero__eyebrow {
        margin-bottom: 0.75rem;
        padding: 0.38rem 0.65rem;
        font-size: clamp(0.54rem, 2.6vw, 0.64rem);
        line-height: 1.25;
        letter-spacing: 0.035em;
    }

    .zp-hero__title {
        max-width: 22rem;
        font-size: clamp(1.8rem, 8.8vw, 2.65rem);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .zp-hero__title span {
        display: inline;
    }

    .zp-hero__lead {
        max-width: 22rem;
        margin-top: 0.85rem;
        font-size: clamp(0.82rem, 3.7vw, 0.92rem);
        line-height: 1.45;
    }

    .zp-hero__lead p {
        margin-bottom: 0.35rem;
    }

    .zp-hero__actions {
        margin-top: 1rem;
        gap: 0.6rem;
    }

    .zp-btn {
        min-height: 2.65rem;
        padding-inline: 1rem;
        font-size: 0.84rem;
    }

    .zp-hero__visual {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.7rem;
        max-width: 21rem;
        min-height: 0;
        margin-top: 0.5rem;
        padding-bottom: 0;
    }

    .zp-hero__person {
        order: 1;
        position: relative;
        inset: auto;
        justify-self: center;
        width: min(72%, 13.5rem);
        height: auto;
        margin: 0;
        transform: none;
        object-fit: contain;
        object-position: center bottom;
    }

    .zp-proof-card {
        order: 2;
        position: relative;
        inset: auto;
        width: 100%;
        min-height: auto;
        padding: 0.8rem;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.7rem;
        transform: none;
    }

    .zp-proof-card i {
        font-size: 1.55rem;
    }

    .zp-proof-card strong {
        font-size: 0.82rem;
        line-height: 1.25;
    }

    .zp-proof-card span,
    .zp-proof-card small {
        font-size: 0.74rem;
        line-height: 1.35;
    }

    .zp-code-card {
        order: 3;
        position: relative;
        inset: auto;
        width: 100%;
        min-height: auto;
        padding: 0.75rem;
        transform: none;
        opacity: 0.55;
    }

    .zp-code-card pre {
        max-height: 6.5rem;
        overflow: hidden;
        font-size: 0.52rem;
        line-height: 1.35;
    }

    .zp-dashboard-card {
        order: 4;
        position: relative;
        inset: auto;
        width: 100%;
        min-height: auto;
        padding: 0.75rem;
        transform: none;
    }

    .zp-dashboard-card__top {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.35rem;
    }

    .zp-dashboard-card__top article {
        padding: 0.5rem 0.4rem;
    }

    .zp-dashboard-card__top strong {
        font-size: 0.74rem;
    }

    .zp-dashboard-card__top span {
        font-size: 0.54rem;
    }

    .zp-dashboard-card__chart {
        display: none;
    }
}

@media (max-width: 37.5rem) {
    .zp-hero {
        background:
            radial-gradient(circle at 50% 14%, rgba(255, 163, 0, 0.16), transparent 15rem),
            linear-gradient(180deg, #020508 0%, #071018 48%, #020508 100%);
    }

    .zp-hero__inner {
        padding-block: 1rem 1.35rem;
    }

    .zp-hero__title {
        max-width: 20rem;
        font-size: clamp(1.65rem, 8.2vw, 2.25rem);
        line-height: 1.04;
    }

    .zp-hero__lead {
        max-width: 20rem;
        font-size: 0.82rem;
    }

    .zp-hero__visual {
        max-width: 19rem;
    }

    .zp-hero__person {
        width: min(74%, 12.5rem);
    }

    .zp-code-card {
        display: none;
    }

    .zp-dashboard-card {
        display: none;
    }
}

@media (max-width: 24rem) {
    .zp-hero__title {
        font-size: clamp(1.5rem, 7.8vw, 2rem);
        letter-spacing: -0.035em;
    }

    .zp-hero__lead {
        font-size: 0.78rem;
    }

    .zp-hero__person {
        width: min(76%, 11.5rem);
    }
}@media (max-width: 37.5rem) {
    .zp-code-card,
    .zp-dashboard-card {
        display: none;
    }
}/* =========================================================
   MOBILE HERO FINAL COMPOSITION
   Ugyanaz a felállás mobilon is, csak arányosan kisebb méretben
   ========================================================= */

@media (max-width: 60rem) {
    .zp-hero__inner {
        gap: 1.15rem;
        padding-block: 1.1rem 1.75rem;
    }

    .zp-hero__content {
        padding-bottom: 0;
    }

    .zp-hero__eyebrow {
        max-width: 100%;
        margin-bottom: 0.7rem;
        padding: 0.38rem 0.65rem;
        font-size: clamp(0.5rem, 2.25vw, 0.62rem);
        line-height: 1.25;
        letter-spacing: 0.035em;
    }

    .zp-hero__title {
        max-width: 22rem;
        font-size: clamp(1.65rem, 7.4vw, 2.35rem);
        line-height: 1.04;
        letter-spacing: -0.038em;
    }

    .zp-hero__title span {
        display: inline;
    }

    .zp-hero__lead {
        max-width: 22rem;
        margin-top: 0.8rem;
        font-size: clamp(0.78rem, 3.25vw, 0.88rem);
        line-height: 1.45;
    }

    .zp-hero__lead p {
        margin-bottom: 0.32rem;
    }

    .zp-hero__actions {
        display: grid;
        gap: 0.58rem;
        margin-top: 0.95rem;
    }

    .zp-btn {
        min-height: 2.55rem;
        padding-inline: 1rem;
        font-size: 0.8rem;
    }

    .zp-hero__visual {
        position: relative;
        display: block;
        width: min(100%, 30rem);
        min-height: clamp(25rem, 112vw, 34rem);
        margin: 0.9rem auto 0;
        padding: 0;
        overflow: visible;
        isolation: isolate;
    }

    .zp-hero__visual::before {
        content: "";
        position: absolute;
        inset: 5% 2% 4%;
        z-index: 0;
        background: radial-gradient(circle at 50% 42%, rgba(255, 163, 0, 0.24), transparent 56%);
        filter: blur(1rem);
        pointer-events: none;
    }

    .zp-code-card,
    .zp-dashboard-card,
    .zp-hero__person,
    .zp-proof-card {
        position: absolute;
        inset: auto;
        max-width: none;
    }

    .zp-code-card {
        top: 0;
        left: 0;
        z-index: 1;
        width: clamp(13.4rem, 66vw, 19rem);
        min-height: auto;
        padding: 0.68rem;
        border-radius: 0.85rem;
        opacity: 0.78;
        transform: none;
    }

    .zp-code-card__dots {
        gap: 0.25rem;
        margin-bottom: 0.55rem;
    }

    .zp-code-card__dots span {
        width: 0.42rem;
    }

    .zp-code-card pre {
        max-height: clamp(8.25rem, 34vw, 11rem);
        overflow: hidden;
        font-size: clamp(0.47rem, 1.9vw, 0.62rem);
        line-height: 1.42;
    }

    .zp-dashboard-card {
        top: clamp(2.2rem, 9vw, 3.7rem);
        right: 0;
        z-index: 2;
        width: clamp(10.6rem, 48vw, 15rem);
        min-height: auto;
        padding: 0.58rem;
        border-radius: 0.85rem;
        transform: rotate(4deg);
    }

    .zp-dashboard-card__top {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.32rem;
    }

    .zp-dashboard-card__top article {
        padding: 0.48rem 0.35rem;
        border-radius: 0.45rem;
    }

    .zp-dashboard-card__top strong {
        font-size: clamp(0.64rem, 2.5vw, 0.82rem);
        line-height: 1;
    }

    .zp-dashboard-card__top span {
        margin-top: 0.18rem;
        font-size: clamp(0.45rem, 1.8vw, 0.58rem);
        line-height: 1.15;
    }

    .zp-dashboard-card__chart {
        display: block;
        height: clamp(3.2rem, 13vw, 4.5rem);
        margin-top: 0.55rem;
        overflow: hidden;
    }

    .zp-line {
        height: 0.16rem;
        bottom: 1.25rem;
    }

    .zp-line--1 {
        left: 5%;
        width: 20%;
        transform: rotate(-10deg);
    }

    .zp-line--2 {
        left: 22%;
        width: 20%;
        transform: rotate(18deg);
    }

    .zp-line--3 {
        left: 39%;
        width: 21%;
        transform: rotate(-26deg);
    }

    .zp-line--4 {
        left: 57%;
        width: 21%;
        transform: rotate(25deg);
    }

    .zp-line--5 {
        left: 73%;
        width: 18%;
        transform: rotate(-18deg);
    }

    .zp-line--6 {
        left: 84%;
        width: 13%;
        transform: rotate(-4deg);
    }

    .zp-hero__person {
        left: 50%;
        bottom: 0;
        z-index: 3;
        width: min(72%, 18rem);
        height: auto;
        object-fit: contain;
        object-position: center bottom;
        transform: translateX(-50%);
        filter:
            drop-shadow(0 1.35rem 2rem rgba(0, 0, 0, 0.65))
            drop-shadow(0 0 2rem rgba(255, 163, 0, 0.14));
    }

    .zp-proof-card {
        right: 0;
        bottom: clamp(1.2rem, 5vw, 2.25rem);
        z-index: 4;
        width: min(16.5rem, 68%);
        min-height: auto;
        padding: 0.72rem 0.78rem;
        border-radius: 0.85rem;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.62rem;
        transform: none;
    }

    .zp-proof-card i {
        font-size: 1.45rem;
    }

    .zp-proof-card strong {
        font-size: clamp(0.76rem, 2.8vw, 0.9rem);
        line-height: 1.22;
    }

    .zp-proof-card span {
        margin-top: 0.2rem;
        font-size: clamp(0.68rem, 2.5vw, 0.8rem);
        line-height: 1.32;
    }

    .zp-proof-card small {
        margin-top: 0.35rem;
        font-size: clamp(0.64rem, 2.35vw, 0.74rem);
        line-height: 1.35;
    }
}@media (max-width: 37.5rem) {
    .zp-hero__title {
        max-width: 20rem;
        font-size: clamp(1.48rem, 7.2vw, 2.05rem);
    }

    .zp-hero__lead {
        max-width: 20rem;
        font-size: 0.78rem;
    }

    .zp-hero__visual {
        width: 100%;
        min-height: clamp(23rem, 118vw, 28.5rem);
        margin-top: 0.8rem;
    }

    .zp-code-card {
        width: clamp(12.2rem, 67vw, 14.6rem);
        padding: 0.58rem;
    }

    .zp-code-card pre {
        max-height: 7.7rem;
        font-size: 0.45rem;
    }

    .zp-dashboard-card {
        top: clamp(2.5rem, 12vw, 3.2rem);
        width: clamp(9.7rem, 49vw, 11.4rem);
        padding: 0.52rem;
    }

    .zp-dashboard-card__top article {
        padding: 0.42rem 0.28rem;
    }

    .zp-dashboard-card__top strong {
        font-size: 0.62rem;
    }

    .zp-dashboard-card__top span {
        font-size: 0.42rem;
    }

    .zp-dashboard-card__chart {
        height: 3rem;
    }

    .zp-hero__person {
        width: min(75%, 15rem);
    }

    .zp-proof-card {
        width: min(14.4rem, 70%);
        bottom: 0.8rem;
        padding: 0.62rem 0.68rem;
    }

    .zp-proof-card i {
        font-size: 1.3rem;
    }

    .zp-proof-card strong {
        font-size: 0.74rem;
    }

    .zp-proof-card span,
    .zp-proof-card small {
        font-size: 0.66rem;
    }
}@media (max-width: 24rem) {
    .zp-hero__title {
        max-width: 18rem;
        font-size: clamp(1.38rem, 6.9vw, 1.85rem);
    }

    .zp-hero__lead {
        max-width: 18rem;
        font-size: 0.74rem;
    }

    .zp-hero__visual {
        min-height: 22.5rem;
    }

    .zp-code-card {
        width: 11.2rem;
    }

    .zp-dashboard-card {
        width: 9.2rem;
        top: 2.75rem;
    }

    .zp-hero__person {
        width: min(76%, 13.2rem);
    }

    .zp-proof-card {
        width: 13.2rem;
        bottom: 0.65rem;
    }
}
/* =========================================================
   ZUPP CODE - CLEAN PROFESSIONAL RESPONSIVE FIX
   ========================================================= */

:root {
    --zp-container: min(100% - clamp(1.25rem, 4vw, 4rem), 82rem);
}

/* DESKTOP ARÁNYRENDSZER */

@media (min-width: 75.001rem) {
    .zp-site-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .zp-menu-toggle,
    .zp-main-nav__close {
        display: none;
    }

    .zp-header-cta--desktop {
        display: inline-flex;
    }

    .zp-header-cta--nav {
        display: none;
    }

    .zp-main-nav {
        position: static;
        width: auto;
        max-height: none;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .zp-main-nav__list {
        display: flex;
        align-items: center;
        gap: clamp(0.9rem, 1.2vw, 1.5rem);
    }

    .zp-main-nav__list a {
        min-height: auto;
        padding: 0;
        background: transparent;
    }

    .zp-hero__inner {
        min-height: clamp(35rem, 42vw, 42rem);
        grid-template-columns: minmax(0, 1fr) minmax(30rem, 1fr);
        gap: clamp(2.5rem, 4vw, 4.5rem);
        padding-block: clamp(3rem, 4vw, 4.5rem) 0;
    }

    .zp-value-process__grid {
        grid-template-columns: 1fr;
    }

    .zp-value__items {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* TABLET + MOBIL MENÜ */

@media (max-width: 75rem) {
    :root {
        --zp-container: min(100% - 1.25rem, 42rem);
    }

    .zp-site-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 4.15rem;
        padding-block: 0.55rem;
    }

    .zp-header-cta--desktop {
        display: none;
    }

    .zp-menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 1200;
        width: 2.5rem;
        border-radius: 0.65rem;
    }

    .zp-main-nav__close {
        display: none;
    }

    .zp-nav-overlay {
        top: 4.15rem;
    }

    .zp-main-nav {
        position: fixed;
        top: 4.75rem;
        right: 0.625rem;
        left: auto;
        bottom: auto;
        z-index: 1100;

        width: min(22rem, calc(100vw - 1.25rem));
        max-height: calc(100dvh - 5.5rem);
        padding: 0.85rem;

        display: grid;
        gap: 0.85rem;
        align-content: start;

        border: 0.0625rem solid var(--zp-border);
        border-radius: var(--zp-radius-md);
        background: rgba(3, 7, 11, 0.985);
        box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(1rem);

        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-0.6rem);

        transition:
            opacity var(--zp-transition),
            visibility var(--zp-transition),
            transform var(--zp-transition);
    }

    .zp-main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .zp-main-nav__list {
        display: grid;
        gap: 0.35rem;
    }

    .zp-main-nav__list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 2.65rem;
        padding: 0.65rem 0.75rem;
        border-radius: 0.6rem;
        font-size: 0.86rem;
    }

    .zp-main-nav__list a:hover,
    .zp-main-nav__list a.is-active {
        background: rgba(255, 163, 0, 0.1);
    }

    .zp-header-cta--nav {
        display: inline-flex;
        width: 100%;
        min-height: 2.65rem;
    }
}

/* MOBIL HERO - PROFI, TISZTA VERZIÓ */

@media (max-width: 60rem) {
    .zp-hero {
        background:
            radial-gradient(circle at 50% 20%, rgba(255, 163, 0, 0.15), transparent 15rem),
            linear-gradient(180deg, #020508 0%, #071018 48%, #020508 100%);
    }

    .zp-hero::before {
        opacity: 0.16;
        background-size: 3.5rem 3.5rem;
    }

    .zp-hero__inner {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        min-height: auto;
        padding-block: 1.15rem 1.75rem;
    }

    .zp-hero__content {
        padding-bottom: 0;
    }

    .zp-hero__eyebrow {
        margin-bottom: 0.7rem;
        padding: 0.36rem 0.62rem;
        font-size: clamp(0.5rem, 2.2vw, 0.6rem);
        line-height: 1.25;
        letter-spacing: 0.035em;
    }

    .zp-hero__title {
        max-width: 20rem;
        font-size: clamp(1.55rem, 7.1vw, 2.1rem);
        line-height: 1.05;
        letter-spacing: -0.035em;
    }

    .zp-hero__title span {
        display: inline;
    }

    .zp-hero__lead {
        max-width: 20rem;
        margin-top: 0.75rem;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .zp-hero__lead p {
        margin-bottom: 0.3rem;
    }

    .zp-hero__actions {
        display: grid;
        gap: 0.55rem;
        margin-top: 0.9rem;
    }

    .zp-btn {
        width: 100%;
        min-height: 2.5rem;
        padding-inline: 1rem;
        font-size: 0.78rem;
        border-radius: 0.65rem;
    }

    .zp-hero__visual {
        position: relative;
        display: block;
        width: min(100%, 22rem);
        min-height: clamp(18rem, 78vw, 24rem);
        margin: 0.45rem auto 0;
        padding: 0;
        overflow: hidden;
        border-radius: var(--zp-radius-md);
        background:
            radial-gradient(circle at 50% 24%, rgba(255, 163, 0, 0.14), transparent 12rem),
            rgba(4, 9, 13, 0.72);
        border: 0.0625rem solid var(--zp-border-soft);
    }

    .zp-hero__visual::before {
        display: none;
    }

    .zp-code-card,
    .zp-dashboard-card {
        display: none;
    }

    .zp-hero__person {
        position: absolute;
        left: 50%;
        bottom: 0;
        z-index: 2;
        width: min(72%, 14rem);
        height: auto;
        max-width: none;
        transform: translateX(-50%);
        object-fit: contain;
        object-position: center bottom;
        filter:
            drop-shadow(0 1.2rem 1.6rem rgba(0, 0, 0, 0.62))
            drop-shadow(0 0 1.7rem rgba(255, 163, 0, 0.12));
    }

    .zp-proof-card {
        position: absolute;
        left: 50%;
        right: auto;
        bottom: 0.75rem;
        z-index: 3;

        width: min(16rem, calc(100% - 1.5rem));
        min-height: auto;
        padding: 0.65rem 0.75rem;

        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.6rem;

        border-radius: 0.8rem;
        background: rgba(6, 10, 15, 0.86);
        backdrop-filter: blur(0.75rem);
        transform: translateX(-50%);
    }

    .zp-proof-card i {
        font-size: 1.35rem;
    }

    .zp-proof-card strong {
        font-size: 0.74rem;
        line-height: 1.22;
    }

    .zp-proof-card span {
        margin-top: 0.15rem;
        font-size: 0.68rem;
        line-height: 1.3;
    }

    .zp-proof-card small {
        display: none;
    }

    .zp-hero-highlights {
        grid-template-columns: 1fr;
        background: transparent;
        border-top: 0.0625rem solid var(--zp-border-soft);
    }

    .zp-hero-highlights__item {
        min-height: auto;
        padding: 0.9rem 0;
        border-right: 0;
        border-bottom: 0.0625rem solid var(--zp-border-soft);
        gap: 0.75rem;
    }

    .zp-hero-highlights__item:last-child {
        border-bottom: 0;
    }

    .zp-hero-highlights__item i {
        font-size: 1.35rem;
    }

    .zp-hero-highlights__item strong {
        font-size: 0.88rem;
    }

    .zp-hero-highlights__item span {
        font-size: 0.76rem;
    }
}

/* MOBIL TARTALMI SZAKASZOK */

@media (max-width: 60rem) {
    .zp-services,
    .zp-value-process,
    .zp-cta-section {
        padding-block: 2rem;
    }

    .zp-section-head {
        margin-bottom: 1.1rem;
        text-align: left;
    }

    .zp-section-head h2 {
        font-size: clamp(1.35rem, 6.5vw, 1.8rem);
        line-height: 1.12;
    }

    .zp-services-grid,
    .zp-value__items,
    .zp-process__list,
    .zp-value-process__grid,
    .zp-site-footer__inner {
        grid-template-columns: 1fr;
    }

    .zp-service-card {
        min-height: auto;
        padding: 1.25rem 0;
        border-right: 0;
        border-bottom: 0.0625rem solid var(--zp-border-soft);
    }

    .zp-service-card:last-child {
        border-bottom: 0;
    }

    .zp-service-card i {
        font-size: 1.6rem;
    }

    .zp-service-card h3 {
        margin: 0.75rem 0 0.45rem;
        font-size: 1rem;
    }

    .zp-service-card p,
    .zp-service-card a {
        font-size: 0.82rem;
    }

    .zp-mini-card {
        min-height: auto;
        padding: 1rem;
        border-radius: 0.85rem;
    }

    .zp-mini-card i {
        font-size: 1.35rem;
    }

    .zp-mini-card h3 {
        margin: 0.65rem 0 0.35rem;
        font-size: 0.92rem;
    }

    .zp-mini-card p {
        font-size: 0.8rem;
    }

    .zp-process__item {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 0.75rem;
        align-items: start;
        padding: 0.9rem 0;
        text-align: left;
    }

    .zp-process__number {
        grid-row: span 2;
        width: 1.9rem;
        margin-bottom: 0;
        font-size: 0.78rem;
    }

    .zp-process__item h3 {
        margin: 0 0 0.25rem;
        font-size: 0.88rem;
    }

    .zp-process__item p {
        font-size: 0.76rem;
    }

    .zp-cta-section__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--zp-radius-md);
    }

    .zp-cta-copy h2 {
        font-size: clamp(1.25rem, 6vw, 1.65rem);
    }

    .zp-cta-copy p,
    .zp-cta-points {
        font-size: 0.8rem;
    }

    .zp-btn--wide {
        min-width: 0;
    }

    .zp-site-footer__inner {
        gap: 1.35rem;
        padding-bottom: 1.5rem;
    }

    .zp-site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }
}