/* ==========================================================================
   Nordhook — designový layer webu (nad Bootstrapem 4 a main.compiled.css)
   Paleta: tmavě zelená základna, brandová zelená #5adf88.
   ========================================================================== */

:root {
    --nh-bg: #061912;
    --nh-bg-deep: #04120d;
    /* Plochy boxů jsou neutrálně šedé (stejná paleta jako konfigurátor) —
       zelená zůstává na pozadí stránky a na akcentech. */
    --nh-panel: #171a19;
    --nh-panel-2: #1e2220;
    --nh-panel-hover: #1d2120;
    --nh-line: rgba(90, 223, 136, 0.14);
    --nh-line-soft: rgba(255, 255, 255, 0.07);
    --nh-green: #5adf88;
    --nh-green-btn: #34c06a;
    --nh-green-btn-hover: #2aa459;
    /* Na zeleném pozadí stránky drží text zelenkavý odstín… */
    --nh-text: #ddfbe9;
    --nh-text-dim: #99c9ac;
    --nh-text-mute: #6f9a80;
    --nh-radius: 14px;
    --nh-radius-lg: 20px;
}

/* --------------------------------------------------------------------------
   Základ
   -------------------------------------------------------------------------- */

body.nh {
    background: var(--nh-bg);
    overflow-x: hidden;
}

/* main.compiled.css dává .container globální padding-top 3.5rem a
   padding-bottom 1rem. Na nových stránkách si vertikální rytmus řídí
   sekce samy, jinak se to sčítá a všude vznikají hluché mezery
   (nejvíc bila do očí navigace, která tím narostla na 143 px). */
body.nh .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* …uvnitř šedých ploch se ale zelenkavý text nesnese s podkladem, takže
   si tyhle boxy přepíšou textové proměnné na neutrální šedou. Zelená v
   nich zůstává jen jako akcent — ikony, fajfky, tlačítka, odkazy. */
.nh-card,
.nh-step,
.nh-plan,
.nh-quote,
.nh-compare,
.nh-specs,
.nh-faq,
.nh-included,
.nh-cta {
    --nh-text: #f0f0f0;
    --nh-text-dim: #b0b0b0;
    --nh-text-mute: #8d8d8d;
}

.nh-section {
    position: relative;
    padding: 4rem 0;
    background: var(--nh-bg);
}

@media (min-width: 768px) {
    .nh-section {
        padding: 5.5rem 0;
    }
}

.nh-section--tight {
    padding: 3.25rem 0;
}

.nh-section--deep {
    background: var(--nh-bg-deep);
}

.nh-section--panel {
    background: linear-gradient(180deg, #061912 0%, #04120d 100%);
}

.nh-narrow {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Sekční hlavička */

.nh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nh-green);
    margin-bottom: 0.9rem;
}

.nh-eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--nh-green);
    opacity: 0.7;
}

.nh-head {
    margin-bottom: 3rem;
}

.nh-head--center {
    text-align: center;
}

.nh-head--center .nh-eyebrow::before {
    display: none;
}

.nh-head h2 {
    margin-bottom: 1rem;
    max-width: 22ch;
}

.nh-head--center h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 20ch;
}

.nh-lead,
body p.nh-lead {
    color: var(--nh-text-dim);
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: 56ch;
    margin-bottom: 0;
}

.nh-head--center .nh-lead {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .nh-lead,
    body p.nh-lead {
        font-size: 1.15rem;
    }
}

/* --------------------------------------------------------------------------
   Navigace
   -------------------------------------------------------------------------- */

/* Průhledná lišta, která se scrolluje pryč — nesmí být sticky. */
.nh-nav {
    position: relative;
    background: transparent;
    z-index: 1030;
}

.nh-nav .nav-link {
    color: var(--nh-text-dim) !important;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.nh-nav .nav-link:hover,
.nh-nav .nav-link.active {
    color: #ffffff !important;
}

.nh-nav .navbar-toggler {
    border-color: var(--nh-line);
}

.nh-nav .nh-nav-cta {
    padding: 0.6rem 1.4rem;
    font-size: 0.9375rem;
}

@media (max-width: 991.98px) {
    .nh-nav .nh-nav-cta {
        display: inline-block;
        margin-top: 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   Tlačítka
   -------------------------------------------------------------------------- */

.nh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.9rem;
    border-radius: 2rem;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.nh-btn:hover,
.nh-btn:focus {
    text-decoration: none;
}

.nh-btn:active {
    transform: scale(0.985);
}

.nh-btn--primary {
    background: var(--nh-green-btn);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(52, 192, 106, 0.22);
}

.nh-btn--primary:hover,
.nh-btn--primary:focus {
    background: var(--nh-green-btn-hover);
    color: #ffffff;
    box-shadow: 0 12px 34px rgba(52, 192, 106, 0.3);
}

.nh-btn--ghost {
    background: transparent;
    color: var(--nh-text);
    border-color: rgba(221, 251, 233, 0.2);
}

.nh-btn--ghost:hover,
.nh-btn--ghost:focus {
    color: #ffffff;
    border-color: var(--nh-green);
    background: rgba(90, 223, 136, 0.07);
}

.nh-btn--sm {
    padding: 0.6rem 1.35rem;
    font-size: 0.9375rem;
}

.nh-btn--block {
    display: flex;
    width: 100%;
}

/* Textový odkaz se šipkou */

.nh-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--nh-green);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
}

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

.nh-link i {
    font-size: 0.75em;
}

.nh-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.25rem;
}

.nh-head--center .nh-actions,
.nh-hero__actions--center {
    justify-content: center;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

/* Bez overflow:hidden — záře smí přetéct nahoru za navigaci, aby lišta
   opticky patřila k heru a nevznikl mezi nimi vodorovný šev.
   Horizontální přetečení hlídá overflow-x na body.nh. */
.nh-hero {
    position: relative;
    background: var(--nh-bg);
    padding-bottom: 1rem;
}

/* top: -6rem ≈ výška navigace, takže záře začíná přesně na horní hraně
   stránky a plynule slábne dolů.
   width: min(…, 100%) — hero už záři neořezává, takže si šířku musí
   omezit sama, jinak na mobilu přeteče do stran. */
.nh-hero::before {
    content: "";
    position: absolute;
    top: -6rem;
    left: 50%;
    width: min(68rem, 100%);
    height: 40rem;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(52, 192, 106, 0.2), rgba(52, 192, 106, 0) 72%);
    pointer-events: none;
}

.nh-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .nh-hero__inner {
        padding-top: 2.75rem;
    }
}

.nh-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.95rem 0.4rem 0.75rem;
    border: 1px solid var(--nh-line);
    border-radius: 2rem;
    background: rgba(90, 223, 136, 0.06);
    color: var(--nh-text-dim);
    font-family: "Inter", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
}

.nh-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--nh-green);
    box-shadow: 0 0 0 4px rgba(90, 223, 136, 0.16);
}

.nh-hero h1 {
    max-width: 17ch;
    margin: 0 auto 1.4rem;
    line-height: 1.08;
}

.nh-hero__lead,
body p.nh-hero__lead {
    max-width: 52ch;
    margin: 0 auto 2rem;
    color: var(--nh-text-dim);
    font-size: 1.0625rem;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .nh-hero__lead,
    body p.nh-hero__lead {
        font-size: 1.2rem;
    }
}

.nh-hero__note {
    margin-top: 1.1rem;
    font-size: 0.875rem;
    color: var(--nh-text-mute);
}

.nh-hero__visual {
    position: relative;
    margin-top: 2.5rem;
    z-index: 1;
}

.nh-hero__visual img {
    width: 100%;
    max-width: 1040px;
    display: block;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Nekonečný pruh vizitek (hero)
   -------------------------------------------------------------------------- */

/* Pruh jede přes celou šířku okna, i když sedí uvnitř .containeru.
   Přetečení do stran hlídá overflow-x na body.nh. */
.nh-hero__visual--marquee {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 2rem;
}

.nh-hero__visual--marquee img {
    max-width: none;
    margin: 0;
}

/* Maska nechá pruh na obou koncích splynout s pozadím, takže nikde
   nevzniká tvrdá hrana, ze které vizitky „vyskakují“. */
.nh-marquee {
    overflow: hidden;
    /* Ořez padá až na hranu paddingu, takže tudy dostane spodní řada místo
       na svoje posazení o 1,5rem níž (viz :nth-child(even)) i na stín.
       Bez toho se sudým vizitkám uřízne pata. Nahoře jde o místo pro
       zvětšení při hoveru. */
    padding-top: 1rem;
    padding-bottom: 2.25rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

/* width: max-content — stopa musí být tak široká jako obě sady dohromady,
   jinak by se flex položky smrskly a posun o -50 % by nesedl. */
.nh-marquee__track {
    display: flex;
    width: max-content;
    margin: 0;
    padding: 0;
    list-style: none;
    /* Doba je navázaná na délku sady (19 vizitek ≈ 4300 px), aby pruh držel
       zhruba 50 px/s. Když se sada zvětší nebo zmenší, je potřeba dobu
       přepočítat, jinak se tempo změní s ní. */
    animation: nh-marquee-scroll 86s linear infinite;
}

/* Odsazení řeší margin, ne gap: každá položka tak zabírá přesně
   šířka + mezera, součet obou sad je dvojnásobek jedné a -50 % dopadne
   na její začátek. S gapem by mezi sadami vznikla mezera navíc a smyčka
   by při každém otočení poskočila. */
.nh-marquee__item {
    flex: 0 0 auto;
    margin-right: 1.25rem;
}

/* Mírné střídavé posazení, aby pruh nepůsobil jako pravítko. */
.nh-marquee__item:nth-child(even) {
    transform: translateY(1.5rem);
}

.nh-marquee__item img {
    width: 178px;
    height: auto;
    border-radius: 20px;
    cursor: zoom-in;
    /* Vnitřní linka dělá z plochého screenshotu displej telefonu. */
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.09),
        0 18px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Zvětšení sedí na obrázku, ne na položce — ta si drží svoje střídavé
   posazení translateY a druhý transform by ho přepsal. Pruh se při
   hoveru stejně zastaví, takže vizitka pod kurzorem neuteče. */
.nh-marquee__item img:hover {
    transform: scale(1.06);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.16),
        0 26px 55px rgba(0, 0, 0, 0.55);
}

.nh-marquee__item img:focus-visible {
    outline: 2px solid var(--nh-green);
    outline-offset: 4px;
}

@media (min-width: 768px) {
    .nh-marquee__item img {
        width: 206px;
        border-radius: 24px;
    }
}

.nh-marquee:hover .nh-marquee__track {
    animation-play-state: paused;
}

@keyframes nh-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nh-marquee__track {
        animation: none;
    }

    .nh-marquee__item img,
    .nh-marquee__item img:hover {
        transition: none;
        transform: none;
    }
}

/* Logo lišta */

.nh-logos {
    padding: 2.25rem 0 3rem;
    background: var(--nh-bg);
}

.nh-logos__label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nh-text-mute);
    margin-bottom: 1.6rem;
}

.nh-logos__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.75rem 3rem;
}

.nh-logos__row img {
    height: 26px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(1) brightness(1.6);
    transition: opacity 0.2s ease;
}

.nh-logos__row img:hover {
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Karty (feature grid)
   -------------------------------------------------------------------------- */

/* minmax 300px → na kontejneru 1140 px vyjdou tři sloupce, takže mřížky
   o 3, 6, 9 i 12 kartách vždycky končí zarovnaným řádkem. */
.nh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.15rem;
}

/* Dvousloupcová varianta — pevně dva sloupce, aby čtyři karty daly 2×2. */
.nh-grid--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .nh-grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nh-card {
    position: relative;
    padding: 1.75rem 1.6rem;
    background: var(--nh-panel);
    border: 1px solid var(--nh-line-soft);
    border-radius: var(--nh-radius);
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.nh-card:hover {
    border-color: var(--nh-line);
    background: var(--nh-panel-hover);
    transform: translateY(-2px);
}

.nh-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1.1rem;
    border-radius: 11px;
    background: rgba(90, 223, 136, 0.1);
    color: var(--nh-green);
    font-size: 1.1rem;
}

.nh-card h3,
.nh-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.55rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .nh-card h3,
    .nh-card h4 {
        font-size: 1.125rem;
    }
}

.nh-card p,
body .nh-card p {
    color: var(--nh-text-dim);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.nh-card strong {
    color: var(--nh-text);
}

/* --------------------------------------------------------------------------
   Kroky 1–2–3
   -------------------------------------------------------------------------- */

/* minmax 240px — čtyři kroky se ještě vejdou do jedné řady na kontejneru
   1110 px; auto-fit sbalí prázdné stopy, takže tři kroky zůstanou trojicí. */
.nh-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    counter-reset: nh-step;
}

.nh-step {
    position: relative;
    padding: 1.9rem 1.6rem 1.75rem;
    background: var(--nh-panel);
    border: 1px solid var(--nh-line-soft);
    border-radius: var(--nh-radius);
}

.nh-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(90, 223, 136, 0.12);
    border: 1px solid var(--nh-line);
    color: var(--nh-green);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
}

.nh-step h3 {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 0.55rem;
}

.nh-step p,
body .nh-step p {
    color: var(--nh-text-dim);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Rozdělená sekce (text + vizuál)
   -------------------------------------------------------------------------- */

.nh-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .nh-split {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .nh-split--reverse .nh-split__media {
        order: -1;
    }
}

/* height: auto je tu povinné — atribut height="…" v HTML se propisuje jako
   pevná výška, takže by se obrázek při width:100% roztáhl do nesmyslného
   poměru stran. Atributy přitom chceme mít kvůli rezervaci místa. */
.nh-split__media img {
    width: 100%;
    height: auto;
    display: block;
}

/* Screenshot rozhraní — na rozdíl od mockupů s průhledným pozadím má
   pravoúhlé hrany, takže si zaoblení a orámování musí přidat sám,
   jinak v sekci působí jako nalepený obdélník. */
.nh-shot {
    border-radius: var(--nh-radius-lg);
    border: 1px solid var(--nh-line-soft);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.nh-shot[data-lightbox] {
    cursor: zoom-in;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.nh-shot[data-lightbox]:hover {
    border-color: var(--nh-line);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */

.nh-lightbox[hidden] {
    display: none;
}

.nh-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(4, 18, 13, 0.92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: zoom-out;
}

.nh-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: var(--nh-radius-lg);
    border: 1px solid var(--nh-line-soft);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    cursor: default;
}

.nh-lightbox__close {
    position: absolute;
    top: clamp(0.75rem, 2vw, 1.5rem);
    right: clamp(0.75rem, 2vw, 1.5rem);
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--nh-line);
    border-radius: 50%;
    background: rgba(6, 25, 18, 0.9);
    color: var(--nh-text);
    font-size: 1.05rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.nh-lightbox__close:hover,
.nh-lightbox__close:focus-visible {
    background: var(--nh-panel-hover);
    border-color: var(--nh-green);
    outline: none;
}

.nh-lightbox__nav {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    margin: 0 clamp(0.5rem, 2vw, 1.75rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--nh-line);
    border-radius: 50%;
    background: rgba(6, 25, 18, 0.9);
    color: var(--nh-text);
    font-size: 1.05rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.nh-lightbox__nav[hidden] {
    display: none;
}

.nh-lightbox__nav:hover,
.nh-lightbox__nav:focus-visible {
    background: var(--nh-panel-hover);
    border-color: var(--nh-green);
    outline: none;
}

.nh-lightbox__counter {
    position: absolute;
    left: 50%;
    bottom: clamp(0.75rem, 2vw, 1.5rem);
    transform: translateX(-50%);
    margin: 0;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    color: var(--nh-text-mute);
}

.nh-lightbox__counter[hidden] {
    display: none;
}

/* Na úzkém displeji by tlačítka ukrajovala z obrázku, tak si sednou přes
   jeho spodní okraj — listuje se stejně hlavně tahem prstu. */
@media (max-width: 600px) {
    .nh-lightbox__nav {
        position: absolute;
        bottom: 3.25rem;
        margin: 0;
    }

    .nh-lightbox__nav--prev {
        left: 1rem;
    }

    .nh-lightbox__nav--next {
        right: 1rem;
    }
}

/* Pruh se při otevřeném náhledu zastaví, aby po zavření nenaskočil jinam. */
body.nh-lightbox-open .nh-marquee__track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .nh-shot[data-lightbox],
    .nh-shot[data-lightbox]:hover {
        transition: none;
        transform: none;
    }
}

.nh-split h2 {
    margin-bottom: 1.1rem;
}

.nh-split .nh-lead {
    margin-bottom: 1.6rem;
}

/* Odrážkový seznam s fajfkou */

.nh-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.nh-checks li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.8rem;
    color: var(--nh-text-dim);
    font-size: 0.9875rem;
    line-height: 1.6;
}

.nh-checks li:last-child {
    margin-bottom: 0;
}

.nh-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: rgba(90, 223, 136, 0.14) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath fill='none' stroke='%235adf88' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 4.6l2.9 2.9L10 1.4'/%3E%3C/svg%3E") center no-repeat;
}

.nh-checks li strong {
    color: var(--nh-text);
    font-weight: 600;
}

/* Křížek — pro sekci „co Nordhook nedělá“ */

.nh-checks--x li::before {
    background: rgba(255, 255, 255, 0.07) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 9 9'%3E%3Cpath fill='none' stroke='%238fa79a' stroke-width='1.7' stroke-linecap='round' d='M1.4 1.4l6.2 6.2M7.6 1.4L1.4 7.6'/%3E%3C/svg%3E") center no-repeat;
}

/* --------------------------------------------------------------------------
   Citace / vysvětlující blok
   -------------------------------------------------------------------------- */

.nh-quote {
    padding: 2rem 1.9rem;
    background: var(--nh-panel-2);
    border-left: 3px solid var(--nh-green);
    border-radius: 0 var(--nh-radius) var(--nh-radius) 0;
}

.nh-quote p,
body .nh-quote p {
    color: var(--nh-text);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.nh-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.875rem;
    color: var(--nh-text-mute);
}

/* --------------------------------------------------------------------------
   Srovnávací tabulka (my vs. konkurence)
   -------------------------------------------------------------------------- */

.nh-compare {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--nh-panel);
    border: 1px solid var(--nh-line-soft);
    border-radius: var(--nh-radius);
    overflow: hidden;
}

.nh-compare th,
.nh-compare td {
    padding: 1rem 1.15rem;
    font-size: 0.9375rem;
    text-align: left;
    border-bottom: 1px solid var(--nh-line-soft);
    vertical-align: top;
}

.nh-compare thead th {
    background: var(--nh-panel-2);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
}

.nh-compare thead th.nh-compare__us {
    color: #ffffff;
}

.nh-compare tbody td:first-child {
    color: var(--nh-text);
    font-weight: 600;
}

.nh-compare tbody td {
    color: var(--nh-text-dim);
}

.nh-compare tbody td.nh-compare__us {
    color: var(--nh-text);
    background: rgba(90, 223, 136, 0.045);
}

.nh-compare tbody tr:last-child th,
.nh-compare tbody tr:last-child td {
    border-bottom: none;
}

/* Tabulka parametrů */

.nh-specs {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--nh-panel);
    border: 1px solid var(--nh-line-soft);
    border-radius: var(--nh-radius);
    overflow: hidden;
}

.nh-specs th,
.nh-specs td {
    padding: 0.95rem 1.15rem;
    font-size: 0.9375rem;
    text-align: left;
    border-bottom: 1px solid var(--nh-line-soft);
}

.nh-specs th {
    color: var(--nh-text);
    font-weight: 600;
    width: 42%;
}

.nh-specs td {
    color: var(--nh-text-dim);
}

.nh-specs td strong {
    color: #ffffff;
    font-weight: 600;
}

.nh-specs tr:last-child th,
.nh-specs tr:last-child td {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   Ceník
   -------------------------------------------------------------------------- */

.nh-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.nh-plan {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem 1.85rem;
    background: var(--nh-panel);
    border: 1px solid var(--nh-line-soft);
    border-radius: var(--nh-radius-lg);
    position: relative;
}

.nh-plan--featured {
    background: var(--nh-panel-2);
    border-color: rgba(90, 223, 136, 0.36);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}

.nh-plan__tag {
    position: absolute;
    top: -0.75rem;
    left: 1.75rem;
    padding: 0.28rem 0.8rem;
    border-radius: 2rem;
    background: var(--nh-green);
    color: #04120d;
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nh-plan__name {
    font-family: "Inter", sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.nh-plan__for {
    color: var(--nh-text-dim);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 2.8em;
}

.nh-plan__price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.nh-plan__amount {
    font-family: "Bauziet", "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.nh-plan__currency {
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--nh-text-dim);
}

.nh-plan__once {
    font-size: 0.8125rem;
    color: var(--nh-text-mute);
    margin-bottom: 1.5rem;
}

.nh-plan__cta {
    margin-bottom: 1.5rem;
}

.nh-plan__list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    flex-grow: 1;
}

.nh-plan__list li {
    position: relative;
    padding-left: 1.65rem;
    margin-bottom: 0.7rem;
    color: var(--nh-text-dim);
    font-size: 0.9125rem;
    line-height: 1.55;
}

.nh-plan__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.9rem;
    height: 0.9rem;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%235adf88' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 5l3.2 3.2L11 1.5'/%3E%3C/svg%3E") center no-repeat;
}

.nh-plan__list li strong {
    color: var(--nh-text);
    font-weight: 600;
}

.nh-plan__foot {
    padding-top: 1rem;
    border-top: 1px solid var(--nh-line-soft);
    font-size: 0.8125rem;
    color: var(--nh-text-mute);
    line-height: 1.5;
}

/* Pruh „co je v ceně vždycky“ */

.nh-included {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 2rem;
    padding: 1.9rem;
    background: var(--nh-panel-2);
    border-radius: var(--nh-radius);
    border: 1px solid var(--nh-line-soft);
}

.nh-included li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--nh-text-dim);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.nh-included li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 0.95rem;
    height: 0.95rem;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%235adf88' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 5l3.2 3.2L11 1.5'/%3E%3C/svg%3E") center no-repeat;
}

.nh-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* --------------------------------------------------------------------------
   FAQ (Bootstrap collapse)
   -------------------------------------------------------------------------- */

.nh-faq {
    border: 1px solid var(--nh-line-soft);
    border-radius: var(--nh-radius);
    overflow: hidden;
    background: var(--nh-panel);
}

.nh-faq__item + .nh-faq__item {
    border-top: 1px solid var(--nh-line-soft);
}

.nh-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    padding: 1.35rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    transition: background 0.15s ease;
}

.nh-faq__q:hover {
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    color: #ffffff;
}

.nh-faq__q:focus {
    outline: none;
    text-decoration: none;
    color: #ffffff;
}

.nh-faq__chev {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(90, 223, 136, 0.1);
    color: var(--nh-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.nh-faq__q[aria-expanded="true"] .nh-faq__chev {
    transform: rotate(180deg);
}

/* Odpověď potřebuje vlastní odsazení shora, jinak se lepí na řádek
   s otázkou — spodní padding otázky na oddělení nestačí. */
.nh-faq__a {
    padding: 0.85rem 1.5rem 1.6rem;
}

.nh-faq__a p,
body .nh-faq__a p,
.nh-faq__a li {
    color: var(--nh-text-dim);
    font-size: 0.9875rem;
    line-height: 1.7;
}

.nh-faq__a p:last-child,
body .nh-faq__a p:last-child {
    margin-bottom: 0;
}

.nh-faq__a a {
    color: var(--nh-green);
}

.nh-faq__a ol,
.nh-faq__a ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.nh-faq__a li {
    margin-bottom: 0.4rem;
}

/* --------------------------------------------------------------------------
   Závěrečné CTA
   -------------------------------------------------------------------------- */

.nh-cta {
    position: relative;
    padding: 3.5rem 2rem;
    background: var(--nh-panel);
    border: 1px solid var(--nh-line);
    border-radius: var(--nh-radius-lg);
    text-align: center;
    overflow: hidden;
}

.nh-cta::before {
    content: "";
    position: absolute;
    top: -12rem;
    left: 50%;
    width: 40rem;
    height: 26rem;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(52, 192, 106, 0.2), rgba(52, 192, 106, 0) 70%);
    pointer-events: none;
}

.nh-cta > * {
    position: relative;
}

.nh-cta h2 {
    max-width: 20ch;
    margin: 0 auto 1rem;
}

.nh-cta .nh-lead {
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .nh-cta {
        padding: 4.5rem 3rem;
    }
}

/* Kontaktní blok */

.nh-contact__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nh-contact__list li {
    margin-bottom: 0.55rem;
    color: var(--nh-text-dim);
    font-size: 1rem;
}

.nh-contact__list a {
    color: var(--nh-green);
}

.nh-contact__list a:hover {
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   Patička
   -------------------------------------------------------------------------- */

.nh-footer {
    background: var(--nh-bg-deep);
    border-top: 1px solid var(--nh-line-soft);
    padding: 3.25rem 0 2rem;
}

.nh-footer h3 {
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--nh-text-mute);
    margin-bottom: 1rem;
}

.nh-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nh-footer li {
    margin-bottom: 0.55rem;
}

.nh-footer a {
    color: var(--nh-text-dim);
    font-size: 0.9375rem;
    text-decoration: none;
}

.nh-footer a:hover {
    color: var(--nh-green);
    text-decoration: none;
}

.nh-footer__tagline {
    color: var(--nh-text-mute);
    font-size: 0.9375rem;
    max-width: 24ch;
    margin: 0.85rem 0 1.25rem;
}

.nh-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--nh-text-dim);
}

.nh-footer__social a:hover {
    background: rgba(90, 223, 136, 0.14);
    color: var(--nh-green);
}

.nh-footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--nh-line-soft);
    font-size: 0.8125rem;
    color: var(--nh-text-mute);
}

.nh-footer__bottom a {
    font-size: 0.8125rem;
}

/* --------------------------------------------------------------------------
   Konfigurátor — formulář
   -------------------------------------------------------------------------- */

/* Formulář drží neutrální tmavou paletu — zelená zůstává jen na akcentech,
   jinak by se celá stránka slila do jedné zelené plochy. */
.nh-form {
    --nh-form-bg: #171a19;
    --nh-form-input: #0e100f;
    --nh-form-border: rgba(255, 255, 255, 0.13);
    /* Texty ve formuláři jsou neutrálně šedé, ne zelené — zelená zůstává
       jen na akcentech (vybraný balíček, odesílací tlačítko). */
    --nh-form-text: #cfcfcf;
    --nh-form-muted: #8d8d8d;

    max-width: 920px;
    margin: 0 auto;
    padding: 2rem 1.5rem 2.75rem;
    background: var(--nh-form-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--nh-radius-lg);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
    .nh-form {
        padding: 2.75rem 2.5rem 3rem;
    }
}

.nh-form .nh-f-field {
    margin-bottom: 1.65rem;
}

@media (min-width: 768px) {
    .nh-form .nh-f-field {
        margin-bottom: 1.85rem;
    }
}

.nh-form .nh-f-field--divider {
    padding-top: 1.35rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--nh-line-soft);
}

.nh-form .nh-f-row {
    display: grid;
    grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
    gap: 0.85rem 1.75rem;
    align-items: start;
}

@media (max-width: 768px) {
    .nh-form .nh-f-row {
        grid-template-columns: 1fr;
        gap: 0.5rem 0;
    }
}

.nh-form .nh-f-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.15rem;
}

@media (max-width: 576px) {
    .nh-form .nh-f-grid-2 {
        grid-template-columns: 1fr;
    }
}

.nh-form .nh-f-label,
.nh-form label.nh-f-label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #ffffff;
    padding-top: 0.55rem;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .nh-form .nh-f-label,
    .nh-form label.nh-f-label {
        padding-top: 0;
        margin-bottom: 0.15rem;
    }
}

.nh-form .nh-f-req {
    color: #e5646b;
    font-weight: 700;
    margin-left: 2px;
}

.nh-form .nh-f-wrap {
    min-width: 0;
}

.nh-form input[type="text"],
.nh-form input[type="email"],
.nh-form input[type="tel"],
.nh-form textarea {
    width: 100%;
    background-color: var(--nh-form-input);
    border: 1px solid var(--nh-form-border);
    border-radius: 8px;
    color: #fafafa;
    padding: 0.7rem 0.95rem;
    font-size: 0.96875rem;
    line-height: 1.45;
    font-weight: 400;
    margin-bottom: 0;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.nh-form input:hover,
.nh-form textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.nh-form input:focus,
.nh-form textarea:focus {
    outline: none;
    border-color: var(--nh-green);
    box-shadow: 0 0 0 3px rgba(90, 223, 136, 0.12);
}

.nh-form input::placeholder,
.nh-form textarea::placeholder {
    color: #ffffff;
    opacity: 1;
}

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

.nh-form .nh-f-hint {
    font-size: 0.8125rem;
    color: var(--nh-form-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.nh-form .nh-f-sublabel {
    font-size: 0.8125rem;
    color: var(--nh-form-muted);
    margin-top: 0.35rem;
}

.nh-form .nh-f-subdomain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.6rem;
}

.nh-form .nh-f-subdomain input {
    flex: 1 1 160px;
    min-width: 140px;
    max-width: 300px;
}

.nh-form .nh-f-subdomain span {
    color: var(--nh-form-text);
    font-size: 0.9375rem;
    white-space: nowrap;
}

/* Výběr balíčku jako karty */

.nh-form .nh-f-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

@media (min-width: 576px) {
    .nh-form .nh-f-plans {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nh-form .nh-f-plan {
    position: relative;
}

.nh-form .nh-f-plan input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.nh-form .nh-f-plan label {
    display: block;
    margin: 0;
    padding: 0.9rem 1rem;
    background: var(--nh-form-input);
    border: 1px solid var(--nh-form-border);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.nh-form .nh-f-plan label:hover {
    border-color: rgba(255, 255, 255, 0.24);
}

.nh-form .nh-f-plan input:checked + label {
    border-color: var(--nh-green);
    background: rgba(90, 223, 136, 0.08);
}

.nh-form .nh-f-plan input:focus-visible + label {
    box-shadow: 0 0 0 3px rgba(90, 223, 136, 0.18);
}

.nh-form .nh-f-plan__title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.nh-form .nh-f-plan__meta {
    display: block;
    font-size: 0.8125rem;
    color: var(--nh-form-muted);
}

.nh-form .nh-f-plan input:checked + label .nh-f-plan__meta {
    color: #ffffff;
}

/* Radia a checkboxy */

.nh-form .nh-f-radios {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 0.15rem;
}

.nh-form .nh-f-radio,
.nh-form .nh-f-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.nh-form .nh-f-radio input,
.nh-form .nh-f-checkbox input {
    width: 1.05rem;
    height: 1.05rem;
    margin: 0.2rem 0 0;
    accent-color: var(--nh-green-btn);
    flex-shrink: 0;
}

.nh-form .nh-f-radio label,
.nh-form .nh-f-checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.96875rem;
    color: var(--nh-form-text);
    cursor: pointer;
    line-height: 1.5;
}

.nh-form .nh-f-checkbox label a {
    color: #ffffff;
    text-decoration: underline;
}

.nh-form .nh-f-checkbox label a:hover {
    color: var(--nh-green);
}

.nh-form .nh-f-legal {
    font-size: 0.8125rem;
    color: var(--nh-form-muted);
    line-height: 1.65;
    margin: 1.5rem 0 1.85rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--nh-line-soft);
}

.nh-form .nh-f-submit {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 1rem 1.75rem;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--nh-green-btn);
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
    box-shadow: 0 10px 28px rgba(52, 192, 106, 0.25);
}

.nh-form .nh-f-submit:hover {
    background: var(--nh-green-btn-hover);
    box-shadow: 0 12px 32px rgba(52, 192, 106, 0.3);
}

.nh-form .nh-f-submit:active {
    transform: scale(0.99);
}

.nh-form .nh-f-error {
    color: #ff7a8c;
    font-size: 0.8125rem;
    margin-bottom: 0.4rem;
    display: none;
}

.nh-form .nh-f-error.visible {
    display: block;
}

/* Boční panel vedle formuláře */

.nh-form-aside {
    padding: 1.75rem 1.6rem;
    background: var(--nh-panel-2);
    border: 1px solid var(--nh-line-soft);
    border-radius: var(--nh-radius);
}

.nh-form-aside h3 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Stránka s poděkováním
   -------------------------------------------------------------------------- */

.nh-thanks {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.nh-thanks__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 1.75rem;
    border-radius: 50%;
    background: rgba(90, 223, 136, 0.12);
    border: 1px solid var(--nh-line);
    color: var(--nh-green);
    font-size: 1.9rem;
}

.nh-thanks__steps {
    text-align: left;
    margin: 2.5rem auto 0;
    max-width: 480px;
}

/* --------------------------------------------------------------------------
   Drobnosti
   -------------------------------------------------------------------------- */

.nh-skip {
    position: absolute;
    left: -9999px;
    top: 0;
}

.nh-skip:focus {
    left: 1rem;
    top: 1rem;
    z-index: 2000;
    padding: 0.6rem 1rem;
    background: var(--nh-green);
    color: #04120d;
    border-radius: 6px;
}

.nh-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.nh-prose h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.nh-prose p,
body .nh-prose p,
.nh-prose li {
    color: var(--nh-text-dim);
    line-height: 1.7;
}
